/* Imperial City Solutions — design system
   Spec-sheet aesthetic: paper + graphite, red accent, mono technical labels. */

:root {
  --ink:        #15181b;
  --ink-2:      #22272b;
  --ink-3:      #2c3236;
  --ink-deep:   #0f1214;
  --paper:      #f5f3ef;
  --paper-2:    #eae7e1;
  --paper-3:    #f0ede8;
  --white:      #ffffff;
  --steel:      #6b7278;
  --steel-2:    #4c5257;
  --line:       #d5d1c9;
  --line-input: #c9c5bd;
  --line-dark:  #2c3236;
  --muted-dark: #8b9298;
  --soft-dark:  #b4b8bb;
  --accent:     #c41d1d;
  --accent-ink: #ffffff;

  --font-display: Archivo, "Helvetica Neue", Arial, sans-serif;
  --font-body: "IBM Plex Sans", "Helvetica Neue", Arial, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, Menlo, Consolas, monospace;

  --gutter: 20px;
  --maxw: 1280px;
}

@media (min-width: 700px)  { :root { --gutter: 40px; } }
@media (min-width: 1040px) { :root { --gutter: 80px; } }

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  margin: 0;
  font-family: var(--font-display);
  text-wrap: balance;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

p { margin: 0; text-wrap: pretty; }
p + p { margin-top: 1.1em; }

a { color: inherit; text-decoration: none; }
a:hover { color: var(--accent); }

img, svg { max-width: 100%; }

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: var(--paper);
  padding: 14px 20px;
  z-index: 100;
}
.skip-link:focus { left: 0; }

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--accent);
  text-transform: uppercase;
  margin: 0 0 20px;
}
.eyebrow--muted { color: var(--steel); }

@media (min-width: 700px) { .eyebrow { font-size: 13px; } }

/* ---------- buttons ---------- */

.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
  padding: 18px 32px;
  border: 1px solid transparent;
  cursor: pointer;
  text-align: center;
  transition: background-color .15s ease, color .15s ease;
}
.btn--primary { background: var(--accent); color: var(--accent-ink); }
.btn--primary:hover { background: #a81919; color: var(--accent-ink); }
.btn--dark { background: var(--ink); color: var(--white); }
.btn--dark:hover { background: var(--ink-2); color: var(--white); }
.btn--ghost { border-color: #4a5055; color: var(--paper); }
.btn--ghost:hover { background: rgba(255,255,255,.08); color: var(--paper); }
.btn--sm { font-size: 15px; padding: 13px 24px; }

/* ---------- header ---------- */

.site-header {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 18px;
  padding-bottom: 18px;
}
@media (min-width: 900px) {
  .site-header__inner { padding-top: 26px; padding-bottom: 26px; }
}

.brand { display: flex; align-items: center; gap: 12px; }
.brand__mark { flex-shrink: 0; color: var(--accent); }
.brand__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.brand__sub {
  display: block;
  font-weight: 500;
  letter-spacing: 0.14em;
  font-size: 9px;
  color: var(--steel);
}
@media (min-width: 900px) {
  .brand__name { font-size: 19px; }
  .brand__sub { font-size: 12px; letter-spacing: 0.16em; }
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  margin-right: -12px;
  background: none;
  border: 0;
  color: var(--ink);
  cursor: pointer;
}
.nav {
  display: none;
  align-items: center;
  gap: 32px;
}
.nav a { font-size: 15px; font-weight: 500; }
.nav a.is-current {
  font-weight: 600;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 2px;
}

@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .nav { display: flex; }
}
@media (max-width: 899px) {
  .nav.is-open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    position: absolute;
    left: 0; right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 8px var(--gutter) 24px;
    z-index: 50;
  }
  .nav.is-open a {
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
    font-size: 17px;
  }
  .nav.is-open .btn { margin-top: 20px; border-bottom: 0; }
}
.site-header { position: relative; }

/* ---------- hero ---------- */

.hero {
  position: relative;
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
  padding-top: 56px;
  padding-bottom: 60px;
}
@media (min-width: 900px) { .hero { padding-top: 96px; padding-bottom: 104px; } }

.hero__grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--paper) 1px, transparent 1px),
    linear-gradient(90deg, var(--paper) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: .05;
  pointer-events: none;
}
.hero__inner { position: relative; }
.hero__title {
  font-size: clamp(38px, 7vw, 76px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.02;
  margin-bottom: 24px;
}
.hero__lede {
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.55;
  color: var(--soft-dark);
  max-width: 620px;
}
.hero__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
}
@media (min-width: 620px) {
  .hero__actions { flex-direction: row; gap: 16px; }
  .hero__actions .btn { padding: 20px 36px; }
}
@media (min-width: 1040px) {
  .hero__layout { display: flex; gap: 72px; align-items: flex-end; }
  .hero__main { flex-grow: 1; max-width: 820px; }
}

.spec-list {
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 1.9;
  color: var(--muted-dark);
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid var(--line-dark);
}
.spec-list dt { color: var(--paper); }
.spec-list dd { margin: 0 0 16px; }
.spec-list dd:last-child { margin-bottom: 0; }
@media (min-width: 1040px) {
  .spec-list {
    width: 260px; flex-shrink: 0;
    margin-top: 0; padding-top: 0;
    border-top: 0;
    border-left: 1px solid #33393e;
    padding-left: 28px;
  }
}

/* ---------- canada strip ---------- */

.strip {
  background: var(--paper-2);
  border-bottom: 1px solid var(--line);
}
.strip__inner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  padding-bottom: 16px;
}
@media (min-width: 900px) {
  .strip__inner { justify-content: center; padding-top: 22px; padding-bottom: 22px; }
}
.strip__text {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--steel-2);
  line-height: 1.5;
}
@media (min-width: 900px) { .strip__text { font-size: 13px; letter-spacing: 0.12em; } }
.leaf { flex-shrink: 0; color: var(--accent); }

/* ---------- sections ---------- */

.section { padding-top: 56px; padding-bottom: 60px; }
@media (min-width: 900px) { .section { padding-top: 96px; padding-bottom: 104px; } }
.section--tint { background: var(--paper-2); }
.section--white { background: var(--white); }

.section__head {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}
@media (min-width: 900px) {
  .section__head {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 56px;
  }
}
.section__title { font-size: clamp(26px, 4vw, 40px); font-weight: 700; }
.link-mono {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--accent);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 4px;
  align-self: flex-start;
}

/* ---------- capability cards ---------- */

.cards {
  display: grid;
  gap: 1px;
  background: var(--line);
  border-top: 2px solid var(--ink);
  border-bottom: 1px solid var(--line);
}
@media (min-width: 900px) {
  .cards { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 2px; }
}
.card { background: var(--paper); padding: 28px 0 30px; }
@media (min-width: 900px) { .card { padding: 40px 36px 44px; } }
.card__top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
@media (min-width: 900px) {
  .card__top { justify-content: space-between; margin-bottom: 28px; }
}
.card__num { font-family: var(--font-mono); font-size: 13px; color: var(--accent); }
.card__title { font-size: 20px; font-weight: 700; }
@media (min-width: 900px) {
  .card__title { font-size: 24px; margin-bottom: 14px; }
}
.card p { font-size: 15px; line-height: 1.6; color: var(--steel-2); }
@media (min-width: 900px) { .card p { font-size: 16px; } }

/* ---------- numbered steps ---------- */

.steps { display: grid; gap: 28px; }
@media (min-width: 900px) {
  .steps { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 48px; }
}
.step__num {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 12px;
}
@media (min-width: 900px) { .step__num { font-size: 56px; margin-bottom: 20px; } }
.step__title { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
@media (min-width: 900px) { .step__title { font-size: 21px; } }
.step p { font-size: 15px; line-height: 1.6; color: var(--steel-2); }
@media (min-width: 900px) { .step p { font-size: 16px; } }

/* ---------- split (prose + aside) ---------- */

.split { display: grid; gap: 40px; }
@media (min-width: 1040px) {
  .split { grid-template-columns: minmax(0, 1fr) 400px; gap: 96px; align-items: start; }
}
.prose { font-size: 16px; line-height: 1.65; color: var(--steel-2); max-width: 680px; }
@media (min-width: 900px) { .prose { font-size: 18px; } }
.prose .lead { font-size: 19px; color: var(--ink); font-weight: 500; }
@media (min-width: 900px) { .prose .lead { font-size: 21px; line-height: 1.6; } }

.panel {
  border: 1px solid var(--line);
  background: var(--white);
  padding: 28px 24px;
}
@media (min-width: 900px) { .panel { padding: 36px 34px; } }
.panel__label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--steel);
  margin-bottom: 22px;
}
.ticks { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 18px; }
.ticks li { display: flex; gap: 14px; align-items: flex-start; font-size: 16px; line-height: 1.5; color: var(--ink-3); }
.ticks svg { flex-shrink: 0; margin-top: 3px; color: var(--accent); }

/* ---------- service blocks ---------- */

.service {
  display: grid;
  gap: 32px;
  padding-top: 48px;
  padding-bottom: 52px;
  border-bottom: 1px solid var(--line);
}
@media (min-width: 1040px) {
  .service { grid-template-columns: 300px minmax(0, 1fr); gap: 80px; padding-top: 80px; padding-bottom: 80px; }
}
.service__num { font-family: var(--font-display); font-size: 15px; font-weight: 700; color: var(--accent); letter-spacing: 0.1em; margin-bottom: 12px; }
.service__title { font-size: clamp(26px, 4vw, 34px); font-weight: 700; line-height: 1.15; }
.service__icon { margin-top: 20px; color: var(--ink); display: none; }
@media (min-width: 1040px) { .service__icon { display: block; margin-top: 28px; } }
.service__lede { font-size: clamp(17px, 2vw, 20px); line-height: 1.6; color: var(--ink-3); max-width: 720px; margin-bottom: 32px; }

.detail-grid { display: grid; gap: 28px; max-width: 900px; }
@media (min-width: 700px) { .detail-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 36px 56px; } }
.detail { border-top: 1px solid var(--line); padding-top: 18px; }
.detail h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.detail p { font-size: 15px; line-height: 1.6; color: var(--steel-2); }

.callout {
  margin-top: 36px;
  background: var(--paper-2);
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 900px;
}
@media (min-width: 700px) { .callout { flex-direction: row; gap: 18px; padding: 26px 30px; } }
.callout__label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--accent);
  flex-shrink: 0;
  padding-top: 3px;
}
.callout p { font-size: 16px; line-height: 1.55; color: var(--ink-3); }
.callout--onwhite { background: var(--paper-3); }

.optin {
  margin-top: 28px;
  border: 1px solid var(--ink);
  padding: 26px 24px 28px;
  max-width: 900px;
}
@media (min-width: 700px) { .optin { padding: 32px 34px 34px; } }
.optin h3 { font-size: 22px; font-weight: 700; margin-bottom: 14px; }
.optin p { font-size: 16px; line-height: 1.65; color: var(--steel-2); }

.box {
  border: 1px solid var(--ink);
  padding: 28px 24px;
  display: grid;
  gap: 24px;
  margin-bottom: 60px;
}
@media (min-width: 900px) {
  .box { grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 60px; padding: 44px 48px; margin-bottom: 88px; }
}
.box h3 { font-size: 24px; font-weight: 700; margin-bottom: 12px; }
.box p { font-size: 17px; line-height: 1.6; color: var(--steel-2); max-width: 760px; }

/* ---------- about ---------- */

.page-head {
  background: var(--ink);
  color: var(--paper);
  position: relative;
  overflow: hidden;
  padding-top: 56px;
  padding-bottom: 60px;
}
@media (min-width: 900px) { .page-head { padding-top: 92px; padding-bottom: 96px; } }
.page-head__title { font-size: clamp(34px, 6vw, 62px); font-weight: 800; letter-spacing: -0.03em; line-height: 1.05; margin-bottom: 24px; max-width: 900px; }
.page-head__lede { font-size: clamp(16px, 2vw, 20px); line-height: 1.6; color: var(--soft-dark); max-width: 720px; }

.labelled { display: grid; gap: 24px; }
@media (min-width: 1040px) { .labelled { grid-template-columns: 220px minmax(0, 1fr); gap: 100px; } }
.labelled__label {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.12em;
  color: var(--accent);
  padding-top: 6px;
}

.stack-cards { display: flex; flex-direction: column; gap: 1px; background: var(--line); border-top: 2px solid var(--ink); }
.stack-card { background: var(--paper); padding: 24px 22px 26px; }
@media (min-width: 900px) { .stack-card { padding: 26px 28px 28px; } }
.stack-card__num { font-family: var(--font-mono); font-size: 12px; color: var(--accent); margin-bottom: 10px; }
.stack-card h3 { font-size: 19px; font-weight: 700; margin-bottom: 8px; }
.stack-card p { font-size: 15px; line-height: 1.6; color: var(--steel-2); }

.principles { display: grid; gap: 32px; max-width: 1120px; }
@media (min-width: 800px) { .principles { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 44px 80px; } }
.principle { border-top: 2px solid var(--ink); padding-top: 22px; }
.principle h3 { font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.principle p { font-size: 16px; line-height: 1.65; color: var(--steel-2); }

/* ---------- CTA band ---------- */

.cta {
  background: var(--accent);
  color: var(--white);
  padding-top: 44px;
  padding-bottom: 48px;
}
@media (min-width: 900px) { .cta { padding-top: 76px; padding-bottom: 76px; } }
.cta__inner { display: grid; gap: 26px; }
@media (min-width: 900px) {
  .cta__inner { grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 60px; }
}
.cta__title { font-size: clamp(24px, 3.4vw, 38px); font-weight: 700; margin-bottom: 12px; }
.cta p { font-size: clamp(16px, 2vw, 18px); line-height: 1.55; color: rgba(255,255,255,.85); }

/* ---------- footer ---------- */

.site-footer { background: var(--ink); color: var(--muted-dark); padding-top: 44px; padding-bottom: 36px; }
@media (min-width: 900px) { .site-footer { padding-top: 64px; padding-bottom: 48px; } }
.site-footer a { color: var(--muted-dark); font-size: 15px; }
.site-footer a:hover { color: var(--paper); }
.footer__top { display: grid; gap: 32px; padding-bottom: 32px; border-bottom: 1px solid var(--line-dark); }
@media (min-width: 900px) {
  .footer__top { grid-template-columns: minmax(0, 320px) auto; justify-content: space-between; gap: 80px; padding-bottom: 44px; }
}
.footer__brand { font-family: var(--font-display); font-weight: 800; font-size: 16px; color: var(--paper); letter-spacing: -0.02em; margin-bottom: 14px; }
@media (min-width: 900px) { .footer__brand { font-size: 18px; } }
.footer__blurb { font-size: 15px; line-height: 1.6; margin-bottom: 20px; }
.footer__canada { display: flex; align-items: center; gap: 10px; }
.footer__canada span { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em; color: var(--paper); }
.footer__cols { display: grid; gap: 28px; }
@media (min-width: 620px) { .footer__cols { grid-template-columns: repeat(3, auto); gap: 48px; } }
@media (min-width: 900px) { .footer__cols { gap: 72px; } }
.footer__col { display: flex; flex-direction: column; gap: 12px; }
.footer__col h2 {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--paper);
  margin-bottom: 4px;
  font-weight: 400;
}
.footer__legal {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 26px;
  font-family: var(--font-mono);
  font-size: 12px;
}
@media (min-width: 700px) { .footer__legal { flex-direction: row; justify-content: space-between; } }

/* ---------- contact / form ---------- */

/* Constrained to the same grid as the header so everything aligns on
   wide monitors; the aside would otherwise drift to the viewport edge. */
.contact-layout {
  display: grid;
  max-width: var(--maxw);
  margin: 0 auto;
}
@media (min-width: 1040px) {
  .contact-layout { grid-template-columns: minmax(0, 1fr) 440px; }
}

.contact-main { padding: 48px var(--gutter) 56px; }
@media (min-width: 1040px) {
  .contact-main { padding: 80px 64px 88px var(--gutter); }
}
.contact-main__title { font-size: clamp(30px, 5vw, 52px); font-weight: 800; letter-spacing: -0.03em; line-height: 1.05; margin-bottom: 18px; max-width: 640px; }
.contact-main__lede { font-size: clamp(16px, 2vw, 18px); line-height: 1.6; color: var(--steel-2); max-width: 620px; margin-bottom: 40px; }

.form { display: flex; flex-direction: column; gap: 24px; max-width: 720px; }
.field { display: flex; flex-direction: column; gap: 9px; }
.field__row { display: grid; gap: 24px; }
@media (min-width: 620px) { .field__row { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 26px; } }

.form label,
.fieldset__legend {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--steel);
  text-transform: uppercase;
}
.req { color: var(--accent); }

.form input[type="text"],
.form input[type="email"],
.form textarea {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line-input);
  border-radius: 0;
  padding: 15px 16px;
  width: 100%;
  min-height: 54px;
  transition: border-color .15s ease;
}
.form textarea { min-height: 150px; resize: vertical; line-height: 1.5; }
.form input::placeholder,
.form textarea::placeholder { color: #a8a49c; }
.form input:hover,
.form textarea:hover { border-color: var(--steel); }
.form input:focus,
.form textarea:focus { border-color: var(--ink); outline-offset: 0; }
.form input[aria-invalid="true"],
.form textarea[aria-invalid="true"] { border-color: var(--accent); }

.form input[type="file"] {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--steel-2);
  background: var(--white);
  border: 1px dashed var(--line-input);
  padding: 16px;
  width: 100%;
  cursor: pointer;
}
.form input[type="file"]:hover { border-color: var(--steel); }
.form input[type="file"]::file-selector-button {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  background: var(--paper-2);
  color: var(--ink);
  border: 1px solid var(--line-input);
  border-radius: 0;
  padding: 10px 18px;
  margin-right: 16px;
  cursor: pointer;
}
.form input[type="file"]::file-selector-button:hover { background: var(--line); }

.fieldset { border: 0; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip { position: relative; }
.chip input {
  position: absolute;
  opacity: 0;
  width: 100%; height: 100%;
  margin: 0;
  cursor: pointer;
}
.chip span {
  display: block;
  border: 1px solid var(--line-input);
  background: var(--white);
  color: var(--steel-2);
  padding: 14px 20px;
  font-size: 15px;
  min-height: 48px;
  line-height: 1.35;
  transition: background-color .12s ease, color .12s ease, border-color .12s ease;
}
.chip input:hover + span { border-color: var(--steel); }
.chip input:checked + span { background: var(--ink); border-color: var(--ink); color: var(--paper); }
.chip input:focus-visible + span { outline: 3px solid var(--accent); outline-offset: 2px; }

/* honeypot — must stay visually hidden but not display:none (bots skip those) */
.hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px;
  overflow: hidden;
}

.form__submit { display: flex; flex-direction: column; gap: 16px; margin-top: 8px; }
@media (min-width: 620px) { .form__submit { flex-direction: row; align-items: center; gap: 24px; } }
.form__note { font-size: 15px; color: var(--steel); }
.btn[disabled] { opacity: .55; cursor: progress; }

.form-status { padding: 18px 20px; font-size: 16px; line-height: 1.5; display: none; }
.form-status.is-visible { display: block; }
.form-status--ok { background: var(--paper-2); border-left: 4px solid var(--accent); color: var(--ink); }
.form-status--err { background: #fdecec; border-left: 4px solid var(--accent); color: #7d1414; }

.contact-aside {
  background: var(--ink);
  color: var(--paper);
  position: relative;
  overflow: hidden;
  padding: 48px var(--gutter) 56px;
}
@media (min-width: 1040px) {
  .contact-aside { padding: 80px var(--gutter) 88px 48px; }
}
.contact-aside__inner { position: relative; display: flex; flex-direction: column; gap: 36px; }
@media (min-width: 900px) { .contact-aside__inner { gap: 44px; } }
.aside-block + .aside-block { border-top: 1px solid var(--line-dark); padding-top: 36px; }
@media (min-width: 900px) { .aside-block + .aside-block { padding-top: 40px; } }
.aside-block__label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 16px;
}
.aside-block__big { font-family: var(--font-display); font-size: clamp(20px, 3vw, 26px); font-weight: 700; letter-spacing: -0.02em; line-height: 1.3; margin-bottom: 10px; word-break: break-word; }
.aside-block__big a:hover { color: var(--accent); }
.aside-block p { font-size: 15px; line-height: 1.6; color: var(--muted-dark); }
.aside-block .body-light { font-size: 16px; line-height: 1.65; color: var(--soft-dark); }
.numbered { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.numbered li { display: flex; gap: 14px; align-items: flex-start; font-size: 15px; line-height: 1.55; color: var(--soft-dark); }
.numbered b { font-family: var(--font-mono); font-size: 13px; color: var(--accent); font-weight: 400; flex-shrink: 0; padding-top: 2px; }

.turnstile-slot { min-height: 0; }

@media (prefers-reduced-motion: reduce) {
  * { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
