@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400;1,600&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600&display=swap');

/* ─── Variables ─────────────────────────────────────────────────────────── */
:root {
  --cream:         #F5F0E8;
  --cream-dark:    #EDE6D6;
  --cream-deeper:  #E4DCCB;
  --navy:          #0A1628;
  --navy-mid:      #162440;
  --navy-light:    #1E3358;
  --gold:          #C9A84C;
  --gold-light:    #E2C97E;
  --gold-dark:     #9A7A2E;
  --text-dark:     #0D0D0D;
  --text-mid:      #3D3D3D;
  --text-light:    #7A7A7A;
  --white:         #FFFFFF;
  --border:        rgba(10,22,40,0.1);
  --border-strong: rgba(10,22,40,0.2);

  --ease-out-expo: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out:   cubic-bezier(0.4, 0, 0.2, 1);
  --duration-fast: 0.2s;
  --duration-mid:  0.45s;
  --duration-slow: 0.65s;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  cursor: none;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: none; }

/* ─── Paper texture overlay ──────────────────────────────────────────────── */
body {
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9500;
  pointer-events: none;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 300px 300px;
  mix-blend-mode: multiply;
}

/* ─── Typography ─────────────────────────────────────────────────────────── */
h1, h2, h3, h4, blockquote, .serif {
  font-family: 'Cormorant Garamond', serif;
}

h1 {
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  font-weight: 600;
  line-height: 1.0;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 600;
  line-height: 1.08;
}

h3 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 400;
}

h4 {
  font-size: clamp(1.1rem, 1.8vw, 1.5rem);
  font-weight: 600;
}

p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-mid);
}

/* ─── Custom Cursor ──────────────────────────────────────────────────────── */
#cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 6px; height: 6px;
  background: #E8EDF5;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
  box-shadow: 0 0 8px rgba(232, 237, 245, 0.6);
}

#cursor-ring {
  position: fixed;
  top: 0; left: 0;
  width: 24px; height: 24px;
  border: 1.5px solid #E8EDF5;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.25s var(--ease-out-expo),
              height 0.25s var(--ease-out-expo),
              border-color 0.25s ease,
              opacity 0.3s;
}

body.cursor-hover #cursor-ring {
  width: 44px; height: 44px;
  border-color: #E8EDF5;
}

body.cursor-active #cursor-dot {
  background: #E8EDF5;
  width: 8px; height: 8px;
}

/* ─── SVG Cursor ─────────────────────────────────────────────────────────── */
*, *::before, *::after {
  cursor: none !important;
}

#custom-cursor {
  width: 32px;
  height: 32px;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 999999;
  transform: translate(-4px, -4px);
  transition: opacity 0.2s ease;
  will-change: transform;
}

#custom-cursor img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  user-select: none;
}

/* On interactive elements: restore native pointer hand */
body.cursor-pointer * {
  cursor: pointer !important;
}

/* Touch devices: hide custom cursor, restore native */
@media (pointer: coarse) {
  #custom-cursor { display: none; }
  *, *::before, *::after { cursor: auto !important; }
}

/* ─── Section Label ──────────────────────────────────────────────────────── */
.section-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

/* ─── Buttons ────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 32px;
  border: none;
  cursor: none;
  transition: all var(--duration-fast) ease;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.06);
  opacity: 0;
  transition: opacity var(--duration-fast) ease;
}

.btn:hover::after { opacity: 1; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--navy);
  color: var(--cream);
}
.btn-primary:hover { background: var(--navy-mid); }

.btn-ghost {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--navy);
}
.btn-ghost:hover {
  background: var(--navy);
  color: var(--cream);
}

.btn-cream {
  background: var(--cream);
  color: var(--navy);
}
.btn-cream:hover { background: var(--cream-dark); }

.btn-nav {
  background: var(--navy);
  color: var(--cream);
  padding: 10px 24px;
  font-size: 0.75rem;
  font-weight: 500;
  border: none;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all var(--duration-fast) ease;
  display: inline-block;
  cursor: none;
}
.btn-nav:hover {
  background: var(--navy-light);
  transform: translateY(-1px);
}

/* ─── Navbar ─────────────────────────────────────────────────────────────── */
nav {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 5%;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: box-shadow 0.3s ease;
}

nav.scrolled {
  box-shadow: 0 2px 24px rgba(10,22,40,0.08);
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav-logo .key   { color: var(--gold); }
.nav-logo .admit { color: var(--navy); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--navy);
  position: relative;
  padding-bottom: 2px;
  transition: color var(--duration-fast) ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--duration-mid) var(--ease-out-expo);
}

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a:hover { color: var(--navy); }

/* Mobile nav */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  z-index: 110;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--navy);
  transition: all 0.3s ease;
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-mobile {
  display: none;
  position: fixed;
  top: 64px; left: 0; right: 0;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: 24px 5%;
  z-index: 99;
  flex-direction: column;
  gap: 24px;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.4s var(--ease-out-expo), opacity 0.3s ease;
}
.nav-mobile.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.nav-mobile a {
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--navy);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

/* ─── Footer ─────────────────────────────────────────────────────────────── */
footer {
  background: var(--navy);
  color: var(--cream);
  padding: 80px 5% 40px;
  position: relative;
}

footer::before {
  content: '';
  display: block;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin-bottom: 80px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-logo .key   { color: var(--gold); }
.footer-logo .admit { color: var(--cream); }

.footer-tagline {
  font-size: 0.9rem;
  color: rgba(245,240,232,0.6);
  line-height: 1.6;
  max-width: 260px;
}

.footer-col-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: rgba(245,240,232,0.7);
  font-size: 0.9rem;
  transition: color var(--duration-fast) ease;
}
.footer-links a:hover { color: var(--gold); }

footer a { color: var(--cream-dark); }
footer a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(245,240,232,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copyright {
  font-size: 0.8rem;
  color: rgba(245,240,232,0.4);
}

/* ─── Scroll Reveal ──────────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--duration-slow) var(--ease-out-expo),
              transform var(--duration-slow) var(--ease-out-expo);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-50px) rotate(-2deg);
  filter: blur(4px);
  transition: opacity var(--duration-slow) var(--ease-out-expo),
              transform var(--duration-slow) var(--ease-out-expo),
              filter var(--duration-slow) var(--ease-out-expo);
}
.reveal-right {
  opacity: 0;
  transform: translateX(50px) rotate(2deg);
  filter: blur(4px);
  transition: opacity var(--duration-slow) var(--ease-out-expo),
              transform var(--duration-slow) var(--ease-out-expo),
              filter var(--duration-slow) var(--ease-out-expo);
}
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0) rotate(0deg);
  filter: blur(0);
}

/* ─── Word split animation ───────────────────────────────────────────────── */
.word-split .word {
  display: inline-block;
  overflow: visible;
  vertical-align: bottom;
}
.word-split .word .inner {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
  transition: transform 0.9s var(--ease-out-expo),
              opacity 0.6s ease;
}
.word-split.animate .word .inner {
  transform: translateY(0);
  opacity: 1;
}

/* ─── Hero - Index ───────────────────────────────────────────────────────── */
.hero {
  min-height: 100dvh;
  padding: 120px 5% 80px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dark), transparent);
  opacity: 0.4;
}

.hero-inner {
  display: grid;
  grid-template-columns: 60fr 40fr;
  gap: 60px;
  align-items: center;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.hero-gold-line {
  width: 80px; height: 1px;
  background: var(--gold);
  margin-bottom: 20px;
}

.hero-content h1 {
  margin-bottom: 28px;
  line-height: 1.15;
  padding-bottom: 0.15em;
  overflow: visible;
  color: #E8EDF5;
  -webkit-text-fill-color: #E8EDF5;
}

.hero-content h1 em {
  font-style: italic;
  font-weight: 300;
  line-height: 1.15;
  padding-bottom: 0.15em;
  overflow: visible;
  display: inline-block;
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  -webkit-text-fill-color: #F0C040;
  color: #F0C040;
}

.hero-subtitle {
  font-size: 1.05rem;
  max-width: 420px;
  margin-bottom: 40px;
  color: #F5F0E8;
  opacity: 0.9;
}

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

/* ── Hero CTA buttons — silver-metallic override ─────────────────────────── */
.hero-ctas .btn-primary {
  background: linear-gradient(
    135deg,
    #FFFFFF 0%,
    #C8D6E5 40%,
    #FFFFFF 60%,
    #B0C0D0 100%
  );
  color: #0A0A0A;
  border: none;
  font-weight: 600;
}
.hero-ctas .btn-primary:hover {
  filter: brightness(1.05);
  transform: scale(1.02);
  background: linear-gradient(
    135deg,
    #FFFFFF 0%,
    #C8D6E5 40%,
    #FFFFFF 60%,
    #B0C0D0 100%
  );
}

.hero-ctas .btn-ghost {
  background: transparent;
  border: 1.5px solid #C8D6E5;
  color: #E8EDF5;
}
.hero-ctas .btn-ghost:hover {
  background: rgba(200, 214, 229, 0.08);
  border-color: #FFFFFF;
  color: #FFFFFF;
}

.hero-visual {
  position: relative;
}

.hero-card {
  background: var(--navy);
  border: 1px solid var(--gold-dark);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 60px; height: 60px;
  border-top: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
  pointer-events: none;
  z-index: 1;
}

.hero-card::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 60px; height: 60px;
  border-bottom: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
  pointer-events: none;
  z-index: 1;
}

.ghost-year {
  position: absolute;
  bottom: -20px;
  right: -10px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 8rem;
  font-weight: 700;
  color: rgba(201,168,76,0.08);
  line-height: 1;
  user-select: none;
  pointer-events: none;
  letter-spacing: -0.02em;
}

.hero-card-geo {
  position: absolute;
  bottom: -40px; right: -40px;
  width: 180px; height: 180px;
  border: 1px solid rgba(201,168,76,0.15);
  transform: rotate(30deg);
}
.hero-card-geo::before {
  content: '';
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(201,168,76,0.1);
}

.hero-card-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.hero-card h3 {
  color: var(--cream);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  line-height: 1.15;
  margin-bottom: 24px;
}

.hero-card-stat {
  border-top: 1px solid rgba(245,240,232,0.1);
  padding-top: 24px;
}
.hero-card-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.hero-card-stat-label {
  font-size: 0.8rem;
  color: rgba(245,240,232,0.5);
  letter-spacing: 0.05em;
}

/* ─── Stats Bar ──────────────────────────────────────────────────────────── */
.stats-bar {
  background: var(--navy);
  padding: 32px 5%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 48px;
}

.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  display: block;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(201,168,76,0.2);
  flex-shrink: 0;
}

.stat-label {
  font-size: 0.72rem;
  font-weight: 400;
  color: rgba(245,240,232,0.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 6px;
  display: block;
  text-align: center;
}

/* ─── Section Divider ────────────────────────────────────────────────────── */
.section-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--border-strong) 20%,
    rgba(201,168,76,0.3) 50%,
    var(--border-strong) 80%,
    transparent 100%
  );
  margin: 0;
}

/* ─── What We Cover ──────────────────────────────────────────────────────── */
.section-cover {
  padding: 120px 5%;
  background: var(--cream);
}

.section-header {
  margin-bottom: 64px;
  max-width: 600px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
}

.service-pill {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 36px 32px;
  border-left: 3px solid var(--navy);
  position: relative;
  transition: border-left-color var(--duration-fast) ease,
              transform var(--duration-mid) var(--ease-out-expo),
              box-shadow var(--duration-mid) ease;
  cursor: none;
}

.service-pill:hover {
  border-left-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(10,22,40,0.08);
  z-index: 1;
}

.service-pill-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.service-pill h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}

.service-pill p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ─── Why KeyAdmit ───────────────────────────────────────────────────────── */
.section-why {
  padding: 120px 5%;
  background: var(--cream-dark);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}

.why-card {
  background: var(--white);
  padding: 48px 36px;
  position: relative;
  overflow: hidden;
  transition: transform var(--duration-mid) var(--ease-out-expo),
              box-shadow var(--duration-mid) ease;
  cursor: none;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transition: background var(--duration-mid) ease;
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(10,22,40,0.1);
}

.why-card:hover::before {
  background: var(--gold);
}

.why-card-ghost {
  font-family: 'Cormorant Garamond', serif;
  font-size: 7rem;
  font-weight: 600;
  color: rgba(10,22,40,0.06);
  position: absolute;
  top: -10px; right: 20px;
  line-height: 1;
  user-select: none;
}

.why-card-tag {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.why-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.2;
}

.why-card p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ─── Testimonials ───────────────────────────────────────────────────────── */
.section-testimonials {
  padding: 120px 5%;
  background: var(--cream);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--white);
  padding: 44px 40px 36px;
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  position: relative;
  transition: transform var(--duration-mid) var(--ease-out-expo),
              box-shadow var(--duration-mid) ease,
              border-left-color var(--duration-fast) ease;
  cursor: none;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(10,22,40,0.1);
  border-left-color: var(--navy);
}

.testimonial-quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 6rem;
  line-height: 1;
  color: rgba(10,22,40,0.06);
  position: absolute;
  top: 10px; left: 30px;
  font-weight: 400;
  user-select: none;
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.testimonial-stars span {
  color: var(--gold);
  font-size: 0.9rem;
}

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-mid);
  font-style: italic;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--cream-dark);
  border: 2px solid var(--border);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
}

.testimonial-name {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--navy);
  margin-bottom: 2px;
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* ─── Final CTA ──────────────────────────────────────────────────────────── */
.section-cta-final {
  background: var(--navy);
  padding: 120px 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.section-cta-final::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  transform: translateX(-50%);
  pointer-events: none;
}

.section-cta-final::after {
  content: 'KEYADMIT';
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(4rem, 10vw, 10rem);
  font-weight: 700;
  color: rgba(245,240,232,0.03);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: 0.2em;
  user-select: none;
}

.cta-final-heading {
  color: var(--cream);
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 600;
  max-width: 700px;
  margin: 0 auto 20px;
  line-height: 1.05;
}

.cta-final-sub {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: var(--gold-light);
  margin-bottom: 48px;
}

/* ─── About Page ─────────────────────────────────────────────────────────── */
.about-hero {
  min-height: 70dvh;
  padding: 140px 5% 80px;
  background: var(--cream);
  display: flex;
  align-items: center;
}

.about-hero-inner {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 80px;
  align-items: center;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
}

.about-founder-card {
  background: var(--navy);
  padding: 48px 40px;
  position: relative;
}
.about-founder-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
}

.about-founder-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--navy-mid);
  border: 2px solid rgba(201,168,76,0.3);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--gold);
}

.about-founder-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 6px;
}

.about-founder-role {
  font-size: 0.8rem;
  color: rgba(245,240,232,0.55);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Story */
.about-story {
  padding: 120px 5%;
  background: var(--cream);
}

.about-story-inner {
  display: grid;
  grid-template-columns: 45fr 55fr;
  gap: 100px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

.about-pull-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--navy);
  position: sticky;
  top: 100px;
}

.about-pull-quote em {
  font-style: italic;
  color: var(--gold);
}

.about-body-text p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-mid);
  margin-bottom: 24px;
}

/* Values */
.about-values {
  padding: 0;
}

.value-row {
  padding: 80px 5%;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 80px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.value-row-wrap {
  border-bottom: 1px solid var(--border);
}
.value-row-wrap:nth-child(even) {
  background: var(--cream-dark);
}

.value-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  font-weight: 600;
  color: rgba(10,22,40,0.12);
  line-height: 1;
}

.value-content h3 {
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: 16px;
}

.value-content p {
  max-width: 560px;
}

/* Team */
.about-team {
  padding: 100px 5%;
  background: var(--cream);
  text-align: center;
}

.team-card {
  background: var(--navy);
  padding: 56px 48px;
  max-width: 400px;
  margin: 48px auto 0;
  position: relative;
}
.team-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.team-avatar {
  width: 100px; height: 100px;
  border-radius: 50%;
  background: var(--navy-mid);
  border: 2px solid rgba(201,168,76,0.25);
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  color: var(--gold);
}

.team-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 8px;
}

.team-title {
  font-size: 0.8rem;
  color: rgba(245,240,232,0.5);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ─── Services Page ──────────────────────────────────────────────────────── */
.services-hero {
  min-height: 60dvh;
  background: var(--navy);
  padding: 140px 5% 80px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.services-hero::before {
  content: '';
  position: absolute;
  top: -300px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 65%);
  pointer-events: none;
}

.services-hero-inner {
  max-width: 800px;
}

.services-hero h1 {
  color: var(--cream);
  margin-bottom: 24px;
}

.services-hero h1 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 300;
}

.services-hero p {
  color: rgba(245,240,232,0.6);
  font-size: 1.05rem;
  max-width: 520px;
}

/* Tier Cards */
.tier-card {
  padding: 80px 5%;
  border-bottom: 1px solid var(--border);
}

.tier-card:nth-child(even) {
  background: var(--cream-dark);
}

.tier-card:nth-child(3) {
  background: var(--navy);
  border-bottom: none;
}

.tier-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.tier-badge {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.tier-name {
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--navy);
  margin-bottom: 20px;
}

.tier-card:nth-child(3) .tier-name { color: var(--cream); }
.tier-card:nth-child(3) p { color: rgba(245,240,232,0.65); }
.tier-card:nth-child(3) .tier-price { color: var(--gold-light); }
.tier-card:nth-child(3) .tier-badge { color: var(--gold-light); }

.tier-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 28px;
}

.tier-desc {
  font-size: 0.95rem;
  margin-bottom: 32px;
}

.tier-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.tier-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-mid);
}

.tier-feature-check {
  width: 16px; height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

.tier-card:nth-child(3) .tier-feature { color: rgba(245,240,232,0.7); }

/* FAQ */
.section-faq {
  padding: 100px 5%;
  background: var(--cream);
}

.faq-list {
  max-width: 800px;
  margin: 48px auto 0;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  background: none;
  border: none;
  text-align: left;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
  gap: 24px;
  cursor: none;
  transition: color var(--duration-fast) ease;
}
.faq-question:hover { color: var(--gold); }

.faq-indicator {
  width: 20px; height: 20px;
  flex-shrink: 0;
  position: relative;
}
.faq-indicator::before,
.faq-indicator::after {
  content: '';
  position: absolute;
  background: var(--gold);
  transition: transform 0.35s var(--ease-out-expo), opacity 0.3s ease;
}
.faq-indicator::before {
  top: 50%; left: 0; right: 0;
  height: 1px;
  transform: translateY(-50%);
}
.faq-indicator::after {
  left: 50%; top: 0; bottom: 0;
  width: 1px;
  transform: translateX(-50%);
}
.faq-item.open .faq-indicator::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.5s var(--ease-out-expo), padding 0.3s ease;
}
.faq-answer-inner {
  padding: 0 0 24px;
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-mid);
}

/* ─── Shop Page ──────────────────────────────────────────────────────────── */
.shop-hero {
  min-height: 45dvh;
  background: var(--cream);
  padding: 140px 5% 80px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.shop-hero h1 { color: var(--navy); margin-bottom: 16px; }
.shop-hero p { max-width: 500px; font-size: 1.05rem; }

.section-shop {
  padding: 80px 5% 120px;
  background: var(--cream);
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.product-card {
  background: var(--cream-dark);
  padding: 36px 32px;
  border: 1px solid var(--border);
  position: relative;
  transition: transform var(--duration-mid) var(--ease-out-expo),
              box-shadow var(--duration-mid) ease,
              border-color var(--duration-fast) ease;
  cursor: none;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(10,22,40,0.1);
  border-color: var(--gold);
}

.product-tag {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.product-thumb {
  height: 140px;
  background: var(--cream-deeper);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.product-thumb-inner {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  font-weight: 300;
  color: rgba(10,22,40,0.08);
  user-select: none;
}

.product-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.2;
}

.product-desc {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--text-light);
  margin-bottom: 24px;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.product-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--navy);
}

/* ─── Contact Page ───────────────────────────────────────────────────────── */
.contact-hero {
  background: var(--navy);
  padding: 140px 5% 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-hero::before {
  content: '';
  position: absolute;
  bottom: -200px; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 400px;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 65%);
  pointer-events: none;
}

.contact-hero h1 {
  color: var(--cream);
  margin-bottom: 16px;
}

.contact-hero-sub {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  color: var(--gold-light);
  max-width: 540px;
  margin: 0 auto;
}

.contact-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  min-height: 70dvh;
}

.contact-form-side {
  background: var(--cream);
  padding: 80px 5%;
}

.contact-details-side {
  background: var(--navy);
  padding: 80px 5%;
  position: relative;
}

.contact-details-side::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 2px; height: 100%;
  background: linear-gradient(180deg, transparent, var(--gold), transparent);
  opacity: 0.4;
}

.contact-form-group {
  margin-bottom: 20px;
}

.contact-form-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
}

.contact-form-label .req { color: var(--gold); margin-left: 2px; }

input, select, textarea {
  background: var(--cream-dark);
  border: 1px solid var(--border-strong);
  padding: 14px 16px;
  width: 100%;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: border-color var(--duration-fast) ease,
              box-shadow var(--duration-fast) ease;
  appearance: none;
  -webkit-appearance: none;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}

textarea { resize: vertical; min-height: 120px; }

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 32px;
}

.contact-detail-icon {
  width: 36px; height: 36px;
  border: 1px solid rgba(201,168,76,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-icon svg {
  width: 14px; height: 14px;
  stroke: var(--gold);
}

.contact-detail-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.4);
  margin-bottom: 4px;
}

.contact-detail-value {
  font-size: 0.95rem;
  color: var(--cream);
}

.contact-benefits {
  margin-top: 48px;
  border-top: 1px solid rgba(245,240,232,0.1);
  padding-top: 40px;
}

.contact-benefit {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}

.contact-benefit-dot {
  width: 5px; height: 5px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 7px;
}

.contact-benefit-text {
  font-size: 0.9rem;
  color: rgba(245,240,232,0.65);
  line-height: 1.5;
}

/* ─── Section Background Textures ───────────────────────────────────────── */

/* Cream sections — subtle 45° diagonal grain */
.section-cover,
.section-testimonials,
.about-story,
.about-team,
.section-shop,
.shop-hero,
.section-faq,
.contact-form-side {
  background-image: repeating-linear-gradient(
    45deg,
    rgba(10,22,40,0.012) 0px,
    rgba(10,22,40,0.012) 1px,
    transparent 1px,
    transparent 12px
  );
}

/* Cream-dark sections — linen crosshatch */
.section-why {
  background-image:
    repeating-linear-gradient(
      0deg,
      rgba(10,22,40,0.025) 0px,
      rgba(10,22,40,0.025) 1px,
      transparent 1px,
      transparent 16px
    ),
    repeating-linear-gradient(
      90deg,
      rgba(10,22,40,0.015) 0px,
      rgba(10,22,40,0.015) 1px,
      transparent 1px,
      transparent 16px
    );
}

/* Navy sections — micro gold dot grid */
.stats-bar,
footer,
.section-cta-final,
.services-hero,
.contact-hero {
  background-image: radial-gradient(
    rgba(201,168,76,0.07) 1px,
    transparent 1px
  );
  background-size: 24px 24px;
}

/* ─── Hero Card Texture ──────────────────────────────────────────────────── */
.hero-card {
  background-color: var(--navy);
  background-image:
    repeating-linear-gradient(
      -45deg,
      rgba(201,168,76,0.04) 0px,
      rgba(201,168,76,0.04) 1px,
      transparent 1px,
      transparent 20px
    ),
    radial-gradient(
      ellipse at top right,
      rgba(201,168,76,0.14) 0%,
      transparent 60%
    );
  border: 1px solid rgba(201,168,76,0.28);
}

/* ─── Card Subtle Gold Warmth ────────────────────────────────────────────── */
.service-pill,
.why-card,
.testimonial-card {
  background-image: radial-gradient(
    ellipse at top left,
    rgba(201,168,76,0.04) 0%,
    transparent 50%
  );
}

.tier-card {
  position: relative;
}

/* Gold shimmer top line — revealed on hover */
.service-pill::after,
.testimonial-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(201,168,76,0.5) 40%,
    rgba(201,168,76,0.5) 60%,
    transparent
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.service-pill:hover::after,
.testimonial-card:hover::after {
  opacity: 1;
}

/* ─── Testimonial Divider ────────────────────────────────────────────────── */
.testimonial-divider {
  width: 32px;
  height: 1px;
  background: var(--gold);
  margin: 16px 0;
  opacity: 0.55;
}

/* ─── Pull Quote Upgrade ─────────────────────────────────────────────────── */
.about-pull-quote {
  border-left: 2px solid var(--gold);
  padding: 24px 0 24px 36px;
  background: linear-gradient(
    90deg,
    rgba(201,168,76,0.05) 0%,
    transparent 100%
  );
  position: relative;
}

.about-pull-quote::before {
  content: '\201C';
  position: absolute;
  top: -12px;
  left: 18px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.18;
  line-height: 1;
  pointer-events: none;
}

/* ═══════════════════════════════════════════════════════════════════════════
   GLOBE PORTAL
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Portal container ────────────────────────────────────────────────────── */
#globe-portal {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: #050D1A;
  overflow: hidden;
}

/* ── Stars background ────────────────────────────────────────────────────── */
#globe-portal::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: radial-gradient(
    circle,
    rgba(245,240,232,0.6) 1px,
    transparent 1px
  );
  background-size: 80px 80px;
  opacity: 0.08;
  pointer-events: none;
}

/* ── KEYADMIT background word ────────────────────────────────────────────── */
.globe-bg-word {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(80px, 16vw, 200px);
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  animation: bgWordBreathe 8s ease-in-out infinite alternate;
}

.key-bg   { color: rgba(232, 66, 10, 0.06); }
.admit-bg { color: rgba(10, 22, 40, 0.15); }

@keyframes bgWordBreathe {
  from { opacity: 0.7; letter-spacing: 0.06em; }
  to   { opacity: 1;   letter-spacing: 0.12em; }
}

/* ── Globe canvas ────────────────────────────────────────────────────────── */
#globe-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* ── Paris marker ────────────────────────────────────────────────────────── */
.paris-marker {
  position: fixed;
  z-index: 10;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.paris-marker.hidden { display: none; }

.marker-dot {
  width: 8px;
  height: 8px;
  background: var(--gold, #C9A84C);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  box-shadow:
    0 0 10px rgba(201,168,76,0.8),
    0 0 20px rgba(201,168,76,0.4);
}

.marker-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
  border: 1.5px solid rgba(201,168,76,0.7);
  border-radius: 50%;
  animation: markerPulse 2s ease-out infinite;
}

.marker-ring--2 {
  width: 40px;
  height: 40px;
  border-color: rgba(201,168,76,0.4);
  animation-delay: 0.5s;
}

@keyframes markerPulse {
  0%   { transform: translate(-50%,-50%) scale(0.8); opacity: 1; }
  100% { transform: translate(-50%,-50%) scale(1.8); opacity: 0; }
}

.marker-label {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(201,168,76,0.9);
  text-shadow: 0 0 20px rgba(201,168,76,0.5);
}

/* ── Scroll hint ─────────────────────────────────────────────────────────── */
#scroll-hint {
  position: fixed;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(201,168,76,0.6);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 20;
  pointer-events: none;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(201,168,76,0.8), transparent);
  animation: scrollPulse 1.5s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1);   }
  50%       { opacity: 1;   transform: scaleY(1.3); }
}

/* ── Portal flash ────────────────────────────────────────────────────────── */
#portal-flash {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
  opacity: 0;
  background: #F5F0E8;
}

/* ── Scroll spacer ───────────────────────────────────────────────────────── */
#globe-spacer {
  height: 400vh;
  position: relative;
  z-index: 1;
}

/* ── Site content visibility ─────────────────────────────────────────────── */
.site-content-hidden {
  opacity: 0;
  visibility: hidden;
  position: relative;
  z-index: 2;
}

.site-content-visible {
  opacity: 1;
  visibility: visible;
}

/* ── Mobile — skip portal entirely ──────────────────────────────────────── */
@media (max-width: 768px) {
  #globe-portal,
  #globe-spacer {
    display: none;
  }
  .site-content-hidden {
    opacity: 1;
    visibility: visible;
  }
}

/* ─── Stat Number Gradient Text ──────────────────────────────────────────── */
.stat-number {
  background: linear-gradient(
    135deg,
    var(--gold-light) 0%,
    var(--gold) 50%,
    var(--gold-dark) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── Page Transition ────────────────────────────────────────────────────── */
.page-curtain {
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 9000;
  pointer-events: none;
  transform-origin: bottom;
  animation: curtain-up 0.8s var(--ease-out-expo) 0.1s both;
}

@keyframes curtain-up {
  from { transform: scaleY(1); }
  to   { transform: scaleY(0); }
}

/* ─── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner,
  .tier-inner { grid-template-columns: 1fr; gap: 48px; }
  .services-grid,
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-bar { gap: 0; }
  .stat { padding: 0 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 600px; }
  .contact-split { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .btn-nav { display: none; }
  .nav-hamburger { display: flex; }
  .nav-mobile { display: flex; }

  .services-grid,
  .why-grid,
  .shop-grid { grid-template-columns: 1fr; }
  .stats-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    padding: 32px;
  }
  .stat { padding: 0; }
  .stat-divider { display: none; }
  .about-hero-inner,
  .about-story-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-pull-quote { position: static; }
  .value-row { grid-template-columns: 1fr; gap: 20px; }
  .value-number { font-size: 3rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .contact-form-row { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { text-align: center; justify-content: center; }

  body { cursor: auto; }
  #cursor-dot, #cursor-ring { display: none; }
}

@media (max-width: 480px) {
  .stats-bar { grid-template-columns: 1fr; }
  .tier-inner { grid-template-columns: 1fr; }
}

/* ─── Reduced motion ─────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal, .reveal-left, .reveal-right {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
  .word-split .word .inner {
    transform: none !important;
    opacity: 1 !important;
  }
}

/* ─── Mobile menu overlay (hidden by default, shown via JS) ──────────────── */
#mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: #0A1628;
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

#close-menu {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  font-size: 2rem;
  color: #F5F0E8;
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
  padding: 0;
}

#mobile-menu a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: #F5F0E8;
  text-decoration: none;
  border-bottom: 1px solid rgba(201,168,76,0.2);
  padding-bottom: 1rem;
  width: 80%;
  text-align: center;
  display: block;
}

#mobile-menu .mobile-menu-cta {
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  background: #C9A84C;
  color: #0A1628;
  padding: 1rem 2rem;
  border: none;
  margin-top: 1rem;
  cursor: pointer;
  text-decoration: none;
  border-bottom: none;
}

#hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #F5F0E8;
  cursor: pointer;
  padding: 4px 8px;
  z-index: 110;
}

/* ─── Mobile overrides (≤768px only) ────────────────────────────────────── */
@media (max-width: 768px) {

  /* 1 — Prevent horizontal scroll */
  body {
    overflow-x: hidden;
    max-width: 100%;
  }

  .hero,
  .stats-bar,
  .section-cover,
  .section-why,
  .section-testimonials,
  .section-cta-final,
  footer {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
  }

  /* 2 — Navbar: solid opaque fixed bar on mobile, immune to scroll effects */
  nav {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 999 !important;
    background: #F5F0E8 !important;
    background-color: #F5F0E8 !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    opacity: 1 !important;
    box-shadow: 0 1px 0 rgba(10, 22, 40, 0.08);
  }

  .nav-hamburger { display: none !important; }
  .nav-mobile    { display: none !important; }

  #hamburger {
    display: block;
    color: #0A1628;
    font-size: 1.8rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
  }

  /* 3 — Hero layout */
  .hero {
    padding: 6rem 1.5rem 3rem;
    padding-top: 70px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .hero-content h1 {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .hero-content h1 em {
    font-size: clamp(1.4rem, 5vw, 2rem);
  }

  .hero-visual {
    width: 100%;
    margin-top: 2rem;
    position: relative;
  }

  .hero-card {
    width: 100%;
    box-sizing: border-box;
  }

  .hero-ctas {
    width: 100%;
    flex-direction: column;
  }

  .hero-ctas .btn {
    width: 100%;
    display: block;
    margin-bottom: 0.75rem;
    box-sizing: border-box;
    text-align: center;
  }

  /* 5 — General section padding */
  .section-cover,
  .section-why,
  .section-testimonials,
  .section-cta-final {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
