:root{
  --ink:    #1a1a1a;
  --ink-2:  #3a3a3a;
  --ink-3:  #6a655a;
  --rule:   #e8e6e3;
  --paper:  #f9f8f6;
  --warm:   #f5f2ec;
  --navy:   #1f3552;
  --navy-d: #16263d;
  --field-border: #d0c5b8;

  --sans:  "Inter Tight", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  --serif: "Roboto Slab", "Source Serif Pro", "Georgia", serif;

  --maxw: 880px;
  --gutter: clamp(20px, 5vw, 40px);
}

*, *::before, *::after{ box-sizing: border-box; }
html, body{ margin: 0; padding: 0; }
html{
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}
body{
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.55;
  font-weight: 400;
  color: var(--ink-2);
  letter-spacing: -0.005em;
}
::selection{ background: var(--navy); color: #fff; }
a{ color: inherit; text-decoration: none; }
img{ max-width: 100%; height: auto; display: block; }
picture{ display: contents; }

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

h1, h2, h3, h4{
  font-family: var(--serif);
  color: var(--ink);
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.022em;
  line-height: 1.06;
  text-wrap: balance;
}
p{ margin: 0; text-wrap: pretty; }

/* ── accessibility ───────────────────────── */
.skip-link{
  position: absolute; left: -9999px; top: 0;
  background: var(--navy); color: #fff;
  padding: 12px 20px; font-size: 16px;
  text-decoration: none; z-index: 100;
}
.skip-link:focus{ left: 12px; top: 12px; }
:focus-visible{
  outline: 2px solid var(--navy);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ── site header (sticky top bar) ────────── */
.site-header{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(245, 242, 236, 0.95);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  box-shadow: 0 1px 2px rgba(31, 53, 82, 0.06);
}
.header-inner{
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 80px;
}
.brand-link{
  display: inline-flex;
  align-items: center;
  transition: opacity 0.3s ease;
}
.brand-link:hover{ opacity: 0.8; }
.brand-logo{
  display: block;
  height: 40px;
  width: auto;
}
.header-nav{
  display: flex;
  align-items: center;
  gap: 16px;
}
.header-cta{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--navy);
  color: #fff;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: -0.005em;
  padding: 10px 18px;
  border-radius: 12px;
  box-shadow: 0 1px 2px rgba(31, 53, 82, 0.08);
  transition: background 0.2s ease;
  white-space: nowrap;
  border: 0;
  cursor: pointer;
}
.header-cta:hover{ background: var(--navy-d); }
.header-cta .arrow{ transition: transform 0.2s ease; }
.header-cta:hover .arrow{ transform: translateX(2px); }

main{ padding-top: 80px; }

@media (max-width: 640px){
  .brand-logo{ height: 36px; }
  .header-cta{ padding: 9px 16px; font-size: 14px; }
}
@media (max-width: 540px){
  .header-inner{ height: 72px; gap: 12px; justify-content: center; }
  .brand-logo{ height: 30px; }
  .header-cta{ display: none; }
  main{ padding-top: 72px; }
  html{ scroll-padding-top: 88px; }
}

/* ── hero ────────────────────────────────── */
.hero{
  padding-top: clamp(16px, 2.5vw, 40px);
  padding-bottom: clamp(20px, 2.4vw, 36px);
}
.hero.wide .wrap{ max-width: 1280px; }

.two-col.hero-grid{
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(24px, 3vw, 48px);
  align-items: center;
}

.hero-image img{
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: 50% 28%;
  border-radius: 24px;
  filter: saturate(0.95);
  box-shadow: none;
}

.hero-eyebrow{
  margin: 0 0 clamp(14px, 1.6vw, 22px);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(20px, 1.9vw, 26px);
  color: var(--navy);
  letter-spacing: 0;
  opacity: 0.92;
}

.hero h1{
  font-family: var(--serif);
  font-size: clamp(40px, 5.2vw, 64px);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.028em;
  line-height: 1.02;
  margin: 0 0 clamp(18px, 2vw, 26px);
  max-width: none;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
}

.hero-sub{
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1.25;
  color: var(--navy);
  font-weight: 400;
  letter-spacing: -0.014em;
  max-width: 30ch;
  text-wrap: balance;
}
.hero-sub .meet{
  font-weight: 600;
  color: var(--navy);
  margin-right: 0.15em;
}

.hero-badge{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: clamp(20px, 2.5vw, 32px);
  padding: 7px 14px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #B5894A;
  background: rgba(212, 165, 116, 0.18);
  border: 1px solid rgba(212, 165, 116, 0.50);
  border-radius: 999px;
  box-shadow: 0 1px 1px rgba(31, 53, 82, 0.04);
}
.hero-badge .badge-icon{ flex-shrink: 0; }
a.hero-badge{ transition: background-color .15s ease, border-color .15s ease; }
a.hero-badge:hover{
  background: rgba(212, 165, 116, 0.28);
  border-color: rgba(212, 165, 116, 0.70);
}

@media (max-width: 880px){
  .two-col.hero-grid{ grid-template-columns: 1fr; text-align: center; }
  .hero h1{ margin-left: auto; margin-right: auto; max-width: 24ch; }
  .hero-sub{ margin-left: auto; margin-right: auto; max-width: 32ch; }
  .hero-image{ max-width: 480px; margin: 0 auto; }
}

/* ── buttons ─────────────────────────────── */
.btn{
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--navy);
  color: #fff;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: -0.005em;
  padding: 16px 28px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  transition: background .2s ease;
}
.btn:hover{ background: var(--navy-d); }
.btn .arrow{ transition: transform .2s ease; }
.btn:hover .arrow{ transform: translateX(3px); }

/* ── sections ────────────────────────────── */
section.s{
  padding-top: clamp(48px, 5vw, 72px);
  padding-bottom: clamp(36px, 3.6vw, 56px);
  text-align: center;
}
section.s.warm{ background: var(--warm); }
section.s h2{
  font-family: var(--serif);
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.022em;
  line-height: 1.1;
  max-width: 22ch;
  margin: 0 auto;
}
section.s .lede{
  margin: 24px auto 0;
  font-size: clamp(18px, 1.6vw, 21px);
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 50ch;
}
section.s.wide .wrap{ max-width: 1280px; }

/* Sign-off / closing panel */
section.signoff{
  padding-top: clamp(36px, 2.4vw, 40px);
  padding-bottom: clamp(36px, 2.4vw, 40px);
}
section.signoff .h3-sub{
  margin: clamp(14px, 1.8vw, 20px) auto 0;
  max-width: 60ch;
  text-align: center;
}

/* ── two-column layouts ──────────────────── */
.two-col{
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
  text-align: left;
}
.two-col.image-left{
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
}
.two-col.image-left .text-col{ order: 2; }
.two-col.image-left .image-col{ order: 1; }
.two-col .text-col h2{
  text-align: left;
  max-width: none;
  margin: 0;
}
.two-col .text-col .lede{
  text-align: left;
  max-width: none;
  margin: 22px 0 0;
}

/* Sub-title under the H2 (matches gordon-web-site H3 pattern) */
.h3-sub{
  font-family: var(--serif);
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.25;
  letter-spacing: -0.014em;
  margin: clamp(14px, 1.8vw, 20px) 0 0;
  max-width: 36ch;
  text-wrap: balance;
}

/* Prose body block */
.text-content{
  margin-top: clamp(22px, 2.6vw, 32px);
  font-size: clamp(17px, 1.35vw, 19px);
  line-height: 1.65;
  color: var(--ink-2);
  text-align: left;
}
.text-content p + p{ margin-top: 14px; }
.text-content a,
.faq-a a{
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.text-content strong{
  font-family: var(--serif);
  font-weight: 700;
  color: var(--navy);
  font-size: 1.15em;
  letter-spacing: -0.01em;
  margin-right: 0.25em;
}
.text-content .aside{
  display: inline;
  font-style: italic;
  color: var(--ink-3);
  font-size: 0.93em;
  margin: 0;
}
.text-content.steps-prose strong{
  font-variant-numeric: tabular-nums;
}

/* Ten-coda inside text-col */
.text-col .ten-coda{
  margin: clamp(18px, 2.2vw, 26px) 0 0;
  text-align: left;
  max-width: none;
  font-size: clamp(17px, 1.7vw, 20px);
  line-height: 1.5;
  color: var(--ink-2);
}
.image-col{ position: relative; }
.image-col img{
  width: 100%;
  height: auto;
  border-radius: 24px;
  box-shadow:
    0 1px 2px rgba(31, 53, 82, 0.06),
    0 30px 60px -30px rgba(31, 53, 82, 0.30);
  display: block;
}

/* Placeholder block (stand-in for real images) */
.placeholder{
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 24px;
  background:
    repeating-linear-gradient(135deg,
      rgba(31, 53, 82, 0.04) 0 1px,
      transparent 1px 14px),
    rgba(31, 53, 82, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-3);
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  letter-spacing: 0.02em;
  box-shadow:
    0 1px 2px rgba(31, 53, 82, 0.05),
    0 30px 60px -30px rgba(31, 53, 82, 0.18);
}
.placeholder span{ opacity: 0.7; }
.image-col.framed{
  background: rgba(31, 53, 82, 0.08);
  padding: clamp(10px, 1.2vw, 16px);
  border-radius: 24px;
  box-shadow:
    0 1px 2px rgba(31, 53, 82, 0.06),
    0 30px 60px -30px rgba(31, 53, 82, 0.30);
}
.image-col.framed img{
  border-radius: 12px;
  box-shadow: none;
}

/* ── feature card grid (four reasons) ────── */
.followups.cards{
  margin-top: clamp(48px, 6vw, 72px);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(18px, 2vw, 24px);
  text-align: left;
}
.followups.cards .fu{
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--rule);
  border-radius: 14px;
  padding: clamp(22px, 2.4vw, 30px);
  box-shadow: 0 1px 1px rgba(31, 53, 82, 0.03);
  transition: background .2s ease, box-shadow .2s ease, transform .2s ease;
}
.followups.cards .fu:hover{
  background: #fff;
  box-shadow: 0 1px 2px rgba(31, 53, 82, 0.05), 0 12px 24px -12px rgba(31, 53, 82, 0.12);
  transform: translateY(-1px);
}
.followups.cards .fu h4{
  font-family: var(--serif);
  font-size: clamp(19px, 2vw, 22px);
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 10px;
  letter-spacing: -0.012em;
  text-align: left;
}
.followups.cards .fu p{
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--ink-2);
  margin: 0;
  max-width: none;
  text-align: left;
}

/* ── steps in two-col context ────────────── */
.steps.in-col{
  margin-top: clamp(28px, 3.5vw, 40px);
  max-width: none;
}
.steps.in-col .step{
  padding: 20px 0;
  grid-template-columns: 56px 1fr;
  gap: 20px;
}
.steps.in-col .step h4{ font-size: clamp(18px, 1.7vw, 20px); }
.steps.in-col .step .n{ font-size: clamp(24px, 2.4vw, 30px); }

/* ── form card ───────────────────────────── */
.form-card{
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 18px;
  padding: clamp(24px, 3vw, 36px);
  box-shadow:
    0 1px 2px rgba(31, 53, 82, 0.05),
    0 24px 48px -24px rgba(31, 53, 82, 0.18);
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
.form-card form.register{
  margin: 0;
  max-width: none;
  text-align: left;
}
.form-card .form-foot{
  margin-top: 16px;
  text-align: left;
  color: var(--ink-3);
}

/* register section text col */
.register-text .demo-prose{
  margin: 22px 0 0;
  text-align: left;
  max-width: 50ch;
}
.register-text .demo-prose p{ font-size: 17px; }

/* ── three things ────────────────────────── */
.three{
  margin-top: clamp(56px, 7vw, 88px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 4vw, 56px);
  text-align: center;
}
.three .item .marker{
  width: 36px; height: 1px;
  background: var(--navy);
  margin: 0 auto 24px;
  opacity: 0.4;
}
.three .item h3{
  font-family: var(--serif);
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.018em;
  margin-bottom: 14px;
}
.three .item p{
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 32ch;
  margin: 0 auto;
}
.three .item .aside{
  display: block;
  margin-top: 8px;
  font-style: italic;
  color: var(--ink-3);
  font-size: 14.5px;
}

/* ── service-not-a-secret ────────────────── */
.body-block{ margin: 28px auto 0; max-width: 56ch; text-align: center; }
.body-block p{ font-size: 18px; line-height: 1.6; color: var(--ink-2); }
.body-block p + p{ margin-top: 1em; }

.quote{
  margin: clamp(40px, 5vw, 56px) auto 0;
  padding: 0 clamp(20px, 4vw, 40px);
  font-family: var(--serif);
  font-size: clamp(24px, 2.8vw, 32px);
  line-height: 1.3;
  color: var(--navy);
  font-weight: 500;
  letter-spacing: -0.015em;
  max-width: 26ch;
  text-align: center;
}
.quote::before{ content: "\201C"; }
.quote::after{ content: "\201D"; }

.followups{
  margin-top: clamp(56px, 7vw, 80px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}
.followups.four{
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(40px, 5vw, 64px) clamp(48px, 6vw, 80px);
  margin-top: clamp(48px, 6vw, 72px);
}
.followups .fu h4{
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 10px;
  letter-spacing: -0.005em;
}
.followups.four .fu h4{
  font-family: var(--serif);
  font-size: clamp(18px, 1.7vw, 21px);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  letter-spacing: -0.012em;
}
.followups .fu p{
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 28ch;
  margin: 0 auto;
}
.followups.four .fu p{
  font-size: 16px;
  line-height: 1.6;
  max-width: 36ch;
}

section.s h2 .h2-line{
  display: block;
  margin-top: 0.25em;
}

section.s h2 .aside-h{
  display: block;
  margin-top: 0.4em;
  font-size: 0.55em;
  font-weight: 500;
  font-style: italic;
  color: var(--ink-3);
  letter-spacing: -0.005em;
  line-height: 1.3;
}

/* ── ten minutes / steps ─────────────────── */
.steps{
  margin: clamp(56px, 7vw, 80px) auto 0;
  max-width: 560px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  text-align: left;
}
.step{
  padding: 28px 0;
  border-top: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  align-items: baseline;
}
.step:last-child{ border-bottom: 1px solid var(--rule); }
.step .n{
  font-family: var(--serif);
  font-size: clamp(28px, 2.8vw, 34px);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.step h4{
  font-family: var(--serif);
  font-size: clamp(19px, 1.9vw, 22px);
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 6px;
  letter-spacing: -0.015em;
}
.step p{
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0;
}
.ten-coda{
  margin: clamp(56px, 7vw, 80px) auto 0;
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.35;
  color: var(--navy);
  font-weight: 600;
  letter-spacing: -0.015em;
  max-width: 30ch;
  text-align: center;
}

/* ── register form ───────────────────────── */
.demo-prose{
  margin: 28px auto 0;
  max-width: 56ch;
  text-align: center;
}
.demo-prose p{ font-size: 18px; line-height: 1.6; color: var(--ink-2); }
.demo-prose p + p{ margin-top: 1em; }

form.register{
  margin: clamp(48px, 6vw, 64px) auto 0;
  max-width: 440px;
  text-align: left;
}
.field{ margin-bottom: 18px; }
.field label{
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 6px;
  letter-spacing: -0.005em;
}
.field label .opt{ color: var(--ink-3); font-weight: 400; }
.field input{
  width: 100%;
  background: #fff;
  border: 1px solid var(--field-border);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  padding: 13px 16px;
  border-radius: 8px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field input::placeholder{ color: #9aa6b8; }
.field input:focus{
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(31, 53, 82, 0.1);
}
.field input.invalid{
  border-color: #b94a3b;
  box-shadow: 0 0 0 3px rgba(185, 74, 59, 0.12);
}
.helper{
  font-size: 12.5px;
  color: var(--ink-3);
  margin-top: 5px;
}

.btn-primary{
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--navy);
  color: #fff;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 16px;
  padding: 16px 28px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  transition: background .2s ease;
  width: 100%;
  margin-top: 6px;
}
.btn-primary:hover{ background: var(--navy-d); }
.btn-primary:disabled{ opacity: 0.6; cursor: progress; }

.form-foot{
  margin-top: 18px;
  font-size: 13px;
  color: var(--ink-3);
  line-height: 1.5;
  text-align: center;
}

.thanks{ display: none; }
.thanks strong{ color: var(--ink); }
form.register.submitted .fields{ display: none; }
form.register.submitted .thanks{ display: block; }

/* ── FAQ ─────────────────────────────────── */
section.s.wide.faq{ padding-bottom: clamp(56px, 6vw, 80px); }
section.s.wide.faq .wrap{ max-width: 720px; }
.faq h2{ max-width: none; }

/* Gilded ornamental rule under the heading */
.faq-flourish{
  display: block;
  width: 36px;
  height: 1.5px;
  margin: clamp(20px, 2.4vw, 28px) auto 0;
  background: #B5894A;
  opacity: 0.7;
  border-radius: 1px;
}

.faq-list{
  margin: clamp(28px, 3.6vw, 44px) auto 0;
  text-align: left;
  counter-reset: faq;
}

.faq-item{
  border-top: 1px solid rgba(31, 53, 82, 0.12);
  counter-increment: faq;
  transition: background .3s ease;
}
.faq-item:last-child{ border-bottom: 1px solid rgba(31, 53, 82, 0.12); }
.faq-item[open]{ background: rgba(255, 255, 255, 0.34); }

.faq-item > summary{
  list-style: none;
  cursor: pointer;
  display: grid;
  grid-template-columns: 36px 1fr 32px;
  align-items: baseline;
  gap: clamp(14px, 1.6vw, 20px);
  padding: clamp(22px, 2.6vw, 28px) clamp(12px, 1.4vw, 18px);
  font-family: var(--serif);
  color: var(--navy);
  transition: color .2s ease;
}
.faq-item > summary::-webkit-details-marker{ display: none; }
.faq-item > summary::before{
  content: counter(faq) ".";
  font-family: var(--serif);
  font-size: clamp(14px, 1.4vw, 16px);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.01em;
  color: rgba(31, 53, 82, 0.42);
  align-self: baseline;
  padding-top: 0.22em;
  transition: color .25s ease;
}
.faq-item[open] > summary::before{ color: #B5894A; }
.faq-item[open] > summary{ padding-bottom: clamp(8px, 1vw, 12px); }

.faq-item > summary:hover{ color: var(--navy-d); }
.faq-item > summary:focus-visible{ outline-offset: 4px; border-radius: 4px; }

.faq-q{
  font-size: clamp(18px, 1.9vw, 21px);
  font-weight: 700;
  letter-spacing: -0.012em;
  line-height: 1.3;
}

/* Circular toggle — fills navy on hover/open */
.faq-toggle{
  position: relative;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(31, 53, 82, 0.28);
  background: transparent;
  align-self: center;
  flex-shrink: 0;
  transition: background .25s ease, border-color .25s ease, transform .35s ease;
}
.faq-toggle::before,
.faq-toggle::after{
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--navy);
  border-radius: 1px;
  transform: translate(-50%, -50%);
  transition: background .25s ease, transform .35s ease;
}
.faq-toggle::before{ width: 11px; height: 1.5px; }
.faq-toggle::after{ width: 1.5px; height: 11px; }

.faq-item > summary:hover .faq-toggle{
  background: var(--navy);
  border-color: var(--navy);
}
.faq-item > summary:hover .faq-toggle::before,
.faq-item > summary:hover .faq-toggle::after{ background: #fff; }

.faq-item[open] > summary .faq-toggle{
  background: var(--navy);
  border-color: var(--navy);
  transform: rotate(180deg);
}
.faq-item[open] > summary .faq-toggle::before,
.faq-item[open] > summary .faq-toggle::after{ background: #fff; }
.faq-item[open] > summary .faq-toggle::after{ transform: translate(-50%, -50%) scaleY(0); }

/* Answer column — aligned with the question, not the numeral */
.faq-a{
  padding: 0 clamp(12px, 1.4vw, 18px) clamp(22px, 2.6vw, 30px);
  padding-left: calc(36px + clamp(14px, 1.6vw, 20px) + clamp(12px, 1.4vw, 18px));
  font-size: clamp(16.5px, 1.3vw, 18.5px);
  line-height: 1.7;
  color: var(--ink-2);
  max-width: 60ch;
}
.faq-a p{ margin: 0; }
.faq-a em{ font-style: italic; }

@media (max-width: 540px){
  .faq-item > summary{ grid-template-columns: 26px 1fr 30px; gap: 12px; padding-left: 12px; padding-right: 12px; }
  .faq-toggle{ width: 30px; height: 30px; }
  .faq-a{ padding-left: calc(26px + 12px + 12px); padding-right: 12px; }
}

@media (prefers-reduced-motion: no-preference){
  .faq-item[open] > summary + .faq-a{
    animation: faq-fade .25s ease-out;
  }
  @keyframes faq-fade{
    from{ opacity: 0; transform: translateY(-4px); }
    to{ opacity: 1; transform: translateY(0); }
  }
}

/* ── site footer (dark navy gradient) ────── */
.site-footer{
  background: linear-gradient(180deg, var(--navy) 0%, #0f1d33 100%);
  color: rgba(255, 255, 255, 0.55);
  padding: clamp(56px, 8vw, 88px) var(--gutter) clamp(28px, 4vw, 40px);
  text-align: center;
  font-size: 13px;
  margin-top: 0;
}
.footer-inner{
  max-width: 800px;
  margin: 0 auto;
}
.footer-logo{
  display: block;
  margin: 0 auto clamp(14px, 1.8vw, 20px);
  height: clamp(36px, 4vw, 44px);
  width: auto;
}
.footer-tagline{
  margin: 0 auto clamp(28px, 4vw, 40px);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(15px, 1.5vw, 18px);
  color: #E4BB44;
  letter-spacing: 0.005em;
  text-wrap: balance;
}
.footer-meta{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px 8px;
  font-size: 12.5px;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.45);
}
.footer-meta .dot{ opacity: 0.4; }
.footer-link{
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.3s ease;
}
.footer-link:hover{ color: #E4BB44; }

/* ── 404 page ────────────────────────────── */
.notfound{
  min-height: 80vh;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  padding: 96px 24px; text-align: center;
}
.notfound .code{
  font-family: var(--serif); font-weight: 700;
  font-size: clamp(80px, 14vw, 200px); line-height: 1;
  color: var(--navy); letter-spacing: -0.03em; margin: 0 0 24px;
}
.notfound h1{
  font-family: var(--serif); font-weight: 700;
  font-size: clamp(28px, 3vw, 40px); color: var(--navy);
  margin: 0 0 16px; letter-spacing: -0.022em;
}
.notfound p{
  font-family: var(--sans); font-size: 18px;
  color: var(--ink-2); max-width: 36ch; margin: 0 0 32px;
  line-height: 1.55;
}

/* ── responsive ──────────────────────────── */
@media (max-width: 880px){
  .two-col,
  .two-col.image-left{
    grid-template-columns: 1fr;
    gap: clamp(28px, 5vw, 48px);
    text-align: center;
  }
  /* Image-led sections: image first, text second on mobile */
  .two-col:has(.image-col) .image-col{ order: 1 !important; }
  .two-col:has(.image-col) .text-col{ order: 2 !important; }
  .two-col .text-col h2{ text-align: center; margin: 0 auto; max-width: 22ch; }
  .two-col .text-col .lede{ text-align: center; margin: 22px auto 0; }
  .two-col .text-col .h3-sub{ text-align: center; margin: 18px auto 0; }
  .two-col .text-col .text-content{
    text-align: left;
    max-width: 56ch;
    margin-left: auto;
    margin-right: auto;
  }
  .text-col .ten-coda{
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 30ch;
  }
  .placeholder{ max-width: 480px; margin: 0 auto; }
  .image-col{ max-width: 480px; margin-left: auto; margin-right: auto; }
  .form-card{ max-width: 480px; margin: 0 auto; }
  .form-card form.register{ text-align: left; }
  .followups.cards{ grid-template-columns: 1fr; }
  .steps.in-col .step{ text-align: left; }
}
@media (max-width: 760px){
  .three{ grid-template-columns: 1fr; gap: 40px; }
  .followups,
  .followups.four{ grid-template-columns: 1fr; gap: 32px; }
  .step{ grid-template-columns: 48px 1fr; gap: 16px; }
  .nav-meta{ font-size: 12px; }
}
@media (max-width: 540px){
  .nav-meta{ display: none; }
}
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *, *::before, *::after{
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
