/* ============================================================
   K & Queens Business Club — Royal Ivory Design System
   A fresh blend: warm ivory canvas + deep navy (logo-matched)
   header/footer + single imperial gold accent.
   Typography: Outfit (Display) + Plus Jakarta Sans (Headings)
   + Hanken Grotesk (Body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Hanken+Grotesk:wght@400;500;600;700&family=Outfit:wght@500;600;700;800&family=Plus+Jakarta+Sans:wght@500;600;700;800&display=swap');

:root {
  /* --- Canvas: Luminous Royal Ivory & Pure White --- */
  --bg-deep: #f8f6f0;
  --bg-dark: #f1ede4;
  --bg-surface: #ffffff;
  --bg-card: #ffffff;
  --bg-card-hover: #ffffff;
  --bg-glass: rgba(255, 255, 255, 0.88);

  /* --- Brand: Imperial Gold --- */
  --gold-primary: #b8932a;
  --gold-light: #9a7a17;
  --gold-dark: #7c5f10;
  --gold-gradient: linear-gradient(135deg, #d4af37 0%, #b8932a 50%, #8a6d14 100%);
  --gold-glow-gradient: radial-gradient(circle, rgba(184, 147, 42, 0.18) 0%, rgba(248, 246, 240, 0) 70%);

  /* --- Royal Navy & Text System (100% Visible & High Contrast) --- */
  --navy: #0d1c31;
  --navy-deep: #0a1626;
  --navy-soft: rgba(248, 250, 252, 0.9);

  /* --- Crisp Visible Text --- */
  --text-main: #0f172a;       /* Deep Royal Navy Headings & Titles */
  --text-muted: #334155;      /* Slate Navy Body Paragraphs */
  --text-faint: #64748b;      /* Muted Labels */
  --border-gold: rgba(184, 147, 42, 0.38);
  --border-gold-faint: rgba(184, 147, 42, 0.2);
  --border-subtle: rgba(15, 23, 42, 0.12);

  /* --- Typography --- */
  --font-display: 'Outfit', sans-serif;
  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Hanken Grotesk', sans-serif;

  /* --- Radius --- */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-full: 9999px;

  /* --- Crisp Soft Navy Shadows --- */
  --shadow-card: 0 16px 45px -15px rgba(15, 23, 42, 0.08), 0 0 0 1px rgba(184, 147, 42, 0.12);
  --shadow-card-hover: 0 24px 55px -15px rgba(15, 23, 42, 0.14), 0 0 0 1px rgba(184, 147, 42, 0.25);
  --shadow-gold: 0 12px 35px -10px rgba(184, 147, 42, 0.4);
  --shadow-nav: 0 10px 30px rgba(6, 14, 26, 0.25);

  /* --- Z-scale --- */
  --z-nav: 100;
  --z-menu: 110;
  --z-modal: 200;
  --z-toast: 210;
}

/* ============================================================
   Loading Screen
   ============================================================ */

.loader-screen {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: #05070d;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader-screen.hidden {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

/* Golden radial glow behind the logo */
.loader-glow {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.28) 0%, rgba(212, 175, 55, 0.08) 45%, transparent 70%);
  animation: loaderPulse 2s ease-in-out infinite;
  pointer-events: none;
}

@keyframes loaderPulse {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.12); opacity: 1; }
}

.loader-logo {
  position: relative;
  width: 140px;
  height: auto;
  filter: drop-shadow(0 0 24px rgba(212, 175, 55, 0.5));
  animation: loaderFloat 2.4s ease-in-out infinite;
}

@keyframes loaderFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Golden progress bar */
.loader-bar-track {
  position: relative;
  width: 240px;
  height: 4px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.loader-bar {
  height: 100%;
  width: 0%;
  border-radius: 4px;
  background: var(--gold-gradient);
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.6);
  transition: width 0.3s ease;
}

/* ============================================================
   Reset & Base
   ============================================================ */

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

html {
  scroll-behavior: smooth;
  font-family: var(--font-body);
  background-color: var(--bg-deep);
  color: var(--text-main);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  overflow-x: hidden;
  min-height: 100dvh;
  background:
    radial-gradient(1200px 600px at 50% -50px, rgba(184, 147, 42, 0.1) 0%, rgba(247, 244, 238, 0) 70%),
    radial-gradient(800px 400px at 90% 20%, rgba(13, 28, 49, 0.05) 0%, rgba(247, 244, 238, 0) 60%),
    var(--bg-deep);
}

/* Subtle grain to break digital flatness */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='0.6'/%3E%3C/svg%3E");
}

/* Custom Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb {
  background: rgba(184, 147, 42, 0.35);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover { background: var(--gold-primary); }

::selection {
  background: rgba(184, 147, 42, 0.28);
  color: var(--navy);
}

/* ============================================================
   Typography
   ============================================================ */

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  letter-spacing: -0.02em;
  line-height: 1.2;
  text-wrap: balance;
  color: #0f172a;
}

h1 {
  font-family: var(--font-display);
  font-size: clamp(2.7rem, 5.5vw, 4.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #0f172a;
}

h2 {
  font-size: clamp(1.85rem, 3.4vw, 2.7rem);
  font-weight: 700;
  color: #0f172a;
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 700;
  color: #0f172a;
}

p {
  color: #334155;
  font-size: 1.05rem;
  max-width: 65ch;
  line-height: 1.6;
  text-wrap: pretty;
}

.hall-title-line {
  display: block;
  font-weight: 700;
  color: #0f172a;
}

.hall-declaration {
  font-size: 1.15rem;
  font-weight: 500;
  color: #334155;
  margin-top: 14px;
}

.gold-gradient-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--gold-light);
  display: inline-block;
  font-variant-numeric: tabular-nums;
}

.cyan-gradient-text {
  background: linear-gradient(135deg, #2c6bb0 0%, #1b4f8a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #1b4f8a;
  display: inline-block;
}

.muted { color: var(--text-muted); }
.center { text-align: center; }

/* Badge Proclamation */
.proclamation {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  background: rgba(184, 147, 42, 0.1);
  border: 1px solid var(--border-gold);
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.proclamation::before {
  content: "✦";
  color: var(--gold-primary);
}

/* ============================================================
   Layout
   ============================================================ */

/* ============================================================
   Reveal Animations & Fail-Safe Content Engine
   ============================================================ */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1), transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  animation: autoRevealContent 0.1s ease 0.8s forwards;
}

.reveal.is-visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

@keyframes autoRevealContent {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.container {
  width: 90%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}

section {
  padding: 96px 0 112px;
  position: relative;
}

section.chamber-band {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.6) 0%, rgba(239, 233, 221, 0.85) 100%);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.chamber-title {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}

.chamber-title p {
  margin: 0 auto;
}

.chamber-sub {
  margin-top: 14px;
  font-size: 1.1rem;
  color: var(--text-muted);
}

.chamber { position: relative; }
.page-hero { padding-top: 150px; padding-bottom: 90px; position: relative; }

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

.section-divider {
  height: 1px;
  background: var(--border-subtle);
  max-width: 1240px;
  width: 90%;
  margin: 0 auto;
}

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

/* Particle field (decorative) */
.particle-field {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}

.particle-field::before,
.particle-field::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: rgba(184, 147, 42, 0.25);
  animation: particleFloat 8s ease-in-out infinite;
}

.particle-field::before { width: 8px; height: 8px; top: 30%; left: 15%; }
.particle-field::after { width: 5px; height: 5px; top: 60%; right: 20%; animation-delay: -4s; }

@keyframes particleFloat {
  0%, 100% { transform: translateY(0); opacity: 0.3; }
  50% { transform: translateY(-18px); opacity: 0.9; }
}

.hero-wave { position: relative; }

/* ============================================================
   Buttons & CTAs
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  border-radius: var(--radius-full);
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
  border: 1px solid transparent;
  white-space: nowrap;
  transform: translateZ(0);
}

.btn:active {
  transform: translateY(1px) scale(0.98);
}

.btn-gold {
  background: var(--gold-gradient);
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(184, 147, 42, 0.35);
}

.btn-gold:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 35px rgba(184, 147, 42, 0.5);
  color: #ffffff;
}

.btn-outline, .btn-glass {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  border-color: var(--border-gold);
  color: var(--gold-light);
}

.btn-outline:hover, .btn-glass:hover {
  background: rgba(184, 147, 42, 0.12);
  border-color: var(--gold-primary);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(184, 147, 42, 0.2);
}

.btn:focus-visible,
.filter-btn:focus-visible,
.menu-toggle:focus-visible,
.acc-header:focus-visible,
.hero-dot:focus-visible,
a:focus-visible {
  outline: 2px solid var(--gold-primary);
  outline-offset: 3px;
}

.cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* ============================================================
   Navigation (solid navy, matches logo background)
   ============================================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-nav);
  background: var(--navy);
  border-bottom: 1px solid var(--border-gold-faint);
  transition: padding 0.3s ease, box-shadow 0.3s ease;
  padding: 14px 0;
}

.nav.scrolled {
  background: var(--navy);
  box-shadow: var(--shadow-nav);
  padding: 10px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #ffffff;
}

.brand .crown {
  height: 44px;
  width: auto;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.brand:hover .crown {
  transform: scale(1.06) rotate(-4deg);
  filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.4));
}

.brand-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  line-height: 1.1;
  letter-spacing: 0.05em;
  color: #ffffff;
}

.brand-text small {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: rgba(248, 250, 252, 0.85);
}

.navlinks {
  display: flex;
  align-items: center;
  gap: 28px;
}

.navlinks a {
  color: rgba(248, 250, 252, 0.92);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  transition: color 0.25s ease;
  position: relative;
  padding: 4px 0;
}

.navlinks a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--gold-gradient);
  transition: width 0.25s ease;
  border-radius: 2px;
}

.navlinks a:hover, .navlinks a.active { color: var(--gold-light); }
.navlinks a:hover::after, .navlinks a.active::after { width: 100%; }

.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border-gold);
  color: #ffffff;
  font-size: 1.4rem;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  cursor: pointer;
}

/* Mobile Drawer */
.mobile-menu {
  position: fixed;
  top: 65px;
  left: 0;
  right: 0;
  z-index: var(--z-menu);
  background: var(--navy);
  border-bottom: 1px solid var(--border-gold-faint);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transform: translateY(-120%);
  transition: transform 0.35s ease;
}

.mobile-menu.open { transform: translateY(0); }

.mobile-menu a {
  color: var(--navy-soft);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-menu a:hover { color: var(--gold-light); }

@media (max-width: 840px) {
  .navlinks { display: none; }
  .menu-toggle { display: block; }
}

/* ============================================================
   Hero Section (flowing tagline slider)
   ============================================================ */

.chamber-hall {
  padding-top: 150px;
  padding-bottom: 110px;
  position: relative;
  overflow: hidden;
}

/* Hero stage: Strict side-by-side layout (Text Left, Image Deck Right) */
.hero-stage {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  position: relative;
  z-index: 2;
  width: 100%;
}

@media (max-width: 768px) {
  .hero-stage {
    flex-direction: column;
    gap: 36px;
    text-align: center;
  }
}

/* Left: text column container */
.hero-msg {
  flex: 1 1 54%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  min-width: 0;
}

/* Tag selector pills bar positioning */
.hero-msg .hero-tag-pills {
  align-self: flex-start;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .hero-msg .hero-tag-pills {
    align-self: center;
  }
}

/* Slides container using Grid Area for smooth natural cross-fade */
.hero-msg-slides {
  display: grid;
  grid-template-areas: "slide";
  position: relative;
  width: 100%;
}

.hero-msg-slide {
  grid-area: slide;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px) scale(0.985);
  filter: blur(4px);
  transition: opacity 0.55s cubic-bezier(0.25, 1, 0.35, 1),
              transform 0.55s cubic-bezier(0.25, 1, 0.35, 1),
              filter 0.55s ease,
              visibility 0.55s;
  pointer-events: none;
}

.hero-msg-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  filter: blur(0);
  pointer-events: auto;
}

@media (max-width: 768px) {
  .hero-msg-slide {
    text-align: center;
  }
}

.hero-kw-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: #fff;
  box-shadow: 0 8px 24px rgba(184, 147, 42, 0.4);
  margin-bottom: 22px;
}

.hero-kw-badge i { width: 24px; height: 24px; }

.hero-keyword {
  position: relative;
  display: inline-block;
}

.hero-keyword-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.7rem, 5.5vw, 4.4rem);
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.kw-underline {
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 14px;
  overflow: visible;
}

.kw-underline path {
  stroke-dasharray: 240;
  stroke-dashoffset: 240;
  transition: stroke-dashoffset 0.8s cubic-bezier(0.25, 1, 0.35, 1) 0.15s;
}

.hero-msg-slide.is-active .kw-underline path {
  stroke-dashoffset: 0;
}

/* Tagline Tag Selector Pills */
.hero-tag-pills {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border-radius: var(--radius-full);
  background: rgba(13, 28, 49, 0.65);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--border-gold-faint);
  margin-bottom: 24px;
}

@media (max-width: 992px) {
  .hero-tag-pills { margin: 0 auto 24px; }
}

.tag-pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border: none;
  border-radius: var(--radius-full);
  background: transparent;
  color: rgba(248, 246, 240, 0.68);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.4s ease, background 0.4s ease, transform 0.3s ease, box-shadow 0.4s ease;
  white-space: nowrap;
}

.tag-pill i {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.tag-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(248, 246, 240, 0.4);
  transition: background 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
}

.tag-pill:hover {
  color: var(--gold-light);
  background: rgba(212, 175, 55, 0.12);
}

.tag-pill.is-active {
  color: #ffffff;
  background: var(--gold-gradient);
  box-shadow: 0 4px 16px rgba(212, 175, 55, 0.35);
}

.tag-pill.is-active .tag-dot {
  background: #ffffff;
  box-shadow: 0 0 8px #ffffff;
  transform: scale(1.25);
}

.tag-pill:hover i {
  transform: scale(1.15);
}

.tag-pill.is-active {
  background: var(--gold-gradient);
  color: #070a14;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.45);
}

.tag-pill.is-active .tag-dot {
  background: #070a14;
  box-shadow: 0 0 8px rgba(7, 10, 20, 0.6);
  transform: scale(1.2);
}

.tag-pill.is-active i {
  color: #070a14;
}

/* Dots with flowing progress */
.hero-slider-dots {
  display: flex;
  gap: 10px;
  margin-top: 34px;
}

.hero-dot {
  position: relative;
  width: 32px;
  height: 4px;
  border: none;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.18);
  cursor: pointer;
  padding: 0;
  overflow: hidden;
  transition: width 0.3s ease, background 0.3s ease;
}

.hero-dot::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold-gradient);
  transform: scaleX(0);
  transform-origin: left;
}

.hero-dot.is-active {
  width: 48px;
  background: rgba(212, 175, 55, 0.18);
}

.hero-dot.is-active::before {
  animation: dotFlow 5s linear forwards;
}

@keyframes dotFlow {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

/* Right: 3D stacked image cards displaying all tagline tags (Right Column) */
.hero-deck {
  flex: 1 1 46%;
  position: relative;
  width: 100%;
  height: 500px;
  max-width: 440px;
  min-width: 300px;
  margin-left: auto;
  margin-right: 0;
  perspective: 1400px;
}

@media (max-width: 768px) {
  .hero-deck {
    margin: 0 auto;
    width: 100%;
    max-width: 380px;
    height: 440px;
  }
}

.hero-card {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-gold-faint);
  box-shadow: var(--shadow-card);
  transition: transform 0.65s cubic-bezier(0.25, 1, 0.35, 1),
              opacity 0.65s cubic-bezier(0.25, 1, 0.35, 1),
              box-shadow 0.65s ease,
              border-color 0.65s ease,
              filter 0.65s ease;
  will-change: transform, opacity, filter;
  cursor: pointer;
  user-select: none;
}

.hero-card-img-wrapper {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 10, 20, 0.15) 0%, rgba(7, 10, 20, 0.4) 50%, rgba(7, 10, 20, 0.92) 100%);
  transition: opacity 0.5s ease;
}

.hero-card-content {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.hero-card-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  background: rgba(13, 28, 49, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-gold-faint);
  color: var(--gold-light);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.hero-card-label i { width: 15px; height: 15px; }

.hero-card-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  color: #ffffff;
  margin: 4px 0 2px;
  line-height: 1.2;
}

.hero-card-desc {
  font-size: 0.86rem;
  color: rgba(248, 246, 240, 0.78);
  line-height: 1.4;
}

.hero-card-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  background: rgba(7, 10, 20, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-gold-faint);
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

/* 3D Staggered Stack Positions showing ALL tagline cards */
.hero-card.is-front {
  transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
  z-index: 10;
  opacity: 1;
  border-color: var(--gold-primary);
  box-shadow: 0 30px 70px -15px rgba(0, 0, 0, 0.8), 0 0 30px rgba(212, 175, 55, 0.3);
  filter: brightness(1);
}

.hero-card.is-front img {
  transform: scale(1.05);
}

/* Smooth 3D deck card state transitions */
/* Front: Connect */
.hero-deck[data-front="connect"] .hero-card-connect {
  transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
  z-index: 10;
  opacity: 1;
  filter: brightness(1);
  border-color: var(--gold-primary);
}
.hero-deck[data-front="connect"] .hero-card-collab {
  transform: translate3d(32px, 24px, -40px) rotate(3.5deg) scale(0.93);
  z-index: 5;
  opacity: 0.88;
  filter: brightness(0.82);
}
.hero-deck[data-front="connect"] .hero-card-grow {
  transform: translate3d(64px, 48px, -80px) rotate(7deg) scale(0.86);
  z-index: 2;
  opacity: 0.72;
  filter: brightness(0.68);
}

/* Front: Collaborate */
.hero-deck[data-front="collab"] .hero-card-collab {
  transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
  z-index: 10;
  opacity: 1;
  filter: brightness(1);
  border-color: var(--gold-primary);
}
.hero-deck[data-front="collab"] .hero-card-grow {
  transform: translate3d(32px, 24px, -40px) rotate(3.5deg) scale(0.93);
  z-index: 5;
  opacity: 0.88;
  filter: brightness(0.82);
}
.hero-deck[data-front="collab"] .hero-card-connect {
  transform: translate3d(-32px, 24px, -40px) rotate(-3.5deg) scale(0.93);
  z-index: 4;
  opacity: 0.85;
  filter: brightness(0.78);
}

/* Front: Grow */
.hero-deck[data-front="grow"] .hero-card-grow {
  transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
  z-index: 10;
  opacity: 1;
  filter: brightness(1);
  border-color: var(--gold-primary);
}
.hero-deck[data-front="grow"] .hero-card-connect {
  transform: translate3d(-64px, 48px, -80px) rotate(-7deg) scale(0.86);
  z-index: 2;
  opacity: 0.72;
  filter: brightness(0.68);
}
.hero-deck[data-front="grow"] .hero-card-collab {
  transform: translate3d(-32px, 24px, -40px) rotate(-3.5deg) scale(0.93);
  z-index: 5;
  opacity: 0.88;
  filter: brightness(0.82);
}

/* Interactive hover on background tagline cards */
.hero-card:not(.is-front):hover {
  opacity: 0.96;
  filter: brightness(0.95);
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.6);
}

@media (max-width: 560px) {
  .hero-deck { height: 400px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-msg-slide { transition: none; }
  .hero-card { transition: none; }
  .hero-dot.is-active::before { animation: none; }
  .reveal { transition: none; opacity: 1; transform: none; }
}

/* ============================================================
   Stats Bar
   ============================================================ */

.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 50px;
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-gold-faint);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-card);
}

@media (max-width: 768px) {
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
}

.stat-item { text-align: center; }

.stat-number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold-light);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 6px;
}

/* ============================================================
   Interactive 100-Seat Table Map
   ============================================================ */

.seat-visual {
  position: relative;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.seat-orbit {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px dashed var(--border-gold-faint);
  animation: spinSlow 50s linear infinite;
}

@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.seat-orbit-ring {
  position: absolute;
  inset: 18%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 147, 42, 0.12) 0%, rgba(255, 255, 255, 0.95) 75%);
  border: 1px solid var(--border-gold);
  box-shadow: inset 0 0 30px rgba(184, 147, 42, 0.12), 0 0 40px rgba(13, 28, 49, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

.seat-caption strong {
  display: block;
  font-size: 1.5rem;
  color: var(--gold-light);
  font-family: var(--font-display);
}

.seat-mark {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(28, 36, 51, 0.2);
  border: 1px solid rgba(28, 36, 51, 0.3);
  transition: transform 0.25s ease, background 0.25s ease;
  cursor: pointer;
  z-index: 3;
}

.seat-mark.claimed {
  background: var(--gold-dark);
  border-color: var(--gold-primary);
}

.seat-mark.this-seat {
  background: var(--gold-light);
  border-color: var(--gold-dark);
  box-shadow: 0 0 20px var(--gold-primary);
  animation: pulseSeat 2s infinite alternate;
}

@keyframes pulseSeat {
  0% { transform: translate(-50%, -50%) scale(1); }
  100% { transform: translate(-50%, -50%) scale(1.35); }
}

.seat-mark:hover {
  transform: translate(-50%, -50%) scale(1.6);
  z-index: 10;
  background: var(--gold-primary);
}


/* ============================================================
   Cards & Panels (spotlight-enabled)
   ============================================================ */

.card, .panel, .seat-card, .feast-item, .glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-gold-faint);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Mouse-follow spotlight (script sets --mouse-x / --mouse-y) */
.card::after, .panel::after, .seat-card::after, .feast-item::after, .glass-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(320px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(184, 147, 42, 0.12), transparent 65%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.card:hover::after, .panel:hover::after, .seat-card:hover::after, .feast-item:hover::after, .glass-card:hover::after {
  opacity: 1;
}

.card::before, .panel::before, .seat-card::before, .feast-item::before, .glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold-gradient);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card:hover, .panel:hover, .seat-card:hover, .feast-item:hover, .glass-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-card-hover);
}

.card:hover::before, .panel:hover::before, .seat-card:hover::before, .feast-item:hover::before, .glass-card:hover::before {
  opacity: 1;
}

.card h3, .panel h3, .seat-card h3, .feast-item h3 {
  color: var(--text-main);
  margin-bottom: 12px;
}

.card p, .panel p, .seat-card p, .feast-item p {
  color: var(--text-muted);
  font-size: 0.98rem;
}

/* Side-by-side Icon & Heading Row */
.card-head-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.card-head-row .feast-art {
  margin-bottom: 0 !important;
  flex-shrink: 0;
}

.card-head-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.card-head-text h3 {
  margin: 0 !important;
  font-size: 1.15rem;
  line-height: 1.25;
}

.card-head-text .club-step {
  margin-bottom: 0 !important;
}

/* Icon art */
.feast-art, .card-icon {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-md);
  background: rgba(184, 147, 42, 0.1);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  font-size: 1.4rem;
  flex-shrink: 0;
}

/* ============================================================
   Club Experience (steps, life, voices)
   ============================================================ */

/* Numbered step on the "How the Club Works" cards */
.club-step {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: var(--gold-primary);
  margin-bottom: 6px;
}

.club-life-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

@media (max-width: 768px) {
  .club-life-grid { grid-template-columns: 1fr; }
}

/* Global Golden Icons Rule */
[data-lucide], i.lucide, svg.lucide, i[data-lucide], .feast-art i, .card-icon i, .club-life-icon i {
  color: var(--gold-primary) !important;
  stroke: var(--gold-primary);
}

.club-life-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border-gold-faint);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.club-life-item:hover {
  transform: translateY(-4px);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-card-hover);
}

.club-life-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 4px;
}

.club-life-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(184, 147, 42, 0.12);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(184, 147, 42, 0.2);
}

.club-life-icon i {
  width: 24px;
  height: 24px;
  color: var(--gold-primary) !important;
}

.club-life-item h3 {
  margin-bottom: 0;
  font-size: 1.15rem;
  line-height: 1.25;
}

.club-life-item p {
  margin: 0;
  font-size: 0.98rem;
}

/* Member voices testimonial carousel */
.voices-slider {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  min-height: 220px;
}

.voice-card {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-gold-faint);
  border-radius: var(--radius-lg);
  padding: 40px 48px;
  box-shadow: var(--shadow-card);
  opacity: 0;
  visibility: hidden;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease, visibility 0.6s;
}

.voice-card.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.voice-quote {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.55;
  color: var(--text-main);
  max-width: 60ch;
  position: relative;
}

.voice-quote::before {
  content: "“";
  display: block;
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 0.6;
  color: var(--gold-primary);
  margin-bottom: 10px;
}

.voice-author {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.voice-author strong {
  color: var(--gold-light);
}

@media (max-width: 600px) {
  .voices-slider { min-height: 300px; }
  .voice-card { padding: 28px 24px; }
}

/* ============================================================
   Community Pillars / Seats Grid
   ============================================================ */

.seats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: stretch;
}

@media (max-width: 960px) {
  .seats-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
}

/* ============================================================
   Membership Tiers
   ============================================================ */

.seat-card {
  display: flex;
  flex-direction: column;
}

.seat-card.featured {
  border: 2px solid var(--gold-primary);
  background: linear-gradient(180deg, rgba(184, 147, 42, 0.1) 0%, rgba(255, 255, 255, 0.98) 100%);
  box-shadow: var(--shadow-gold);
  transform: scale(1.02);
}

.seat-card.featured:hover {
  transform: scale(1.04) translateY(-6px);
}

/* Badge Proclamation */
.proclamation {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  background: rgba(184, 147, 42, 0.12);
  border: 1px solid var(--border-gold);
  color: var(--gold-dark);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.proclamation::before {
  content: "✦";
  color: var(--gold-primary);
}

.seat-tier {
  font-size: 0.82rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 800;
  margin-bottom: 8px;
}

.seat-price {
  font-size: 2.3rem;
  font-weight: 800;
  color: #0f172a;
  margin: 16px 0 24px;
  font-family: var(--font-display);
  font-variant-numeric: tabular-nums;
}

.seat-price small {
  font-size: 0.9rem;
  color: #334155;
  font-weight: 500;
}

.seat-card ul {
  list-style: none;
  margin-bottom: 8px;
}

.seat-card ul li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 12px;
  color: #334155;
  font-size: 0.95rem;
}

.seat-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold-primary);
  font-weight: 700;
}

/* ============================================================
   Events & Filters
   ============================================================ */

.event-filter-bar {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter-btn {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  padding: 10px 22px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-family: var(--font-body);
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.25s ease;
}

.filter-btn:hover, .filter-btn.active {
  background: var(--gold-gradient);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(184, 147, 42, 0.3);
}

.feast {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

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

.feast-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.feast-img {
  width: 220px;
  height: 150px;
  object-fit: cover;
  border-radius: var(--radius-md);
  flex-shrink: 0;
  border: 1px solid var(--border-gold-faint);
  transition: transform 0.4s ease;
}

.feast-item:hover .feast-img {
  transform: scale(1.04);
}

@media (max-width: 640px) {
  .feast-item { flex-direction: column; }
  .feast-img { width: 100%; height: 200px; }
}

.feast-link {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--gold-primary);
  font-weight: 700;
  font-size: 0.95rem;
  font-family: var(--font-body);
  padding: 0;
  transition: color 0.2s ease;
}

.feast-link:hover { color: var(--gold-dark); }

/* ============================================================
   Forms
   ============================================================ */

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

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

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gold-light);
}

.field input, .field select, .field textarea,
.form-control, input[type="text"], input[type="email"], input[type="tel"], textarea, select {
  width: 100%;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 0.98rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.field input::placeholder, .field textarea::placeholder,
.form-control::placeholder, input::placeholder, textarea::placeholder {
  color: var(--text-faint);
}

.field input:focus, .field select:focus, .field textarea:focus,
.form-control:focus, input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--gold-primary);
  box-shadow: 0 0 0 3px rgba(184, 147, 42, 0.18);
  background: #ffffff;
}

/* ============================================================
   Accordion (FAQ)
   ============================================================ */

.accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 840px;
  margin: 0 auto;
}

.acc-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.acc-item.active {
  border-color: var(--border-gold);
  box-shadow: var(--shadow-gold);
}

.acc-header {
  width: 100%;
  padding: 20px 24px;
  background: transparent;
  border: none;
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.acc-header::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--gold-primary);
  transition: transform 0.3s ease;
}

.acc-item.active .acc-header::after {
  transform: rotate(45deg);
}

.acc-body {
  padding: 0 24px 20px;
  display: none;
  color: var(--text-muted);
  line-height: 1.7;
}

.acc-item.active .acc-body {
  display: block;
}

/* ============================================================
   Reveal Animation
   ============================================================ */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   Footer (solid navy, symmetric 3 columns)
   ============================================================ */

footer {
  background: var(--navy);
  border-top: 3px solid transparent;
  border-image: linear-gradient(90deg, #8a6d14, #d4af37, #8a6d14) 1;
  padding: 72px 0 36px;
  position: relative;
}

/* soft gold ambient wash at top of footer */
footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 720px;
  height: 220px;
  background: radial-gradient(ellipse at top, rgba(184, 147, 42, 0.14), transparent 70%);
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 56px;
  position: relative;
}

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

@media (max-width: 550px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

.footer-col { text-align: center; }

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.footer-col h4::after {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--gold-gradient);
  margin: 12px auto 0;
  border-radius: 2px;
}

.footer-col ul { list-style: none; }

.footer-col ul li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: rgba(248, 250, 252, 0.92);
  font-size: 0.95rem;
}

.footer-col ul li i {
  color: var(--gold-primary);
}

.footer-col ul li a {
  color: rgba(248, 250, 252, 0.92);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.25s ease;
}

.footer-col ul li a:hover {
  color: var(--gold-light);
}

/* Contact lines (terms / error pages) */
.contact-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: rgba(248, 250, 252, 0.92);
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.contact-icon {
  color: var(--gold-primary);
  font-size: 1rem;
}

.footer-hero {
  text-align: center;
  margin-bottom: 48px;
}

.footer-seal {
  color: var(--gold-primary);
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.footer-proclamation {
  display: block;
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.footer-brand strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  color: #ffffff;
}

.footer-brand span {
  display: block;
  color: rgba(248, 250, 252, 0.88);
  letter-spacing: 0.2em;
  font-size: 0.8rem;
}

.tagline {
  margin-top: 10px;
}

/* Big Footer Brand Showcase */
.footer-hero-brand {
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  position: relative;
}

.footer-big-logo {
  max-width: 240px;
  width: 70%;
  height: auto;
  margin: 0 auto 12px;
  transition: transform 0.4s ease;
}

.footer-hero-brand:hover .footer-big-logo {
  transform: scale(1.04);
}

.footer-big-name {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: 0.18em;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--gold-light);
  line-height: 1.1;
  margin-bottom: 4px;
}

.footer-big-sub {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(248, 250, 252, 0.9);
  margin-bottom: 14px;
}

.footer-big-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.6vw, 2.5rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--gold-light);
  line-height: 1.15;
  margin-bottom: 8px;
}

.footer-big-tagline {
  font-size: 0.82rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--navy-soft);
  font-weight: 600;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  text-align: center;
  color: rgba(248, 250, 252, 0.62);
  font-size: 0.88rem;
  position: relative;
}

.footer-brand-mark { color: rgba(248, 250, 252, 0.62); }

.footer-legal {
  display: inline-flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-legal a {
  color: var(--navy-soft);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.25s ease;
}

.footer-legal a:hover { color: var(--gold-light); }

/* ============================================================
   Sticky Dock
   ============================================================ */

.sticky-dock {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: var(--z-nav);
}

.back-to-top {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-surface);
  border: 1px solid var(--border-gold);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0;
  pointer-events: none;
  box-shadow: var(--shadow-card);
}

.back-to-top.show {
  opacity: 1;
  pointer-events: auto;
}

.back-to-top:hover {
  transform: translateY(-4px);
  background: var(--gold-gradient);
  color: #fff;
}

/* ============================================================
   Legal Pages
   ============================================================ */

.legal-wrap {
  display: grid;
  grid-template-columns: 270px 1fr;
  gap: 56px;
  align-items: start;
}

.legal-toc {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-gold-faint);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  font-size: 0.92rem;
}

.legal-toc h3 {
  font-size: 0.95rem;
  color: var(--gold-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.legal-toc a {
  color: var(--text-muted);
  text-decoration: none;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: color 0.25s ease, background 0.25s ease;
  line-height: 1.4;
}

.legal-toc a:hover {
  color: var(--gold-light);
  background: rgba(184, 147, 42, 0.1);
}

.legal-body { max-width: 780px; }

.legal-section { margin-bottom: 44px; }

.legal-section h2 {
  font-size: 1.5rem;
  color: var(--text-main);
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-subtle);
}

.legal-section p {
  margin-bottom: 14px;
  line-height: 1.75;
}

.legal-section ul,
.legal-section ul.list {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
}

.legal-section ul li,
.legal-section ul.list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
}

.legal-section ul li::before,
.legal-section ul.list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold-primary);
  font-weight: 700;
}

.legal-section a {
  color: var(--gold-light);
  text-decoration: none;
  border-bottom: 1px solid var(--border-gold);
}

.legal-section a:hover {
  color: var(--gold-dark);
  border-color: var(--gold-primary);
}

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

  .legal-toc {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 6px;
    padding: 18px;
  }

  .legal-toc h3 { width: 100%; }

  .legal-toc a {
    padding: 6px 10px;
    border-radius: var(--radius-full);
    background: rgba(184, 147, 42, 0.08);
  }
}

/* ============================================================
   Modal
   ============================================================ */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(13, 28, 49, 0.72);
  backdrop-filter: blur(16px);
  z-index: var(--z-modal);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  background: var(--bg-surface);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 36px;
  max-width: 520px;
  width: 90%;
  box-shadow: var(--shadow-gold);
  position: relative;
  transform: scale(0.92);
  transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
  transform: scale(1);
}

.modal-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
  transition: color 0.2s ease;
}

.modal-close:hover { color: var(--gold-primary); }

/* ============================================================
   Toast
   ============================================================ */

.toast {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: var(--navy);
  border: 1px solid var(--border-gold);
  color: var(--gold-light);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-nav);
  z-index: var(--z-toast);
  display: flex;
  align-items: center;
  gap: 12px;
  transform: translateY(100px);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}
