/* =============================================
   SKYBOX BY LUXSUGERO — DESIGN SYSTEM V2
   ============================================= */

:root {
  --green-deep: #0d2318;
  --green-forest: #1a3d28;
  --green-mid: #2c5f3e;
  --gold: #b8933f;
  --gold-light: #d4ab5a;
  --gold-pale: #e8cfa0;
  --ivory: #f5f0e8;
  --ivory-warm: #ede6d8;
  --charcoal: #141414;
  --charcoal-mid: #1e1e1e;
  --charcoal-soft: #2a2a2a;
  --neutral-mid: #6b6457;
  --neutral-light: #9a9088;
  --white: #ffffff;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --section-padding: clamp(80px, 10vw, 140px) 0;
  --container-max: 1320px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-med: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  background-color: var(--charcoal);
  color: var(--ivory);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition-fast); }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; color: inherit; }
table { border-collapse: collapse; width: 100%; }

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

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .parallax-img img { transform: none !important; }
  .reveal-up, .reveal-left, .reveal-right { opacity: 1 !important; transform: none !important; }
  .ms-layer { opacity: 1 !important; transform: none !important; }
  .hero-kb { animation: none !important; }
}

.container { max-width: var(--container-max); margin: 0 auto; padding: 0 clamp(20px, 5vw, 48px); }
.section { padding: var(--section-padding); position: relative; }

/* =============================================
   TYPOGRAPHY
   ============================================= */
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  display: block;
}
.section-eyebrow--light { color: var(--gold-light); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--ivory);
  margin-bottom: 1.6rem;
}
.section-title em { font-style: italic; color: var(--gold-light); }
.section-title--light { color: var(--white); }

.body-text { font-size: 1.05rem; color: var(--neutral-light); max-width: 560px; margin-bottom: 1.2rem; font-weight: 300; }
.body-text--centered { max-width: 680px; margin-left: auto; margin-right: auto; text-align: center; font-size: 1.15rem; }

.mt-4 { margin-top: 2rem; display: inline-block; }

/* =============================================
   BUTTONS
   ============================================= */
.btn-primary, .btn-secondary, .btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1rem 2.2rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: var(--transition-med);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--green-deep);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 30px -8px rgba(184, 147, 63, 0.5); }

.btn-secondary {
  background: transparent;
  color: var(--ivory);
  border: 1px solid rgba(245, 240, 232, 0.35);
}
.btn-secondary:hover { border-color: var(--gold-light); color: var(--gold-light); }

.btn-outline {
  background: transparent;
  color: var(--green-forest);
  border: 1px solid var(--green-forest);
  padding: 0.85rem 1.8rem;
}
.btn-outline:hover { background: var(--green-forest); color: var(--ivory); }
.btn-outline--light { color: var(--ivory); border-color: rgba(245, 240, 232, 0.4); }
.btn-outline--light:hover { background: var(--ivory); color: var(--green-deep); }

.btn-large { padding: 1.2rem 2.8rem; font-size: 0.85rem; }
.btn-glow { animation: btnGlow 3s ease-in-out infinite; }
@keyframes btnGlow {
  0%, 100% { box-shadow: 0 0 0 rgba(184, 147, 63, 0); }
  50% { box-shadow: 0 0 40px rgba(184, 147, 63, 0.35); }
}

/* =============================================
   REVEAL ANIMATIONS
   ============================================= */
.reveal-up, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-up { transform: translateY(40px); }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal-up.visible, .reveal-left.visible, .reveal-right.visible { opacity: 1; transform: translate(0, 0); }

/* =============================================
   PRELOADER
   ============================================= */
#preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--green-deep);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-inner { text-align: center; position: relative; z-index: 2; }
.preloader-mirror-wipe {
  position: fixed; inset: 0; z-index: 1;
  background: linear-gradient(120deg, transparent 45%, rgba(212, 171, 90, 0.18) 50%, transparent 55%);
  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  animation: mirrorWipe 1.8s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}
@keyframes mirrorWipe {
  0% { clip-path: polygon(0 0, 0 0, 0 100%, 0 100%); }
  60% { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); }
  100% { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); opacity: 0; }
}
.preloader-logo { width: 90px; height: 90px; margin: 0 auto 1.5rem; border-radius: 50%; overflow: hidden; opacity: 0; animation: fadeInSoft 0.8s ease 0.3s forwards; }
.preloader-logo img { width: 100%; height: 100%; object-fit: cover; }
.preloader-line { width: 0; height: 1px; background: var(--gold); margin: 0 auto 1rem; animation: lineExpand 1.2s ease 0.6s forwards; }
@keyframes lineExpand { to { width: 120px; } }
@keyframes fadeInSoft { to { opacity: 1; } }
.preloader-tagline { font-family: var(--font-display); font-style: italic; font-size: 1rem; color: var(--gold-pale); opacity: 0; animation: fadeInSoft 0.8s ease 1s forwards; letter-spacing: 0.02em; }

/* =============================================
   NAVIGATION
   ============================================= */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 22px 0;
  transition: var(--transition-med);
  background: linear-gradient(to bottom, rgba(13, 35, 24, 0.55), transparent);
}
#navbar.scrolled { padding: 14px 0; background: rgba(13, 35, 24, 0.92); backdrop-filter: blur(14px); box-shadow: 0 4px 30px rgba(0,0,0,0.25); }
.nav-container { max-width: var(--container-max); margin: 0 auto; padding: 0 clamp(20px, 5vw, 48px); display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 0.85rem; }
.nav-logo img { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; box-shadow: 0 2px 10px rgba(0,0,0,0.35), 0 0 0 1px rgba(212,171,90,0.25); }
.nav-logo-text { font-family: var(--font-display); color: var(--ivory); display: flex; align-items: baseline; gap: 0.4em; text-shadow: 0 2px 6px rgba(0,0,0,0.5); }
.nav-logo-primary { font-size: 1.78rem; font-weight: 500; letter-spacing: 0.01em; line-height: 1; }
.nav-logo-text em { font-style: italic; font-size: 1.05rem; color: var(--gold-light); font-weight: 500; letter-spacing: 0.02em; }
.nav-right { display: flex; align-items: center; gap: 1.4rem; }
.nav-cta { padding: 0.75rem 1.6rem; font-size: 0.72rem; }

/* Global SVG Safety */
svg {
  display: inline-block;
  max-width: 100%;
  max-height: 100%;
  vertical-align: middle;
}

.hamburger {
  background: transparent;
  border: none;
  box-shadow: none;
  outline: none;
  cursor: pointer;
  padding: 6px 8px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 5px;
  -webkit-tap-highlight-color: transparent;
  appearance: none;
  -webkit-appearance: none;
}
.hamburger:focus, .hamburger:active { outline: none; box-shadow: none; background: transparent; }
.hamburger-bar { display: block; width: 24px; height: 2px; background: var(--gold-light); border-radius: 2px; transition: var(--transition-fast); }
.hamburger-bar--short { width: 16px; }
.hamburger-label { font-size: 0.6rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold-pale); margin-top: 2px; }
.hamburger.active .hamburger-bar:nth-child(1) { transform: translateY(3.5px) rotate(45deg); width: 24px; }
.hamburger.active .hamburger-bar:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); width: 24px; }

/* Mega Menu */
.mega-menu {
  position: fixed; inset: 0; z-index: 2000;
  background: var(--green-deep);
  display: flex; flex-direction: column;
  transform: translateY(-100%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  padding: 0 clamp(20px, 6vw, 80px) 48px;
  height: 100vh;
  height: 100dvh;
}
.mega-menu.open { transform: translateY(0); }
.mega-menu-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 0.5s ease; z-index: 0; pointer-events: none; }
.mega-menu-bg.active { opacity: 0.14; }

.mega-menu-header {
  position: sticky; top: 0; z-index: 10;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 0;
  background: var(--green-deep);
  width: 100%; max-width: 1100px; margin: 0 auto;
  flex-shrink: 0;
}
.mobile-menu-close {
  position: relative; top: auto; right: auto; z-index: 10;
  font-size: 1.6rem; color: var(--ivory); width: 44px; height: 44px;
  background: transparent; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition-fast);
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  padding: 0; line-height: 1;
}
.mobile-menu-close:hover, .mobile-menu-close:focus { color: var(--gold-light); transform: scale(1.1); outline: none; }

.mega-menu-inner { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem; max-width: 1100px; margin: 1.5rem auto 0; width: 100%; flex-shrink: 0; }
.mega-menu-heading { font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.4rem; }
.mega-menu-col ul { display: flex; flex-direction: column; gap: 0.9rem; }
.mobile-nav-link { font-family: var(--font-display); font-size: 1.6rem; color: var(--ivory-warm); transition: var(--transition-fast); display: inline-block; text-decoration: none; }
.mobile-nav-link:hover { color: var(--gold-light); transform: translateX(6px); }
.mega-menu-footer { position: relative; z-index: 1; max-width: 1100px; margin: 2.5rem auto auto; width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; border-top: 1px solid rgba(245,240,232,0.12); padding-top: 2rem; flex-shrink: 0; }
body.menu-open .hero-scroll-indicator { opacity: 0; visibility: hidden; }
.mega-menu-phone { font-family: var(--font-display); font-size: 1.2rem; color: var(--gold-pale); text-decoration: none; }
.mobile-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.65); opacity: 0; visibility: hidden; transition: var(--transition-med); z-index: 1990; }
.mobile-overlay.visible { opacity: 1; visibility: visible; }

/* =============================================
   HERO — KEN BURNS CROSSFADE
   ============================================= */
.hero { position: relative; height: 100vh; min-height: 640px; overflow: hidden; display: flex; align-items: center; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-kb { position: absolute; inset: 0; opacity: 0; }
.hero-kb picture, .hero-kb img { width: 100%; height: 100%; object-fit: cover; }
.hero-kb--1 { animation: heroKb1 24s ease-in-out infinite; }
.hero-kb--2 { animation: heroKb2 24s ease-in-out infinite; }
.hero-kb--3 { animation: heroKb3 24s ease-in-out infinite; }
@keyframes heroKb1 {
  0% { opacity: 1; transform: scale(1); }
  30% { opacity: 1; transform: scale(1.08); }
  34% { opacity: 0; }
  95% { opacity: 0; }
  100% { opacity: 0; transform: scale(1); }
}
@keyframes heroKb2 {
  0%, 30% { opacity: 0; transform: scale(1.1); }
  34% { opacity: 1; }
  62% { opacity: 1; transform: scale(1.02); }
  66% { opacity: 0; }
  100% { opacity: 0; transform: scale(1.1); }
}
@keyframes heroKb3 {
  0%, 62% { opacity: 0; transform: scale(1); }
  66% { opacity: 1; }
  95% { opacity: 1; transform: scale(1.08); }
  100% { opacity: 0; transform: scale(1); }
}
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(13,35,24,0.55) 0%, rgba(13,35,24,0.35) 40%, rgba(13,35,24,0.75) 100%); z-index: 1; }
.hero-grain { position: absolute; inset: 0; z-index: 2; opacity: 0.03; pointer-events: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }
.hero-content { position: relative; z-index: 3; max-width: var(--container-max); margin: 0 auto; padding: 0 clamp(20px, 5vw, 48px); width: 100%; }
.hero-eyebrow { font-size: 0.75rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 1.4rem; }
.hero-headline { font-family: var(--font-display); font-size: clamp(3rem, 8vw, 6.4rem); font-weight: 400; line-height: 1.02; color: var(--white); margin-bottom: 1.6rem; }
.hero-line { display: block; overflow: hidden; }
.hero-line .word { display: inline-block; transform: translateY(110%); opacity: 0; animation: wordUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
.hero-headline em { font-style: italic; color: var(--gold-light); }
@keyframes wordUp { to { transform: translateY(0); opacity: 1; } }
.hero-sub { font-size: 1.25rem; color: var(--ivory-warm); max-width: 520px; margin-bottom: 2.4rem; font-weight: 300; }
.hero-ctas { display: flex; gap: 1.2rem; flex-wrap: wrap; }
.hero-scroll-indicator { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, var(--gold-light), transparent); animation: scrollLineMove 2s ease-in-out infinite; }
@keyframes scrollLineMove { 0%, 100% { transform: scaleY(1); opacity: 0.5; } 50% { transform: scaleY(1.3); opacity: 1; } }
.hero-scroll-indicator span { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ivory-warm); opacity: 0.7; }

/* =============================================
   PHILOSOPHY
   ============================================= */
.philosophy-section { background: var(--ivory); padding: clamp(90px, 12vw, 160px) 0; }
.philosophy-container { max-width: 900px; }
.philosophy-statement { font-family: var(--font-display); font-size: clamp(1.6rem, 3.4vw, 2.6rem); font-weight: 400; line-height: 1.5; color: var(--green-deep); text-align: center; }
.philosophy-accent { font-style: italic; color: var(--gold); }

/* =============================================
   OVERVIEW / STAT STRIP
   ============================================= */
.overview-section { background: var(--charcoal); }
.overview-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; margin-bottom: 5rem; }
.image-frame { position: relative; border-radius: var(--radius-md); overflow: hidden; }
.image-frame img { transition: transform 1.2s cubic-bezier(0.16,1,0.3,1); }
.image-frame:hover img { transform: scale(1.05); }
.image-frame--tall img { aspect-ratio: 4/5; object-fit: cover; }
.image-caption { position: absolute; bottom: 0; left: 0; right: 0; padding: 14px 18px; background: linear-gradient(to top, rgba(13,35,24,0.85), transparent); font-size: 0.7rem; letter-spacing: 0.05em; color: var(--gold-pale); }
.image-disclaimer { font-size: 0.78rem; color: var(--neutral-light); margin-top: 1rem; font-style: italic; }

.stat-strip { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 2rem; padding: 3rem clamp(1.5rem, 4vw, 3.5rem); border: 1px solid rgba(184,147,63,0.25); border-radius: var(--radius-md); background: linear-gradient(135deg, rgba(184,147,63,0.05), transparent); }
.stat-item { text-align: center; flex: 1; min-width: 120px; }
.stat-number { display: block; font-family: var(--font-display); font-size: clamp(2rem, 4vw, 2.8rem); color: var(--gold-light); font-weight: 500; }
.stat-number--text { font-size: clamp(1.5rem, 3vw, 2rem); }
.stat-label { display: block; font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--neutral-light); margin-top: 0.4rem; }
.stat-divider { width: 1px; height: 50px; background: rgba(245,240,232,0.15); }

/* =============================================
   EXPERIENCE PANELS + RAIL
   ============================================= */
.experience-section { background: var(--charcoal); padding: var(--section-padding); }
.experience-intro { max-width: 720px; margin: 0 auto 4rem; text-align: center; }
.exp-rail { position: fixed; right: 28px; top: 50%; transform: translateY(-50%); z-index: 50; display: flex; flex-direction: column; gap: 20px; opacity: 0; pointer-events: none; transition: opacity 0.4s ease; }
.exp-rail.visible { opacity: 1; }
.exp-rail-item { font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--neutral-light); position: relative; padding-right: 16px; transition: var(--transition-fast); writing-mode: vertical-rl; }
.exp-rail-item::after { content: ''; position: absolute; right: 0; top: 0; width: 1px; height: 100%; background: var(--neutral-light); opacity: 0.3; }
.exp-rail-item.active { color: var(--gold-light); }
.exp-rail-item.active::after { background: var(--gold-light); opacity: 1; }

.experience-panels { display: flex; flex-direction: column; gap: 2px; }
.exp-panel { position: relative; overflow: hidden; }
.exp-panel--full { height: 90vh; min-height: 500px; }
.exp-panel--split { height: 90vh; min-height: 500px; }
.exp-panel-img { position: absolute; inset: 0; overflow: hidden; }
.exp-panel-img img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.12); will-change: transform; }
.exp-panel-content { position: absolute; z-index: 2; max-width: 440px; padding: 3rem; background: linear-gradient(135deg, rgba(13,35,24,0.88), rgba(13,35,24,0.5)); backdrop-filter: blur(6px); }
.exp-panel-content--right { top: 50%; right: 6%; transform: translateY(-50%); }
.exp-panel-content--overlay-left { bottom: 8%; left: 6%; }
.exp-panel-content--bottom { bottom: 0; left: 0; right: 0; max-width: none; background: linear-gradient(to top, rgba(13,35,24,0.9), transparent); padding: 2.4rem; }
.exp-label { font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-light); display: block; margin-bottom: 0.7rem; }
.exp-title { font-family: var(--font-display); font-size: clamp(1.7rem, 3vw, 2.4rem); color: var(--white); margin-bottom: 0.8rem; }
.exp-desc { color: var(--ivory-warm); font-size: 0.98rem; font-weight: 300; }
.exp-panel-duo { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.exp-panel--half { height: 70vh; min-height: 420px; }

/* =============================================
   MIRRORSHIELD — PINNED SCROLL STORY
   ============================================= */
.mirrorshield-section { position: relative; background: var(--green-deep); }
.ms-sticky-wrap { height: 340vh; position: relative; }
.ms-sticky-wrap .ms-bg-layer, .ms-sticky-wrap .ms-container { position: sticky; top: 0; height: 100vh; }
.ms-sticky-wrap .ms-container { display: flex; flex-direction: column; justify-content: center; margin-top: -100vh; pointer-events: none; }
.ms-bg-layer { overflow: hidden; }
.ms-bg-layer picture, .ms-bg-layer img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.05); transition: transform 0.3s ease-out; }
.ms-bg-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(13,35,24,0.9) 0%, rgba(13,35,24,0.55) 55%, rgba(13,35,24,0.85) 100%); }
.ms-reflection-shimmer { position: absolute; inset: 0; pointer-events: none; mix-blend-mode: screen; }
.ms-title { margin-bottom: 2rem; }
.ms-beats { min-height: 140px; position: relative; }
.ms-beat { font-family: var(--font-display); font-style: italic; font-size: clamp(1.6rem, 3.4vw, 2.6rem); color: var(--gold-pale); position: absolute; opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.ms-beat.active { opacity: 1; transform: translateY(0); position: relative; }
.ms-progress { width: 100%; max-width: 320px; height: 2px; background: rgba(245,240,232,0.15); margin-top: 2rem; border-radius: 2px; overflow: hidden; }
.ms-progress span { display: block; height: 100%; width: 0%; background: var(--gold-light); transition: width 0.1s linear; }

.ms-detail { padding: clamp(70px, 9vw, 120px) clamp(20px, 5vw, 48px); position: relative; z-index: 2; background: var(--green-deep); }
.ms-description { font-size: 1.15rem; color: var(--ivory-warm); max-width: 720px; margin: 0 auto 3.5rem; text-align: center; font-weight: 300; }
.ms-tech-layers { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; max-width: 900px; margin: 0 auto 3.5rem; }
.ms-layer { padding: 2.4rem; border: 1px solid rgba(184,147,63,0.2); border-radius: var(--radius-md); opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.ms-layer.visible { opacity: 1; transform: translateY(0); }
.ms-layer-icon { width: 44px; height: 44px; min-width: 44px; min-height: 44px; color: var(--gold-light); margin-bottom: 1.2rem; display: flex; align-items: center; justify-content: center; }
.ms-layer-icon svg { width: 36px; height: 36px; max-width: 36px; max-height: 36px; display: block; }
.ms-layer-title { font-family: var(--font-display); font-size: 1.5rem; color: var(--white); margin-bottom: 1rem; }
.ms-layer-list li { color: var(--ivory-warm); font-size: 0.92rem; font-weight: 300; padding-left: 1.2rem; position: relative; margin-bottom: 0.5rem; }
.ms-layer-list li::before { content: '—'; position: absolute; left: 0; color: var(--gold); }
.ms-tagline { text-align: center; font-family: var(--font-display); font-style: italic; font-size: clamp(1.3rem, 2.4vw, 1.8rem); color: var(--gold-pale); margin-bottom: 3rem; }
.ms-combo { display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.ms-combo-pill { padding: 0.8rem 1.6rem; border: 1px solid rgba(212,171,90,0.35); border-radius: 50px; font-size: 0.78rem; letter-spacing: 0.03em; color: var(--gold-pale); }
.ms-combo-plus { color: var(--gold); font-size: 1.2rem; }

/* =============================================
   FLOOR PLAN — INTERACTIVE SVG
   ============================================= */
.floorplan-section { background: var(--ivory); color: var(--green-deep); }
.floorplan-section .section-eyebrow { color: var(--gold); }
.floorplan-section .section-title { color: var(--green-deep); }
.floorplan-section .body-text { color: var(--neutral-mid); }
.fp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.fp-zones { display: grid; grid-template-columns: 1fr; gap: 0.7rem; margin: 2rem 0; }
.fp-zone { text-align: left; padding: 1rem 1.2rem; border: 1px solid rgba(13,35,24,0.15); border-radius: var(--radius-sm); transition: var(--transition-fast); }
.fp-zone:hover, .fp-zone.active { border-color: var(--gold); background: rgba(184,147,63,0.08); }
.fp-zone-label { font-weight: 600; font-size: 0.9rem; color: var(--green-deep); }
.fp-zone-range { font-size: 0.75rem; color: var(--neutral-mid); margin-top: 2px; letter-spacing: 0.01em; }
.fp-features { display: flex; flex-direction: column; gap: 0.7rem; margin-top: 1.5rem; }
.fp-feature { display: flex; align-items: center; gap: 0.7rem; font-size: 0.88rem; color: var(--neutral-mid); }
.fp-feature-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.fp-svg-frame { background: var(--white); border-radius: var(--radius-md); padding: 2rem; box-shadow: 0 20px 60px -20px rgba(13,35,24,0.15); }
.fp-svg { width: 100%; height: auto; }
.fp-svg-zone { cursor: pointer; transition: var(--transition-fast); }
.fp-svg-zone rect { transition: fill-opacity 0.3s ease, stroke-opacity 0.3s ease; }
.fp-svg-zone.active rect { fill-opacity: 0.28; stroke-opacity: 1; }
.fp-svg-label { font-family: var(--font-display); font-size: 15px; fill: var(--green-deep); font-style: italic; }
.fp-svg-label--sm { font-size: 11px; }
.fp-svg-sublabel { font-family: var(--font-body); font-size: 9px; fill: var(--neutral-mid); letter-spacing: 0.05em; }

/* =============================================
   SPECIFICATIONS — TABBED LEDGER
   ============================================= */
.specs-section { background: var(--charcoal-mid); }
.specs-header { text-align: center; max-width: 600px; margin: 0 auto 3rem; }
.specs-tabs { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.6rem; margin-bottom: 3rem; }
.specs-tab { padding: 0.7rem 1.4rem; font-size: 0.72rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--neutral-light); border: 1px solid rgba(245,240,232,0.15); border-radius: 50px; transition: var(--transition-fast); }
.specs-tab:hover { color: var(--ivory); border-color: rgba(245,240,232,0.35); }
.specs-tab.active { background: var(--gold); color: var(--green-deep); border-color: var(--gold); }
.specs-panels { max-width: 700px; margin: 0 auto; min-height: 200px; }
.specs-panel { animation: fadeInSoft 0.5s ease; }
.spec-list { display: flex; flex-direction: column; gap: 0; border-top: 1px solid rgba(245,240,232,0.1); }
.spec-row { display: flex; justify-content: space-between; align-items: baseline; padding: 1.1rem 0; border-bottom: 1px solid rgba(245,240,232,0.1); gap: 1.5rem; }
.spec-row dt { font-size: 0.85rem; color: var(--neutral-light); letter-spacing: 0.03em; flex-shrink: 0; }
.spec-row dd { font-size: 0.95rem; color: var(--ivory); text-align: right; font-weight: 300; }
.specs-disclaimer { text-align: center; font-size: 0.78rem; color: var(--neutral-light); font-style: italic; margin-top: 3rem; }

/* =============================================
   APPLICATIONS — CAROUSEL
   ============================================= */
.applications-section { background: var(--charcoal); }
.app-header { max-width: 680px; margin: 0 auto 3.5rem; text-align: center; }
.app-carousel-wrap { position: relative; display: flex; align-items: center; max-width: var(--container-max); margin: 0 auto; padding: 0 clamp(20px, 5vw, 48px); }
.app-carousel { display: flex; gap: 1.5rem; overflow-x: auto; scroll-snap-type: x mandatory; padding: 0.5rem 0 1.5rem; scrollbar-width: none; }
.app-carousel::-webkit-scrollbar { display: none; }
.app-card { flex: 0 0 clamp(260px, 30vw, 360px); scroll-snap-align: start; }
.app-card-inner { background: var(--charcoal-soft); border: 1px solid rgba(184,147,63,0.15); border-radius: var(--radius-md); padding: 2.4rem 2rem; height: 100%; transition: var(--transition-med); }
.app-card-inner:hover { border-color: var(--gold); transform: translateY(-6px); }
.app-icon { width: 44px; height: 44px; min-width: 44px; min-height: 44px; color: var(--gold-light); margin-bottom: 1.4rem; display: flex; align-items: center; justify-content: center; }
.app-icon svg { width: 34px; height: 34px; max-width: 34px; max-height: 34px; display: block; }
.app-card-inner h3 { font-family: var(--font-display); font-size: 1.4rem; color: var(--white); margin-bottom: 0.7rem; }
.app-card-inner p { font-size: 0.9rem; color: var(--neutral-light); font-weight: 300; }
.app-carousel-arrow { flex-shrink: 0; width: 48px; height: 48px; border-radius: 50%; border: 1px solid rgba(245,240,232,0.2); font-size: 1.6rem; display: flex; align-items: center; justify-content: center; color: var(--ivory); transition: var(--transition-fast); z-index: 2; }
.app-carousel-arrow:hover { border-color: var(--gold); color: var(--gold-light); }
.app-carousel-arrow--prev { margin-right: -24px; }
.app-carousel-arrow--next { margin-left: -24px; }

/* =============================================
   DEPLOYMENT — SVG TIMELINE
   ============================================= */
.deployment-section { background: var(--charcoal-mid); }
.dep-header { max-width: 680px; margin: 0 auto 4rem; text-align: center; }
.dep-timeline { position: relative; max-width: 760px; margin: 0 auto; }
.dep-timeline-line { position: absolute; left: 50%; top: 0; bottom: 0; width: 2px; height: 100%; transform: translateX(-50%); }
.dep-step { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; padding: 2.2rem 0; opacity: 0; transform: translateY(20px); transition: opacity 0.7s ease, transform 0.7s ease; }
.dep-step.visible { opacity: 1; transform: translateY(0); }
.dep-step:nth-child(odd) .dep-step-number { grid-column: 2; text-align: left; padding-left: 3rem; }
.dep-step:nth-child(odd) .dep-step-content { grid-column: 1; text-align: right; }
.dep-step:nth-child(even) .dep-step-number { grid-column: 1; text-align: right; padding-right: 3rem; order: 1; }
.dep-step:nth-child(even) .dep-step-content { grid-column: 2; text-align: left; order: 2; }
.dep-step-number { font-family: var(--font-display); font-size: 2.4rem; color: var(--gold); font-style: italic; align-self: center; }
.dep-step-content h3 { font-family: var(--font-display); font-size: 1.4rem; color: var(--white); margin-bottom: 0.5rem; }
.dep-step-content p { font-size: 0.88rem; color: var(--neutral-light); font-weight: 300; }
.dep-note { max-width: 700px; margin: 3rem auto 0; text-align: center; }
.dep-note p { font-size: 0.8rem; color: var(--neutral-light); font-style: italic; }

/* =============================================
   GALLERY — PREMIUM PAGE-FLIP BOOK
   ============================================= */
.gallery-section { background: var(--charcoal); padding: clamp(56px, 6.5vw, 100px) 0; }
.gallery-header { text-align: center; max-width: 640px; margin: 0 auto 1.8rem; }
.gallery-disclaimer { font-size: 0.8rem; color: var(--neutral-light); font-style: italic; margin-top: 1rem; }

:root {
  --fb-page-w: clamp(196px, min(47vw, 84.2vh), 920px);
  --fb-page-h: clamp(167px, min(39.95vw, 71.5vh), 782px);
  --fb-spine-w: clamp(25px, 3.4vw, 56px);
  --fb-page-pad: calc(var(--fb-page-w) * 0.003);
  --fb-caption-space: clamp(12px, 1.8vw, 20px);
  --fb-flip-duration: 1.2s;
}

.flipbook-wrap { position: relative; display: flex; align-items: center; justify-content: center; width: 100%; padding: 0 clamp(6px, 1.6vw, 20px); }
.flipbook-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 200;
  flex-shrink: 0; width: clamp(40px, 3.6vw, 54px); height: clamp(40px, 3.6vw, 54px); border-radius: 50%;
  border: 1px solid rgba(245,240,232,0.22); display: flex; align-items: center; justify-content: center;
  color: var(--ivory); transition: var(--transition-fast); background: rgba(13,35,24,0.45); backdrop-filter: blur(4px);
}
.flipbook-arrow--prev { left: clamp(2px, 1.4vw, 18px); }
.flipbook-arrow--next { right: clamp(2px, 1.4vw, 18px); }
.flipbook-arrow svg { width: 18px; height: 18px; }
.flipbook-arrow:hover { border-color: var(--gold); color: var(--gold-light); background: rgba(184,147,63,0.18); }
.flipbook-arrow:disabled { opacity: 0.3; pointer-events: none; }

.flipbook {
  position: relative;
  width: calc(var(--fb-page-w) * 2);
  height: var(--fb-page-h);
  perspective: 2600px;
  perspective-origin: center;
  flex-shrink: 0;
  filter: drop-shadow(0 45px 100px rgba(0,0,0,0.55)) drop-shadow(0 10px 24px rgba(0,0,0,0.3));
  transform: scale(0.9) scaleX(0.55) rotateY(-28deg);
  opacity: 0;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), opacity 1s ease;
}
.flipbook.fb-opened { transform: scale(1) scaleX(1) rotateY(0deg); opacity: 1; }

/* Hardcover shell — a soft dark bevel peeking just beyond the page block */
.flipbook::before {
  content: '';
  position: absolute;
  inset: clamp(-10px, -1.4vw, -18px) clamp(-7px, -1vw, -12px);
  z-index: -1;
  background: linear-gradient(180deg, var(--green-forest), var(--green-deep));
  border-radius: 8px;
  box-shadow: 0 2px 0 rgba(255,255,255,0.04) inset, 0 50px 110px rgba(0,0,0,0.5);
}


/* Static "open book" spine shadow */
.flipbook-spine {
  position: absolute; top: 1.5%; bottom: 1.5%; left: 50%; width: var(--fb-spine-w); margin-left: calc(var(--fb-spine-w) / -2); z-index: 60;
  background: linear-gradient(90deg, transparent, rgba(0,0,0,0.32) 50%, transparent);
  pointer-events: none;
}

/* Stacked paper edge (page thickness illusion) */
.flipbook-stack-edge {
  position: absolute; top: 2.5%; bottom: 2.5%; width: clamp(7px, 1vw, 15px); z-index: 1;
  background: repeating-linear-gradient(180deg, #efe9de 0px, #efe9de 1.5px, #d8d0c0 1.5px, #d8d0c0 3px);
  border-radius: 1px;
  box-shadow: 0 10px 26px rgba(0,0,0,0.4);
}
.flipbook-stack-edge--left { left: clamp(-6px, -0.6vw, -4px); }
.flipbook-stack-edge--right { right: clamp(-6px, -0.6vw, -4px); }

.fb-page, .fb-leaf { position: absolute; top: 0; width: var(--fb-page-w); height: 100%; }
.fb-page.fb-base--left { left: 0; z-index: 0; }
.fb-page.fb-base--right { right: 0; z-index: 0; }
.fb-base { background: var(--ivory); border-radius: 2px; overflow: hidden; box-shadow: 0 10px 40px rgba(0,0,0,0.35); }

.fb-leaf {
  left: 50%;
  transform-style: preserve-3d;
  transform-origin: left center;
  transform: rotateY(0deg);
  transition: transform var(--fb-flip-duration) cubic-bezier(0.61, 0.03, 0.33, 1);
  cursor: pointer;
}
.fb-leaf.fb-leaf--flipped { transform: rotateY(-180deg); }
.fb-leaf.fb-leaf--dragging { transition: none; }
.fb-leaf.fb-leaf--active-top { z-index: 500 !important; }

.fb-face {
  position: absolute; inset: 0; backface-visibility: hidden; -webkit-backface-visibility: hidden;
  background: var(--ivory); border-radius: 2px; overflow: hidden; box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}
.fb-face--front { z-index: 2; }
.fb-face--back { transform: rotateY(180deg); z-index: 1; }

/* Subtle permanent curl shadow near the spine edge of every page */
.fb-face::before, .fb-base::before {
  content: ''; position: absolute; top: 0; bottom: 0; left: 0; width: 14%; z-index: 5; pointer-events: none;
  background: linear-gradient(90deg, rgba(0,0,0,0.10), transparent);
}
.fb-base--right::before, .fb-face--back::before { left: auto; right: 0; background: linear-gradient(270deg, rgba(0,0,0,0.10), transparent); }

/* Dynamic sweep shadow while a leaf is actively flipping */
.fb-leaf.fb-leaf--shadow-sweep .fb-face--front::after,
.fb-leaf.fb-leaf--shadow-sweep .fb-face--back::after {
  content: ''; position: absolute; inset: 0; z-index: 6; pointer-events: none;
  background: linear-gradient(90deg, rgba(0,0,0,0.4), transparent 60%);
  animation: fbShadowSweep var(--fb-flip-duration) ease;
}

@keyframes fbShadowSweep {
  0% { opacity: 0; }
  40% { opacity: 1; }
  100% { opacity: 0; }
}

.fb-page-inner { position: relative; width: 100%; height: 100%; padding: var(--fb-page-pad); display: flex; flex-direction: column; align-items: center; justify-content: center; }
.fb-photo-frame { display: inline-flex; align-items: center; justify-content: center; position: relative; overflow: hidden; border-radius: 1px; box-shadow: 0 2px 10px rgba(0,0,0,0.15); background: var(--ivory); }
.fb-photo-frame picture { display: block; line-height: 0; }
.fb-photo-frame img {
  display: block; width: auto; height: auto;
  max-width: calc(var(--fb-page-w) - 2 * var(--fb-page-pad));
  max-height: calc(var(--fb-page-h) - 2 * var(--fb-page-pad) - var(--fb-caption-space));
  object-fit: contain; pointer-events: none;
}
.fb-zoom-btn {
  position: absolute; bottom: 8px; right: 8px; z-index: 7;
  width: 30px; height: 30px; border-radius: 50%;
  background: rgba(13,35,24,0.55); backdrop-filter: blur(3px);
  display: flex; align-items: center; justify-content: center; color: var(--ivory);
  opacity: 0; transition: opacity 0.25s ease, background 0.2s ease;
}
.fb-zoom-btn svg { width: 14px; height: 14px; }
.fb-photo-frame:hover .fb-zoom-btn, .fb-zoom-btn:focus-visible { opacity: 1; }
.fb-zoom-btn:hover { background: rgba(184,147,63,0.85); color: var(--green-deep); }
@media (hover: none) { .fb-zoom-btn { opacity: 0.75; } }
.fb-caption { margin-top: 6px; font-family: var(--font-display); font-style: italic; font-size: clamp(0.58rem, 1vw, 0.72rem); line-height: 1.2; color: var(--green-deep); text-align: center; opacity: 0.75; }
.fb-page-number { position: absolute; bottom: 4px; right: 8px; font-size: 0.56rem; letter-spacing: 0.1em; color: var(--neutral-mid); opacity: 0.55; }

.fb-title-card, .fb-colophon-card, .fb-closing-card { text-align: center; color: var(--green-deep); }
.fb-monogram { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--gold); color: var(--gold); font-family: var(--font-display); font-style: italic; font-size: 1rem; margin-bottom: 1rem; }
.fb-title-eyebrow { font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.6rem; }
.fb-title-heading { font-family: var(--font-display); font-size: clamp(1.3rem, 4vw, 2rem); color: var(--green-deep); line-height: 1.15; margin-bottom: 0.6rem; }
.fb-title-sub, .fb-colophon-sub { font-size: clamp(0.68rem, 1.6vw, 0.82rem); color: var(--neutral-mid); font-style: italic; }
.fb-colophon-title { font-family: var(--font-display); font-size: clamp(1.1rem, 3vw, 1.5rem); color: var(--green-deep); margin-bottom: 0.5rem; }
.fb-colophon-title em { font-style: italic; color: var(--gold); }
.fb-closing-quote { font-family: var(--font-display); font-style: italic; font-size: clamp(1rem, 2.6vw, 1.4rem); color: var(--green-deep); line-height: 1.4; }
.fb-closing-quote em { color: var(--gold); }

.flipbook-dots { display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 1.6rem; }
.flipbook-dot { width: 7px; height: 7px; border-radius: 50%; background: rgba(245,240,232,0.2); transition: var(--transition-fast); cursor: pointer; border: none; padding: 0; }
.flipbook-dot.active { background: var(--gold-light); width: 20px; border-radius: 4px; }

.lightbox { position: fixed; inset: 0; z-index: 2000; background: rgba(10,15,12,0.97); display: flex; align-items: center; justify-content: center; }
.lightbox[hidden] { display: none; }
.lightbox-content { max-width: 88vw; max-height: 82vh; text-align: center; }
.lightbox-content img { max-width: 88vw; max-height: 76vh; object-fit: contain; margin: 0 auto; border-radius: var(--radius-sm); }
.lightbox-caption { color: var(--neutral-light); font-size: 0.82rem; margin-top: 1rem; font-style: italic; }
.lightbox-close { position: absolute; top: 24px; right: 28px; font-size: 1.4rem; color: var(--ivory); width: 44px; height: 44px; }
.lightbox-prev, .lightbox-next { position: absolute; top: 50%; transform: translateY(-50%); width: 52px; height: 52px; border-radius: 50%; border: 1px solid rgba(245,240,232,0.2); display: flex; align-items: center; justify-content: center; color: var(--ivory); transition: var(--transition-fast); }
.lightbox-prev:hover, .lightbox-next:hover { border-color: var(--gold); color: var(--gold-light); }
.lightbox-prev { left: 24px; } .lightbox-next { right: 24px; }
.lightbox-counter { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); font-size: 0.75rem; letter-spacing: 0.1em; color: var(--neutral-light); }

/* =============================================
   FOUNDER STORY
   ============================================= */
.founder-section { background: var(--green-deep); }
.founder-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 5rem; align-items: center; }
.founder-section .section-title { color: var(--white); }
.founder-section .body-text { color: var(--ivory-warm); max-width: 620px; }
.founder-signoff { font-family: var(--font-display); font-style: italic; color: var(--gold-pale); font-size: 1.05rem; margin-top: 1.5rem; }

/* =============================================
   INVESTMENT / ROI
   ============================================= */
.investment-section { background: var(--charcoal); }
.investment-header { max-width: 720px; margin: 0 auto 3.5rem; text-align: center; }
.investment-table-wrap { overflow-x: auto; margin-bottom: 3.5rem; border-radius: var(--radius-md); border: 1px solid rgba(184,147,63,0.2); }
.investment-table { min-width: 640px; }
.investment-table th, .investment-table td { padding: 1.1rem 1.4rem; text-align: left; font-size: 0.88rem; border-bottom: 1px solid rgba(245,240,232,0.08); }
.investment-table thead th { background: rgba(184,147,63,0.1); color: var(--gold-light); font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600; }
.investment-table tbody th { color: var(--ivory); font-weight: 500; font-size: 0.85rem; }
.investment-table tbody td { color: var(--neutral-light); font-weight: 300; }
.investment-table tbody td:last-child { color: var(--gold-pale); }
.investment-table tbody tr:last-child th, .investment-table tbody tr:last-child td { border-bottom: none; }
.investment-callouts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-bottom: 2.5rem; }
.investment-callout { padding: 2rem; border-top: 2px solid var(--gold); background: var(--charcoal-soft); border-radius: 0 0 var(--radius-sm) var(--radius-sm); }
.investment-callout h3 { font-family: var(--font-display); font-size: 1.3rem; color: var(--white); margin-bottom: 0.7rem; }
.investment-callout p { font-size: 0.87rem; color: var(--neutral-light); font-weight: 300; }
.investment-disclaimer { font-size: 0.78rem; color: var(--neutral-light); font-style: italic; text-align: center; max-width: 780px; margin: 0 auto; }

/* =============================================
   PRICING
   ============================================= */
.pricing-section { position: relative; padding: clamp(100px, 12vw, 160px) 0; overflow: hidden; }
.pricing-bg-image { position: absolute; inset: 0; z-index: 0; }
.pricing-bg-image img { width: 100%; height: 100%; object-fit: cover; }
.pricing-bg-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(13,35,24,0.94), rgba(13,35,24,0.75)); }
.pricing-container { position: relative; z-index: 1; display: flex; justify-content: center; }
.pricing-card { text-align: center; max-width: 560px; padding: clamp(2.5rem, 5vw, 4rem); border: 1px solid rgba(184,147,63,0.3); border-radius: var(--radius-lg); background: rgba(13,35,24,0.4); backdrop-filter: blur(10px); }
.pricing-headline { font-family: var(--font-display); font-size: clamp(3rem, 6vw, 4.5rem); line-height: 1.05; color: var(--white); margin: 0.5rem 0; }
.pricing-headline-label { display: block; font-family: var(--font-body); font-size: 0.8rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold-pale); margin-bottom: 0.6rem; }
.pricing-incl { font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-pale); }
.pricing-divider { width: 60px; height: 1px; background: var(--gold); margin: 1.6rem auto; }
.pricing-note { margin-bottom: 2rem; }
.pricing-note p { font-size: 0.9rem; color: var(--ivory-warm); font-weight: 300; }
.pricing-sub { font-size: 0.8rem; color: var(--neutral-light); margin-top: 1.2rem; font-style: italic; }

/* =============================================
   TRUST & TRANSPARENCY
   ============================================= */
.trust-section { background: var(--charcoal-mid); }
.trust-header { max-width: 680px; margin: 0 auto 3.5rem; text-align: center; }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
.trust-item { text-align: left; }
.trust-icon { width: 44px; height: 44px; min-width: 44px; min-height: 44px; max-width: 44px; max-height: 44px; color: var(--gold-light); margin-bottom: 1.2rem; display: flex; align-items: center; justify-content: center; }
.trust-icon svg { width: 36px; height: 36px; max-width: 36px; max-height: 36px; display: block; }
.trust-item h3 { font-family: var(--font-display); font-size: 1.3rem; color: var(--white); margin-bottom: 0.6rem; }
.trust-item p { font-size: 0.88rem; color: var(--neutral-light); font-weight: 300; }

/* =============================================
   WHY SKYBOX — EDITORIAL LIST
   ============================================= */
.why-section { background: var(--charcoal); }
.why-header { max-width: 600px; margin: 0 auto 3rem; text-align: center; }
.why-editorial-list { max-width: 820px; margin: 0 auto; border-top: 1px solid rgba(245,240,232,0.1); }
.why-editorial-item { display: grid; grid-template-columns: 100px 1fr; gap: 2rem; padding: 2.2rem 0; border-bottom: 1px solid rgba(245,240,232,0.1); align-items: baseline; }
.why-editorial-num { font-family: var(--font-display); font-size: 2.8rem; color: var(--gold); font-style: italic; line-height: 1; }
.why-editorial-item h3 { font-family: var(--font-display); font-size: 1.5rem; color: var(--white); margin-bottom: 0.5rem; }
.why-editorial-item p { font-size: 0.92rem; color: var(--neutral-light); font-weight: 300; max-width: 560px; }

/* =============================================
   BROCHURE
   ============================================= */
.brochure-section { background: var(--ivory); color: var(--green-deep); }
.brochure-section .section-eyebrow { color: var(--gold); }
.brochure-section .section-title { color: var(--green-deep); }
.brochure-section .body-text { color: var(--neutral-mid); max-width: 500px; }
.brochure-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 4rem; align-items: center; }
.brochure-visual { display: flex; justify-content: center; }
.brochure-mockup { position: relative; width: 220px; height: 300px; }
.brochure-mockup-page { position: absolute; inset: 0; border-radius: 4px; box-shadow: 0 30px 60px -20px rgba(13,35,24,0.3); }
.brochure-mockup-page--back { background: var(--green-forest); transform: rotate(6deg) translate(10px, 10px); }
.brochure-mockup-page--front { background: linear-gradient(160deg, var(--green-deep), var(--green-forest)); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.6rem; transform: rotate(-3deg); transition: transform 0.5s ease; }
.brochure-visual:hover .brochure-mockup-page--front { transform: rotate(0deg); }
.brochure-mockup-page--front img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.brochure-mockup-title { font-family: var(--font-display); font-size: 1.4rem; letter-spacing: 0.1em; color: var(--gold-light); }
.brochure-mockup-sub { font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--ivory-warm); }
.brochure-list { margin: 1.5rem 0 2rem; display: flex; flex-direction: column; gap: 0.6rem; }
.brochure-list li { font-size: 0.9rem; color: var(--neutral-mid); padding-left: 1.4rem; position: relative; }
.brochure-list li::before { content: '✓'; position: absolute; left: 0; color: var(--gold); font-weight: 600; }

/* =============================================
   FAQ
   ============================================= */
.faq-section { background: var(--charcoal-mid); }
.faq-header { max-width: 600px; margin: 0 auto 3rem; text-align: center; }
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(245,240,232,0.12); }
.faq-question { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 1.6rem 0; text-align: left; font-family: var(--font-display); font-size: 1.15rem; color: var(--ivory); gap: 1.5rem; }
.faq-question:hover { color: var(--gold-light); }
.faq-icon { font-size: 1.4rem; color: var(--gold); transition: transform 0.35s ease; flex-shrink: 0; }
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-answer { overflow: hidden; max-height: 0; transition: max-height 0.4s ease; }
.faq-answer:not([hidden]) { max-height: 300px; }
.faq-answer p { padding-bottom: 1.6rem; font-size: 0.92rem; color: var(--neutral-light); font-weight: 300; max-width: 680px; }

/* =============================================
   FINAL CTA
   ============================================= */
.final-cta-section { position: relative; padding: clamp(120px, 14vw, 200px) 0; text-align: center; overflow: hidden; }
.final-cta-bg { position: absolute; inset: 0; z-index: 0; }
.final-cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.final-cta-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(13,35,24,0.75), rgba(13,35,24,0.92)); }
.final-cta-container { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.final-cta-headline { font-family: var(--font-display); font-size: clamp(2.6rem, 5.5vw, 4.4rem); color: var(--white); line-height: 1.1; margin-bottom: 1.6rem; }
.final-cta-headline em { font-style: italic; color: var(--gold-light); }
.final-cta-sub { font-size: 1.1rem; color: var(--ivory-warm); font-weight: 300; margin-bottom: 2.4rem; }
.final-cta-actions { display: flex; gap: 1.2rem; justify-content: center; flex-wrap: wrap; }

/* =============================================
   FOOTER
   ============================================= */
.footer { background: var(--green-deep); padding: 5rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-logo img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; margin-bottom: 1.2rem; }
.footer-tagline { font-family: var(--font-display); font-style: italic; color: var(--ivory-warm); font-size: 1.05rem; margin-bottom: 1.4rem; }
.footer-whatsapp { display: inline-flex; align-items: center; gap: 0.6rem; color: var(--gold-pale); font-size: 0.9rem; }
.footer-whatsapp svg { width: 18px; height: 18px; }
.footer-nav-title { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; }
.footer-nav ul, .footer-product ul { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-nav a { font-size: 0.9rem; color: var(--ivory-warm); }
.footer-nav a:hover { color: var(--gold-light); }
.footer-product li span { font-size: 0.88rem; color: var(--ivory-warm); }
.footer-brochure-link { display: inline-block; margin-top: 1rem; font-size: 0.85rem; color: var(--gold-light); border-bottom: 1px solid rgba(212,171,90,0.4); }
.footer-bottom { border-top: 1px solid rgba(245,240,232,0.1); padding-top: 2rem; display: flex; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.footer-disclaimer { font-size: 0.72rem; color: var(--neutral-light); max-width: 640px; line-height: 1.6; }
.footer-copyright { font-size: 0.78rem; color: var(--neutral-light); white-space: nowrap; }

/* =============================================
   ENQUIRY MODAL
   ============================================= */
.enquiry-modal { position: fixed; inset: 0; z-index: 3000; display: flex; align-items: center; justify-content: center; padding: 20px; }
.enquiry-modal[hidden] { display: none; }
.enquiry-modal-overlay { position: absolute; inset: 0; background: rgba(10,15,12,0.85); backdrop-filter: blur(4px); }
.enquiry-modal-panel { position: relative; z-index: 1; background: var(--green-deep); border: 1px solid rgba(184,147,63,0.25); border-radius: var(--radius-lg); padding: clamp(2rem, 5vw, 3rem); max-width: 520px; width: 100%; max-height: 90vh; overflow-y: auto; animation: modalIn 0.4s cubic-bezier(0.16,1,0.3,1); }
@keyframes modalIn { from { opacity: 0; transform: translateY(20px) scale(0.98); } to { opacity: 1; transform: translateY(0) scale(1); } }
.enquiry-modal-close { position: absolute; top: 20px; right: 20px; color: var(--ivory); font-size: 1.2rem; width: 36px; height: 36px; }
.enquiry-modal-title { font-family: var(--font-display); font-size: 1.9rem; color: var(--white); margin-bottom: 0.7rem; }
.enquiry-modal-sub { font-size: 0.85rem; color: var(--neutral-light); font-weight: 300; margin-bottom: 2rem; }
.enquiry-form { display: flex; flex-direction: column; gap: 1.2rem; }
.enquiry-field { display: flex; flex-direction: column; gap: 0.5rem; }
.enquiry-field label { font-size: 0.72rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gold-light); }
.enquiry-field input, .enquiry-field select, .enquiry-field textarea {
  background: rgba(245,240,232,0.06); border: 1px solid rgba(245,240,232,0.18); border-radius: var(--radius-sm);
  padding: 0.85rem 1rem; color: var(--ivory); font-family: var(--font-body); font-size: 0.92rem; resize: vertical;
}
.enquiry-field input::placeholder, .enquiry-field textarea::placeholder { color: var(--neutral-light); }
.enquiry-field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23d4ab5a' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; }
.enquiry-field input:focus, .enquiry-field select:focus, .enquiry-field textarea:focus { border-color: var(--gold); outline: none; }
.enquiry-submit { margin-top: 0.5rem; width: 100%; }
.enquiry-wa-icon { width: 16px; height: 16px; }
.enquiry-skip { text-align: center; font-size: 0.8rem; color: var(--neutral-light); text-decoration: underline; margin-top: 0.4rem; }
.enquiry-skip:hover { color: var(--gold-light); }

/* =============================================
   FLOATING WHATSAPP
   ============================================= */
.whatsapp-float { position: fixed; bottom: 28px; right: 28px; z-index: 900; width: 58px; height: 58px; border-radius: 50%; background: linear-gradient(135deg, #25D366, #1ebe5b); display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 30px rgba(0,0,0,0.3); }
.whatsapp-float svg { width: 28px; height: 28px; color: var(--white); }
.whatsapp-float-tooltip { position: absolute; right: 68px; top: 50%; transform: translateY(-50%); background: var(--charcoal); color: var(--ivory); font-size: 0.78rem; padding: 0.5rem 0.9rem; border-radius: 4px; white-space: nowrap; opacity: 0; pointer-events: none; transition: opacity 0.25s ease; }
.whatsapp-float:hover .whatsapp-float-tooltip { opacity: 1; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .overview-grid, .founder-grid, .fp-grid, .brochure-grid { grid-template-columns: 1fr; gap: 3rem; }
  .founder-image, .brochure-visual { order: -1; }
  .ms-tech-layers { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .investment-callouts { grid-template-columns: 1fr; }
  .mega-menu-inner { grid-template-columns: repeat(2, 1fr); }
  .exp-rail { display: none; }
  .exp-panel-duo { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-cta { display: none; }
  
  /* Mobile Flipbook / Gallery Layout Fix */
  .flipbook-wrap {
    flex-direction: column;
    gap: 1.2rem;
    padding: 0 16px;
    align-items: center;
  }
  .flipbook {
    width: 100% !important;
    max-width: 440px !important;
    height: auto !important;
    min-height: 380px;
    transform: none !important;
    perspective: none !important;
    filter: none !important;
    margin: 0 auto;
  }
  .flipbook::before,
  .flipbook-spine,
  .flipbook-stack-edge,
  .fb-base {
    display: none !important;
  }
  .fb-leaf {
    position: absolute;
    inset: 0;
    width: 100% !important;
    height: auto !important;
    transform: none !important;
    transform-style: flat !important;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease;
    cursor: default;
    left: 0 !important;
  }
  .fb-leaf.fb-leaf--flipped,
  .fb-leaf.mobile-active {
    opacity: 1;
    visibility: visible;
    position: relative;
    left: 0 !important;
  }
  .fb-face {
    position: relative !important;
    inset: auto !important;
    backface-visibility: visible !important;
    -webkit-backface-visibility: visible !important;
    transform: none !important;
    background: var(--charcoal-soft) !important;
    border: 1px solid rgba(184, 147, 63, 0.25) !important;
    border-radius: var(--radius-md) !important;
    padding: 1.2rem !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4) !important;
    margin-bottom: 1rem;
  }
  .fb-face--back {
    transform: none !important;
  }
  .fb-photo-frame {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 4/3;
    border-radius: var(--radius-sm);
    overflow: hidden;
  }
  .fb-photo-frame img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }
  .fb-caption {
    font-size: 0.9rem !important;
    color: var(--ivory) !important;
    margin-top: 0.8rem !important;
    font-family: var(--font-display) !important;
    letter-spacing: 0.02em;
  }
  .fb-page-number {
    display: inline-block !important;
    position: relative !important;
    right: auto !important;
    bottom: auto !important;
    font-size: 0.75rem !important;
    color: var(--gold-pale) !important;
    margin-top: 0.4rem !important;
  }
  .flipbook-arrow {
    position: relative !important;
    top: auto !important;
    transform: none !important;
    width: 46px !important;
    height: 46px !important;
  }

  /* Mobile General Layout & Spacing */
  .stat-strip { flex-direction: column; }
  .stat-divider { width: 60%; height: 1px; }
  .mega-menu { padding: 0 clamp(16px, 5vw, 32px) 32px; background: #091a12; }
  .mega-menu-header { padding: 14px 0; border-bottom: 1px solid rgba(212, 171, 90, 0.15); }
  .mega-menu-inner { grid-template-columns: 1fr; gap: 1.5rem; margin-top: 1rem; }
  .mega-menu-col ul { gap: 0.65rem; }
  .mega-menu-heading { margin-bottom: 0.9rem; font-size: 0.7rem; color: var(--gold-light); }
  .mega-menu-footer { margin-top: 1.75rem; padding-top: 1.5rem; flex-direction: column; align-items: stretch; text-align: center; }
  .mobile-nav-link { font-size: 1.35rem; color: var(--ivory); }
  
  .dep-step, .dep-step:nth-child(odd), .dep-step:nth-child(even) { grid-template-columns: 60px 1fr; }
  .dep-step:nth-child(odd) .dep-step-number, .dep-step:nth-child(even) .dep-step-number { grid-column: 1; text-align: left; padding: 0; order: 0; }
  .dep-step:nth-child(odd) .dep-step-content, .dep-step:nth-child(even) .dep-step-content { grid-column: 2; text-align: left; order: 0; }
  .dep-timeline-line { left: 30px; }
  .investment-callouts, .trust-grid { grid-template-columns: 1fr; gap: 1.8rem; }
  .trust-item { text-align: center; display: flex; flex-direction: column; align-items: center; }
  .why-editorial-item { grid-template-columns: 50px 1fr; gap: 1rem; }
  .why-editorial-num { font-size: 2rem; }
  .final-cta-actions { flex-direction: column; align-items: stretch; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; text-align: center; }
  .footer-logo img { margin: 0 auto 1.2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .exp-panel--full, .exp-panel--split { height: 75vh; }
  .whatsapp-float { bottom: 20px; right: 20px; width: 52px; height: 52px; }
  .whatsapp-float svg { width: 24px; height: 24px; }
}
