/* ================================================================
   DIAMONDS ABOVE — DESIGN SYSTEM v2.0
   Shared CSS for all pages in the new website build
   ================================================================ */

/* ----------------------------------------------------------------
   1. CUSTOM PROPERTIES (Design Tokens)
   ---------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=Inter:wght@300;400;500;600&display=swap');

:root {
  /* Gold Palette */
  --gold: #d8c078;
  --gold-light: #e8d49e;
  --gold-dark: #b89d4f;
  --gold-shine: #f5e6b8;
  --gold-ultra-light: #f0e4c0;
  --gold-rgb: 216, 192, 120;

  /* Midnight Sapphire Backgrounds */
  --bg-primary: #1e2132;
  --bg-secondary: #181b2c;
  --bg-card: #292d40;
  --bg-card-hover: #3c4053;
  --bg-elevated: #20283f;
  --bg-overlay: rgba(24, 27, 44, 0.85);

  /* Midnight Surface Tokens */
  --midnight: #292d40;
  --midnight-deep: #1e2132;
  --midnight-deeper: #181b2c;
  --dark-slate: #3c4053;
  --dark-navy: #20283f;
  --accent-blue: #4a6fa5;

  /* Text */
  --text-primary: #f0ede6;
  --text-secondary: #b8bcc8;
  --text-muted: #8a8fa4;
  --text-inverse: #181b2c;

  /* Borders */
  --border-color: rgba(255, 255, 255, 0.1);
  --border-light: rgba(255, 255, 255, 0.06);
  --border-gold: rgba(216, 192, 120, 0.25);

  /* Status */
  --success: #4ade80;
  --error: #ef4444;
  --warning: #f59e0b;

  /* Typography */
  --font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Font Sizes — Responsive with clamp() */
  --text-display-xl: clamp(3rem, 7vw, 5.5rem);
  --text-display-lg: clamp(2.5rem, 5.5vw, 4rem);
  --text-display: clamp(2rem, 4.5vw, 3.5rem);
  --text-h1: clamp(1.75rem, 3.5vw, 2.75rem);
  --text-h2: clamp(1.5rem, 3vw, 2.25rem);
  --text-h3: clamp(1.25rem, 2.5vw, 1.75rem);
  --text-h4: clamp(1.1rem, 2vw, 1.35rem);
  --text-body-lg: clamp(1rem, 1.5vw, 1.15rem);
  --text-body: clamp(0.875rem, 1.2vw, 1rem);
  --text-body-sm: clamp(0.8rem, 1vw, 0.9rem);
  --text-caption: 0.75rem;
  --text-label: 0.7rem;

  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 96px;
  --space-5xl: 128px;

  /* Section Padding */
  --section-pad-y: clamp(64px, 10vw, 120px);
  --section-pad-x: clamp(16px, 5vw, 80px);

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 999px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 24px rgba(216, 192, 120, 0.2);
  --shadow-glow-strong: 0 0 40px rgba(216, 192, 120, 0.35);
  --shadow-card-hover: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 20px rgba(216, 192, 120, 0.08);

  /* Transitions */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-in-out-cubic: cubic-bezier(0.65, 0, 0.35, 1);
  --transition-fast: 0.2s var(--ease-out-expo);
  --transition-base: 0.3s var(--ease-out-expo);
  --transition-slow: 0.6s var(--ease-out-expo);
  --transition-reveal: 0.8s var(--ease-out-expo);

  /* Z-Index Scale */
  --z-base: 1;
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-nav: 500;
  --z-modal-backdrop: 900;
  --z-modal: 1000;
  --z-toast: 1100;
}

/* ----------------------------------------------------------------
   2. CSS RESET
   ---------------------------------------------------------------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-size: var(--text-body);
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-primary);
  overflow-x: hidden;
  min-height: 100vh;
}

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

a {
  color: var(--gold);
  text-decoration: none;
  transition: color var(--transition-fast);
}
a:hover { color: var(--gold-light); }

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  line-height: 1.2;
}
h1 { font-size: var(--text-h1); }
h2 { font-size: var(--text-h2); }
h3 { font-size: var(--text-h3); }
h4 { font-size: var(--text-h4); }

::selection {
  background: rgba(216, 192, 120, 0.3);
  color: var(--text-primary);
}

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

/* ----------------------------------------------------------------
   3. TYPOGRAPHY
   ---------------------------------------------------------------- */
.display-xl {
  font-family: var(--font-serif);
  font-size: var(--text-display-xl);
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.display-lg {
  font-family: var(--font-serif);
  font-size: var(--text-display-lg);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.display {
  font-family: var(--font-serif);
  font-size: var(--text-display);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.heading-1 {
  font-family: var(--font-serif);
  font-size: var(--text-h1);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.heading-2 {
  font-family: var(--font-serif);
  font-size: var(--text-h2);
  font-weight: 400;
  line-height: 1.25;
}

.heading-3 {
  font-family: var(--font-serif);
  font-size: var(--text-h3);
  font-weight: 400;
  line-height: 1.3;
}

.heading-4 {
  font-family: var(--font-serif);
  font-size: var(--text-h4);
  font-weight: 500;
  line-height: 1.35;
}

.body-lg {
  font-size: var(--text-body-lg);
  line-height: 1.7;
  color: var(--text-secondary);
}

.body { font-size: var(--text-body); line-height: 1.6; }
.body-sm { font-size: var(--text-body-sm); line-height: 1.5; }

.label {
  font-family: var(--font-sans);
  font-size: var(--text-label);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.caption {
  font-size: var(--text-caption);
  color: var(--text-muted);
  line-height: 1.4;
}

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

/* Gold shimmer text effect */
.shimmer-text {
  background: linear-gradient(
    110deg,
    var(--gold-dark) 0%,
    var(--gold-light) 25%,
    var(--gold) 50%,
    var(--gold-shine) 75%,
    var(--gold-dark) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer-flow 3s linear infinite;
}

@keyframes shimmer-flow {
  to { background-position: 200% center; }
}

/* ----------------------------------------------------------------
   4. LAYOUT UTILITIES
   ---------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--section-pad-x);
}

.container-sm { max-width: 800px; margin: 0 auto; padding: 0 var(--section-pad-x); }
.container-lg { max-width: 1440px; margin: 0 auto; padding: 0 var(--section-pad-x); }
.container-full { width: 100%; padding: 0 var(--section-pad-x); }

.section {
  padding: var(--section-pad-y) 0;
  position: relative;
}

.section-dark { background: var(--bg-secondary); }
.section-gradient {
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-primary) 100%);
}

.grid { display: grid; gap: var(--space-lg); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-auto { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-col { display: flex; flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }
.gap-lg { gap: var(--space-lg); }
.gap-xl { gap: var(--space-xl); }
.gap-2xl { gap: var(--space-2xl); }

.mx-auto { margin-left: auto; margin-right: auto; }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }
.mb-2xl { margin-bottom: var(--space-2xl); }
.mb-3xl { margin-bottom: var(--space-3xl); }

/* ----------------------------------------------------------------
   5. BUTTONS
   ---------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 14px 32px;
  font-family: var(--font-sans);
  font-size: var(--text-body-sm);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  min-height: 48px;
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--bg-primary);
}
.btn-primary::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s var(--ease-out-expo);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(var(--gold-rgb), 0.35);
  color: var(--bg-primary);
}
.btn-primary:hover::after { left: 100%; }

.btn-secondary {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn-secondary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out-expo);
  z-index: -1;
}
.btn-secondary:hover {
  color: var(--bg-primary);
  transform: translateY(-2px);
}
.btn-secondary:hover::before { transform: scaleX(1); }

.btn-ghost {
  background: transparent;
  color: var(--gold);
  padding: 14px 8px;
  position: relative;
}
.btn-ghost::after {
  content: '';
  position: absolute;
  bottom: 10px; left: 8px; right: 8px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease-out-expo);
}
.btn-ghost:hover::after { transform: scaleX(1); }
.btn-ghost:hover { color: var(--gold-light); }

.btn-lg {
  padding: 18px 40px;
  font-size: var(--text-body);
  min-height: 56px;
}

.btn-sm {
  padding: 10px 20px;
  font-size: var(--text-caption);
  min-height: 40px;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--bg-primary);
  font-weight: 600;
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(var(--gold-rgb), 0.35);
  color: var(--bg-primary);
}

/* Arrow animation for CTAs */
.btn .arrow {
  transition: transform 0.3s var(--ease-out-expo);
  display: inline-block;
}
.btn:hover .arrow { transform: translateX(6px); }

/* ----------------------------------------------------------------
   6. CARDS
   ---------------------------------------------------------------- */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.card-glass {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.card-glass:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--border-gold);
}

.card-feature {
  background: linear-gradient(135deg, rgba(var(--gold-rgb), 0.06), rgba(var(--gold-rgb), 0.02));
  border: 1px solid rgba(var(--gold-rgb), 0.15);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.card-feature:hover {
  border-color: rgba(var(--gold-rgb), 0.35);
  box-shadow: var(--shadow-glow);
}

.card-gold {
  background: rgba(var(--gold-rgb), 0.08);
  border: 1px solid rgba(var(--gold-rgb), 0.25);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.card-gold:hover {
  border-color: rgba(var(--gold-rgb), 0.45);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.card-dashed {
  background: var(--bg-card);
  border: 2px dashed rgba(var(--gold-rgb), 0.3);
  border-radius: var(--radius-lg);
  padding: var(--space-3xl);
  transition: all var(--transition-base);
}
.card-dashed:hover {
  border-color: rgba(var(--gold-rgb), 0.5);
  background: var(--bg-card-hover);
}

/* Safety: diff-cards default to visible; GSAP animates them in if supported */
.diff-card {
  opacity: 1;
}

/* ----------------------------------------------------------------
   7. NAVIGATION
   ---------------------------------------------------------------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: var(--z-nav);
  background: rgba(30, 33, 50, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: all 0.4s var(--ease-out-expo);
}

.nav.scrolled {
  padding: 12px 0;
  background: rgba(30, 33, 50, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
}

/* Nav owns its own horizontal padding via .nav-inner — neutralize the
   inner .container wrapper so the logo/CTA aren't double-indented */
.nav > .container {
  max-width: none;
  padding: 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(16px, 3vw, 48px);
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-logo img {
  height: clamp(42px, 4.2vw, 54px);
  width: auto;
  display: block;
  transition: opacity var(--transition-fast);
}
.nav-logo:hover img { opacity: 0.85; }

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  margin-left: var(--space-xl);
}
.nav-links > li > a {
  white-space: nowrap;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  transition: color var(--transition-fast);
}
.nav-links > li > a:hover {
  color: #fff;
}

/* Ensure ALL links inside the nav (desktop + mobile) are white, not gold */
.nav a:not(.btn),
.nav-mobile a:not(.btn) {
  color: rgba(255,255,255,0.8);
}
.nav a:not(.btn):hover,
.nav-mobile a:not(.btn):hover {
  color: #fff;
}

.nav-link {
  font-size: var(--text-body-sm);
  font-weight: 400;
  color: var(--text-secondary);
  letter-spacing: 0.04em;
  transition: color var(--transition-fast);
  position: relative;
  padding: 4px 0;
}
.nav-link:hover { color: var(--text-primary); }
.nav-link.active { color: var(--gold); }
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s var(--ease-out-expo);
}
.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); }

.nav-cta {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  flex-shrink: 0;
  margin-left: var(--space-lg);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  min-width: 44px;
  min-height: 44px;
  justify-content: center;
  align-items: center;
  padding: 4px 0;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-primary);
  transition: all 0.3s var(--ease-out-expo);
  transform-origin: center;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- Dropdown Navigation ---- */
.has-dropdown {
  position: relative;
}
.has-dropdown > a {
  display: flex;
  align-items: center;
  gap: 4px;
}
.has-dropdown > a .chevron {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  transition: transform 0.3s ease;
  margin-left: 2px;
}
.has-dropdown:hover > a .chevron {
  transform: rotate(180deg);
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 220px;
  background: rgba(24, 27, 44, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(216, 192, 120, 0.12);
  border-radius: var(--radius-md);
  padding: var(--space-sm) 0;
  margin-top: 12px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(8px);
  transition: opacity var(--transition-fast), visibility var(--transition-fast), transform var(--transition-fast);
  z-index: 1000;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(216, 192, 120, 0.05);
  list-style: none;
}
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}
.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown-menu li {
  list-style: none;
}
.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.75);
  transition: background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
  text-transform: none;
}
.dropdown-menu a:hover {
  background: rgba(216, 192, 120, 0.08);
  color: #d8c078;
}
.dropdown-menu a::after {
  display: none !important;
}

/* ---- Mobile Dropdown ---- */
/* Matches the hamburger breakpoint so tap-expand behaviour kicks in
   as soon as the mobile menu is shown */
@media (max-width: 1080px) {
  .dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    background: rgba(24, 27, 44, 0.6);
    border: none;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    margin-top: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    min-width: unset;
    width: 100%;
  }
  .dropdown-menu.mobile-open {
    max-height: 520px;
  }
  .dropdown-menu a {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 12px 24px;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  }
  .has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: none;
    max-height: 0;
  }
  .has-dropdown:hover .dropdown-menu.mobile-open {
    max-height: 520px;
  }
}

/* Mobile menu */
.nav-mobile {
  display: none;
  position: fixed;
  top: 72px; right: 0;
  width: 100%;
  max-width: 400px;
  height: calc(100vh - 72px);
  background: var(--bg-secondary);
  border-left: 1px solid var(--border-color);
  padding: var(--space-lg) var(--space-xl) var(--space-2xl);
  transform: translateX(100%);
  transition: transform 0.5s var(--ease-out-expo);
  z-index: calc(var(--z-nav) - 1);
  overflow-y: auto;
}
.nav-mobile.open { transform: translateX(0); }

/* Top-level mobile nav links — generous tap targets, serif heading size */
.nav-mobile > a,
.nav-mobile > .has-dropdown > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 56px;
  padding: 16px 4px;
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.2;
  color: var(--text-primary);
  border-bottom: 1px solid var(--border-light);
  transition: color var(--transition-fast);
}
.nav-mobile > a:hover,
.nav-mobile > .has-dropdown > a:hover { color: var(--gold); }

/* Slightly larger chevron so it's easier to see on phones */
.nav-mobile .chevron {
  border-left-width: 5px;
  border-right-width: 5px;
  border-top-width: 5px;
}

/* Book Consultation CTA at the bottom of the drawer */
.nav-mobile > a.btn {
  margin-top: var(--space-xl);
  min-height: 52px;
  font-size: 14px;
}

/* Legacy class — kept for any pages still using .nav-mobile-link */
.nav-mobile .nav-mobile-link {
  display: block;
  padding: 18px 4px;
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--text-primary);
  border-bottom: 1px solid var(--border-light);
  transition: color var(--transition-fast);
}
.nav-mobile .nav-mobile-link:hover { color: var(--gold); }

/* ----------------------------------------------------------------
   7b. MOBILE STICKY CTA
   ---------------------------------------------------------------- */
.site-mobile-cta {
  display: none;
}

@media (max-width: 768px) {
  body {
    padding-bottom: 108px;
  }

  .site-mobile-cta {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom));
    z-index: var(--z-toast);
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 14px;
    background: rgba(24, 27, 44, 0.96);
    border: 1px solid rgba(216, 192, 120, 0.18);
    border-radius: 20px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }

  .site-mobile-cta__label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-family: var(--font-sans);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
  }

  .site-mobile-cta__label strong {
    color: var(--text-primary);
    letter-spacing: 0.08em;
  }

  .site-mobile-cta__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .site-mobile-cta__action {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast), color var(--transition-fast);
  }

  .site-mobile-cta__action--call {
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.03);
  }

  .site-mobile-cta__action--book {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--bg-primary);
  }

  .site-mobile-cta__action:hover {
    transform: translateY(-1px);
  }
}

/* ----------------------------------------------------------------
   8. HERO PATTERNS
   ---------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(30, 33, 50, 0.5) 0%,
    rgba(30, 33, 50, 0.7) 50%,
    rgba(30, 33, 50, 0.95) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
}

/* Radial glow behind hero content */
.hero-glow {
  position: absolute;
  width: 60vw;
  height: 60vw;
  max-width: 800px;
  max-height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--gold-rgb), 0.06) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
}

/* ----------------------------------------------------------------
   9. FOOTER
   ---------------------------------------------------------------- */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  padding: var(--space-4xl) 0 var(--space-2xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-3xl);
}

.footer-col {
  display: flex;
  flex-direction: column;
}
.footer-col h4 {
  font-family: var(--font-sans);
  font-size: var(--text-caption);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-lg);
}
.footer-col > a {
  color: var(--text-muted);
  font-size: var(--text-body-sm);
  margin-bottom: var(--space-sm);
  transition: color var(--transition-fast);
}
.footer-col > a:hover { color: var(--text-primary); }
.footer-text {
  color: var(--text-secondary);
  font-size: var(--text-body-sm);
  line-height: 1.7;
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: var(--text-body-sm);
  line-height: 1.7;
  margin-top: var(--space-md);
  max-width: 320px;
}

.footer-heading {
  font-family: var(--font-sans);
  font-size: var(--text-caption);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-lg);
}

.footer-links li { margin-bottom: var(--space-sm); }
.footer-links a {
  color: var(--text-muted);
  font-size: var(--text-body-sm);
  transition: color var(--transition-fast);
}
.footer-links a:hover { color: var(--text-primary); }

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--text-secondary);
  font-size: var(--text-body-sm);
  margin-bottom: var(--space-md);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-xl);
  border-top: 1px solid var(--border-light);
}
.footer-bottom p {
  color: var(--text-muted);
  font-size: var(--text-caption);
}
.footer-social {
  display: flex;
  gap: var(--space-md);
}
.footer-social a {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  transition: all var(--transition-fast);
}
.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(var(--gold-rgb), 0.08);
}

.footer-visit-cta {
  margin-top: var(--space-2xl);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer-visit-cta .btn {
  min-width: 180px;
}

.footer-note {
  margin-top: var(--space-md);
  font-size: var(--text-caption);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.modal-success {
  text-align: center;
}

.modal-success .modal-next-step {
  display: grid;
  gap: var(--space-md);
  margin-top: var(--space-xl);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--border-light);
}

.modal-success .modal-next-step .btn {
  width: 100%;
}

/* ----------------------------------------------------------------
   10. ANIMATIONS & SCROLL REVEALS
   ---------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity var(--transition-reveal), transform var(--transition-reveal);
}
.reveal.visible,
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left { opacity: 0; transform: translateX(-50px); transition: opacity var(--transition-reveal), transform var(--transition-reveal); }
.reveal-left.visible,
.reveal-left.revealed { opacity: 1; transform: translateX(0); }

.reveal-right { opacity: 0; transform: translateX(50px); transition: opacity var(--transition-reveal), transform var(--transition-reveal); }
.reveal-right.visible,
.reveal-right.revealed { opacity: 1; transform: translateX(0); }

.reveal-scale { opacity: 0; transform: scale(0.9); transition: opacity var(--transition-reveal), transform var(--transition-reveal); }
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* Stagger delays */
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* Loader */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: var(--space-lg);
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-diamond {
  width: 48px; height: 48px;
  position: relative;
}
.loader-diamond::before,
.loader-diamond::after {
  content: '';
  position: absolute;
  inset: 4px;
  border: 2px solid var(--gold);
  animation: loader-spin 2s linear infinite;
}
.loader-diamond::before {
  border-radius: 2px;
  transform: rotate(45deg);
}
.loader-diamond::after {
  border-radius: 50%;
  animation-direction: reverse;
  animation-duration: 3s;
  opacity: 0.5;
}

@keyframes loader-spin {
  to { transform: rotate(405deg); }
}

/* Floating animation */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.float { animation: float 4s ease-in-out infinite; }

/* Pulse glow */
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 8px rgba(var(--gold-rgb), 0.2); }
  50% { box-shadow: 0 0 24px rgba(var(--gold-rgb), 0.4); }
}
.pulse-glow { animation: pulse-glow 2.5s ease-in-out infinite; }

/* Gold particle CSS animation */
.gold-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.gold-particles::before,
.gold-particles::after {
  content: '';
  position: absolute;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.3;
}
.gold-particles::before {
  top: 20%; left: 15%;
  animation: float 6s ease-in-out infinite;
}
.gold-particles::after {
  top: 60%; right: 20%;
  animation: float 8s ease-in-out infinite reverse;
}

/* ----------------------------------------------------------------
   11. FORMS
   ---------------------------------------------------------------- */
.form-group { display: flex; flex-direction: column; gap: var(--space-xs); }

.form-label {
  font-size: var(--text-caption);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.form-input,
.form-select,
.form-textarea {
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: var(--text-body);
  outline: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--gold-dark);
  box-shadow: 0 0 0 3px rgba(var(--gold-rgb), 0.1);
}

.form-input::placeholder { color: var(--text-muted); }
.form-textarea { resize: vertical; min-height: 100px; }
.form-select { cursor: pointer; }
.form-select option { background: var(--bg-primary); }

/* ----------------------------------------------------------------
   12. SECTION HEADERS
   ---------------------------------------------------------------- */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-3xl);
}
.section-header .label { margin-bottom: var(--space-md); }
.section-header h2 { margin-bottom: var(--space-md); }
.section-header p {
  color: var(--text-secondary);
  font-size: var(--text-body-lg);
  line-height: 1.7;
}

/* Gold divider */
.divider-gold {
  width: 60px;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  margin: var(--space-lg) auto;
}

/* ----------------------------------------------------------------
   13. CTA BANNER (Pre-footer conversion section)
   ---------------------------------------------------------------- */
@keyframes cta-glow-drift {
  0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.08); }
}
@keyframes cta-line-expand {
  from { transform: translateX(-50%) scaleX(0); }
  to { transform: translateX(-50%) scaleX(1); }
}
@keyframes cta-particle-float {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.4; }
  50% { transform: translateY(-20px) scale(1.2); opacity: 0.7; }
}
@keyframes diamond-pulse {
  0%, 100% { box-shadow: 0 0 8px rgba(var(--gold-rgb), 0.15), 0 0 20px rgba(var(--gold-rgb), 0.08); }
  50% { box-shadow: 0 0 14px rgba(var(--gold-rgb), 0.28), 0 0 30px rgba(var(--gold-rgb), 0.14); }
}

.cta-banner {
  text-align: center;
  padding: clamp(80px, 12vw, 140px) var(--section-pad-x);
  background: linear-gradient(175deg, #12142a 0%, #181b2e 35%, #1a1e34 60%, #151828 100%);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  box-shadow: inset 0 1px 0 rgba(var(--gold-rgb), 0.08), inset 0 -1px 0 rgba(var(--gold-rgb), 0.05);
}

/* Large ambient glow */
.cta-banner::before {
  content: '';
  position: absolute;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(var(--gold-rgb), 0.07) 0%, rgba(var(--gold-rgb), 0.025) 40%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: cta-glow-drift 8s ease-in-out infinite;
  z-index: -1;
}

/* Top decorative line */
.cta-banner::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(var(--gold-rgb), 0.7), transparent);
  box-shadow: 0 0 12px rgba(var(--gold-rgb), 0.2);
  animation: cta-line-expand 1s ease-out 0.2s both;
}

/* Floating decorative particles */
.cta-banner__particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}
.cta-banner__particles span {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(var(--gold-rgb), 0.3);
  animation: cta-particle-float 4s ease-in-out infinite;
}
.cta-banner__particles span:nth-child(1) { top: 20%; left: 15%; animation-delay: 0s; animation-duration: 5s; }
.cta-banner__particles span:nth-child(2) { top: 70%; left: 80%; animation-delay: 1.5s; animation-duration: 6s; }
.cta-banner__particles span:nth-child(3) { top: 40%; left: 90%; animation-delay: 0.8s; animation-duration: 4.5s; width: 2px; height: 2px; }
.cta-banner__particles span:nth-child(4) { top: 60%; left: 10%; animation-delay: 2s; animation-duration: 5.5s; width: 2px; height: 2px; }
.cta-banner__particles span:nth-child(5) { top: 15%; left: 70%; animation-delay: 3s; animation-duration: 7s; }

.cta-banner__inner {
  position: relative;
  z-index: 1;
  max-width: 660px;
  margin: 0 auto;
}

/* Diamond icon divider */
.cta-banner__diamond {
  display: block;
  margin: 0 auto var(--space-xl);
  width: 16px;
  height: 16px;
  border: 1.5px solid rgba(var(--gold-rgb), 0.6);
  transform: rotate(45deg);
  position: relative;
  box-shadow: 0 0 8px rgba(var(--gold-rgb), 0.15), 0 0 20px rgba(var(--gold-rgb), 0.08);
  animation: diamond-pulse 3s ease-in-out infinite;
}
.cta-banner__diamond::after {
  content: '';
  position: absolute;
  inset: 4px;
  background: rgba(var(--gold-rgb), 0.4);
  border-radius: 1px;
}

.cta-banner__label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-xl);
  padding: 7px 22px;
  border: 1px solid rgba(var(--gold-rgb), 0.25);
  border-radius: var(--radius-full);
  background: rgba(var(--gold-rgb), 0.04);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.cta-banner__headline {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-lg);
}
.cta-banner__headline em {
  font-style: italic;
  color: var(--gold-light);
}

.cta-banner__text {
  font-family: var(--font-sans);
  font-size: var(--text-body-lg);
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: var(--space-2xl);
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
  margin-bottom: var(--space-3xl);
}

/* Primary CTA gets the hero treatment */
.cta-banner__actions .btn-primary {
  padding: 18px 48px;
  font-size: var(--text-body);
  min-height: 56px;
  box-shadow: 0 4px 24px rgba(var(--gold-rgb), 0.2), 0 0 0 1px rgba(var(--gold-rgb), 0.1);
  position: relative;
  transition: all 0.4s var(--ease-out-expo);
}
.cta-banner__actions .btn-primary::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.6s var(--ease-out-expo);
}
.cta-banner__actions .btn-primary:hover {
  box-shadow: 0 8px 40px rgba(var(--gold-rgb), 0.35), 0 0 60px rgba(var(--gold-rgb), 0.12), 0 0 0 1px rgba(var(--gold-rgb), 0.2);
  transform: translateY(-3px) scale(1.02);
  filter: brightness(1.08);
}
.cta-banner__actions .btn-primary:hover::after { left: 100%; }

/* Secondary CTA (phone) — understated elegance */
.cta-banner__actions .btn-secondary {
  padding: 16px 36px;
  font-size: var(--text-body-sm);
  border-color: rgba(var(--gold-rgb), 0.3);
  transition: all 0.4s var(--ease-out-expo);
}
.cta-banner__actions .btn-secondary:hover {
  border-color: rgba(var(--gold-rgb), 0.6);
  box-shadow: 0 0 20px rgba(var(--gold-rgb), 0.1);
  transform: translateY(-2px);
}

/* Trust bar with subtle separator */
.cta-banner__trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2xl);
  flex-wrap: wrap;
  padding-top: var(--space-2xl);
  position: relative;
}
.cta-banner__trust::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(400px, 80%);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(var(--gold-rgb), 0.15), transparent);
}

.cta-banner__trust-item {
  font-family: var(--font-sans);
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
}

.cta-banner__trust-icon {
  color: var(--gold);
  font-size: 0.8em;
  opacity: 0.7;
}

/* ----------------------------------------------------------------
   14. CTA BREAK (Mid-page conversion interrupt)
   ---------------------------------------------------------------- */
.cta-break {
  text-align: center;
  padding: var(--space-4xl) var(--section-pad-x);
  background: linear-gradient(180deg, transparent 0%, rgba(var(--gold-rgb), 0.04) 50%, transparent 100%);
  border-top: 1px solid rgba(var(--gold-rgb), 0.1);
  border-bottom: 1px solid rgba(var(--gold-rgb), 0.1);
  margin: var(--space-3xl) 0;
  position: relative;
  box-shadow: inset 0 1px 0 rgba(var(--gold-rgb), 0.06), inset 0 -1px 0 rgba(var(--gold-rgb), 0.06);
}

/* Decorative center line accents */
.cta-break::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(var(--gold-rgb), 0.6), transparent);
}
.cta-break::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(var(--gold-rgb), 0.6), transparent);
}

.cta-break__headline {
  font-family: var(--font-serif);
  font-size: var(--text-h3);
  color: var(--text-primary);
  margin-bottom: var(--space-md);
  font-weight: 400;
  letter-spacing: -0.01em;
}
.cta-break__headline em {
  font-style: italic;
  color: var(--gold-light);
}
/* Decorative ornament after headline */
.cta-break__headline::after {
  content: '\2726';
  display: block;
  margin: var(--space-md) auto 0;
  font-size: 10px;
  color: rgba(var(--gold-rgb), 0.4);
  letter-spacing: 0.3em;
}

.cta-break__text {
  font-family: var(--font-sans);
  font-size: var(--text-body);
  color: var(--text-secondary);
  margin-bottom: var(--space-xl);
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* ----------------------------------------------------------------
   15. RESPONSIVE BREAKPOINTS
   ---------------------------------------------------------------- */

/* Narrow desktop — six dropdown links + CTA is tight, so start shrinking
   well before the hamburger breakpoint at 1080px */
@media (max-width: 1320px) {
  .nav-links { gap: var(--space-sm); margin-left: var(--space-md); }
  .nav-cta { margin-left: var(--space-md); gap: var(--space-md); }
  .nav-cta .btn {
    padding: 10px 18px;
    font-size: 11.5px;
    min-height: 40px;
    letter-spacing: 0.06em;
  }
}

@media (max-width: 1180px) {
  .nav-links { gap: 10px; margin-left: var(--space-sm); }
  .nav-links > li > a { font-size: 12px; letter-spacing: 0.04em; }
  .nav-cta .btn {
    padding: 9px 14px;
    font-size: 11px;
    min-height: 38px;
  }
}

/* Tablet */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
  }

}

/* Switch to hamburger earlier — six dropdown links + CTA can't fit below ~1080px */
@media (max-width: 1080px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-mobile { display: block; }
  .nav-cta .btn { display: none; }
}

/* Mobile */
@media (max-width: 768px) {
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }

  .hero { min-height: 90vh; }

  .card-feature { padding: var(--space-xl); }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
  }

  .cta-banner {
    padding: var(--space-3xl) var(--section-pad-x);
  }
  .cta-banner__actions {
    flex-direction: column;
    gap: var(--space-md);
  }
  .cta-banner__actions .btn {
    width: 100%;
  }
  .cta-banner__actions .btn-primary,
  .cta-banner__actions .btn-secondary {
    padding: 16px 32px;
  }
  .cta-banner__trust {
    gap: var(--space-lg);
  }
  .cta-break {
    padding: var(--space-3xl) var(--section-pad-x);
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .btn { width: 100%; justify-content: center; }
  .btn-lg { padding: 16px 32px; }

  .cta-banner__trust {
    flex-direction: column;
    gap: var(--space-sm);
    align-items: center;
  }
}

/* ----------------------------------------------------------------
   16a. GSAP ANIMATION UTILITIES & ATMOSPHERIC EFFECTS
   ---------------------------------------------------------------- */

/* When GSAP is active, disable CSS transition-based reveals
   (GSAP handles opacity/transform directly) */
.gsap-active .reveal,
.gsap-active .reveal-left,
.gsap-active .reveal-right,
.gsap-active .reveal-scale {
  transition: none !important;
}

/* Atmospheric golden glow — placed behind hero content */
.atmospheric-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(500px, 70vw, 1000px);
  height: clamp(500px, 70vw, 1000px);
  border-radius: 50%;
  background: radial-gradient(
    ellipse at center,
    rgba(var(--gold-rgb), 0.1) 0%,
    rgba(var(--gold-rgb), 0.05) 30%,
    rgba(var(--gold-rgb), 0.02) 55%,
    transparent 75%
  );
  z-index: 0;
  pointer-events: none;
}

/* Secondary atmospheric layer — warm gradient shift */
.atmospheric-warmth {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(var(--gold-rgb), 0.03) 0%,
    transparent 40%,
    rgba(var(--gold-rgb), 0.02) 60%,
    transparent 100%
  );
  animation: warmth-drift 12s ease-in-out infinite alternate;
  z-index: 0;
  pointer-events: none;
}

@keyframes warmth-drift {
  0% { opacity: 0.5; transform: translateX(-2%) translateY(-1%); }
  100% { opacity: 1; transform: translateX(2%) translateY(1%); }
}

/* Light streak — diagonal luxury accent */
.light-streak {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 200%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(var(--gold-rgb), 0.15) 30%,
    rgba(var(--gold-rgb), 0.3) 50%,
    rgba(var(--gold-rgb), 0.15) 70%,
    transparent 100%
  );
  transform: rotate(-35deg);
  animation: streak-sweep 8s ease-in-out infinite;
  z-index: 0;
  pointer-events: none;
}

@keyframes streak-sweep {
  0% { opacity: 0; transform: rotate(-35deg) translateX(-30%); }
  40% { opacity: 1; }
  60% { opacity: 1; }
  100% { opacity: 0; transform: rotate(-35deg) translateX(30%); }
}

/* Diamond sparkle points — small accent dots */
.sparkle-point {
  position: absolute;
  width: 3px;
  height: 3px;
  background: rgba(var(--gold-rgb), 0.6);
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(var(--gold-rgb), 0.4);
  animation: sparkle-twinkle 3s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}

@keyframes sparkle-twinkle {
  0%, 100% { opacity: 0; transform: scale(0.5); }
  50% { opacity: 1; transform: scale(1); }
}

/* Hero background image wrapper for GSAP scale animation */
.hero-bg-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  will-change: transform;
}

.hero-bg-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(30, 33, 50, 0.4) 0%,
    rgba(30, 33, 50, 0.7) 50%,
    rgba(30, 33, 50, 0.95) 100%
  );
}

/* ----------------------------------------------------------------
   16. ACCESSIBILITY
   ---------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal, .reveal-left, .reveal-right, .reveal-scale {
    opacity: 1 !important;
    transform: none !important;
  }
}

@media (forced-colors: active) {
  .btn-primary,
  .btn-secondary,
  .nav-cta {
    border: 2px solid ButtonText;
  }
  .card, .card-glass, .card-feature {
    border: 1px solid CanvasText;
  }
}

/* ----------------------------------------------------------------
   17. IMAGE COMPONENTS
   ---------------------------------------------------------------- */

/* Responsive image wrapper with aspect ratio */
.image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
}
.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.image-wrapper:hover img {
  transform: scale(1.03);
}

/* Aspect ratio utilities */
.aspect-16-9 { aspect-ratio: 16 / 9; }
.aspect-4-3 { aspect-ratio: 4 / 3; }
.aspect-3-2 { aspect-ratio: 3 / 2; }
.aspect-1-1 { aspect-ratio: 1 / 1; }

/* Subpage hero with background image */
.subpage-hero-image {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.subpage-hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(24, 27, 44, 0.4) 0%,
    rgba(24, 27, 44, 0.65) 50%,
    rgba(24, 27, 44, 0.95) 100%
  );
  z-index: 0;
}
.subpage-hero-image > * {
  position: relative;
  z-index: 1;
}

/* Blog feature image */
.blog-feature-image {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-2xl);
  border: 1px solid var(--border-color);
}
.blog-feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-feature-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 60%,
    rgba(24, 27, 44, 0.3) 100%
  );
  pointer-events: none;
}

/* Styled photo placeholder for missing images */
.photo-placeholder-styled {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-elevated) 100%);
  border: 1.5px dashed var(--border-gold);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl) var(--space-lg);
  text-align: center;
  min-height: 200px;
}
.photo-placeholder-styled svg {
  width: 48px;
  height: 48px;
  color: var(--gold);
  opacity: 0.5;
}
.photo-placeholder-styled .placeholder-label {
  font-family: var(--font-sans);
  font-size: var(--text-caption);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Circular team photo placeholder */
.team-photo-placeholder {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-elevated) 100%);
  border: 2px solid rgba(var(--gold-rgb), 0.25);
  margin: 0 auto var(--space-lg);
}
.team-photo-placeholder svg {
  width: 40px;
  height: 40px;
  color: var(--gold);
  opacity: 0.4;
}
.team-photo-placeholder .placeholder-label {
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Mini gallery (2-3 stacked images with hover) */
.mini-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}
.mini-gallery .image-wrapper:first-child {
  grid-column: 1 / -1;
}
.mini-gallery .image-wrapper {
  aspect-ratio: 4 / 3;
}
.mini-gallery .image-wrapper:first-child {
  aspect-ratio: 16 / 9;
}

/* Timeline image — small inline image next to timeline text */
.timeline-image {
  width: 100%;
  max-width: 280px;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  margin-top: var(--space-md);
}
.timeline-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Landing page hero image — full-width with strong overlay */
.lp-hero-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.lp-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lp-hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(24, 27, 44, 0.85) 0%,
    rgba(30, 33, 50, 0.7) 40%,
    rgba(24, 27, 44, 0.9) 100%
  );
}

/* ----------------------------------------------------------------
   15. PRINT
   ---------------------------------------------------------------- */
@media print {
  .nav, .footer, .page-loader,
  .gold-particles, .hero-glow { display: none !important; }
  body { background: white; color: black; }
  .card, .card-glass, .card-feature {
    border: 1px solid #ccc;
    page-break-inside: avoid;
  }
}
