/* ==========================================================================
   Inner Vin — Confidential Online Counselling
   Palette: deep navy ground, gold hairlines and accents.
   ========================================================================== */

:root {
  /* Ground */
  --navy-950: #050D1B;   /* footer, deepest */
  --navy-900: #0A1628;   /* page background */
  --navy-850: #0C1B31;   /* alternating sections */
  --navy-800: #102340;   /* cards and panels */
  --navy-700: #16304F;   /* raised / hover */

  /* Gold */
  --gold:       #D9B166;
  --gold-light: #ECD199;
  --gold-deep:  #B8914A;

  --gold-line:   rgba(217, 177, 102, .26);
  --gold-line-2: rgba(217, 177, 102, .14);
  --gold-glow:   rgba(217, 177, 102, .10);

  /* Type */
  --text:       #E7E4DC;   /* body copy */
  --text-soft:  #C3C8D2;   /* secondary copy */
  --text-muted: #9AA5B6;   /* captions, labels */

  --radius:    5px;
  --radius-sm: 3px;

  --shadow: 0 24px 48px -28px rgba(0, 0, 0, .9);

  --display: "Cinzel", Georgia, "Times New Roman", serif;
  --serif:   "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --wrap: 1120px;
  --gutter: 24px;
}

/* Reset ------------------------------------------------------------------ */

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  background: var(--navy-900);
}

body {
  margin: 0;
  background: var(--navy-900);
  color: var(--text);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3 {
  margin: 0 0 .6em;
  color: var(--gold-light);
  text-wrap: balance;
}

h1, h2 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.16;
  letter-spacing: .005em;
}

/* Cormorant defaults to old-style figures, which make "60 minutes" and the
   step numbers read as lowercase. Force lining figures wherever it is used. */
h1, h2, .statement, .pull, .spec dd, .schedule h3, .faq summary,
.cta-email, .footer-tag, .step::before {
  font-variant-numeric: lining-nums;
  font-feature-settings: "lnum" 1;
}

h1 { font-size: clamp(2.6rem, 6vw, 4.1rem); }
h2 { font-size: clamp(1.95rem, 3.9vw, 2.75rem); }

h3 {
  font-family: var(--sans);
  font-size: 1.06rem;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: .005em;
  color: var(--text);
}

p { margin: 0 0 1.05em; }
p:last-child { margin-bottom: 0; }

a {
  color: var(--gold);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color .18s ease;
}
a:hover { color: var(--gold-light); }

ul, ol { margin: 0 0 1.05em; padding-left: 1.25em; }
li { margin-bottom: .4em; }
li:last-child { margin-bottom: 0; }

::selection { background: rgba(217, 177, 102, .28); color: #fff; }

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

/* Utilities -------------------------------------------------------------- */

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.narrow { max-width: 760px; }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 12px; top: -60px;
  z-index: 200;
  background: var(--gold);
  color: var(--navy-950);
  padding: 10px 16px;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  font-size: .92rem;
  font-weight: 500;
  text-decoration: none;
  transition: top .18s ease;
}
.skip-link:focus { top: 0; color: var(--navy-950); }

/* Letterspaced display caps — the wordmark voice of the brand. */
.eyebrow {
  font-family: var(--display);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1.1em;
}

/* Buttons ---------------------------------------------------------------- */

.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: .93rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: .03em;
  padding: 16px 34px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease,
              box-shadow .2s ease, transform .18s ease;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  color: #17223A;
  border-color: var(--gold-light);
  box-shadow: 0 0 0 rgba(217, 177, 102, 0);
}
.btn-primary:hover {
  color: #17223A;
  box-shadow: 0 6px 26px -8px rgba(217, 177, 102, .55);
}

.btn-outline {
  background: transparent;
  color: var(--gold-light);
  border-color: var(--gold-line);
}
.btn-outline:hover {
  color: var(--gold-light);
  border-color: var(--gold);
  background: var(--gold-glow);
}

.btn-sm { padding: 11px 22px; font-size: .84rem; }

/* Header ----------------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 22, 40, .88);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--gold-line-2);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 80px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: inherit;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 40px; height: 40px;
  flex: none;
  border: 1px solid var(--gold-line);
  border-radius: 2px;
  background: linear-gradient(160deg, rgba(217, 177, 102, .12), transparent 70%);
  font-family: var(--display);
  font-size: .84rem;
  font-weight: 600;
  letter-spacing: .06em;
  color: var(--gold);
  transition: border-color .2s ease;
}
.brand:hover .brand-mark { border-color: var(--gold); }

.brand-text { display: flex; flex-direction: column; line-height: 1.3; }

.brand-name {
  font-family: var(--display);
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: .26em;
  color: var(--gold-light);
}

.brand-tag {
  font-size: .64rem;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

/* Never let the pill be squeezed by the link list. */
.nav-cta { flex: none; white-space: nowrap; }

.primary-nav ul {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.primary-nav li { margin: 0; }

/* Scoped to the list so the CTA button keeps its own padding and colours. */
.primary-nav ul a {
  font-size: .84rem;
  letter-spacing: .06em;
  color: var(--text-soft);
  text-decoration: none;
  padding: 4px 0;
  border-bottom: 1px solid transparent;
  white-space: nowrap;
}
.primary-nav ul a:hover { color: var(--gold-light); border-bottom-color: var(--gold); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  padding: 0 10px;
  background: none;
  border: 1px solid var(--gold-line);
  border-radius: 2px;
  cursor: pointer;
}

.nav-toggle-bar {
  display: block;
  height: 1.5px;
  background: var(--gold);
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Sections --------------------------------------------------------------- */

section[id] { scroll-margin-top: 96px; }

.section { padding: clamp(70px, 8.5vw, 116px) 0; }
.section-alt {
  background: var(--navy-850);
  border-block: 1px solid var(--gold-line-2);
}

.section-head { max-width: 730px; margin-bottom: clamp(40px, 5vw, 58px); }
.section-head p:last-child { margin-bottom: 0; }

/* Fading gold hairline beneath every section heading. */
.section-head::after {
  content: "";
  display: block;
  height: 1px;
  max-width: 340px;
  margin-top: 30px;
  background: linear-gradient(90deg, var(--gold), var(--gold-line-2) 55%, transparent);
}

.section-intro .narrow > h2 { margin-bottom: .7em; }
.section-intro p { font-size: 1.08rem; color: var(--text-soft); }

.statement {
  font-family: var(--serif);
  font-size: 1.55rem;
  line-height: 1.4;
  color: var(--gold-light);
  margin-bottom: 1em;
}

.pull {
  margin-top: 1.7em;
  padding-left: 24px;
  border-left: 1px solid var(--gold);
  font-family: var(--serif);
  font-size: 1.32rem;
  line-height: 1.5;
  font-style: italic;
  color: var(--gold-light);
}

.marker-list { list-style: none; padding-left: 0; }
.marker-list li { position: relative; padding-left: 24px; color: var(--text-soft); }

/* Small gold diamond, echoing the wordmark ornament. */
.marker-list li::before {
  content: "";
  position: absolute;
  left: 3px; top: .78em;
  width: 5px; height: 5px;
  background: var(--gold);
  transform: rotate(45deg);
}

.note { font-size: .9rem; color: var(--text-muted); }

/* Hero ------------------------------------------------------------------- */

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(58px, 8vw, 92px) 0 clamp(64px, 9vw, 104px);
  background:
    radial-gradient(52% 46% at 50% 6%, rgba(217, 177, 102, .13), transparent 68%),
    radial-gradient(70% 60% at 50% 100%, rgba(22, 48, 79, .55), transparent 70%),
    var(--navy-900);
}

/* Thin ruled frame with diamond finials, as on the brand plate. */
.hero-frame {
  position: absolute;
  inset: clamp(16px, 2.6vw, 34px);
  border: 1px solid var(--gold-line);
  pointer-events: none;
}
.hero-frame::before,
.hero-frame::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 9px; height: 9px;
  margin-left: -4.5px;
  background: var(--navy-900);
  border: 1px solid var(--gold);
  transform: rotate(45deg);
}
.hero-frame::before { top: -5px; }
.hero-frame::after { bottom: -5px; }

.hero-inner {
  position: relative;
  max-width: 800px;
  margin-inline: auto;
  text-align: center;
}

.emblem {
  width: clamp(120px, 17vw, 168px);
  height: auto;
  margin: 0 auto clamp(24px, 3vw, 36px);
  display: block;
  color: var(--gold);
}

.hero h1 {
  margin-bottom: .4em;
  font-weight: 400;
}

.lede {
  font-size: clamp(1.05rem, 1.75vw, 1.2rem);
  color: var(--text-soft);
  max-width: 47ch;
  margin-inline: auto;
  margin-bottom: 1.1em;
}

.hero-line {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.2rem, 2.1vw, 1.45rem);
  color: var(--gold-light);
  margin-bottom: 2.1em;
}

.hero-actions { margin: 0 0 1.5em; }

.hero-meta {
  font-size: .82rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0;
}

/* Cards ------------------------------------------------------------------ */

.cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.card {
  position: relative;
  background: linear-gradient(180deg, var(--navy-800), var(--navy-850));
  border: 1px solid var(--gold-line-2);
  border-radius: var(--radius);
  padding: 34px 32px;
  box-shadow: var(--shadow);
  transition: border-color .25s ease, transform .25s ease;
}
.card:hover { border-color: var(--gold-line); transform: translateY(-2px); }

.card-icon {
  width: 46px; height: 46px;
  margin-bottom: 20px;
  color: var(--gold);
}

.card h3 {
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: .9em;
  padding-bottom: 1em;
  border-bottom: 1px solid var(--gold-line-2);
}

.card-intro {
  font-size: .84rem;
  letter-spacing: .04em;
  color: var(--text-muted);
  margin-bottom: .9em;
}

.card ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  font-size: .95rem;
  color: var(--text-soft);
}
.card li { position: relative; padding-left: 22px; margin-bottom: .55em; }
.card li::before {
  content: "";
  position: absolute;
  left: 0; top: .72em;
  width: 11px; height: 1px;
  background: var(--gold);
  opacity: .8;
}

/* About ------------------------------------------------------------------ */

.credential-line {
  font-family: var(--display);
  font-size: .8rem;
  letter-spacing: .2em;
  color: var(--gold);
  text-transform: uppercase;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
  gap: clamp(34px, 5vw, 62px);
  align-items: start;
}

.about-body p { color: var(--text-soft); }

.about-aside {
  position: sticky;
  top: 108px;
  background: linear-gradient(180deg, var(--navy-800), var(--navy-850));
  border: 1px solid var(--gold-line-2);
  border-radius: var(--radius);
  padding: 34px 32px;
}

.about-aside h3 {
  font-family: var(--display);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.7em;
}

.facts { margin: 0; }

.fact { padding-bottom: 20px; margin-bottom: 20px; border-bottom: 1px solid var(--gold-line-2); }
.fact:last-child { padding-bottom: 0; margin-bottom: 0; border-bottom: 0; }

.fact dt {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .6em;
}

.fact dd {
  margin: 0;
  font-size: .92rem;
  line-height: 1.6;
  color: var(--text-soft);
}

/* Session details -------------------------------------------------------- */

.spec-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 0 0 clamp(46px, 6vw, 66px);
  background: var(--gold-line-2);
  border: 1px solid var(--gold-line-2);
  border-radius: var(--radius);
  overflow: hidden;
}

.spec {
  background: var(--navy-850);
  padding: 26px 28px;
}

/* Payment fills the last row so no empty cell is left showing. */
.spec-wide { grid-column: 1 / -1; }

.spec dt {
  font-family: var(--display);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .7em;
}

.spec dd {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.28rem;
  line-height: 1.4;
  color: var(--text);
}

.schedule h3 {
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--gold-light);
  margin-bottom: 1em;
}

.table-scroll {
  overflow-x: auto;
  border: 1px solid var(--gold-line-2);
  border-radius: var(--radius);
  background: var(--navy-850);
  -webkit-overflow-scrolling: touch;
}

table {
  width: 100%;
  min-width: 480px;
  border-collapse: collapse;
  font-size: .96rem;
}

/* Sans here, not Cinzel: its "1" is easily misread as "I" in "SESSION 1". */
thead th {
  text-align: left;
  font-family: var(--sans);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(217, 177, 102, .05);
  padding: 17px 26px;
  border-bottom: 1px solid var(--gold-line-2);
}

tbody th {
  text-align: left;
  font-weight: 600;
  color: var(--text);
}

tbody th, tbody td {
  padding: 18px 26px;
  border-bottom: 1px solid var(--gold-line-2);
  color: var(--text-soft);
  white-space: nowrap;
}

tbody tr:last-child th, tbody tr:last-child td { border-bottom: 0; }

.schedule .note { margin-top: 16px; }

/* Steps ------------------------------------------------------------------ */

.steps {
  list-style: none;
  counter-reset: step;
  padding: 0;
  margin: 0 0 44px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.step {
  counter-increment: step;
  position: relative;
  background: linear-gradient(180deg, var(--navy-800), var(--navy-850));
  border: 1px solid var(--gold-line-2);
  border-radius: var(--radius);
  padding: 34px 32px;
  margin: 0;
  box-shadow: var(--shadow);
}

.step::before {
  content: counter(step);
  display: grid;
  place-items: center;
  width: 40px; height: 40px;
  margin-bottom: 20px;
  border: 1px solid var(--gold-line);
  border-radius: 50%;
  background: var(--gold-glow);
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
}

.step h3 { margin-bottom: .7em; }

.step p, .step ul {
  font-size: .95rem;
  color: var(--text-soft);
}

.step ul { list-style: none; padding-left: 0; margin-bottom: 0; }
.step li { position: relative; padding-left: 22px; margin-bottom: .5em; }
.step li::before {
  content: "";
  position: absolute;
  left: 0; top: .72em;
  width: 11px; height: 1px;
  background: var(--gold);
  opacity: .8;
}

/* Callouts --------------------------------------------------------------- */

.callout {
  border-radius: var(--radius);
  padding: 32px 34px;
  background: linear-gradient(180deg, rgba(217, 177, 102, .07), rgba(217, 177, 102, .02));
  border: 1px solid var(--gold-line);
  border-left-width: 2px;
  border-left-color: var(--gold);
}

.callout h2, .callout h3 { margin-bottom: .6em; }

.callout-important h3 {
  font-family: var(--display);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
}
.callout p { color: var(--text-soft); }

.callout-notice h2 { font-size: 1.85rem; }
.callout-notice p { font-size: .95rem; }

.center-actions { text-align: center; margin: 40px 0 0; }

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

.cta {
  position: relative;
  text-align: center;
  background:
    radial-gradient(60% 100% at 50% 50%, rgba(217, 177, 102, .10), transparent 70%),
    var(--navy-850);
  border-block: 1px solid var(--gold-line);
}

.cta h2 { margin-bottom: .6em; }
.cta p { color: var(--text-soft); }

.cta-email {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3.6vw, 2.4rem);
  margin: .55em 0 1.25em;
}
.cta-email a {
  color: var(--gold-light);
  text-decoration-color: var(--gold-line);
  text-underline-offset: 7px;
}
.cta-email a:hover { text-decoration-color: var(--gold); }

.cta .hero-actions { margin-bottom: 1.7em; }

.cta-note {
  font-size: .84rem;
  letter-spacing: .04em;
  color: var(--text-muted);
  margin: 0;
}

/* FAQ -------------------------------------------------------------------- */

.faq-list { border-top: 1px solid var(--gold-line-2); }

.faq { border-bottom: 1px solid var(--gold-line-2); }

.faq summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 22px;
  list-style: none;
  cursor: pointer;
  padding: 24px 4px;
  font-family: var(--serif);
  font-size: 1.32rem;
  line-height: 1.4;
  color: var(--text);
  transition: color .18s ease;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--gold-light); }

.faq summary::after {
  content: "";
  flex: none;
  width: 10px; height: 10px;
  margin-top: 9px;
  border-right: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  transform: rotate(45deg);
  transition: transform .22s ease;
}
.faq[open] summary { color: var(--gold-light); }
.faq[open] summary::after { transform: rotate(-135deg); }

.faq-body {
  padding: 0 4px 26px;
  max-width: 64ch;
}
.faq-body p { font-size: .97rem; color: var(--text-soft); }

/* Policies --------------------------------------------------------------- */

.policy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(34px, 5vw, 58px);
}

.policy h2 { font-size: 1.9rem; margin-bottom: .55em; }
.policy p { font-size: .96rem; color: var(--text-soft); }

/* Footer ----------------------------------------------------------------- */

.site-footer {
  background: var(--navy-950);
  border-top: 1px solid var(--gold-line);
  color: var(--text-soft);
  padding: clamp(52px, 6vw, 74px) 0 30px;
  font-size: .92rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 38px;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--gold-line-2);
}

.footer-name {
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: .3em;
  color: var(--gold-light);
  margin-bottom: .5em;
}

.footer-tag {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 1em;
}

.footer-meta {
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1em;
}

.footer-email a {
  color: var(--text);
  text-decoration-color: var(--gold-line);
  text-underline-offset: 5px;
}
.footer-email a:hover { color: var(--gold-light); text-decoration-color: var(--gold); }

.footer-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
}
.footer-links li { margin: 0; }

.footer-links a {
  font-size: .78rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--text-soft);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
.footer-links a:hover { color: var(--gold-light); border-bottom-color: var(--gold); }

.footer-base {
  padding-top: 26px;
  font-size: .78rem;
  letter-spacing: .08em;
  color: var(--text-muted);
}
.footer-base p { margin: 0; }

/* Responsive ------------------------------------------------------------- */

@media (max-width: 960px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-aside { position: static; }
  .spec-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 1000px) {
  .nav-toggle { display: flex; }

  .primary-nav {
    display: none;
    position: absolute;
    left: 0; right: 0;
    top: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px var(--gutter) 24px;
    background: var(--navy-900);
    border-bottom: 1px solid var(--gold-line);
    box-shadow: 0 20px 34px -22px rgba(0, 0, 0, .9);
  }
  .primary-nav.is-open { display: flex; }

  .primary-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .primary-nav ul a {
    display: block;
    padding: 15px 2px;
    border-bottom: 1px solid var(--gold-line-2);
    font-size: .95rem;
    letter-spacing: .1em;
  }
  .primary-nav ul a:hover { border-bottom-color: var(--gold-line-2); }

  .nav-cta { margin-top: 20px; text-align: center; }

  .header-inner { position: relative; }
}

@media (max-width: 680px) {
  .cards, .steps { grid-template-columns: 1fr; }
  .spec-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  :root { --gutter: 20px; }

  .btn { display: block; width: 100%; text-align: center; }
  .btn-sm { display: inline-block; width: auto; }
  .nav-cta { display: block; width: 100%; }

  .card, .step, .spec, .callout, .about-aside { padding: 26px 22px; }
  .brand-tag { display: none; }
  .brand-name { letter-spacing: .2em; }
  .hero-frame { display: none; }
}

/* Motion / print --------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}

/* Ink-friendly: the navy ground would otherwise flood the page. */
@media print {
  .site-header, .skip-link, .nav-toggle, .hero-frame, .emblem, .card-icon { display: none; }

  html, body { background: #fff; color: #111; font-size: 12pt; }
  h1, h2, h3, .statement, .pull, .eyebrow, .credential-line,
  .spec dt, .fact dt, thead th, .footer-meta, .footer-name { color: #111; }
  p, li, dd, .card ul, .step p, .step ul, .faq-body p { color: #222; }

  .section { padding: 18px 0; }
  .section-alt, .cta, .site-footer, .card, .step, .spec, .callout,
  .about-aside, .table-scroll, .hero { background: #fff; border-color: #bbb; }
  .card, .step, .callout, .about-aside { box-shadow: none; }
  .faq-body { display: block !important; }
  a { color: #111; }
}
