/* =============================================================
   Premium Invest Club - Design Tokens
   ============================================================= */
:root {
  /* Deep Emerald Luxury Brand Palette (from design/ideas) */
  --bg-dark:        #041617;
  --bg-emerald:     #051F20;
  --bg-surface:     #0B2B26;
  --bg-card:        #0F3D34;
  --bg-card-hover:  #134E43;

  --emerald:        #0F3D34;
  --emerald-600:    #0B2B26;
  --emerald-700:    #051F20;
  --emerald-50:     #163832;

  --gold:           #C8A96A;
  --gold-bright:    #E5C479;
  --gold-soft:      #B39252;
  --gold-50:        rgba(200, 169, 106, 0.12);
  --gold-glow:      rgba(200, 169, 106, 0.25);
  --gold-light:     #FFF0C2;

  /* Metallic gold chrome (silent-chrome nav accents, breath line) - alpha % */
  --gold-metal-6:   rgba(212, 175, 55, 0.06);
  --gold-metal-50:  rgba(212, 175, 55, 0.5);
  --gold-metal-60:  rgba(212, 175, 55, 0.6);
  --gold-metal-80:  rgba(212, 175, 55, 0.8);

  --sage:           #8EB69B;
  --mint:           #DAF1DE;

  /* Neutrals for Dark Luxury Mode */
  --white:          #FFFFFF;
  --off-white:      #F7F6F1;
  --gray-100:       #E6F0E9;
  --gray-200:       #C4D4CB;
  --gray-300:       #9EB3A9;
  --gray-400:       #8CA195;
  --gray-500:       #50665E;
  --gray-600:       #31453E;
  --gray-700:       #1B2E28;
  --charcoal:       #0A1A17;
  --ink:            #041617;

  /* Semantic Mappings */
  --bg:             var(--bg-dark);
  --surface:        rgba(11, 43, 38, 0.85);
  --surface-2:      rgba(15, 61, 52, 0.95);
  --fg:             var(--off-white);
  --fg-soft:        var(--gray-200);
  --muted:          var(--gray-400);
  --border:         rgba(200, 169, 106, 0.18);
  --border-strong:  rgba(200, 169, 106, 0.4);
  --primary:        var(--gold);
  --primary-deep:   var(--gold-soft);
  --primary-tint:   rgba(200, 169, 106, 0.12);
  --accent:         var(--gold-bright);
  --accent-soft:    var(--gold-glow);
  --accent-tint:    rgba(200, 169, 106, 0.08);

  /* Typography */
  --font-serif:     'Cormorant Garamond', 'Noto Serif Armenian', 'Playfair Display', Georgia, serif;
  --font-display:   'Cormorant Garamond', 'Noto Serif Armenian', 'Plus Jakarta Sans', sans-serif;
  --font-body:      'Plus Jakarta Sans', 'Noto Sans Armenian', 'Inter', sans-serif;
  --font-mono:      'JetBrains Mono', ui-monospace, monospace;

  /* Radius */
  --r-sm: 8px;
  --r:    12px;
  --r-md: 14px;
  --r-lg: 16px;
  --r-xl: 24px;
  --r-pill: 999px;

  /* Spacing scale (4-based) */
  --s-1: 4px;
  --s-2: 8px;
  --s-3: 12px;
  --s-4: 16px;
  --s-5: 20px;
  --s-6: 24px;
  --s-8: 32px;
  --s-10: 40px;
  --s-12: 48px;
  --s-16: 64px;
  --s-20: 80px;
  --s-24: 96px;

  /* Shadows with Gold Glow */
  --sh-1: 0 2px 8px rgba(0, 0, 0, 0.4);
  --sh-2: 0 6px 20px rgba(0, 0, 0, 0.5), 0 0 15px rgba(200, 169, 106, 0.08);
  --sh-3: 0 12px 36px rgba(0, 0, 0, 0.6), 0 0 25px rgba(200, 169, 106, 0.12);
  --sh-4: 0 24px 60px rgba(0, 0, 0, 0.7), 0 0 40px rgba(200, 169, 106, 0.18);

  /* Ink shadow alphas for chrome (drawers, hero cards, masks) */
  --sh-ink-faint:   rgba(0, 0, 0, 0.15);
  --sh-ink-soft:    rgba(0, 0, 0, 0.2);
  --sh-ink:         rgba(0, 0, 0, 0.5);
  --sh-ink-strong:  rgba(0, 0, 0, 0.6);
  --sh-ink-deep:    rgba(0, 0, 0, 0.7);
  --mask-solid:     #000;

  /* Status scale (admin UI: stat icons, deltas, table status pills) */
  --status-info-tint:       #E0F2FE;
  --status-info:            #0369A1;
  --status-info-alt-tint:   #DBEAFE;
  --status-info-alt:        #1E40AF;
  --status-success:         #0B7A4D;
  --status-warning-tint:    #FEF3C7;
  --status-warning:         #92400E;
  --status-danger:          #B91C1C;
  --status-danger-tint:     rgba(185, 28, 28, 0.2);
  --status-danger-light:    #F3A8A8;

  /* Layout */
  --container: 1240px;
  --nav-h: 76px;
}

/* =============================================================
   Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }

/* Lenis Smooth Scroll Engine */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--fg);
  background: var(--bg);
  min-width: 320px;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.12;
  color: var(--off-white);
  margin: 0;
  text-wrap: balance;
  overflow-wrap: break-word;
}
h1 { font-size: clamp(40px, 5vw, 68px); letter-spacing: -0.03em; }
h2 { font-size: clamp(30px, 3.4vw, 44px); }
h3 { font-size: clamp(20px, 2vw, 26px); }
h4 { font-size: 20px; }
p  { margin: 0; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; width: 100%; }
.section {
  padding: clamp(64px, 8vw, 100px) 0;
  position: relative;
}
.section--tight { padding: clamp(48px, 6vw, 80px) 0; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font: 500 12px/1 var(--font-body);
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--primary); margin-bottom: 16px;
}
.eyebrow::before {
  content: ""; width: 24px; height: 1px;
  background: var(--accent);
}
.lead { font-size: 17px; color: var(--fg-soft); max-width: 62ch; }
.muted { color: var(--muted); }

/* =============================================================
   Buttons
   ============================================================= */
.btn {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  height: 48px; padding: 0 24px;
  border-radius: var(--r);
  font: 600 14px/1 var(--font-body);
  letter-spacing: 0.02em;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
  border: 1px solid transparent;
  cursor: pointer;
  user-select: none;
}
.btn:active { transform: translateY(1px); }
.btn--primary,
.btn--accent {
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 50%, var(--gold-soft) 100%);
  color: #041617;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(200, 169, 106, 0.35);
  border-color: rgba(255, 255, 255, 0.2);
}
.btn--primary:hover,
.btn--accent:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-bright) 100%);
  box-shadow: 0 6px 28px rgba(200, 169, 106, 0.5);
  transform: translateY(-1px);
  color: #041617;
}
.btn--outline {
  background: rgba(15, 61, 52, 0.35);
  color: var(--off-white);
  border: 1px solid rgba(200, 169, 106, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.btn--outline:hover {
  background: rgba(200, 169, 106, 0.18);
  border-color: var(--gold-bright);
  color: var(--gold-bright);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(200, 169, 106, 0.15);
}
.btn--ghost {
  background: transparent;
  color: var(--off-white);
  border-color: rgba(200, 169, 106, 0.25);
}
.btn--ghost:hover { background: rgba(200, 169, 106, 0.1); border-color: var(--gold); }
.btn--ghost-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.25);
}
.btn--ghost-light:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.5); }
.btn--link {
  height: auto; padding: 0;
  color: var(--gold-bright);
  font-weight: 600;
}
.btn--link:hover { color: var(--off-white); }
.btn--sm { height: 38px; padding: 0 16px; font-size: 13px; }
.btn--lg { height: 54px; padding: 0 32px; font-size: 16px; }
.btn--block { width: 100%; }
.btn:disabled, .btn[aria-disabled="true"] { cursor: not-allowed; opacity: 0.58; transform: none; box-shadow: none; }
.btn__content { display: inline-flex; align-items: center; justify-content: center; gap: 8px; }
.btn__content--hidden { opacity: 0; }
.btn__spinner { position: absolute; width: 18px; height: 18px; border: 2px solid currentColor; border-right-color: transparent; border-radius: 50%; animation: btnSpin .7s linear infinite; }
@keyframes btnSpin { to { transform: rotate(360deg); } }

:where(a, button, input, select, textarea, summary):focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 3px;
}

/* =============================================================
   Cards & Glassmorphism
   ============================================================= */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-2);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  box-shadow: var(--sh-3);
}
.card--hover:hover { transform: translateY(-4px); box-shadow: var(--sh-3); border-color: var(--border-strong); }
.card--pad-lg { padding: 40px; }
.card--quiet { background: var(--surface-2); border-color: transparent; }

/* =============================================================
   Badges & chips
   ============================================================= */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  height: 26px; padding: 0 10px;
  border-radius: var(--r-pill);
  font: 600 11px/1 var(--font-body);
  letter-spacing: 0.06em; text-transform: uppercase;
  background: var(--primary-tint);
  color: var(--gold-bright);
}
.badge--gold {
  background: var(--accent-tint);
}
.badge--ink { background: var(--ink); color: #fff; }
.badge--ghost { background: transparent; border: 1px solid var(--border-strong); color: var(--fg-soft); }

.chip {
  display: inline-flex; align-items: center; gap: 6px;
  min-height: 38px; padding: 0 14px;
  border-radius: var(--r-pill);
  background: rgba(11, 43, 38, 0.86);
  border: 1px solid rgba(200, 169, 106, 0.28);
  color: var(--gray-200);
  font: 500 13px/1 var(--font-body);
  transition: all .2s ease;
}
.chip:hover, .chip.is-active {
  background: var(--gold-bright);
  color: var(--bg-dark);
  border-color: var(--gold-bright);
}

/* =============================================================
   Navigation
   ============================================================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: background .3s ease, border-color .3s ease, backdrop-filter .3s ease;
  border-bottom: 1px solid transparent;
}
.nav--scrolled {
  background: rgba(5, 31, 32, 0.92);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom-color: rgba(200, 169, 106, 0.2);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
  width: 100%;
}
.nav__brand {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--off-white);
  letter-spacing: -0.01em;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav__brand-logo-wrapper {
  width: 44px;
  height: 44px;
  border-radius: 0;
  background: transparent;
  border: 1px solid rgba(200, 169, 106, 0.35);
  box-shadow: 0 0 14px rgba(200, 169, 106, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.nav__brand:hover .nav__brand-logo-wrapper {
  border-color: var(--gold-bright);
  transform: scale(1.03);
}
.nav__brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 0;
}
.nav__brand-text {
  display: flex;
  flex-direction: column;
}
.nav__brand-name {
  display: block;
  line-height: 1.1;
  font-weight: 700;
  font-size: 16px;
}
.nav__brand-sub {
  font-size: 9px;
  letter-spacing: 0.18em;
  color: var(--gold-bright);
  text-transform: uppercase;
  font-family: var(--font-body);
  font-weight: 600;
  display: block;
  margin-top: 2px;
}
.nav--hero .nav__brand,
.nav--hero .nav__link,
.nav--hero .nav__cta-secondary { color: rgba(255,255,255,0.85); }
.nav--hero.nav--scrolled .nav__brand,
.nav--hero.nav--scrolled .nav__link,
.nav--hero.nav--scrolled .nav__cta-secondary { color: var(--off-white); }
.nav--hero.nav--scrolled .nav__link:hover { color: var(--primary); background: var(--primary-tint); }
.nav--hero.nav--scrolled .nav__link.is-active { color: var(--primary); }
.nav--hero.nav--scrolled .nav__burger { color: var(--off-white); }
/* When scrolled past the hero, restore the gold CTA pill */
.nav--hero.nav--scrolled .nav__cta .btn--accent {
  background: var(--accent) !important;
  color: var(--ink) !important;
  border: 1px solid transparent !important;
  box-shadow: 0 8px 20px -8px var(--gold-metal-50) !important;
  font-weight: 600 !important;
}
.nav--hero.nav--scrolled .nav__cta .btn--accent:hover {
  background: var(--gold-soft) !important;
  color: var(--ink) !important;
  border-color: transparent !important;
}
.nav__links {
  display: flex; align-items: center; gap: 2px;
  list-style: none; margin: 0; padding: 0;
}
.nav__link {
  display: inline-flex; align-items: center;
  height: 40px; padding: 0 10px;
  font: 500 14px/1 var(--font-body);
  color: var(--fg);
  border-radius: 8px;
  white-space: nowrap;
  transition: color .15s ease, background .15s ease;
}
.nav__link:hover { color: var(--primary); background: var(--primary-tint); }
.nav__link.is-active { color: var(--primary); }
.nav--hero .nav__link:hover { color: #fff; background: rgba(255,255,255,0.08); }
.nav--hero .nav__link.is-active { color: rgba(255,255,255,0.9); }
/* Silent Chrome (H7) - turn the gold "Become a Member" pill into a
   hairline ghost on hero pages so the manifesto is the only voice */
.nav--hero .nav__cta .btn--accent {
  background: transparent !important;
  color: rgba(255,255,255,0.85) !important;
  border: 1px solid rgba(255,255,255,0.25) !important;
  box-shadow: none !important;
  font-weight: 500 !important;
  transition: all .2s ease;
}
.nav--hero .nav__cta .btn--accent:hover {
  color: #fff !important;
  border-color: var(--gold-metal-60) !important;
  background: var(--gold-metal-6) !important;
}
.nav__cta {
  display: flex; align-items: center; gap: 10px;
}
.nav__cta .btn--accent { padding: 0 18px; }
.nav__burger {
  display: none;
  width: 44px; height: 44px;
  border-radius: 12px;
  align-items: center; justify-content: center;
  color: var(--off-white);
  background: rgba(11, 43, 38, 0.6);
  border: 1px solid rgba(200, 169, 106, 0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 0;
}
.nav__burger:hover {
  background: rgba(200, 169, 106, 0.18);
  border-color: rgba(200, 169, 106, 0.5);
  color: var(--gold-bright);
}
.nav__burger:active {
  transform: scale(0.95);
}
.nav__burger:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 2px;
}
.nav--hero .nav__burger { color: var(--off-white); }
.nav__burger svg { width: 22px; height: 22px; transition: transform 0.2s ease; }

@media (max-width: 1320px) {
  .nav__links, .nav__cta .btn--primary, .nav__cta .btn--accent, .nav__cta .btn--ghost-light, .nav__cta .lang, .nav__cta-secondary { display: none; }
  .nav__burger { display: inline-flex; }
}

/* Mobile drawer */
.drawer {
  position: fixed; inset: 0;
  background: rgba(5, 20, 20, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 200;
  opacity: 0; pointer-events: none;
  transition: opacity .3s cubic-bezier(0.16, 1, 0.3, 1);
}
.drawer.is-open { opacity: 1; pointer-events: auto; }
.drawer__panel {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: min(360px, 92vw);
  background: linear-gradient(180deg, #072523 0%, #031516 100%);
  color: var(--off-white);
  border-left: 1px solid rgba(200, 169, 106, 0.25);
  padding: 24px 20px 28px;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex; flex-direction: column;
  justify-content: space-between;
  overflow-y: auto;
  box-shadow: -16px 0 40px var(--sh-ink-strong);
}
.drawer.is-open .drawer__panel { transform: translateX(0); }
.drawer__head {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(200, 169, 106, 0.15);
  margin-bottom: 12px;
}
.drawer__brand {
  display: flex; align-items: center; gap: 10px;
}
.drawer__brand-logo-wrapper {
  width: 38px; height: 38px;
  border-radius: 0;
  border: 1px solid rgba(200, 169, 106, 0.35);
  padding: 3px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  background: rgba(5, 25, 24, 0.8);
}
.drawer__brand-logo {
  width: 100%; height: 100%;
  object-fit: contain;
  border-radius: 0;
}
.drawer__brand-text {
  display: flex; flex-direction: column;
}
.drawer__brand-title {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--gold-bright);
  font-size: 16px;
  line-height: 1.1;
}
.drawer__brand-sub {
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--gray-300);
  text-transform: uppercase;
  font-family: var(--font-body);
  font-weight: 600;
  margin-top: 2px;
}
.drawer__close {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--gray-200);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(200, 169, 106, 0.2);
  cursor: pointer;
  transition: all 0.2s ease;
}
.drawer__close:hover {
  color: var(--gold-bright);
  background: rgba(200, 169, 106, 0.2);
  border-color: rgba(200, 169, 106, 0.4);
  transform: rotate(90deg);
}
.drawer__close svg { width: 20px; height: 20px; }

.drawer__nav {
  display: flex; flex-direction: column; gap: 6px;
  margin: 12px 0;
}
.drawer__link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 13px 16px;
  border-radius: 12px;
  font-weight: 500;
  font-size: 16px;
  color: var(--gray-200);
  border: 1px solid transparent;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
}
.drawer__link:hover {
  background: rgba(200, 169, 106, 0.12);
  color: var(--gold-bright);
  border-color: rgba(200, 169, 106, 0.2);
  padding-left: 20px;
}
.drawer__link.is-active {
  background: linear-gradient(90deg, rgba(200, 169, 106, 0.22) 0%, rgba(200, 169, 106, 0.06) 100%);
  color: var(--gold-bright);
  border-left: 3px solid var(--gold-bright);
  border-color: rgba(200, 169, 106, 0.3);
  font-weight: 600;
  padding-left: 20px;
  box-shadow: 0 4px 14px var(--sh-ink-soft);
}
.drawer__link-arrow {
  width: 16px; height: 16px;
  opacity: 0.3;
  transition: all 0.2s ease;
}
.drawer__link:hover .drawer__link-arrow,
.drawer__link.is-active .drawer__link-arrow {
  opacity: 1;
  transform: translateX(3px);
  color: var(--gold-bright);
}

.drawer__footer {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(200, 169, 106, 0.15);
  display: flex; flex-direction: column; gap: 14px;
}
.drawer__lang {
  display: flex; gap: 6px;
  background: rgba(5, 25, 24, 0.8);
  border: 1px solid rgba(200, 169, 106, 0.25);
  border-radius: 999px;
  padding: 4px;
}
.drawer__lang-btn {
  flex: 1;
  min-height: 44px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-300);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex; align-items: center; justify-content: center;
}
.drawer__lang-btn:hover {
  color: var(--gold-bright);
  background: rgba(200, 169, 106, 0.12);
}
.drawer__lang-btn.is-active {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-soft));
  color: #041617;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(200, 169, 106, 0.35);
}
.drawer__apply-btn {
  width: 100%;
  height: 48px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}

/* =============================================================
   Hero - Manifesto (Hypothesis 3, refined)
   ============================================================= */
.hero {
  position: relative;
  min-height: 92vh;
  background: var(--ink);
  color: #fff;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  padding-top: var(--nav-h);
  padding-bottom: 64px;
  isolation: isolate;
}
/* Background: just a dark emerald-to-black gradient. No glow, no vignette,
   no focal point - the type IS the only visual. */
.hero__bg {
  position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(circle at 75% 30%, rgba(15, 61, 52, 0.6) 0%, rgba(5, 31, 32, 0.95) 60%, var(--bg-dark) 100%);
}
.hero__bg::after {
  content: "";
  position: absolute; inset: 0;
  pointer-events: none;
  opacity: 0.08;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix type='saturate' values='0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 240px 240px;
}

.hero__inner {
  display: flex; align-items: center; justify-content: center;
  width: 100%;
  position: relative;
  z-index: 1;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  width: 100%;
  text-align: left;
}
.hero__content {
  display: flex; flex-direction: column; align-items: flex-start;
  gap: 20px;
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-bright);
  padding: 8px 18px;
  border: 1px solid rgba(200, 169, 106, 0.3);
  border-radius: 999px;
  background: rgba(15, 61, 52, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: border-color 0.35s ease, box-shadow 0.35s ease, background-color 0.35s ease;
}
.hero__eyebrow:hover {
  border-color: rgba(200, 169, 106, 0.5);
  box-shadow: 0 0 18px rgba(200, 169, 106, 0.15);
  background-color: rgba(19, 78, 67, 0.55);
}
.hero__eyebrow-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold-bright);
  box-shadow: 0 0 8px rgba(200, 169, 106, 0.4);
  flex-shrink: 0;
}
.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(40px, 5.2vw, 68px);
  font-weight: 700;
  color: var(--off-white);
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin: 0;
}
.hero__lead {
  font-size: 17px;
  line-height: 1.65;
  color: var(--gray-200);
  max-width: 560px;
  margin-top: 4px;
  white-space: pre-line;
}
.hero__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.hero__media {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero__video-card {
  position: relative;
  width: 100%;
  max-width: 440px;
  aspect-ratio: 4/5;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 20px 50px var(--sh-ink-deep), 0 0 35px rgba(200, 169, 106, 0.15);
  background: var(--bg-card);
}
.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 31, 32, 0.15) 0%, rgba(5, 31, 32, 0.65) 100%);
  pointer-events: none;
}
.hero__badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  background: rgba(11, 43, 38, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(200, 169, 106, 0.4);
  border-radius: var(--r-lg);
  box-shadow: 0 10px 25px var(--sh-ink);
  z-index: 2;
}
.hero__badge--top {
  top: 24px;
  left: 20px;
}
.hero__badge--bottom {
  bottom: 24px;
  right: 20px;
}
.hero__badge-icon { width: 24px; height: 24px; color: var(--gold-bright); flex-shrink: 0; }
.hero__badge-icon svg { width: 100%; height: 100%; }
.hero__badge-val {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--gold-bright);
}
.hero__badge-lbl {
  font-size: 11px;
  color: var(--gray-200);
}
.hero__title br { display: none; }
/* Force a deliberate break on desktop: subject/verb on line 1,
   object on line 2. On mobile the br is hidden so text flows naturally. */
@media (min-width: 720px) {
  .hero__title br { display: block; }
}
.hero__title em {
  font-style: normal;
  color: var(--gold-bright);
}

/* Single text-link CTA - static gold underline at 40% opacity (discoverable
   on rest), brightens + draws left-to-right on hover */
.hero__cta {
  display: inline-flex !important;
  align-items: center;
  gap: 10px;
  height: 54px !important;
  padding: 0 24px !important;
  margin-top: 4px;
  border-radius: var(--r) !important;
  border: 1px solid transparent !important;
  font-family: var(--font-body) !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  letter-spacing: 0.01em;
  color: var(--bg-dark) !important;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold)) !important;
  box-shadow: 0 8px 28px rgba(200, 169, 106, 0.28);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.hero__cta-arrow {
  display: inline-block;
  transition: transform .25s ease;
}
.hero__cta::after { display: none; }
.hero__cta:hover {
  color: var(--bg-dark) !important;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-bright)) !important;
  box-shadow: 0 10px 34px rgba(200, 169, 106, 0.38);
  transform: translateY(-1px);
}
.hero__cta:hover .hero__cta-arrow { transform: translateX(4px); }

/* Breath indicator - a single thin vertical line below the CTA that
   pulses slowly. Anchors the composition and signals "there's more" */
.hero__breath {
  margin-top: 4px;
  display: flex;
  justify-content: center;
  opacity: 0.7;
}
.hero__breath-line {
  display: block;
  width: 1px;
  height: 56px;
  background: linear-gradient(180deg, var(--gold-metal-80), rgba(212,175,55,0));
  animation: heroBreath 3.2s ease-in-out infinite;
  transform-origin: top center;
}
@keyframes heroBreath {
  0%, 100% { opacity: 0.4; transform: scaleY(0.35); }
  50%      { opacity: 1;   transform: scaleY(1); }
}

@media (max-width: 960px) {
  .hero { min-height: auto; padding: 120px 0 72px; }
  .hero__grid { grid-template-columns: 1fr; gap: 48px; }
  .hero__title { font-size: clamp(40px, 8vw, 68px); }
  .hero__content { gap: 24px; max-width: 720px; }
  .hero__media { width: 100%; }
  .hero__video-card { max-width: 560px; aspect-ratio: 16/10; }
  .hero__cta { font-size: 16px !important; }
}
@media (max-width: 640px) {
  .hero { padding: 100px 0 56px; }
  .hero__title { font-size: clamp(40px, 11vw, 44px); letter-spacing: -0.035em; overflow-wrap: anywhere; }
  .hero__cta { font-size: 16px !important; }
  .hero__eyebrow { font-size: 10px; padding: 7px 12px; letter-spacing: 0.14em; line-height: 1.45; }
  .hero__breath-line { height: 24px; }
  .hero__content { gap: 20px; }
  .hero__actions { order: 3; margin-top: 0; }
  .hero__lead { order: 4; font-size: 16px; line-height: 1.7; }
  .hero__video-card { aspect-ratio: 4/3; border-radius: var(--r-lg); }
  .hero__badge { padding: 10px 12px; gap: 8px; }
  .hero__badge--top { top: 12px; left: 12px; }
  .hero__badge--bottom { right: 12px; bottom: 12px; }
  .hero__badge-val { font-size: 14px; }
  .hero__badge-lbl { font-size: 10px; }
}

/* Silent Chrome (Hypothesis 7) - nav rules moved to the existing
   nav--hero blocks above (lines ~259-307) and below (lines ~1397-1419)
   so the cascade order is correct. See those sections. */

/* =============================================================
   Stats strip
   ============================================================= */
.stats { background: var(--bg-emerald); border-top: 1px solid rgba(200,169,106,0.2); border-bottom: 1px solid rgba(200,169,106,0.2); }
.stats__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
}
.stats__item {
  padding: 28px 20px; text-align: left;
  border-right: 1px solid rgba(200,169,106,0.15);
}
.stats__item:last-child { border-right: 0; }
.stats__num {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.4vw, 44px);
  font-weight: 800;
  color: var(--gold-bright);
  letter-spacing: -0.03em;
  line-height: 1;
  display: flex; align-items: baseline; gap: 4px;
}
.stats__num--md {
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 700;
}
.stats__num-suffix { color: var(--gold); font-size: 0.7em; }
.stats__label { margin-top: 8px; font-size: 12px; color: var(--gray-200); letter-spacing: 0.04em; line-height: 1.35; }

@media (max-width: 960px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stats__item:nth-child(2) { border-right: 0; }
  .stats__item:nth-child(1), .stats__item:nth-child(2) { border-bottom: 1px solid rgba(200,169,106,0.15); }
}
@media (max-width: 640px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stats__item:nth-child(2) { border-right: 0; }
  .stats__item { border-bottom: 1px solid rgba(200,169,106,0.15); }
  .stats__item:nth-last-child(-n+2) { border-bottom: 0; }
}

/* =============================================================
   Section header
   ============================================================= */
.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head--row { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; max-width: none; }
.section-head h2 { margin-bottom: 16px; color: var(--off-white); }
.section-head p { font-size: 17px; color: var(--gray-200); }
@media (max-width: 640px) { .section-head--row { flex-direction: column; align-items: flex-start; gap: 16px; } }

/* =============================================================
   About (home)
   ============================================================= */
.about { background: var(--bg-dark); }
.about__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: center; }
.about__media {
  position: relative; aspect-ratio: 4/5; border-radius: var(--r-xl);
  background:
    radial-gradient(600px 400px at 30% 20%, rgba(200,169,106,0.25), transparent 60%),
    linear-gradient(135deg, var(--bg-card), var(--bg-dark));
  overflow: hidden;
  border: 1px solid rgba(200,169,106,0.3);
  box-shadow: var(--sh-3);
}
.about__media::after {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 32px 32px;
}
.about__media-card {
  position: absolute; bottom: 24px; left: 24px; right: 24px;
  background: rgba(11, 43, 38, 0.92);
  border: 1px solid rgba(200, 169, 106, 0.35);
  border-radius: var(--r-lg);
  padding: 18px 20px;
  display: flex; align-items: center; gap: 14px;
  box-shadow: var(--sh-2);
  backdrop-filter: blur(12px);
}
.about__media-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(200, 169, 106, 0.15);
  color: var(--gold-bright);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.about__media-text { display: flex; flex-direction: column; }
.about__media-text strong { font-family: var(--font-display); font-size: 16px; color: var(--gold-bright); font-weight: 700; }
.about__media-text span { font-size: 13px; color: var(--gray-200); }
.about__points { display: grid; gap: 20px; margin-top: 32px; }
.about__point { display: flex; gap: 14px; align-items: flex-start; }
.about__point-check {
  width: 24px; height: 24px; border-radius: 50%;
  background: rgba(200, 169, 106, 0.15); color: var(--gold-bright);
  display: grid; place-items: center; flex-shrink: 0;
  margin-top: 2px;
}
.about__point strong { display: block; color: var(--off-white); font-weight: 600; margin-bottom: 2px; }
.about__point span { color: var(--gray-200); font-size: 16px; }

@media (max-width: 960px) { .about__grid { grid-template-columns: 1fr; gap: 48px; } }

/* =============================================================
   Why join - feature grid
   ============================================================= */
.features { background: var(--bg-dark); }
.features__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature {
  background: rgba(11, 43, 38, 0.75);
  border: 1px solid rgba(200, 169, 106, 0.22);
  border-radius: var(--r-lg);
  padding: 32px;
  transition: all .25s ease;
}
.feature:hover { border-color: var(--gold-bright); transform: translateY(-4px); box-shadow: var(--sh-3); background: rgba(15, 61, 52, 0.85); }
.feature__icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(200, 169, 106, 0.15); color: var(--gold-bright);
  display: grid; place-items: center;
  margin-bottom: 24px;
}
.feature h3 { font-size: 20px; margin-bottom: 10px; color: var(--off-white); }
.feature p { color: var(--gray-200); font-size: 16px; }

@media (max-width: 960px) { .features__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .features__grid { grid-template-columns: 1fr; } }

/* =============================================================
   Pricing
   ============================================================= */
.pricing { background: var(--bg-dark); }
.pricing__head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.pricing__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.pricing__grid--two { grid-template-columns: repeat(2, 1fr); max-width: 880px; margin-left: auto; margin-right: auto; }
.plan {
  position: relative;
  background: rgba(11, 43, 38, 0.75);
  border: 1px solid rgba(200, 169, 106, 0.25);
  border-radius: var(--r-lg);
  padding: 36px 32px;
  display: flex; flex-direction: column;
  transition: all .25s ease;
}
.plan:hover { transform: translateY(-4px); box-shadow: var(--sh-3); border-color: var(--gold-bright); }
.plan--featured {
  background: linear-gradient(180deg, rgba(15, 61, 52, 0.95) 0%, rgba(5, 31, 32, 0.98) 100%);
  color: var(--off-white);
  border: 1px solid var(--gold-bright);
  box-shadow: var(--sh-4);
  transform: translateY(-12px);
}
.plan--featured:hover { transform: translateY(-16px); }
.plan__ribbon {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-soft)); color: #041617;
  padding: 6px 14px; border-radius: 999px;
  font: 700 11px/1 var(--font-body);
  letter-spacing: 0.08em; text-transform: uppercase;
  box-shadow: 0 8px 20px -8px rgba(200,169,106,0.6);
}
.plan__name {
  font-family: var(--font-display);
  font-size: 14px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--gold-bright); margin-bottom: 12px;
}
.plan--featured .plan__name { color: var(--gold-bright); }
.plan__title { font-family: var(--font-display); font-size: 30px; font-weight: 800; color: var(--off-white); letter-spacing: -0.02em; margin-bottom: 8px; }
.plan--featured .plan__title { color: var(--off-white); }
.plan__sub { font-size: 14px; color: var(--gray-200); margin-bottom: 28px; }
.plan--featured .plan__sub { color: var(--gray-200); }
.plan__price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 28px; }
.plan__price-cur { font-family: var(--font-display); font-size: 17px; font-weight: 600; color: var(--gold-bright); }
.plan--featured .plan__price-cur { color: var(--gold-bright); }
.plan__price-num { font-family: var(--font-display); font-size: 44px; font-weight: 800; color: var(--off-white); letter-spacing: -0.03em; line-height: 1; }
.plan--featured .plan__price-num { color: var(--off-white); }
.plan__price-per { font-size: 14px; color: var(--gray-200); }
.plan--featured .plan__price-per { color: var(--gray-200); }
.plan__list { list-style: none; margin: 0 0 28px; padding: 24px 0 0; border-top: 1px solid rgba(200, 169, 106, 0.2); display: flex; flex-direction: column; gap: 12px; }
.plan--featured .plan__list { border-top-color: rgba(200, 169, 106, 0.3); }
.plan__list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--gray-200); }
.plan--featured .plan__list li { color: var(--gray-200); }
.plan__list svg { flex-shrink: 0; margin-top: 2px; color: var(--gold-bright); }
.plan--featured .plan__list svg { color: var(--gold-bright); }
.plan__cta { margin-top: auto; }

.pricing__banner {
  margin-top: 48px;
  background: rgba(15, 61, 52, 0.65);
  border: 1px solid rgba(200, 169, 106, 0.35);
  border-radius: var(--r-lg);
  padding: 20px 28px;
  display: flex; align-items: center; justify-content: center; gap: 14px;
  text-align: center;
  backdrop-filter: blur(8px);
}
.pricing__banner svg { color: var(--gold-bright); flex-shrink: 0; }
.pricing__banner strong { font-family: var(--font-display); color: var(--off-white); font-size: 16px; }
.pricing__compare { margin-top: 64px; }

@media (max-width: 960px) {
  .pricing__grid { grid-template-columns: 1fr; }
  .pricing__grid--two { grid-template-columns: 1fr; }
  .plan--featured { transform: none; }
  .plan--featured:hover { transform: translateY(-4px); }
}

/* =============================================================
   Yields grid
   ============================================================= */
.yields-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 640px; margin: 0 auto; }
.yields-card {
  background: rgba(11, 43, 38, 0.75);
  border: 1px solid rgba(200, 169, 106, 0.25);
  border-radius: var(--r-lg);
  padding: 40px 32px;
  text-align: center;
  transition: all .2s ease;
}
.yields-card:hover { transform: translateY(-4px); box-shadow: var(--sh-3); border-color: var(--gold-bright); }
.yields-card--featured {
  background: linear-gradient(180deg, rgba(15, 61, 52, 0.95) 0%, rgba(5, 31, 32, 0.98) 100%);
  color: var(--off-white);
  border-color: var(--gold-bright);
  box-shadow: var(--sh-4);
}
.yields-card__rate {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.2vw, 68px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--gold-bright);
  margin-bottom: 12px;
}
.yields-card--featured .yields-card__rate { color: var(--gold-bright); }
.yields-card__title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--off-white);
  margin-bottom: 8px;
}
.yields-card--featured .yields-card__title { color: var(--off-white); }
.yields-card__period { font-size: 14px; color: var(--gray-200); }
.yields-card--featured .yields-card__period { color: var(--gray-200); }
@media (max-width: 640px) {
  .yields-grid { grid-template-columns: 1fr; }
}

/* =============================================================
   Comparison table
   ============================================================= */
.compare-wrap { background: rgba(11, 43, 38, 0.85); border: 1px solid rgba(200, 169, 106, 0.25); border-radius: var(--r-lg); overflow: hidden; }
.compare { width: 100%; border-collapse: collapse; }
.compare th, .compare td { padding: 18px 24px; text-align: left; font-size: 14px; }
.compare thead th { background: rgba(15, 61, 52, 0.6); font: 600 12px/1.4 var(--font-body); letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold-bright); }
.compare thead th:not(:first-child) { text-align: center; }
.compare tbody tr { border-top: 1px solid rgba(200, 169, 106, 0.15); }
.compare tbody td:not(:first-child) { text-align: center; }
.compare td:first-child { font-weight: 600; color: var(--off-white); }
.compare .check { color: var(--gold-bright); display: inline-block; }
.compare .x { color: var(--gray-400); display: inline-block; }
.compare-wrap { overflow-x: auto; }

/* =============================================================
   Events
   ============================================================= */
.events { background: var(--bg-dark); }
.events__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.events__grid--listing { margin-top: 32px; }
.event {
  background: rgba(11, 43, 38, 0.75);
  border: 1px solid rgba(200, 169, 106, 0.25);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: all .25s ease;
}
.event:hover { transform: translateY(-4px); box-shadow: var(--sh-3); border-color: var(--gold-bright); }
.event__media {
  position: relative; aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--bg-card), var(--bg-dark));
  display: grid; place-items: center;
  color: var(--off-white);
  overflow: hidden;
}
.event__media::after {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 28px 28px;
}
.event__date-badge {
  position: absolute; top: 16px; left: 16px; z-index: 1;
  background: rgba(11, 43, 38, 0.92); color: var(--off-white);
  border: 1px solid rgba(200, 169, 106, 0.35);
  border-radius: var(--r); padding: 8px 12px; text-align: center;
  min-width: 56px;
  backdrop-filter: blur(8px);
}
.event__date-day { display: block; font-family: var(--font-display); font-size: 20px; font-weight: 800; line-height: 1; color: var(--gold-bright); }
.event__date-mo { display: block; margin-top: 4px; font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gray-200); font-weight: 600; }
.event__icon-large { width: 60px; height: 60px; border-radius: 14px; background: rgba(200, 169, 106, 0.15); border: 1px solid rgba(200, 169, 106, 0.3); display: grid; place-items: center; color: var(--gold-bright); }
.event__body { padding: 24px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.event__meta { display: flex; gap: 14px; font-size: 12px; color: var(--gray-200); }
.event__meta span { display: inline-flex; align-items: center; gap: 6px; }
.event__title { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--off-white); letter-spacing: -0.01em; line-height: 1.3; }
.event__desc { font-size: 14px; color: var(--gray-200); flex: 1; }
.event__foot { display: flex; align-items: center; justify-content: space-between; padding-top: 16px; border-top: 1px solid rgba(200, 169, 106, 0.2); margin-top: 8px; }
.event__speaker { display: flex; align-items: center; gap: 10px; min-width: 0; }
.event__speaker strong { color: var(--off-white); font-size: 13px; }
.event__speaker span { color: var(--gray-300); font-size: 11px; }
.event__avatar { width: 32px; height: 32px; border-radius: 50%; background: rgba(200, 169, 106, 0.2); color: var(--gold-bright); display: grid; place-items: center; font: 700 12px/1 var(--font-body); }

@media (max-width: 960px) { .events__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .events__grid { grid-template-columns: 1fr; } }

/* =============================================================
   Articles (blog cards)
   ============================================================= */
.articles { background: var(--bg-dark); }
.articles__grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 24px; }
.article {
  background: rgba(11, 43, 38, 0.75);
  border: 1px solid rgba(200, 169, 106, 0.25);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: all .25s ease;
}
.article:hover { transform: translateY(-4px); box-shadow: var(--sh-3); border-color: var(--gold-bright); }
.article--featured { grid-row: span 2; }
.article__media {
  position: relative; aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--bg-card), var(--bg-dark));
  display: grid; place-items: center;
  color: var(--gold-bright);
  overflow: hidden;
}
.article--featured .article__media { aspect-ratio: 4/3; }
.article__media::after {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 24px 24px;
}
.article__body { padding: 24px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.article--featured .article__body { padding: 32px; }
.article__meta { display: flex; gap: 12px; align-items: center; font-size: 12px; color: var(--gray-200); }
.article__title { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--off-white); letter-spacing: -0.01em; line-height: 1.3; }
.article--featured .article__title { font-size: 30px; line-height: 1.15; }
.article__excerpt { font-size: 14px; color: var(--gray-200); }

@media (max-width: 960px) {
  .articles__grid { grid-template-columns: 1fr 1fr; }
  .article--featured { grid-row: auto; grid-column: span 2; }
}
@media (max-width: 600px) {
  .articles__grid { grid-template-columns: 1fr; }
  .article--featured { grid-column: auto; }
}

/* =============================================================
   Testimonials
   ============================================================= */
.testimonials { background: var(--bg-dark); }
.testimonials__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial {
  background: rgba(11, 43, 38, 0.75);
  border: 1px solid rgba(200, 169, 106, 0.25);
  border-radius: var(--r-lg);
  padding: 36px 32px;
  display: flex; flex-direction: column; gap: 24px;
  position: relative;
  transition: all .25s ease;
}
.testimonial:hover { border-color: var(--gold-bright); transform: translateY(-4px); }
.testimonial__quote-mark {
  font-family: var(--font-serif);
  font-size: 68px; line-height: 0.6;
  color: var(--gold-bright);
  font-weight: 700;
  height: 24px;
}
.testimonial__quote { font-size: 16px; color: var(--gray-200); line-height: 1.6; flex: 1; }
.testimonial__person { display: flex; align-items: center; gap: 12px; padding-top: 20px; border-top: 1px solid rgba(200, 169, 106, 0.2); }
.testimonial__avatar { width: 44px; height: 44px; border-radius: 50%; background: rgba(200, 169, 106, 0.2); color: var(--gold-bright); display: grid; place-items: center; font: 700 14px/1 var(--font-body); }
.testimonial__person-text strong { display: block; font-family: var(--font-display); color: var(--off-white); font-size: 14px; font-weight: 700; }
.testimonial__person-text span { font-size: 12px; color: var(--gray-400); }

@media (max-width: 960px) { .testimonials__grid { grid-template-columns: 1fr; } }

/* =============================================================
   FAQ
   ============================================================= */
.faq { background: var(--bg-dark); }
.faq__grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 80px; align-items: start; }
.faq__items { display: flex; flex-direction: column; }
.faq__item { border-bottom: 1px solid rgba(200, 169, 106, 0.2); }
.faq__item:first-child { border-top: 1px solid rgba(200, 169, 106, 0.2); }
.faq__q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 24px 0;
  text-align: left;
  font-family: var(--font-display);
  font-size: 17px; font-weight: 600;
  color: var(--off-white);
  letter-spacing: -0.01em;
}
.faq__q:hover { color: var(--gold-bright); }
.faq__q-icon {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(15, 61, 52, 0.6); color: var(--gold-bright);
  display: grid; place-items: center; flex-shrink: 0;
  transition: transform .25s ease, background .2s ease, color .2s ease;
  border: 1px solid rgba(200, 169, 106, 0.25);
}
.faq__item.is-open .faq__q-icon { background: var(--gold-bright); color: #041617; transform: rotate(45deg); }
.faq__a {
  max-height: 0; overflow: hidden;
  transition: max-height .3s ease;
  color: var(--gray-200); font-size: 16px; line-height: 1.6;
}
.faq__item.is-open .faq__a { max-height: 320px; }
.faq__a-inner { padding-bottom: 24px; max-width: 60ch; }

@media (max-width: 960px) { .faq__grid { grid-template-columns: 1fr; gap: 40px; } }

/* =============================================================
   CTA banner
   ============================================================= */
.cta {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, rgba(15, 61, 52, 0.9) 0%, rgba(4, 22, 23, 0.98) 100%);
  border: 1px solid rgba(200, 169, 106, 0.35);
  color: var(--off-white);
  border-radius: var(--r-xl);
  padding: 72px 64px;
  display: flex; align-items: center; justify-content: space-between; gap: 48px;
  box-shadow: 0 20px 50px var(--sh-ink-strong);
}
.cta::before {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(200,169,106,0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(200,169,106,0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at right, var(--mask-solid) 30%, transparent 70%);
}
.cta__content { position: relative; max-width: 620px; }
.cta__eyebrow { color: var(--gold-bright); }
.cta h2 { color: var(--off-white); margin-bottom: 14px; }
.cta p { color: var(--gray-200); font-size: 17px; }
.cta__actions { position: relative; display: flex; gap: 12px; flex-shrink: 0; }

@media (max-width: 760px) { .cta { flex-direction: column; align-items: flex-start; padding: 48px 32px; } }

/* =============================================================
   Footer
   ============================================================= */
.footer {
  background: var(--ink);
  color: var(--gray-200);
  border-top: 1px solid rgba(200, 169, 106, 0.2);
  padding: 80px 0 32px;
}
.footer__grid { display: grid; grid-template-columns: 1.4fr repeat(4, 1fr); gap: 48px; margin-bottom: 56px; }
.footer__brand-block { max-width: 320px; }
.footer__brand { display: flex; align-items: center; gap: 12px; font-family: var(--font-display); font-weight: 700; font-size: 17px; color: var(--off-white); margin-bottom: 16px; }
.footer__desc { font-size: 14px; line-height: 1.6; color: var(--gray-200); margin-bottom: 20px; }
.footer__social { display: flex; gap: 8px; }
.footer__social a {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(200, 169, 106, 0.12);
  border: 1px solid rgba(200, 169, 106, 0.25);
  display: grid; place-items: center;
  color: var(--gold-bright);
  transition: all .2s ease;
}
.footer__social a:hover { background: var(--gold-bright); color: #041617; }
.footer__col h2 { font: 600 13px/1 var(--font-body); color: var(--gold-bright); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 18px; }
.footer__col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer__col a, .footer__placeholder { font-size: 14px; color: var(--gray-200); transition: color .15s ease; }
.footer__col a:hover { color: var(--gold-bright); }
.footer__placeholder { cursor: default; }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 32px; border-top: 1px solid rgba(200, 169, 106, 0.15); font-size: 13px; color: var(--gray-400); gap: 16px; flex-wrap: wrap; }
.footer__bottom-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer__bottom-links a:hover { color: var(--gold-bright); }

@media (max-width: 960px) { .footer__grid { grid-template-columns: 1fr 1fr; } .footer__brand-block { grid-column: span 2; } }
@media (max-width: 600px) { .footer__grid { grid-template-columns: 1fr; gap: 36px; } .footer__brand-block { grid-column: auto; } .footer__bottom-links { gap: 12px 20px; } }
@media (pointer: coarse) {
  .footer__col ul { gap: 2px; }
  .footer__col a, .footer__placeholder { display: inline-flex; align-items: center; min-height: 44px; }
  .footer__social a { width: 44px; height: 44px; }
  .footer__bottom-links a { display: inline-flex; align-items: center; min-height: 44px; }
}

/* =============================================================
   Page hero (inner pages)
   ============================================================= */
.page-hero {
  padding: calc(var(--nav-h) + 80px) 0 80px;
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-emerald) 100%);
  border-bottom: 1px solid rgba(200, 169, 106, 0.2);
  position: relative;
  overflow: hidden;
}
.page-hero--dark {
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-card) 100%);
  color: var(--off-white);
  border-bottom: 0;
}
.page-hero--dark h1 { color: var(--off-white); }
.page-hero--dark p { color: var(--gray-200); }
.page-hero--dark .eyebrow { color: var(--gold-bright); }
.page-hero::after {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(200,169,106,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(200,169,106,0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, var(--mask-solid) 0%, transparent 80%);
  pointer-events: none;
}
.page-hero--dark::after { background-image: linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px); }
.page-hero__inner { position: relative; }
.breadcrumbs {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  font-size: 13px;
  color: var(--gray-200);
}
.breadcrumbs a { color: var(--gray-200); }
.breadcrumbs a:hover { color: var(--gold-bright); }
.breadcrumbs svg { color: var(--gray-400); }
.page-hero--dark .breadcrumbs { color: rgba(255,255,255,0.5); }
.page-hero--dark .breadcrumbs a { color: rgba(255,255,255,0.7); }
.page-hero--dark .breadcrumbs svg { color: rgba(255,255,255,0.4); }
.page-hero h1 { max-width: 18ch; margin-bottom: 18px; color: var(--off-white); overflow-wrap: anywhere; }
.page-hero p { font-size: 17px; max-width: 60ch; color: var(--gray-200); }
.page-hero__actions { display: flex; align-items: center; flex-wrap: wrap; gap: 12px; margin-top: 32px; }

/* =============================================================
   Form
   ============================================================= */
.form { display: flex; flex-direction: column; gap: 18px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font: 500 13px/1 var(--font-body); color: var(--off-white); }
.field label .req { color: var(--gold-bright); }
.field input, .field select, .field textarea {
  width: 100%;
  height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(200, 169, 106, 0.3);
  border-radius: var(--r);
  background: rgba(11, 43, 38, 0.88);
  color: var(--off-white);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field textarea { height: auto; min-height: 140px; padding: 14px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 0;
  border-color: var(--gold-bright);
  box-shadow: 0 0 0 3px rgba(200, 169, 106, 0.25);
}
.field__hint { font-size: 12px; color: var(--fg-soft); }
@media (max-width: 600px) { .form__row { grid-template-columns: 1fr; } }

/* =============================================================
   Reveal animation
   ============================================================= */
.reveal {
  will-change: transform, opacity, filter;
}

/* =============================================================
   Tabs
   ============================================================= */
.tabs { display: inline-flex; max-width: 100%; padding: 4px; background: var(--surface-2); border-radius: var(--r-pill); overflow-x: auto; scrollbar-width: none; }
.tabs::-webkit-scrollbar { display: none; }
.tabs__btn { min-height: 38px; padding: 8px 16px; border-radius: var(--r-pill); font: 500 13px/1 var(--font-body); color: var(--fg-soft); transition: all .15s ease; white-space: nowrap; }
.tabs__btn.is-active { background: var(--ink); color: #fff; }
.chip-group { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }

/* =============================================================
   Admin dashboard
   ============================================================= */
.admin { display: grid; grid-template-columns: 260px 1fr; min-height: 100vh; background: var(--bg); }
.admin__side {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding: 24px 16px;
  display: flex; flex-direction: column;
  position: sticky; top: 0; height: 100vh;
  overflow-y: auto;
}
.admin__brand { display: flex; align-items: center; gap: 10px; padding: 0 8px 24px; border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 16px; }
.admin__brand-mark { width: 32px; height: 32px; border-radius: 0; background: var(--accent); color: var(--ink); display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; font-size: 14px; }
.admin__brand-text { font-family: var(--font-display); font-weight: 700; color: #fff; font-size: 16px; }
.admin__brand-sub { font-size: 11px; color: rgba(255,255,255,0.5); letter-spacing: 0.08em; text-transform: uppercase; }
.admin__nav-group { margin-bottom: 20px; }
.admin__nav-title { font: 600 11px/1 var(--font-body); letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.4); padding: 0 12px 8px; }
.admin__nav { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 2px; }
.admin__nav a { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: 8px; font-size: 14px; color: rgba(255,255,255,0.7); }
.admin__nav a:hover { background: rgba(255,255,255,0.06); color: #fff; }
.admin__nav a.is-active { background: var(--accent); color: var(--ink); font-weight: 600; }
.admin__nav a svg { width: 16px; height: 16px; }
.admin__nav-badge { margin-left: auto; background: rgba(255,255,255,0.1); color: #fff; padding: 2px 6px; border-radius: 999px; font-size: 10px; font-weight: 600; }
.admin__nav a.is-active .admin__nav-badge { background: var(--sh-ink-faint); color: var(--ink); }
.admin__profile { margin-top: auto; display: flex; align-items: center; gap: 10px; padding: 12px; border-top: 1px solid rgba(255,255,255,0.08); }
.admin__profile-avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--accent); color: var(--ink); display: grid; place-items: center; font: 700 13px/1 var(--font-body); }
.admin__profile-text { display: flex; flex-direction: column; }
.admin__profile-text strong { font-size: 13px; color: #fff; }
.admin__profile-text span { font-size: 11px; color: rgba(255,255,255,0.5); }

.admin__main { padding: 24px 32px 64px; min-width: 0; }
.admin__topbar { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 28px; }
.admin__title { display: flex; flex-direction: column; gap: 4px; }
.admin__title h1 { font-size: 30px; }
.admin__title p { font-size: 14px; color: var(--fg-soft); }
.admin__topbar-actions { display: flex; align-items: center; gap: 10px; }
.admin__search {
  display: flex; align-items: center; gap: 8px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 0 14px;
  height: 40px;
  width: 280px;
  color: var(--fg-soft);
}
.admin__search input { border: 0; outline: 0; flex: 1; font-size: 14px; background: transparent; }
.admin__icon-btn { width: 40px; height: 40px; border-radius: var(--r); background: var(--white); border: 1px solid var(--border); display: grid; place-items: center; color: var(--ink); position: relative; }
.admin__icon-btn::after { content: ""; position: absolute; top: 9px; right: 9px; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); border: 2px solid #fff; }

.admin__stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 24px; }
.admin-stat {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 20px;
}
.admin-stat__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.admin-stat__label { font-size: 13px; color: var(--fg-soft); font-weight: 500; }
.admin-stat__icon { width: 32px; height: 32px; border-radius: 8px; display: grid; place-items: center; }
.admin-stat__icon--green { background: var(--primary-tint); color: var(--primary-deep); }
.admin-stat__icon--gold { background: var(--accent-tint); color: var(--gold-soft); }
.admin-stat__icon--ink { background: var(--gray-100); color: var(--ink); }
.admin-stat__icon--blue { background: var(--status-info-tint); color: var(--status-info); }
.admin-stat__value { font-family: var(--font-display); font-size: 30px; font-weight: 800; color: var(--ink); letter-spacing: -0.02em; line-height: 1; }
.admin-stat__delta { display: flex; align-items: center; gap: 4px; margin-top: 8px; font-size: 12px; }
.admin-stat__delta--up { color: var(--status-success); }
.admin-stat__delta--down { color: var(--status-danger); }

.admin__grid { display: grid; grid-template-columns: 2fr 1fr; gap: 24px; }
.admin__panel { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; }
.admin__panel-head { padding: 20px 24px; border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; }
.admin__panel-head h3 { font-size: 16px; }
.admin__panel-head a { font-size: 13px; color: var(--primary); font-weight: 600; }
.admin__panel-body { padding: 20px 24px; }
.admin__panel-body--flush { padding: 0; }

.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th, .admin-table td { padding: 14px 24px; text-align: left; font-size: 14px; }
.admin-table thead th { background: var(--surface-2); font: 600 12px/1.2 var(--font-body); letter-spacing: 0.08em; text-transform: uppercase; color: var(--fg-soft); }
.admin-table tbody tr { border-top: 1px solid var(--border); }
.admin-table tbody tr:hover { background: var(--surface-2); }
.admin-table__title { display: flex; align-items: center; gap: 10px; }
.admin-table__thumb { width: 36px; height: 36px; border-radius: 8px; background: linear-gradient(135deg, var(--emerald-700), var(--ink)); flex-shrink: 0; display: grid; place-items: center; color: var(--accent); }
.admin-table__title-text { display: flex; flex-direction: column; }
.admin-table__title-text strong { font-weight: 600; color: var(--ink); }
.admin-table__title-text span { font-size: 12px; color: var(--fg-soft); }
.admin-status { display: inline-flex; align-items: center; gap: 6px; padding: 4px 10px; border-radius: 999px; font-size: 12px; font-weight: 600; }
.admin-status--published { background: var(--primary-tint); color: var(--primary-deep); }
.admin-status--draft { background: var(--status-warning-tint); color: var(--status-warning); }
.admin-status--scheduled { background: var(--status-info-alt-tint); color: var(--status-info-alt); }
.admin-status::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.admin-action { color: var(--fg-soft); font-size: 13px; font-weight: 500; }
.admin-action:hover { color: var(--primary); }

.admin__row-2 { display: grid; grid-template-columns: 1.4fr 1fr; gap: 24px; margin-top: 24px; }

.editor {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.editor__bar { display: flex; align-items: center; gap: 4px; padding: 10px 16px; border-bottom: 1px solid var(--border); background: var(--surface-2); flex-wrap: wrap; }
.editor__btn { width: 32px; height: 32px; border-radius: var(--r-sm); display: grid; place-items: center; color: var(--fg-soft); font-size: 13px; }
.editor__btn:hover { background: var(--white); color: var(--ink); }
.editor__btn--bold { font-weight: 700; }
.editor__btn--italic { font-style: italic; }
.editor__divider { width: 1px; height: 20px; background: var(--border-strong); margin: 0 4px; }
.editor__body { padding: 24px 32px; min-height: 220px; }
.editor__body h4 { font-size: clamp(20px, 2vw, 26px); margin-bottom: 12px; }
.editor__body p { font-size: 16px; color: var(--fg-soft); margin-bottom: 12px; }

.media-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; padding: 20px 24px; }
.media-item { aspect-ratio: 1; border-radius: var(--r); background: linear-gradient(135deg, var(--gray-200), var(--gray-300)); position: relative; overflow: hidden; }
.media-item--featured { grid-column: span 2; grid-row: span 2; }
.media-item__overlay { position: absolute; bottom: 8px; left: 8px; right: 8px; background: rgba(4, 22, 23, 0.75); color: #fff; padding: 6px 8px; border-radius: var(--r-sm); font-size: 11px; display: flex; justify-content: space-between; }

.calendar { padding: 20px 24px; }
.calendar__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.calendar__title { font-family: var(--font-display); font-weight: 700; color: var(--ink); }
.calendar__nav { display: flex; gap: 4px; }
.calendar__nav button { width: 28px; height: 28px; border-radius: var(--r-sm); background: var(--surface-2); display: grid; place-items: center; color: var(--ink); }
.calendar__grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.calendar__dow { font-size: 11px; color: var(--fg-soft); font-weight: 600; text-align: center; padding: 6px 0; letter-spacing: 0.06em; text-transform: uppercase; }
.calendar__day { aspect-ratio: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; font-size: 13px; border-radius: var(--r-sm); color: var(--ink); position: relative; cursor: pointer; }
.calendar__day:hover { background: var(--surface-2); }
.calendar__day--out { color: var(--gray-300); }
.calendar__day--today { background: var(--ink); color: #fff; font-weight: 700; }
.calendar__day--event { font-weight: 700; }
.calendar__day--event::after { content: ""; position: absolute; bottom: 4px; left: 50%; transform: translateX(-50%); width: 4px; height: 4px; border-radius: 50%; background: var(--accent); }
.calendar__day--today.calendar__day--event::after { background: var(--accent); }

@media (max-width: 1100px) {
  .admin { grid-template-columns: 1fr; }
  .admin__side { position: static; height: auto; }
  .admin__stats { grid-template-columns: 1fr 1fr; }
  .admin__grid, .admin__row-2 { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .admin__main { padding: 16px; }
  .admin__stats { grid-template-columns: 1fr; }
  .admin__search { width: 160px; }
  .media-grid { grid-template-columns: 1fr 1fr; }
}

/* =============================================================
   Event detail
   ============================================================= */
.event-hero { padding: calc(var(--nav-h) + 60px) 0 0; background: var(--ink); color: #fff; }
.event-hero__media {
  aspect-ratio: 21/9;
  background: linear-gradient(135deg, var(--emerald-700), var(--ink));
  position: relative;
  overflow: hidden;
  border-radius: 0 0 var(--r-xl) var(--r-xl);
}
.event-hero__media::after {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 32px 32px;
}
.event-hero__topbar { position: absolute; top: 32px; left: 32px; right: 32px; width: auto; max-width: none; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 16px; color: #fff; }
.event-hero__back { display: inline-flex; align-items: center; gap: 6px; color: rgba(255,255,255,0.7); font-size: 13px; text-decoration: none; transition: color .2s; }
.event-hero__back:hover { color: #fff; }
.event-hero__svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.event-hero__inner { padding: 56px 24px 80px; position: relative; z-index: 1; }
.event-hero h1 { color: #fff; max-width: 22ch; margin-bottom: 24px; }
.event-hero__inner > p { font-size: 17px; color: rgba(255,255,255,0.75); max-width: 60ch; }
.info-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.info-list li { display: flex; gap: 10px; font-size: 14px; }
.info-list li svg { color: var(--primary); flex-shrink: 0; margin-top: 2px; }
.info-list li span { color: var(--fg-soft); }
.event-hero__meta { display: flex; flex-wrap: wrap; gap: 32px; padding: 24px 0; border-top: 1px solid rgba(255,255,255,0.1); border-bottom: 1px solid rgba(255,255,255,0.1); margin-top: 24px; }
.event-hero__meta-item { display: flex; flex-direction: column; gap: 4px; }
.event-hero__meta-item span { font-size: 11px; color: rgba(255,255,255,0.5); letter-spacing: 0.08em; text-transform: uppercase; }
.event-hero__meta-item strong { font-family: var(--font-display); font-size: 16px; color: #fff; font-weight: 600; }

.event-body { display: grid; grid-template-columns: 2fr 1fr; gap: 64px; padding: 64px 24px; }
.event-body h3 { margin-top: 32px; margin-bottom: 12px; }
.event-body p { font-size: 16px; color: var(--fg-soft); margin-bottom: 16px; line-height: 1.7; }
.event-body ul { margin: 16px 0; padding-left: 20px; }
.event-body li { margin-bottom: 8px; color: var(--fg-soft); }
.event-side { position: sticky; top: calc(var(--nav-h) + 24px); align-self: start; }
.event-side__card { background: rgba(11, 43, 38, 0.9); border: 1px solid rgba(200, 169, 106, 0.28); border-radius: var(--r-lg); padding: 28px; }
@media (max-width: 960px) { .event-body { grid-template-columns: 1fr; gap: 32px; } .event-side { position: static; } }

.speaker-card { display: flex; gap: 16px; align-items: center; padding: 20px; background: rgba(15, 61, 52, 0.72); border: 1px solid rgba(200, 169, 106, 0.2); border-radius: var(--r-lg); margin-top: 16px; }
.speaker-card__avatar { width: 56px; height: 56px; border-radius: 50%; background: rgba(200, 169, 106, 0.16); color: var(--gold-bright); display: grid; place-items: center; font: 700 18px/1 var(--font-body); }
.speaker-card__text strong { display: block; font-family: var(--font-display); color: var(--off-white); font-weight: 700; }
.speaker-card__text span { font-size: 13px; color: var(--gray-200); }

/* =============================================================
   Contact
   ============================================================= */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px; }
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-info__item { display: flex; gap: 14px; align-items: flex-start; padding: 20px; background: rgba(11, 43, 38, 0.82); border: 1px solid rgba(200, 169, 106, 0.24); border-radius: var(--r-lg); }
.contact-info__icon { width: 44px; height: 44px; border-radius: var(--r); background: rgba(200, 169, 106, 0.14); color: var(--gold-bright); display: grid; place-items: center; flex-shrink: 0; }
.contact-info__text strong { display: block; font-family: var(--font-display); color: var(--off-white); font-weight: 700; margin-bottom: 4px; }
.contact-info__text span { display: block; white-space: pre-line; font-size: 14px; color: var(--gray-200); line-height: 1.5; }
.map {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: var(--r-lg);
  background:
    radial-gradient(800px 400px at 40% 40%, rgba(200, 169, 106, 0.12), transparent 60%),
    linear-gradient(135deg, var(--bg-card), var(--bg-dark));
  border: 1px solid rgba(200, 169, 106, 0.24);
  position: relative;
  overflow: hidden;
  margin-top: 32px;
}
.map::before {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(200, 169, 106, 0.12) 1px, transparent 1px), linear-gradient(90deg, rgba(200, 169, 106, 0.12) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.5;
}
.map__pin { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -100%); }
.map__pin-circle { width: 36px; height: 36px; border-radius: 50%; background: var(--primary-deep); color: var(--accent); display: grid; place-items: center; box-shadow: 0 8px 20px rgba(11,61,46,0.4); }
.map__pin-dot { position: absolute; top: 32px; left: 50%; transform: translateX(-50%); width: 12px; height: 12px; background: var(--primary-deep); border-radius: 50%; opacity: 0.3; }
.map__label { position: absolute; top: 64%; left: 50%; transform: translateX(-50%); background: rgba(11, 43, 38, 0.94); color: var(--off-white); border: 1px solid rgba(200, 169, 106, 0.25); padding: 8px 14px; border-radius: var(--r); font-size: 13px; box-shadow: var(--sh-2); white-space: nowrap; }
.contact-form-card {
  background: rgba(11, 43, 38, 0.82);
  border: 1px solid rgba(200, 169, 106, 0.24);
  border-radius: var(--r-xl);
  padding: clamp(24px, 4vw, 40px);
}
.contact-form-card__lead { color: var(--gray-200); margin: 12px 0 24px; }
.form__status { padding: 12px 14px; border-radius: var(--r); font-size: 14px; line-height: 1.5; border: 1px solid; }
.form__status--success { color: var(--mint); background: rgba(142, 182, 155, 0.12); border-color: rgba(142, 182, 155, 0.34); }
.form__status--error { color: var(--off-white); background: var(--status-danger-tint); border-color: rgba(200, 169, 106, 0.4); }
@media (max-width: 960px) { .contact-grid { grid-template-columns: 1fr; } }

/* =============================================================
   Blog / Insights
   ============================================================= */
.insights-hero { display: grid; grid-template-columns: 1.3fr 1fr; gap: 48px; margin-bottom: 64px; align-items: center; }
.insights-hero__media { aspect-ratio: 16/10; border-radius: var(--r-lg); background: linear-gradient(135deg, var(--emerald-700), var(--ink)); position: relative; overflow: hidden; }
.insights-hero__media::after { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px); background-size: 28px 28px; }
.insights-hero__icon { position: absolute; top: 24px; left: 24px; width: 48px; height: 48px; border-radius: var(--r); background: rgba(255,255,255,0.08); color: var(--accent); display: grid; place-items: center; z-index: 1; }
.insights-hero__overlay { position: absolute; inset: auto 0 0; z-index: 1; padding: 32px 24px 24px; background: linear-gradient(180deg, transparent, rgba(4, 22, 23, 0.95)); }
.insights-hero__overlay h2 { margin: 12px 0 6px; font-size: clamp(30px, 3.4vw, 44px); }
.insights-hero__overlay p { color: var(--gray-200); font-size: 14px; }
.insights-hero__title { font-family: var(--font-display); font-size: clamp(30px, 3.4vw, 44px); font-weight: 800; color: var(--off-white); letter-spacing: -0.02em; line-height: 1.15; margin: 16px 0 12px; }
.insights-hero__excerpt { color: var(--gray-200); margin-bottom: 20px; }
.insights-filters { display: flex; align-items: center; justify-content: space-between; margin-bottom: 32px; gap: 16px; flex-wrap: wrap; }
.insights-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr)); gap: 24px; }
.pagination { display: flex; align-items: center; justify-content: center; gap: 4px; margin-top: 56px; }
.pagination button { width: 40px; height: 40px; border-radius: 8px; display: grid; place-items: center; font: 500 14px/1 var(--font-body); color: var(--fg-soft); }
.pagination button:hover:not(:disabled) { background: var(--surface-2); color: var(--off-white); }
.pagination button:disabled { opacity: 0.4; cursor: not-allowed; }
.pagination .is-active { background: var(--gold-bright); color: var(--bg-dark); }
@media (max-width: 960px) { .insights-hero { grid-template-columns: 1fr; } }
@media (max-width: 600px) { .insights-grid { grid-template-columns: 1fr; } }

/* =============================================================
   About page extras
   ============================================================= */
.values { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.value { padding: 28px; background: rgba(11, 43, 38, 0.8); border: 1px solid rgba(200, 169, 106, 0.24); border-radius: var(--r-lg); }
.value__num { font-family: var(--font-display); font-size: clamp(30px, 3.4vw, 44px); font-weight: 800; color: var(--accent); letter-spacing: -0.02em; line-height: 1; margin-bottom: 12px; }
.value h3 { font-size: 17px; margin-bottom: 8px; }
.value p { font-size: 14px; color: var(--fg-soft); }
.leaders { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.leader { background: rgba(11, 43, 38, 0.8); border: 1px solid rgba(200, 169, 106, 0.24); border-radius: var(--r-lg); overflow: hidden; }
.leader__media { aspect-ratio: 4/5; background: linear-gradient(135deg, var(--emerald-700), var(--ink)); position: relative; }
.leader__media::after { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px); background-size: 24px 24px; }
.leader__initials { position: absolute; bottom: 16px; left: 16px; width: 44px; height: 44px; border-radius: 50%; background: var(--accent); color: var(--ink); display: grid; place-items: center; font: 700 14px/1 var(--font-body); }
.leader__body { padding: 20px 24px; }
.leader h3 { font-size: clamp(20px, 2vw, 26px); margin-bottom: 4px; }
.leader__role { font-size: 13px; color: var(--accent); font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 12px; display: block; }
.leader p { font-size: 14px; color: var(--fg-soft); }
@media (max-width: 960px) { .values { grid-template-columns: 1fr 1fr; } .leaders { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .values, .leaders { grid-template-columns: 1fr; } }

.philosophy { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.philosophy__pull { background: var(--ink); color: #fff; padding: 48px; border-radius: var(--r-lg); position: relative; overflow: hidden; }
.philosophy__pull::before { content: ""; position: absolute; top: 0; left: 0; width: 60px; height: 4px; background: var(--accent); }
.philosophy__pull p { font-family: var(--font-display); font-size: clamp(20px, 2vw, 26px); line-height: 1.4; font-weight: 500; color: #fff; }
.philosophy__pull cite { display: block; margin-top: 20px; font-size: 13px; color: rgba(255,255,255,0.6); font-style: normal; letter-spacing: 0.04em; }
.philosophy p { font-size: 16px; color: var(--fg-soft); margin-bottom: 16px; }
@media (max-width: 960px) { .philosophy { grid-template-columns: 1fr; gap: 32px; } }
.philosophy__pull--accent { background: rgba(200, 169, 106, 0.12); border: 1px solid rgba(200, 169, 106, 0.32); }
.philosophy__pull--accent p { color: var(--off-white); }
.about__cta { margin-top: 16px; }

/* Story timeline */
.timeline { position: relative; padding-left: 40px; }
.timeline::before { content: ""; position: absolute; left: 12px; top: 0; bottom: 0; width: 2px; background: var(--border); }
.timeline__item { position: relative; padding-bottom: 32px; }
.timeline__item::before { content: ""; position: absolute; left: -34px; top: 6px; width: 12px; height: 12px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px var(--bg); }
.timeline__year { font-family: var(--font-display); font-size: 14px; font-weight: 700; color: var(--primary); letter-spacing: 0.04em; margin-bottom: 4px; }
.timeline__item h3 { font-size: clamp(20px, 2vw, 26px); margin-bottom: 6px; }
.timeline__item p { color: var(--fg-soft); font-size: 16px; }


/* =============================================================
   Language switcher
   ============================================================= */
.lang {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 4px;
  border: 1px solid rgba(200, 169, 106, 0.3);
  border-radius: var(--r-pill);
  background: rgba(15, 61, 52, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.lang__btn {
  appearance: none;
  background: transparent;
  border: 0;
  color: var(--gray-200);
  font: 600 12px/1 var(--font-body);
  letter-spacing: 0.04em;
  padding: 4px 10px;
  border-radius: var(--r-pill);
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.lang__btn:hover { color: var(--gold-bright); background: rgba(200, 169, 106, 0.12); }
.lang__btn.is-active {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-soft));
  color: #041617;
  font-weight: 700;
}
.lang__btn.is-active:hover { background: linear-gradient(135deg, var(--gold-bright), var(--gold-soft)); color: #041617; }

/* On hero nav */
.nav--hero .lang {
  background: rgba(15, 61, 52, 0.6);
  border-color: rgba(200, 169, 106, 0.3);
}
.nav--hero .lang__btn { color: var(--gray-200); }
.nav--hero .lang__btn:hover { color: var(--gold-bright); background: rgba(200, 169, 106, 0.12); }
.nav--hero .lang__btn.is-active {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-soft));
  color: #041617;
  font-weight: 700;
}
.nav--hero .lang__btn.is-active:hover { background: linear-gradient(135deg, var(--gold-bright), var(--gold-soft)); color: #041617; }

.nav--hero.nav--scrolled .lang {
  background: rgba(15, 61, 52, 0.85);
  border-color: rgba(200, 169, 106, 0.35);
}
.nav--hero.nav--scrolled .lang__btn { color: var(--gray-200); }
.nav--hero.nav--scrolled .lang__btn:hover { color: var(--gold-bright); background: rgba(200, 169, 106, 0.15); }
.nav--hero.nav--scrolled .lang__btn.is-active {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-soft));
  color: #041617;
  font-weight: 700;
}
.nav--hero.nav--scrolled .lang__btn.is-active:hover { background: var(--ink); color: var(--white); }

/* Switcher in the mobile drawer */
.drawer__lang {
  display: flex;
  gap: 4px;
  padding: 8px 0 16px;
  border-top: 1px solid var(--border);
  margin-top: 12px;
}
.drawer__lang .lang__btn {
  flex: 1;
  padding: 10px 8px;
  font-size: 13px;
}

/* =============================================================
   Armenian typography
   ============================================================= */
body[data-lang="am"] {
  font-family: "Noto Sans Armenian", "Sylfaen", "Segoe UI", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
}
body[data-lang="am"] .hero__title,
body[data-lang="am"] .section__title,
body[data-lang="am"] h1, body[data-lang="am"] h2, body[data-lang="am"] h3,
body[data-lang="am"] .nav__brand,
body[data-lang="am"] .eyebrow {
  font-family: "Noto Serif Armenian", "Sylfaen", "Iowan Old Style", Georgia, serif;
  letter-spacing: 0;
}

/* Russian typography uses a tighter letter-spacing on display */
body[data-lang="ru"] .hero__title,
body[data-lang="ru"] .section__title,
body[data-lang="ru"] h1, body[data-lang="ru"] h2 {
  letter-spacing: -0.01em;
}

/* =============================================================
   Mobile responsive overrides (consolidated)
   ============================================================= */

/* Container - tighter padding on small screens */
@media (max-width: 640px) {
  .container { padding: 0 16px; }
  .nav__brand { gap: 10px; font-size: 17px; }
  .nav__brand-logo-wrapper { width: 40px; height: 40px; }
  .nav__burger { width: 44px; height: 44px; }
}

/* Page hero - reduce vertical padding */
@media (max-width: 640px) {
  .page-hero { padding: calc(var(--nav-h) + 48px) 0 48px; }
  .page-hero h1 { max-width: none; font-size: clamp(30px, 3.4vw, 44px); line-height: 1.08; overflow-wrap: anywhere; }
  .page-hero p { font-size: 16px; }
  .page-hero__actions { display: grid; grid-template-columns: 1fr; }
  .page-hero__actions .btn { width: 100%; }
  .breadcrumbs { margin-bottom: 20px; }
}

/* About grid - tighter gap on mobile */
@media (max-width: 640px) {
  .about__grid { gap: 32px; }
}

/* Feature cards - reduce padding */
@media (max-width: 640px) {
  .feature { padding: 24px; }
}

/* Pricing cards - reduce padding */
@media (max-width: 640px) {
  .plan { padding: 28px 24px; }
  .plan__price-num { font-size: 40px; }
}

/* Yields cards - reduce padding */
@media (max-width: 640px) {
  .yields-card { padding: 32px 24px; }
}

/* Testimonial cards - reduce padding */
@media (max-width: 640px) {
  .testimonial { padding: 28px 24px; }
}

/* CTA banner - tighter padding on small screens */
@media (max-width: 640px) {
  .cta { padding: 36px 24px; gap: 32px; }
  .cta__actions { width: 100%; flex-direction: column; }
  .cta__actions .btn { width: 100%; }
  .cta__form { width: 100%; }
  .cta__form .field { flex-basis: 100%; }
}

/* Contact grid - reduce gap on mobile */
@media (max-width: 640px) {
  .contact-grid { gap: 32px; }
}

/* Philosophy pull-quote - reduce padding */
@media (max-width: 960px) {
  .philosophy__pull { padding: 32px; }
}
@media (max-width: 640px) {
  .philosophy__pull { padding: 24px; }
  .philosophy__pull p { font-size: 16px; }
}

/* Event hero - taller ratio on mobile, tighter insets */
@media (max-width: 640px) {
  .event-hero { padding-top: calc(var(--nav-h) + 28px); }
  .event-hero__media { aspect-ratio: auto; min-height: 0; }
  .event-hero__topbar { top: 16px; left: 16px; right: 16px; }
  .event-hero__inner { padding: 88px 16px 48px; }
  .event-hero h1 { font-size: clamp(30px, 3.4vw, 44px); line-height: 1.08; overflow-wrap: anywhere; }
  .event-hero__inner > p { font-size: 16px; }
  .event-hero__meta { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
  .event-body { padding: 48px 16px; }
}

/* Tabs - prevent overflow on mobile */
@media (max-width: 640px) {
  .tabs { overflow-x: auto; -webkit-overflow-scrolling: touch; max-width: 100%; }
}

/* FAQ answer - increase max-height for long translations */
.faq__item.is-open .faq__a { max-height: 600px; }

/* Reduced motion - cover all animations */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; filter: none !important; transition: none; }
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* =============================================================
   Utility classes (replace inline styles)
   ============================================================= */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}
.divider { border: 0; border-top: 1px solid var(--border); margin: 24px 0; }
.event-side__card .eyebrow { margin-bottom: 12px; }
.event-side__card h3 { font-size: clamp(20px, 2vw, 26px); margin-bottom: 8px; }
.event-side__card p { font-size: 14px; color: var(--fg-soft); margin-bottom: 20px; }
.event-side__card .speaker-card { margin-top: 0; }
.event-side__card .btn + .btn { margin-top: 10px; }
.section-lead { margin-top: 16px; }
.section-action { margin-top: 32px; }
.faq__action { margin-top: 24px; }
.pricing__subtitle { color: var(--gray-200); }
.membership-yields-note { max-width: 560px; margin: 24px auto 0; color: var(--gray-200); font-size: 14px; text-align: center; }
.compare__benefit-col { width: 40%; }
.article__floating-icon { position: absolute; top: 24px; left: 24px; }
.section--white, .section--contrast { background: var(--bg-emerald); }
.empty-state { margin-top: 32px; padding: clamp(32px, 6vw, 64px); text-align: center; border: 1px dashed rgba(200, 169, 106, 0.34); border-radius: var(--r-xl); background: rgba(11, 43, 38, 0.5); }
.empty-state h2 { font-size: clamp(30px, 3.4vw, 44px); margin-bottom: 10px; }
.empty-state p { color: var(--gray-200); }
.cta__status { flex-basis: 100%; margin-top: 4px; }
.article__meta { flex-wrap: wrap; }
.article { min-width: 0; }
article.article:hover { transform: none; box-shadow: none; border-color: rgba(200, 169, 106, 0.25); }
.article__meta--mb { margin-bottom: 20px; }
.cta__form { flex-wrap: wrap; }
.cta__form .field { flex: 1; min-width: 0; }
.search-box { display: flex; align-items: center; gap: 8px; background: rgba(11, 43, 38, 0.86); border: 1px solid rgba(200, 169, 106, 0.28); border-radius: var(--r); padding: 0 14px; height: 42px; width: 280px; max-width: 100%; color: var(--gray-200); }
.search-box input { border: 0; outline: 0; flex: 1; font-size: 14px; color: var(--off-white); background: transparent; min-width: 0; }
.search-box input::placeholder { color: var(--gray-400); }
@media (max-width: 640px) {
  .search-box { width: 100%; }
}

/* hide the .is-active class on no-JS load (FOUC) */
.no-js .lang { display: none; }

/* =============================================================
   Wimont Architectural Layout Classes
   ============================================================= */
.wimont-header {
  text-align: center;
  margin-bottom: 48px;
}
.wimont-eyebrow {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: lowercase;
  color: var(--gold-soft);
  margin-bottom: 6px;
  font-family: var(--font-body);
}
.wimont-title {
  font-size: clamp(30px, 3.4vw, 44px);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: var(--font-display);
  color: var(--white);
}
.wimont-rule {
  width: 60px;
  height: 2px;
  background: var(--gold-bright);
  margin: 16px auto 0;
}
.wimont-feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(200, 169, 106, 0.12);
  border: 1px solid var(--gold-bright);
  margin: 0 auto 20px;
  display: grid;
  place-items: center;
  color: var(--gold-bright);
  font-size: 24px;
}
.wimont-feature-title {
  font-size: clamp(20px, 2vw, 26px);
  color: var(--white);
  margin-bottom: 12px;
  font-family: var(--font-body);
  font-weight: 600;
}
.wimont-feature-desc {
  font-size: 13px;
  color: var(--gray-300);
  line-height: 1.6;
}
.wimont-matrix-card {
  padding: 20px 16px;
  text-align: center;
}
.wimont-matrix-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-200);
  font-weight: 600;
  margin-bottom: 12px;
}
.wimont-matrix-check {
  color: var(--gold-bright);
  font-size: 20px;
}
.wimont-table-wrapper {
  position: relative;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(200, 169, 106, 0.35) transparent;
}
.wimont-table-wrapper::after {
  content: "";
  position: absolute; top: 0; right: 0; bottom: 0;
  width: 56px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, var(--surface));
  opacity: 0;
  transition: opacity .2s ease;
}
@media (max-width: 860px) {
  .wimont-table-wrapper::after { opacity: 1; }
}
.wimont-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 13px;
}
.wimont-table th {
  padding: 16px 20px;
  color: var(--gold-bright);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border-bottom: 1px solid var(--border);
}
.wimont-table td {
  padding: 16px 20px;
  border-bottom: 1px solid rgba(200, 169, 106, 0.1);
}
.wimont-table-cat {
  font-weight: 600;
  color: var(--white);
}
.wimont-table-yield {
  color: var(--gold-bright);
  font-weight: 700;
}
.wimont-table-term {
  color: var(--gray-200);
}
.wimont-table-legal {
  color: var(--gray-300);
}

/* =============================================================
   Marquee & Motion Classes
   ============================================================= */
.marquee-wrapper {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  width: 100%;
  background: var(--bg-emerald);
  border-bottom: 1px solid var(--border-strong);
  padding: 14px 0;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-bright);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 25s linear infinite;
}
.marquee-wrapper:hover .marquee-track,
.marquee-wrapper:focus-within .marquee-track,
.marquee-track:hover {
  animation-play-state: paused;
}
.marquee-content {
  display: flex;
  align-items: center;
  gap: 40px;
  padding-right: 40px;
}

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation: none;
  }
}

/* =============================================================
   Subpage Utility Layouts & Mobile Adaptations
   ============================================================= */

/* Containers & Max Widths */
.max-w-\[1240px\] { max-width: 1240px; }
.max-w-3xl { max-width: 768px; }
.max-w-4xl { max-width: 896px; }
.max-w-5xl { max-width: 1024px; }
.max-w-md { max-width: 448px; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* Padding & Spacing */
.py-16 { padding-top: 64px; padding-bottom: 64px; }
.px-6 { padding-left: 24px; padding-right: 24px; }
.px-4 { padding-left: 16px; padding-right: 16px; }
.py-3 { padding-top: 12px; padding-bottom: 12px; }
.py-3\.5 { padding-top: 14px; padding-bottom: 14px; }
.py-4 { padding-top: 16px; padding-bottom: 16px; }
.px-3 { padding-left: 12px; padding-right: 12px; }
.py-1 { padding-top: 4px; padding-bottom: 4px; }
.p-4 { padding: 16px; }
.p-6 { padding: 24px; }
.p-8 { padding: 32px; }
.p-12 { padding: 48px; }
.pl-4 { padding-left: 16px; }
.pt-6 { padding-top: 24px; }
.pt-4 { padding-top: 16px; }

.mb-2 { margin-bottom: 8px; }
.mb-3 { margin-bottom: 12px; }
.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }
.mb-8 { margin-bottom: 32px; }
.mb-12 { margin-bottom: 48px; }
.mb-16 { margin-bottom: 64px; }
.mb-20 { margin-bottom: 80px; }
.mb-24 { margin-bottom: 96px; }
.mt-1 { margin-top: 4px; }
.mt-2 { margin-top: 8px; }
.mt-6 { margin-top: 24px; }

/* Space-y utilities */
.space-y-3 > * + * { margin-top: 12px; }
.space-y-4 > * + * { margin-top: 16px; }
.space-y-6 > * + * { margin-top: 24px; }
.space-y-8 > * + * { margin-top: 32px; }

/* Flex & Grid Systems */
.grid { display: grid; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }

@media (min-width: 640px) {
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sm\:flex-row { flex-direction: row; }
  .sm\:items-center { align-items: center; }
  .sm\:p-8 { padding: 32px; }
  .sm\:p-12 { padding: 48px; }
  .sm\:text-5xl { font-size: clamp(30px, 3.4vw, 44px); }
}

@media (min-width: 768px) {
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

.gap-3 { gap: 12px; }
.gap-4 { gap: 16px; }
.gap-6 { gap: 24px; }
.gap-8 { gap: 32px; }
.gap-12 { gap: 48px; }

.flex { display: flex; }
.inline-flex { display: inline-flex; }
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.flex-1 { flex: 1 1 0%; }
.flex-shrink-0 { flex-shrink: 0; }
.items-start { align-items: flex-start; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.text-center { text-align: center; }

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
  .py-16 { padding-top: 36px; padding-bottom: 36px; }
  .px-6 { padding-left: 16px; padding-right: 16px; }
  .p-8, .p-12, .sm\:p-8, .sm\:p-12 { padding: 24px 18px; }
  .mb-16 { margin-bottom: 36px; }
  .mb-20 { margin-bottom: 44px; }
  .mb-24 { margin-bottom: 48px; }
  .mb-12 { margin-bottom: 32px; }
  .gap-12 { gap: 24px; }
  .gap-8 { gap: 20px; }
}

@media (max-width: 640px) {
  .modal-pkg-grid { grid-template-columns: 1fr !important; }
}

/* Backgrounds & Surfaces */
.bg-emerald { background-color: var(--bg-emerald); }
.bg-emerald-ink { background-color: var(--ink); }
.bg-emerald\/40 { background-color: rgba(11, 43, 38, 0.4); }
.bg-emerald\/50 { background-color: rgba(11, 43, 38, 0.5); }
.bg-emerald\/60 { background-color: rgba(11, 43, 38, 0.6); }
.bg-gold { background-color: var(--gold); }
.bg-gold\/10 { background-color: rgba(200, 169, 106, 0.1); }
.bg-gold\/15 { background-color: rgba(200, 169, 106, 0.15); }
.bg-gold-bright\/15 { background-color: rgba(229, 196, 121, 0.15); }

/* Borders & Radius */
.border { border-width: 1px; border-style: solid; border-color: var(--border); }
.border-2 { border-width: 2px; border-style: solid; border-color: var(--gold-bright); }
.border-l-2 { border-left-width: 2px; border-left-style: solid; }
.border-t { border-top-width: 1px; border-top-style: solid; }
.border-gold { border-color: var(--gold); }
.border-gold\/15 { border-color: rgba(200, 169, 106, 0.15); }
.border-gold\/20 { border-color: rgba(200, 169, 106, 0.2); }
.border-gold\/30 { border-color: rgba(200, 169, 106, 0.3); }
.border-gold\/40 { border-color: rgba(200, 169, 106, 0.4); }
.border-gold-bright\/30 { border-color: rgba(229, 196, 121, 0.3); }
.hover\:border-gold:hover { border-color: var(--gold-bright); }

.rounded-full { border-radius: 9999px; }
.rounded-xl { border-radius: var(--r-lg); }
.rounded-2xl { border-radius: var(--r-xl); }

/* Typography Colors & Sizes */
.text-gold { color: var(--gold); }
.text-gold-bright { color: var(--gold-bright); }
.text-white { color: var(--white); }
.text-emerald-ink { color: var(--ink); }
.text-gray-300 { color: var(--gray-200); }
.text-gray-400 { color: var(--gray-300); }

.font-serif { font-family: var(--font-serif); }
.font-sans { font-family: var(--font-body); }
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

.text-xs { font-size: 12px; }
.text-sm { font-size: 14px; }
.text-base { font-size: 16px; }
.text-lg { font-size: 17px; }
.text-xl { font-size: 20px; }
.text-2xl { font-size: 26px; }
.text-3xl { font-size: clamp(20px, 3vw, 26px); }
.text-4xl { font-size: clamp(30px, 4vw, 44px); }

.uppercase { text-transform: uppercase; }
.tracking-wider { letter-spacing: 0.08em; }
.tracking-widest { letter-spacing: 0.15em; }
.leading-relaxed { line-height: 1.65; }

.w-full { width: 100%; }
.w-5 { width: 20px; }
.h-5 { height: 20px; }
.shadow-lg { box-shadow: var(--sh-2); }
.shadow-xl { box-shadow: var(--sh-3); }
.shadow-2xl { box-shadow: var(--sh-4); }
.transition-all { transition: all 0.25s ease; }

/* =============================================================
   Semantic Component Classes (Tasteskill Standard)
   ============================================================= */
.home-wrapper {
  overflow-x: clip;
}

.hero-section {
  position: relative;
  min-height: calc(100dvh - var(--nav-h));
  display: flex;
  align-items: center;
  background: radial-gradient(circle at 50% 30%, rgba(15, 61, 52, 0.7) 0%, var(--bg-dark) 85%);
  border-bottom: 1px solid var(--border-strong);
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding-top: clamp(24px, 4vw, 40px);
  padding-bottom: clamp(40px, 6vw, 60px);
  width: 100%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 992px) {
  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
  }
}

.hero-eyebrow {
  margin-bottom: 16px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.2vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--off-white);
  margin-bottom: 20px;
  padding-bottom: 4px;
}

.hero-lead {
  font-size: 17px;
  line-height: 1.65;
  color: var(--gray-200);
  max-width: 58ch;
  margin-bottom: 28px;
}

.hero-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero-badges .badge {
  padding: 6px 14px;
  font-size: 12px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-cta {
  padding: 0 32px;
  height: 54px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero-media {
  display: flex;
  justify-content: center;
}

.hero-video-card {
  aspect-ratio: 1 / 1;
  width: 100%;
  max-width: 420px;
  border: 2px solid var(--gold-bright);
  box-shadow: 0 0 40px rgba(200, 169, 106, 0.25);
  border-radius: var(--r-xl);
  overflow: hidden;
  position: relative;
  background: var(--bg-dark);
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(4, 22, 23, 0.85) 100%);
  pointer-events: none;
}

/* Sections */
.section--dark {
  background: var(--bg-dark);
}

.section--emerald {
  background: var(--bg-emerald);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.container--tight {
  max-width: 960px;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-bottom: 60px;
}

.feature-card {
  text-align: center;
  background: var(--surface);
}

/* About Story Grid */
.about-story-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 48px;
  align-items: center;
  margin-bottom: 60px;
}

.about-story-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section-subheading {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  color: var(--white);
}

.section-paragraph {
  color: var(--gray-200);
  line-height: 1.65;
  font-size: 16px;
}

.about-timeline-card {
  padding: 32px;
  border-radius: var(--r-xl);
  background: var(--bg-card);
  border: 1px solid rgba(200, 169, 106, 0.3);
  box-shadow: var(--sh-4);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.timeline-item {
  border-left: 2px solid var(--gold);
  padding-left: 16px;
}

.timeline-item--active {
  border-left-color: var(--gold-bright);
}

.timeline-year {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--gold);
}

.timeline-title {
  color: var(--white);
  font-weight: 500;
  font-size: 14px;
  margin-top: 2px;
}

.timeline-desc {
  font-size: 12px;
  color: var(--gray-300);
  margin-top: 4px;
}

.core-values-wrapper {
  margin-top: 40px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.value-card {
  padding: 24px;
  border-radius: var(--r-lg);
  background: rgba(11, 43, 38, 0.5);
  border: 1px solid rgba(200, 169, 106, 0.2);
}

.value-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--gold);
  margin-bottom: 8px;
}

.value-desc {
  font-size: 13px;
  color: var(--gray-200);
  line-height: 1.5;
}

.section-center-action {
  text-align: center;
  margin-top: 40px;
}

/* Matrix Grid */
.matrix-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  text-align: center;
}

.wimont-matrix-card {
  padding: 20px 16px;
}

.matrix-icon-badge {
  width: 30px;
  height: 30px;
  border: 1px solid var(--gold-bright);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-bright);
}

/* Pricing Grid */
.pricing-intro-lead {
  color: var(--gray-200);
  font-size: 18px;
  text-align: center;
  max-width: 48ch;
  margin: 0 auto 48px;
  line-height: 1.6;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  max-width: 960px;
  margin: 0 auto 60px;
}

.package-card {
  padding: 32px;
  border-radius: var(--r-xl);
  background: var(--bg-card);
  border: 1px solid rgba(200, 169, 106, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--sh-3);
  position: relative;
}

.package-card--featured {
  border: 2px solid var(--gold-bright);
  box-shadow: var(--sh-4);
}

.package-rec-badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background: var(--gold);
  color: var(--ink);
  padding: 2px 12px;
  border-radius: var(--r-pill);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.package-tier-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gray-300);
  font-weight: 600;
  margin-bottom: 8px;
}

.package-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  color: var(--white);
  margin-bottom: 16px;
}

.package-price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 36px;
  color: var(--gold);
  margin-bottom: 24px;
}

.price-currency {
  font-size: 14px;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--gray-300);
}

.package-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
  border-top: 1px solid rgba(200, 169, 106, 0.15);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
  color: var(--gray-200);
}

.package-features li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.feature-check {
  width: 20px;
  height: 20px;
  color: var(--gold);
  flex-shrink: 0;
}

/* Yield Summary Card */
.yield-summary-card {
  padding: 32px;
  border-radius: var(--r-xl);
  background: var(--ink);
  border: 1px solid rgba(200, 169, 106, 0.3);
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.yield-summary-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  color: var(--white);
  margin-bottom: 16px;
}

.yield-summary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 24px;
}

.yield-tier-box {
  padding: 16px;
  border-radius: var(--r-lg);
  background: rgba(11, 43, 38, 0.4);
  border: 1px solid rgba(200, 169, 106, 0.2);
}

.yield-tier-rate {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  color: var(--gold);
}

.yield-tier-desc {
  font-size: 12px;
  color: var(--gray-200);
  margin-top: 4px;
}

/* Events List */
.events-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.event-card {
  padding: 24px 32px;
  border-radius: var(--r-xl);
  background: rgba(11, 43, 38, 0.6);
  border: 1px solid rgba(200, 169, 106, 0.3);
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: var(--sh-2);
  transition: all 0.25s ease;
}

@media (min-width: 640px) {
  .event-card {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.event-card:hover {
  border-color: var(--gold-bright);
}

.event-card--featured {
  border: 2px solid var(--gold);
  background: var(--bg-card);
  box-shadow: var(--sh-4);
}

.event-tag-strip {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.event-tag {
  padding: 2px 10px;
  border-radius: var(--r-pill);
  background: rgba(200, 169, 106, 0.15);
  border: 1px solid rgba(200, 169, 106, 0.3);
}

.event-tag--bright {
  background: rgba(229, 196, 121, 0.15);
  border-color: rgba(229, 196, 121, 0.3);
  color: var(--gold-bright);
}

.event-tag--solid {
  background: var(--gold);
  color: var(--ink);
  font-weight: 700;
}

.event-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  color: var(--white);
  margin-bottom: 6px;
}

.event-desc {
  font-size: 14px;
  color: var(--gray-200);
}

.event-btn {
  flex-shrink: 0;
}

/* Contact Grid */
.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-box {
  padding: 32px;
  border-radius: var(--r-xl);
  background: rgba(11, 43, 38, 0.5);
  border: 1px solid rgba(200, 169, 106, 0.2);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-box--featured {
  background: var(--bg-card);
  border: 1px solid rgba(200, 169, 106, 0.3);
  box-shadow: var(--sh-4);
}

.contact-box-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--white);
  margin-bottom: 8px;
}

.contact-box-desc {
  font-size: 14px;
  color: var(--gray-200);
}

.contact-box-muted {
  font-size: 12px;
  color: var(--gray-300);
  margin-top: 4px;
}

.contact-channel-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 360px;
}

.contact-channel-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  background: var(--ink);
  border: 1px solid rgba(200, 169, 106, 0.3);
  border-radius: var(--r-lg);
  padding: 12px 16px;
  color: var(--white);
  font-size: 14px;
  transition: background 0.2s ease, border-color 0.2s ease;
  min-height: 48px;
}

.contact-channel-btn:hover {
  background: rgba(200, 169, 106, 0.1);
  border-color: var(--gold-bright);
}

.contact-channel-btn--accent {
  color: var(--gold);
  font-weight: 700;
  font-size: 18px;
}

/* Call to action banner */
.cta-banner-section {
  background: radial-gradient(circle at center, var(--bg-card) 0%, var(--ink) 100%);
  text-align: center;
  border-top: 1px solid var(--border);
}

.cta-banner-title {
  margin-bottom: 20px;
  text-transform: uppercase;
  font-size: clamp(28px, 4vw, 40px);
}

.cta-banner-lead {
  margin: 0 auto 36px;
}

.cta-banner-btn {
  padding: 0 36px;
}

/* Footer Styling */
.site-footer {
  background: var(--ink);
  border-top: 1px solid var(--border);
  padding-top: 64px;
  padding-bottom: 48px;
  color: var(--gray-200);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-brand-logo-frame {
  width: 36px;
  height: 36px;
  padding: 2px;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-soft));
  flex-shrink: 0;
}

.footer-brand-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer-brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--off-white);
  display: block;
  line-height: 1.1;
}

.footer-brand-sub {
  font-size: 9px;
  letter-spacing: 0.18em;
  color: var(--gold-bright);
  text-transform: uppercase;
  font-family: var(--font-body);
  display: block;
  margin-top: 2px;
}

.footer-desc {
  font-size: 14px;
  color: var(--gray-300);
  line-height: 1.6;
}

.footer-col-title {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--off-white);
  font-size: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 8px;
  display: inline-block;
}

.footer-link-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 14px;
}

.footer-link {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  color: var(--gray-200);
  transition: color 0.15s ease;
}

.footer-link:hover {
  color: var(--gold-bright);
}

.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px;
  font-size: 14px;
  color: var(--gray-300);
}

.footer-contact-item {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-weight: 500;
  color: var(--gray-200);
}

.footer-contact-item--bold {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--off-white);
}

.footer-contact-item--muted {
  font-size: 12px;
  color: var(--gray-300);
}

.footer-dot {
  color: var(--gold);
  font-size: 9px;
}

.footer-trust-card {
  padding: 20px;
}

.footer-trust-head {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-bright);
  font-weight: 600;
  font-size: 13px;
  margin-bottom: 8px;
}

.footer-trust-desc {
  font-size: 12px;
  color: var(--gray-300);
  line-height: 1.5;
  margin: 0;
}

.footer-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(200, 169, 106, 0.1);
  font-size: 12px;
  color: var(--gray-300);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

/* Membership Modal Refactored Styling */
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: rgba(4, 22, 23, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  overflow-y: auto;
}

.membership-modal-card {
  position: relative;
  width: 100%;
  max-width: 520px;
  background: var(--ink);
  border: 1px solid rgba(200, 169, 106, 0.4);
  border-radius: var(--r-xl);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(200, 169, 106, 0.2);
  max-height: 90vh;
  overflow-y: auto;
  margin: auto;
  color-scheme: dark;
}

.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold-bright);
  background: rgba(200, 169, 106, 0.1);
  border: 1px solid rgba(200, 169, 106, 0.3);
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s ease;
}

.modal-close-btn:hover {
  background: rgba(200, 169, 106, 0.25);
  border-color: var(--gold-bright);
}

.modal-close-btn:focus-visible {
  outline: 2px solid var(--gold-bright) !important;
  outline-offset: 3px !important;
}

.modal-body-wrapper {
  padding: clamp(24px, 4vw, 36px);
}

.modal-header-block {
  text-align: center;
  margin-bottom: 24px;
}

.modal-eyebrow {
  margin-bottom: 12px;
}

.modal-title-text {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(22px, 4vw, 28px);
  color: var(--off-white);
  margin-bottom: 6px;
  line-height: 1.2;
}

.modal-subtitle-text {
  font-size: 14px;
  color: var(--gray-200);
  margin: 0 auto;
  max-width: 360px;
  line-height: 1.4;
}

.modal-form-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.modal-error-alert {
  padding: 12px 16px;
  border-radius: var(--r-sm);
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #fca5a5;
  font-size: 14px;
  line-height: 1.4;
  word-break: break-word;
}

.modal-field-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--off-white);
  margin-bottom: 6px;
}

.modal-field-hint {
  font-size: 12px;
  color: var(--gray-300);
  margin-top: 4px;
  line-height: 1.3;
}

.modal-field-error {
  font-size: 12px;
  color: #fca5a5;
  margin-top: 4px;
}

.membership-modal-input, 
.membership-modal-select {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--r);
  background-color: var(--bg-emerald) !important;
  border: 1px solid rgba(200, 169, 106, 0.3) !important;
  color: var(--off-white) !important;
  font-size: 16px; /* Minimum 16px floor to prevent iOS Safari auto-zoom */
  line-height: 1.5;
  outline: none;
  transition: all 0.2s ease;
  box-sizing: border-box;
}

.membership-modal-input:focus, 
.membership-modal-select:focus {
  border-color: var(--gold) !important;
  box-shadow: 0 0 0 3px rgba(200, 169, 106, 0.25) !important;
}

.membership-modal-input::placeholder {
  color: rgba(196, 212, 203, 0.5) !important;
}

.membership-modal-select option {
  background-color: var(--bg-emerald) !important;
  color: var(--off-white) !important;
  padding: 10px;
}

.border-danger {
  border-color: #ef4444 !important;
}

.modal-package-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.pkg-card {
  border: 1px solid rgba(200, 169, 106, 0.25);
  background-color: rgba(5, 31, 32, 0.8);
  border-radius: var(--r);
  padding: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
  outline: none;
}

.pkg-card:hover {
  border-color: rgba(200, 169, 106, 0.5);
  background-color: rgba(200, 169, 106, 0.08);
}

.pkg-card:focus-visible {
  outline: 2px solid var(--gold-bright) !important;
  outline-offset: 2px !important;
}

.pkg-card--active {
  border-color: var(--gold) !important;
  background-color: rgba(200, 169, 106, 0.14) !important;
  box-shadow: 0 0 15px rgba(200, 169, 106, 0.15);
}

.pkg-card-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.pkg-radio {
  accent-color: var(--gold);
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.pkg-radio--gold {
  accent-color: var(--gold-bright);
}

.pkg-name {
  font-weight: 700;
  font-size: 14px;
  color: var(--off-white);
}

.pkg-desc {
  font-size: 11px;
  color: var(--gray-300);
  padding-left: 24px;
}

.pkg-badge {
  font-size: 9px;
  padding: 2px 6px;
  border-radius: var(--r-pill);
  background: var(--gold);
  color: var(--ink);
  font-weight: 800;
  text-transform: uppercase;
  white-space: nowrap;
}

.modal-submit-btn {
  margin-top: 6px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  font-size: 16px;
  padding: 14px 20px;
}

.modal-direct-contact {
  border-top: 1px solid rgba(200, 169, 106, 0.15);
  padding-top: 14px;
  margin-top: 4px;
  text-align: center;
}

.modal-direct-link {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--gold-bright);
  font-weight: 600;
  transition: color 0.2s ease;
}

.modal-direct-link:hover {
  color: var(--white);
}

.modal-success-box {
  text-align: center;
  padding: 20px 12px;
}

.modal-success-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(200, 169, 106, 0.15);
  border: 1.5px solid var(--gold);
  display: grid;
  place-items: center;
  margin: 0 auto 16px auto;
  color: var(--gold-bright);
}

.modal-success-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--off-white);
  margin-bottom: 10px;
}

.modal-success-desc {
  font-size: 14px;
  color: var(--gray-200);
  line-height: 1.6;
  margin-bottom: 24px;
}




