/* ═══════════════════════════════════════════════════════════════
   My Birth Codex™ — Shared Design System
   site.css v2.0
   Typography: Didot (all text layers) · Inter (UI/numerical)
   Master Color Spec: Archival Teal #00697A · Ivory #F5F2EB · Charcoal #333333 · Soft Gold #C9A646
   Forbidden: #FFFFFF as page bg · #000000 · aqua/turquoise · pastels · neons
═══════════════════════════════════════════════════════════════ */

/* ── Design Tokens ───────────────────────────────────────────── */
:root {
  /* ── Brand Palette — Master Color Specification ─────────────
     Ivory    #F5F2EB  Dominant background (70–80%) — warm archival cotton, NEVER pure white
     Teal     #00697A  Primary anchor — interactive, headings on dark (15–20%)
     Charcoal #333333  Primary ink / text (10–15%)
     Gold     #C9A646  Microaccents only — seals, hairlines, certs (≤5%)
     Forbidden: #FFFFFF as page bg · #000000 · rgba(78,196,204) aqua · pastels
  ─────────────────────────────────────────────────────────── */
  --c-primary:    #00697A;   /* Archival Teal — Pantone 7716 C */
  --c-deep:       #004D5C;   /* Deep Teal — dark hero / section anchor */
  --c-charcoal:   #333333;   /* Primary text, archival ink */
  --c-gold:       #C9A646;   /* Soft Gold — seals, borders, microlines (≤5%) */
  --c-ink:        #333333;   /* Alias: charcoal */
  --c-accent:     #00697A;   /* Teal alias for interactive states */

  /* Extended ink scale — warm, never neutral grey */
  --c-ink-deep:   #2C2926;   /* Near-black archival ink */
  --c-ink-mid:    #4A4540;   /* Body text, warm charcoal */
  --c-ink-faint:  #7A756E;   /* Secondary text, captions, annotations */
  --c-gold-line:  rgba(201,166,70,.35); /* Gold hairline borders/dividers */

  /* Ivory backgrounds — inherited from archival cotton paper */
  --c-ivory:      #F5F2EB;   /* Dominant page background (70–80%) */
  --c-ivory-dk:   #EDE9DF;   /* Alt section / slightly deeper ivory */
  --c-white:      #FFFFFF;   /* Explicit white — cards, overlays (NOT page bg) */
  --c-pale:       #F5F2EB;   /* Alias: ivory */

  /* Neutral grey scale — used for UI structure only, not brand color */
  --c-grey-50:    #F9FAFB;
  --c-grey-100:   #F3F4F6;
  --c-grey-200:   #E5E7EB;
  --c-grey-300:   #D1D5DB;
  --c-grey-400:   #9CA3AF;
  --c-grey-500:   #6B7280;
  --c-grey-600:   #4B5563;
  --c-grey-700:   #374151;
  --c-grey-800:   #1F2937;
  --c-grey-900:   #111827;
  --c-black:      #0A0B0D;

  /* ── Typography — Archival Hierarchy (6 Layers) ─────────────
     I   Monumental  Didot           Identity, hero headlines, baby name
     II  Heading     Didot           Section titles, small-caps labels
     III Body        Didot           Narrative copy, core data
     IV  Numerical   Inter               Dates, measurements, coordinates
     V   Emotional   Didot Italic    Affirmations, soft narrative lines
     VI  Micro       Didot 6–7pt     Annotations, harmonic data, microlines
  ─────────────────────────────────────────────────────────── */
  --f-monumental:    'Didot', 'Didot LT STD', 'Bodoni MT', serif;
  --f-archival-body: 'Cormorant Garamond', 'Cormorant', Georgia, serif;
  --f-emotional:     'Cormorant Garamond', 'Cormorant', Georgia, serif;
  --f-sans:          'Inter', system-ui, -apple-system, sans-serif;
  --f-serif:         'Didot', 'Didot LT STD', 'Bodoni MT', serif; /* legacy alias */
  --f-mono:          'Courier New', Courier, monospace;

  /* Radii */
  --r-xs:  2px;
  --r-sm:  4px;
  --r-md:  8px;
  --r-lg:  12px;
  --r-xl:  20px;

  /* Shadows */
  --shadow-xs:   0 1px 2px rgba(0,0,0,.06);
  --shadow-sm:   0 1px 3px rgba(0,0,0,.08), 0 4px 12px rgba(0,0,0,.05);
  --shadow-md:   0 2px 6px rgba(0,0,0,.08), 0 8px 24px rgba(0,0,0,.08);
  --shadow-lg:   0 4px 12px rgba(0,0,0,.10), 0 16px 40px rgba(0,0,0,.10);

  /* Motion */
  --t-fast:   150ms ease;
  --t-base:   200ms ease;
  --t-slow:   300ms ease;

  /* Layout */
  --max-w:    1200px;
  --nav-h:    68px;
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--f-archival-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--c-ink-mid);
  background: var(--c-ivory);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, select, textarea { font-family: inherit; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

/* ── Layout ─────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 768px) { .container { padding: 0 40px; } }

.section         { padding: 96px 0; }
.section--sm     { padding: 64px 0; }
.section--lg     { padding: 128px 0; }
.section--alt    { background: var(--c-ivory-dk); }
.section--pale   { background: var(--c-ivory); }
.section--dark   { background: var(--c-deep); color: var(--c-white); }
.section--black  { background: var(--c-black); color: var(--c-white); }

.rule { height: 1px; background: linear-gradient(90deg, transparent, var(--c-gold-line), transparent); }
.rule--dark { background: linear-gradient(90deg, transparent, rgba(255,255,255,.10), transparent); }

/* ── Typography ─────────────────────────────────────────────── */
.eyebrow {
  font-family: var(--f-archival-body);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  font-variant-caps: small-caps;
  color: var(--c-primary);
  display: block;
  margin-bottom: 16px;
}
.section--dark .eyebrow,
.section--black .eyebrow { color: var(--c-accent); }

.h-hero {
  font-family: var(--f-monumental);
  font-size: clamp(44px, 6vw, 80px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.h-display {
  font-family: var(--f-monumental);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.02em;
}
.h-section {
  font-family: var(--f-monumental);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: -0.015em;
}
.h-card {
  font-family: var(--f-archival-body);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.h-sm {
  font-family: var(--f-archival-body);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
}

.body-xl  { font-family: var(--f-archival-body); font-size: 20px; line-height: 1.65; color: var(--c-ink-mid); font-weight: 400; }
.body-lg  { font-family: var(--f-archival-body); font-size: 18px; line-height: 1.70; color: var(--c-ink-mid); font-weight: 400; }
.body-md  { font-family: var(--f-archival-body); font-size: 16px; line-height: 1.65; color: var(--c-ink-faint); font-weight: 400; }
.body-sm  { font-family: var(--f-archival-body); font-size: 14px; line-height: 1.60; color: var(--c-ink-faint); font-weight: 400; }
.body-xs  { font-family: var(--f-archival-body); font-size: 12px; line-height: 1.55; color: rgba(122,117,110,.75); font-weight: 400; }

.section--dark .body-xl,
.section--dark .body-lg,
.section--dark .body-md  { color: rgba(255,255,255,.70); }
.section--dark .body-sm,
.section--dark .body-xs  { color: rgba(255,255,255,.50); }
.section--black .body-lg { color: rgba(255,255,255,.65); }

.text-white  { color: var(--c-white) !important; }
.text-accent { color: var(--c-accent) !important; }
.text-primary{ color: var(--c-primary) !important; }
.text-center { text-align: center; }
.text-left   { text-align: left; }

/* ── Section Header Blocks ──────────────────────────────────── */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 72px;
}
.section-header--left {
  text-align: left;
  max-width: 600px;
  margin: 0 0 64px;
}
.section-header .body-lg { margin-top: 18px; }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--f-monumental, 'GFS Didot', 'Didot LT STD', serif);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1;
  padding: 14px 28px;
  border-radius: 0;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition:
    background var(--t-base),
    color var(--t-base),
    border-color var(--t-base),
    box-shadow var(--t-base),
    transform var(--t-fast);
  white-space: nowrap;
  text-decoration: none;
}
.btn:focus-visible {
  outline: 3px solid var(--c-accent);
  outline-offset: 3px;
}
.btn svg { flex-shrink: 0; }

/* Sizes */
.btn-sm  { padding: 10px 20px; font-size: 13px; }
.btn-lg  { padding: 18px 36px; font-size: 15px; }
.btn-xl  { padding: 20px 40px; font-size: 16px; }
.btn-full { width: 100%; }

/* Variants */
.btn-primary {
  background: var(--c-primary);
  color: var(--c-white);
  border-color: var(--c-primary);
}
.btn-primary:hover {
  background: var(--c-deep);
  border-color: var(--c-deep);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0,105,122,.30);
}

.btn-deep {
  background: var(--c-deep);
  color: var(--c-white);
  border-color: var(--c-deep);
}
.btn-deep:hover {
  background: var(--c-deep, #004D5C);
  border-color: var(--c-deep, #004D5C);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0,77,92,.35);
}

.btn-outline {
  background: transparent;
  color: var(--c-primary);
  border-color: var(--c-primary);
}
.btn-outline:hover {
  background: var(--c-pale);
  transform: translateY(-1px);
}

.btn-outline-white {
  background: transparent;
  color: var(--c-white);
  border-color: rgba(255,255,255,.45);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.70);
}

.btn-ghost {
  background: transparent;
  color: var(--c-grey-700);
  border-color: var(--c-grey-300);
}
.btn-ghost:hover {
  background: var(--c-grey-50);
  border-color: var(--c-grey-400);
}

/* ── Navigation ─────────────────────────────────────────────── */
.nav > .container {
  max-width: none;
  padding: 0 28px;
}
.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  height: var(--nav-h);
  /* Default: white — transitions to dark teal on scroll via .nav--scrolled */
  background: #FFFFFF;
  border-bottom: 1px solid rgba(0,77,92,.10);
  transition: background 0.35s ease, border-color 0.35s ease;
}
.nav__inner {
  display: flex;
  align-items: center;
  height: var(--nav-h);
  position: relative;
}
.nav__brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}
.nav__logo {
  height: 33px;
  width: auto;
  display: block;
  /* Default: natural teal logo */
  filter: none;
  transition: filter 0.35s ease;
}
.nav__logo--mark {
  height: 33px;
  width: auto;
  object-fit: contain;
}
/* Fallback text */
.nav__brand-name {
  font-family: var(--f-serif);
  font-size: 17px;
  font-weight: 600;
  color: #00697A;
  letter-spacing: 0.01em;
  line-height: 1;
  transition: color 0.35s ease;
}
.nav__links {
  display: none;
  align-items: center;
  gap: 28px;
  position: absolute;
  left: 50%;
  transform: translateX(-60%);
  white-space: nowrap;
}
@media (min-width: 900px) { .nav__links { display: flex; } }
.nav__link {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  font-weight: 700;
  /* Default: teal links */
  color: #00697A;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.35s ease;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
}
.nav__link:hover  { color: #004D5C; }
.nav__link.active { color: #004D5C; }
.nav__right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  flex-shrink: 0;
  margin-left: auto;
}
/* BEGIN PROVENANCE — outline on dark, solid on white */
.btn-nav-provenance {
  display: inline-flex;
  align-items: center;
  height: 36px;
  padding: 0 16px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  /* Default: solid dark teal */
  color: #FFFFFF;
  background: #004D5C;
  border: 1px solid #004D5C;
  border-radius: 0;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.35s ease, border-color 0.35s ease, color 0.35s ease;
}
.btn-nav-provenance:hover { background: #003B47; border-color: #003B47; color: #FFFFFF; }
/* LOGIN | SIGNUP */
.nav__auth {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  font-weight: 600;
  color: #00697A;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.35s ease;
}
.nav__auth:hover { color: #004D5C; }
/* Search icon */
.nav__search-btn {
  display: flex;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  color: #00697A;
  padding: 4px;
  transition: color 0.35s ease;
}
.nav__search-btn:hover { color: #004D5C; }

/* Mobile menu toggle */
.nav__mobile-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(0,105,122,.06);
  border: 1px solid rgba(0,105,122,.18);
  border-radius: 0;
  cursor: pointer;
  color: #00697A;
  transition: background 0.35s ease, border-color 0.35s ease, color 0.35s ease;
}
@media (min-width: 900px) { .nav__mobile-toggle { display: none; } }

/* ── Scrolled state — dark teal nav ────────────────────────── */
.nav--scrolled {
  background: rgba(0,77,92,.97);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav--scrolled .nav__logo       { filter: brightness(0) invert(1); }
.nav--scrolled .nav__brand-name { color: #fff; }
.nav--scrolled .nav__link       { color: rgba(255,255,255,.80); }
.nav--scrolled .nav__link:hover,
.nav--scrolled .nav__link.active { color: #fff; }
.nav--scrolled .nav__auth       { color: rgba(255,255,255,.80); }
.nav--scrolled .nav__auth:hover  { color: #fff; }
.nav--scrolled .nav__search-btn  { color: rgba(255,255,255,.80); }
.nav--scrolled .nav__search-btn:hover { color: #fff; }
.nav--scrolled .btn-nav-provenance {
  background: transparent;
  border-color: rgba(255,255,255,.70);
  color: #FFFFFF;
}
.nav--scrolled .btn-nav-provenance:hover { background: rgba(255,255,255,.10); border-color: #fff; }
.nav--scrolled .nav__mobile-toggle {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.15);
  color: #fff;
}

/* Sovereign — always dark (no scroll color change) */
.nav--sovereign {
  background: rgba(0,77,92,.97) !important;
  border-bottom: 1px solid rgba(255,255,255,.08) !important;
}
.nav--sovereign .nav__logo { filter: brightness(0) invert(1) !important; }
.nav--sovereign .nav__link { color: rgba(255,255,255,.65); }
.nav--sovereign .nav__link:hover,
.nav--sovereign .nav__link.active { color: #fff; }
.nav--sovereign .nav__auth { color: rgba(255,255,255,.65); }
.nav--sovereign .nav__auth:hover { color: #fff; }
.nav--sovereign .nav__search-btn { color: rgba(255,255,255,.65); }
.nav--sovereign .nav__search-btn:hover { color: #fff; }
.nav--sovereign .nav__mobile-toggle { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.12); color: #fff; }

/* Legacy ghost button — kept for any remaining uses */
.btn-ghost-nav {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 32px;
  padding: 0 14px;
  font-family: var(--f-sans, 'Inter', sans-serif);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #00697A;
  background: transparent;
  border: 1px solid rgba(0,105,122,.30);
  border-radius: 0;
  cursor: pointer;
  text-decoration: none;
  transition: color 0.18s ease, border-color 0.18s ease, background 0.18s ease;
  white-space: nowrap;
}
.btn-ghost-nav:hover {
  color: #004D5C;
  border-color: rgba(0,77,92,.55);
  background: rgba(0,105,122,.05);
}
.btn-ghost-nav__icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  opacity: 0.70;
}

/* ═══════════════════════════════════════════════════════════════
   Claim Your Codex — Modal
   ═══════════════════════════════════════════════════════════════ */

.claim-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.claim-modal.is-open {
  display: flex;
}

/* Overlay */
.claim-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(12,10,8,.78);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.26s ease;
}
.claim-modal.is-visible .claim-modal__overlay {
  opacity: 1;
}

/* Card */
.claim-modal__card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 480px;
  background: var(--c-ivory, #F5F2EB);
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 32px 96px rgba(0,0,0,.50), 0 0 0 1px rgba(201,166,70,.15);
  transform: translateY(20px) scale(0.97);
  opacity: 0;
  transition: transform 0.28s cubic-bezier(0.22,1,0.36,1), opacity 0.26s ease;
}
.claim-modal.is-visible .claim-modal__card {
  transform: translateY(0) scale(1);
  opacity: 1;
}

/* Header bar */
.claim-modal__header {
  background: var(--c-primary, #00697A);
  padding: 22px 28px 20px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.claim-modal__header-text {}
.claim-modal__eyebrow {
  font-family: var(--f-archival-body, 'Cormorant Garamond', Georgia, serif);
  font-size: 9.5px;
  font-weight: 400;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: rgba(255,255,255,.60);
  display: block;
  margin-bottom: 6px;
}
.claim-modal__title {
  font-family: var(--f-monumental, 'Didot', 'Didot LT STD', serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--c-white, #fff);
  line-height: 1.2;
  margin: 0;
}

/* Close button */
.claim-modal__close {
  flex-shrink: 0;
  width: 30px;
  height: 33px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  cursor: pointer;
  color: rgba(255,255,255,.80);
  transition: background 0.15s ease, color 0.15s ease;
  margin-top: 2px;
}
.claim-modal__close:hover {
  background: rgba(255,255,255,.22);
  color: var(--c-white, #fff);
}
.claim-modal__close svg {
  width: 14px;
  height: 14px;
  pointer-events: none;
}

/* Body */
.claim-modal__body {
  padding: 28px 28px 32px;
}

/* Form error banner */
.claim-modal__form-error {
  display: none;
  background: rgba(92,52,52,.08);
  border: 1px solid rgba(92,52,52,.25);
  border-radius: 0;
  padding: 10px 14px;
  font-size: 13px;
  color: #5C3434;
  margin-bottom: 20px;
}

/* Instruction line */
.claim-modal__instruction {
  font-family: var(--f-archival-body, 'Cormorant Garamond', Georgia, serif);
  font-size: 15px;
  color: var(--c-ink-mid, #4A4540);
  line-height: 1.55;
  margin: 0 0 22px;
}

/* Field */
.claim-modal__field {
  margin-bottom: 18px;
}
.claim-modal__label {
  display: block;
  font-family: var(--f-sans, 'Inter', sans-serif);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--c-ink-deep, #2C2926);
  margin-bottom: 7px;
}
.claim-modal__label span {
  color: var(--c-primary, #00697A);
  margin-left: 2px;
}
.claim-modal__input {
  display: block;
  width: 100%;
  height: 44px;
  padding: 0 14px;
  font-family: var(--f-sans, 'Inter', sans-serif);
  font-size: 14px;
  font-weight: 500;
  color: var(--c-ink-deep, #2C2926);
  background: var(--c-ivory, #F5F2EB);
  border: 1.5px solid rgba(0,0,0,.16);
  border-radius: 0;
  outline: none;
  transition: border-color 0.16s ease, box-shadow 0.16s ease;
  box-sizing: border-box;
}
.claim-modal__input::placeholder {
  color: rgba(0,0,0,.28);
  font-weight: 400;
}
.claim-modal__input:focus {
  border-color: var(--c-primary, #00697A);
  box-shadow: 0 0 0 3px rgba(0,105,122,.14);
}
.claim-modal__input[aria-invalid="true"] {
  border-color: rgba(92,52,52,.50);
  box-shadow: 0 0 0 3px rgba(92,52,52,.08);
}

/* ID field hint */
.claim-modal__hint {
  font-size: 11px;
  color: var(--c-ink-faint, #7A756E);
  margin-top: 5px;
  font-style: italic;
}

/* Field error */
.claim-modal__field-error {
  display: none;
  font-size: 12px;
  color: #5C3434;
  margin-top: 5px;
}

/* Two-column grid for name + email on wider viewports */
.claim-modal__field-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
@media (min-width: 420px) {
  .claim-modal__field-row {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  .claim-modal__field-row .claim-modal__field {
    margin-bottom: 0;
  }
}

/* Divider */
.claim-modal__divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,166,70,.30), transparent);
  margin: 22px 0 20px;
}

/* Submit button */
.claim-modal__submit {
  display: block;
  width: 100%;
  height: 48px;
  font-family: var(--f-sans, 'Inter', sans-serif);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-white, #fff);
  background: var(--c-primary, #00697A);
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: background 0.18s ease, transform 0.12s ease;
  margin-top: 24px;
}
.claim-modal__submit:hover:not(:disabled) {
  background: var(--c-deep, #004D5C);
}
.claim-modal__submit:active:not(:disabled) {
  transform: scale(0.98);
}
.claim-modal__submit:disabled {
  opacity: 0.60;
  cursor: not-allowed;
}

/* Privacy note */
.claim-modal__privacy {
  font-size: 11px;
  color: var(--c-ink-faint, #7A756E);
  text-align: center;
  margin-top: 12px;
  line-height: 1.5;
}

/* ── Success state ──────────────────────────────────────────── */
.claim-modal__success {
  display: none;
  padding: 40px 28px 40px;
  text-align: center;
  outline: none;
}
.claim-modal.is-success .claim-modal__form-wrap {
  display: none;
}
.claim-modal.is-success .claim-modal__success {
  display: block;
}

.claim-modal__success-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(0,105,122,.12);
  border: 1.5px solid rgba(0,105,122,.28);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.claim-modal__success-icon svg {
  width: 24px;
  height: 24px;
  color: var(--c-primary, #00697A);
}
.claim-modal__success-headline {
  font-family: var(--f-monumental, 'Didot', 'Didot LT STD', serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--c-ink-deep, #2C2926);
  margin: 0 0 12px;
  line-height: 1.25;
}
.claim-modal__success-body {
  font-family: var(--f-archival-body, 'Cormorant Garamond', Georgia, serif);
  font-size: 15px;
  color: var(--c-ink-mid, #4A4540);
  line-height: 1.6;
  max-width: 340px;
  margin: 0 auto 24px;
}
.claim-modal__success-close {
  display: inline-flex;
  align-items: center;
  height: 40px;
  padding: 0 24px;
  font-family: var(--f-sans, 'Inter', sans-serif);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-primary, #00697A);
  background: transparent;
  border: 1.5px solid rgba(0,105,122,.35);
  border-radius: 0;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.claim-modal__success-close:hover {
  background: rgba(0,105,122,.08);
  border-color: var(--c-primary, #00697A);
}

/* ── Footer ─────────────────────────────────────────────────── */
.footer {
  background: #00262E;
  padding: 55px 0 24px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  padding-bottom: 38px;
  border-bottom: 1px solid rgba(255,255,255,.5);
}
@media (min-width: 768px) {
  .footer__grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
}
.footer__logo-link { display: inline-block; margin-bottom: 16px; }
.footer__logo-img {
  width: 200px;
  height: auto;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}
.footer__brand-name {
  font-family: var(--f-monumental);
  font-size: 22px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.footer__brand-desc {
  font-size: 13px;
  color: #fff;
  line-height: 1.75;
  max-width: 280px;
  margin-bottom: 24px;
}
.footer__trust-bar {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 24px;
}
.footer__trust-item {
  font-family: 'Cormorant Garamond', serif;
  font-variant-numeric: lining-nums;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer__contact {
  font-size: 13px;
  color: #fff;
  line-height: 1.9;
}
.footer__contact a { color: #fff; transition: color var(--t-fast); }
.footer__contact a:hover { color: #fff; }
.footer__col-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 18px;
}
.footer__col-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__col-link {
  font-size: 13px;
  color: #fff;
  transition: color var(--t-fast), padding-left var(--t-fast);
  text-decoration: none;
}
.footer__col-link:hover {
  color: #fff;
  padding-left: 3px;
}
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 22px;
}
.footer__copy {
  font-size: 11px;
  color: #fff;
  line-height: 1.6;
}
.footer__legal-links {
  display: flex;
  gap: 20px;
}
.footer__legal-link {
  font-size: 11px;
  color: #fff;
  transition: color var(--t-fast);
  text-decoration: none;
}
.footer__legal-link:hover { color: #fff; }

/* ── Footer — 2026 Redesign ─────────────────────────────── */
.footer { padding-top: 0; }
.footer__declaration {
  padding: 50px 0 41px;
  border-bottom: 1px solid rgba(255,255,255,.5);
}
.footer__declaration-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}
.footer__statement {
  font-family: var(--f-serif);
  font-size: clamp(22px, 2.5vw, 36px);
  color: #fff;
  line-height: 1.25;
  margin: 0;
}
.footer__statement--lg {
  font-size: clamp(28px, 3.5vw, 52px);
}
.footer__statement-sub {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: clamp(13px, 1.4vw, 16px);
  color: #fff;
  line-height: 1.7;
  margin: 14px 0 0;
}
.footer__cta-btn {
  flex-shrink: 0;
  display: inline-block;
  background: var(--c-primary, #00697A);
  color: #fff;
  font-family: var(--f-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 12px 29px;
  text-decoration: none;
  white-space: nowrap;
  transition: background .2s;
}
.footer__cta-btn:hover { background: var(--c-deep, #004D5C); }
.footer__cta-btn--border {
  background: transparent;
  border: 1px solid rgba(255,255,255,.5);
  color: #fff;
}
.footer__cta-btn--border:hover {
  background: transparent;
  border-color: rgba(255,255,255,.5);
  color: #fff;
}
.footer__cta-wrap { text-align: right; flex-shrink: 0; }
.footer__cta-micro {
  font-family: var(--f-ui);
  font-size: 10px;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: #fff;
  margin: 10px 0 0;
}
/* ── Footer Registry Access form ── */
.footer__access {
  border-top: 1px solid rgba(255,255,255,.5);
  padding: 33px 0;
  border-bottom: 1px solid rgba(255,255,255,.5);
}
.footer__access-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 768px) {
  .footer__access-inner { grid-template-columns: 1fr; gap: 36px; }
}
.footer__access-left { display: flex; flex-direction: column; }
.footer__social { padding-left: 56px; border-left: 1px solid rgba(255,255,255,.5); }
@media (max-width: 768px) {
  .footer__social { padding-left: 0; border-left: none; border-top: 1px solid rgba(255,255,255,.5); padding-top: 28px; }
}
.footer__social-label {
  font-family: var(--f-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 8px;
}
.footer__social-sub {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 14px;
  color: rgba(255,255,255,.65);
  line-height: 1.6;
  margin: 0 0 22px;
  max-width: 280px;
}
.footer__social-icons {
  display: flex;
  gap: 18px;
  align-items: center;
}
.footer__social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  opacity: .72;
  transition: opacity .2s;
}
.footer__social-icon svg { width: 21px; height: 21px; }
.footer__social-icon:hover { opacity: 1; }
.footer__contact { display: flex; flex-direction: column; gap: 4px; }
.footer__contact-label {
  font-family: var(--f-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 6px;
}
.footer__access-label {
  font-family: var(--f-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 8px;
}
.footer__access-headline {
  font-family: var(--f-serif);
  font-size: clamp(18px, 2vw, 24px);
  color: #fff;
  line-height: 1.25;
  margin: 0;
}
.footer__access-sub {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 14px;
  color: #fff;
  margin: 8px 0 0;
}
.footer__access-form {
  display: flex;
  gap: 0;
  flex-shrink: 0;
}
.footer__access-input {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.5);
  border-right: none;
  color: #fff;
  font-family: var(--f-ui);
  font-size: 13px;
  padding: 10px 15px;
  width: 260px;
  outline: none;
  transition: border-color .2s, background .2s;
}
.footer__access-input::placeholder {
  color: #fff;
  letter-spacing: .04em;
}
.footer__access-input:focus {
  border-color: rgba(255,255,255,.5);
  background: #fff;
  color: #2C2926;
}
.footer__access-submit {
  background: var(--c-primary, #00697A);
  border: 1px solid rgba(255,255,255,.5);
  color: #fff;
  font-family: var(--f-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 10px 18px;
  cursor: pointer;
  white-space: nowrap;
  transition: background .2s, border-color .2s;
}
.footer__access-submit:hover {
  background: #fff;
  border-color: #fff;
  color: var(--c-primary, #00697A);
}
@media (max-width: 640px) {
  .footer__access-form { flex-direction: column; }
  .footer__access-input { border-right: 1px solid rgba(255,255,255,.5); border-bottom: none; width: 100%; }
  .footer__access-submit { width: 100%; }
}
.footer__trust-row {
  padding: 12px 0;
}
.footer__trust-items {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
}
.footer__trust-item {
  font-family: 'Cormorant Garamond', serif;
  font-variant-numeric: lining-nums;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex: 1;
  padding: 4px 12px;
  border-right: 1px solid rgba(255,255,255,.50);
  white-space: nowrap;
}
.footer__trust-item:last-child {
  border-right: none;
}
.footer__trust-item svg {
  color: rgba(255,255,255,.45);
  flex-shrink: 0;
}
.footer__trust-dot { display: none; }
.footer__grid { padding-top: 36px; }
@media (min-width: 768px) {
  .footer__grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
}
.footer__authority {
  margin: 18px 0 20px;
  padding: 11px 0;
  border-top: 1px solid rgba(255,255,255,.5);
  border-bottom: 1px solid rgba(255,255,255,.5);
}
.footer__authority-title {
  font-family: var(--f-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 5px;
}
.footer__authority-sub {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 13px;
  color: #fff;
}
.footer__mandate {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 13px;
  color: rgba(255,255,255,1);
  text-align: center;
  padding: 17px 0 0;
  border-top: 1px solid rgba(255,255,255,.5);
  margin: 0;
  letter-spacing: .04em;
}

/* ── Badge/Chips ─────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 0;
}
.badge-teal {
  background: rgba(0,105,122,.12);
  color: var(--c-accent);
  border: 1px solid rgba(0,105,122,.25);
}
.badge-teal-solid {
  background: var(--c-accent);
  color: var(--c-deep);
}
.badge-pale {
  background: var(--c-pale);
  color: var(--c-primary);
  border: 1px solid rgba(0,105,122,.15);
}
.badge-grey {
  background: var(--c-grey-100);
  color: var(--c-grey-600);
  border: 1px solid var(--c-grey-200);
}

/* ── Trust Badges Row ───────────────────────────────────────── */
.trust-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
}
.trust-item svg { color: var(--c-accent); flex-shrink: 0; }

/* ── Cards ───────────────────────────────────────────────────── */
.card {
  background: var(--c-white);
  border: 1px solid var(--c-grey-200);
  border-radius: 0;
  padding: 32px 28px;
  transition: box-shadow var(--t-base), border-color var(--t-base), transform var(--t-base);
}
.card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--c-grey-300);
  transform: translateY(-2px);
}
.card--dark {
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.10);
}
.card--dark:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(0,105,122,.25);
}
.card--pale {
  background: var(--c-pale);
  border-color: rgba(0,105,122,.15);
}
.card--featured {
  background: var(--c-deep);
  border-color: var(--c-primary);
  color: var(--c-white);
}

/* ── Icon Box ─────────────────────────────────────────────────── */
.icon-box {
  width: 48px;
  height: 48px;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.icon-box--pale { background: var(--c-pale); color: var(--c-primary); }
.icon-box--teal { background: rgba(0,105,122,.12); color: var(--c-accent); }
.icon-box--dark { background: rgba(255,255,255,.08); color: var(--c-accent); }
.icon-box--sm   { width: 36px; height: 36px; border-radius: 0; }
.icon-box--lg   { width: 60px; height: 60px; border-radius: 0; }

/* ── Checklist Items ─────────────────────────────────────────── */
.check-list { display: flex; flex-direction: column; gap: 14px; }
.check-item { display: flex; align-items: flex-start; gap: 12px; }
.check-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--c-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--c-primary);
}
.check-icon--dark {
  background: rgba(0,105,122,.15);
  color: var(--c-accent);
}
.check-text { font-size: 15px; color: var(--c-grey-700); line-height: 1.5; }
.check-text strong { font-weight: 600; color: var(--c-grey-900); }
.section--dark .check-text { color: rgba(255,255,255,.70); }
.section--dark .check-text strong { color: var(--c-white); }

/* ── Utility ──────────────────────────────────────────────────── */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.flex     { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.gap-2    { gap: 8px; }
.gap-3    { gap: 12px; }
.gap-4    { gap: 16px; }
.gap-6    { gap: 24px; }
.gap-8    { gap: 32px; }
.mt-1     { margin-top: 4px; }
.mt-2     { margin-top: 8px; }
.mt-3     { margin-top: 12px; }
.mt-4     { margin-top: 16px; }
.mt-6     { margin-top: 24px; }
.mt-8     { margin-top: 32px; }
.mt-10    { margin-top: 40px; }
.mb-4     { margin-bottom: 16px; }
.mb-6     { margin-bottom: 24px; }
.mb-8     { margin-bottom: 32px; }

/* ── IMAGE BREAK SECTIONS ─────────────────────────────────── */
.img-break {
  position: relative;
  width: 100%;
  height: 700px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.img-break__bg {
  position: absolute;
  inset: -10% 0;
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
  will-change: transform;
  transform: translateZ(0);
  transition: none;
}
.img-break::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(4,10,9,0.64);
  z-index: 1;
}
.img-break__quote {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  padding: 0 40px;
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(21px, 2.8vw, 31px);
  font-weight: 300;
  line-height: 1.55;
  color: rgba(255,255,255,0.92);
  letter-spacing: 0.01em;
}
.img-break--editorial {
  justify-content: center;
}
.img-break--editorial::before {
  background: rgba(4,10,9,0.25);
}
.img-break__content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 40px;
  text-align: center;
}
.img-break__eyebrow {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: rgba(78,196,204,.6);
  margin-bottom: 20px;
}
.img-break__headline {
  font-family: 'Didot', 'Didot LT STD', 'Bodoni MT', serif;
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: #F5F2EB;
  margin-bottom: 20px;
}
.img-break__sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(15px, 1.5vw, 18px);
  font-weight: 400;
  line-height: 1.7;
  color: rgba(245,242,235,.55);
  max-width: 480px;
}
@media (max-width: 768px) {
  .img-break__content { padding: 0 24px; }
  .img-break--editorial { justify-content: center; }
}
.img-break__cite {
  display: block;
  margin-top: 20px;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: #4EC4CC;
}
@media (max-width: 768px) {
  .img-break {
    height: 340px;
  }
  .img-break__quote {
    padding: 0 24px;
  }
}
.img-break--strip {
  height: 72px;
  background: #00343D;
}
.img-break--strip::before { display: none; }
.img-break--strip .img-break__quote {
  font-size: clamp(12px, 1.2vw, 15px);
  font-weight: 400;
  letter-spacing: .06em;
  padding: 0 40px;
}

/* ══════════════════════════════════════════════════════════════
   GLOBAL NAV — Dropdown + Page Subnav
   ══════════════════════════════════════════════════════════════ */

/* ── Products Dropdown ────────────────────────────────────── */
.nav__dropdown {
  position: relative;
  display: flex;
  align-items: center;
}
.nav__dropdown-trigger {
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #00697A;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color 0.35s ease;
  white-space: nowrap;
}
.nav__dropdown-trigger:hover { color: #004D5C; }
.nav__dropdown-chevron {
  width: 9px; height: 9px;
  transition: transform 0.2s ease;
}
.nav__dropdown:hover .nav__dropdown-chevron { transform: rotate(180deg); }
.nav__dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,77,92,.97);
  border: 1px solid rgba(255,255,255,.12);
  min-width: 210px;
  z-index: 300;
  padding: 14px 0 10px;
}
.nav__dropdown:hover .nav__dropdown-menu { display: block; }
.nav__dropdown-item {
  display: block;
  padding: 10px 22px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  text-decoration: none;
  transition: color 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.nav__dropdown-item:hover { color: #fff; background: rgba(0,105,122,.18); }
.nav__dropdown-divider {
  height: 1px;
  background: rgba(255,255,255,.08);
  margin: 6px 0;
}
/* ── Nested Accessories submenu ── */
.nav__submenu-wrap {
  position: relative;
}
.nav__submenu-trigger {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  cursor: default;
}
.nav__submenu-arrow {
  font-style: normal;
  font-size: 14px;
  line-height: 1;
  opacity: .40;
  transition: opacity .15s, transform .15s;
  display: inline-block;
}
.nav__submenu-wrap:hover .nav__submenu-arrow {
  opacity: .85;
  transform: translateX(2px);
}
.nav__submenu {
  display: none;
  position: absolute;
  left: 100%;
  top: 0;
  background: rgba(0,44,55,.98);
  border: 1px solid rgba(255,255,255,.12);
  border-left: 2px solid rgba(201,166,70,.22);
  min-width: 210px;
  z-index: 310;
  padding: 10px 0;
  box-shadow: 4px 4px 20px rgba(0,0,0,.35);
}
.nav__submenu-wrap:hover .nav__submenu { display: block; }
.nav__submenu-item {
  display: block;
  padding: 9px 20px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.58);
  text-decoration: none;
  white-space: nowrap;
  transition: color .15s, background .15s;
}
.nav__submenu-item:hover { color: #fff; background: rgba(0,105,122,.22); }
/* Scrolled state */
.nav--scrolled .nav__dropdown-trigger { color: rgba(255,255,255,.80); }
.nav--scrolled .nav__dropdown-trigger:hover { color: #fff; }
.nav--scrolled .nav__dropdown-menu {
  background: rgba(0,77,92,.97);
  border-color: rgba(255,255,255,.12);
  box-shadow: 0 8px 32px rgba(0,0,0,.28);
}
.nav--scrolled .nav__dropdown-item { color: rgba(255,255,255,.75); }
.nav--scrolled .nav__dropdown-item:hover { color: #fff; background: rgba(0,105,122,.28); }

/* ── Page Subnav ──────────────────────────────────────────── */
.page-subnav {
  position: sticky;
  top: var(--nav-h);
  z-index: 190;
  height: 42px;
  background: #F5F2EB;
  border-bottom: 1px solid rgba(0,77,92,.10);
}
.page-subnav__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 0 28px;
  gap: 0;
}
.page-subnav__inner::-webkit-scrollbar { display: none; }
.page-subnav__link {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(0,77,92,.48);
  text-decoration: none;
  transition: color 0.18s ease;
  white-space: nowrap;
  flex-shrink: 0;
  padding: 0 16px;
}
.page-subnav__link:first-child { padding-left: 0; }
.page-subnav__link + .page-subnav__link {
  border-left: 1px solid rgba(0,77,92,.18);
}
.page-subnav__link:hover  { color: #00697A; }
.page-subnav__link.active { color: #00697A; }
