/* =====================================================
   CABIN CREW COMPASS — Style Sheet
   Editorial luxury aviation aesthetic
   ===================================================== */

:root {
  --burgundy: #5a0f1f;
  --burgundy-deep: #3a0815;
  --burgundy-soft: #7a1c2e;
  --cream: #f3ead8;
  --cream-warm: #ebe0c8;
  --cream-deep: #e0d2b4;
  --ink: #1a0e0e;
  --ink-soft: #2c1a1a;
  --gold: #b8945a;
  --gold-soft: #c9a878;
  --line: rgba(26, 14, 14, 0.15);
  --line-cream: rgba(243, 234, 216, 0.18);

  --serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --sans: 'Manrope', -apple-system, sans-serif;
}

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

html {
  scroll-behavior: auto;
  scrollbar-gutter: stable;
  background: var(--cream);
}

body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--ink);
  font-weight: 300;
  line-height: 1.55;
  overflow-x: hidden;
  /* cursor: auto; */
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open { overflow: hidden; }

/* Subtle paper grain over everything */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.06;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.7'/></svg>");
}

a { color: inherit; text-decoration: none; }
img, video { max-width: 100%; display: block; }



/* ====== LOADER ====== */
.loader {
  position: fixed;
  inset: 0;
  background: var(--burgundy-deep);
  color: var(--cream);
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
.loader.done {
  opacity: 0;
  visibility: hidden;
}
.loader-inner {
  width: min(560px, 80vw);
  text-align: center;
}
.loader-mark {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 400;
  letter-spacing: 0.4em;
  margin-bottom: 2.5rem;
  display: flex;
  justify-content: center;
}
.loader-mark span {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
}
.loader-mark span.anim {
  animation: loaderLetter 0.6s ease forwards;
}

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

.loader-bar {
  height: 1px;
  background: rgba(243, 234, 216, 0.2);
  margin-bottom: 1.2rem;
  overflow: hidden;
}
.loader-fill {
  height: 100%;
  width: 0%;
  background: var(--cream);
  transition: width 0.3s ease;
}
.loader-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  font-weight: 300;
  text-transform: uppercase;
  opacity: 0.7;
}

/* ====== NAV ====== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.5rem 2.5rem;
  color: #FFFFFF;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1600px;
  margin: 0 auto;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.logo-mark {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
  font-style: italic;
  border: 1px solid var(--cream);
  width: 30px; height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.logo-word {
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  font-weight: 400;
  color: #FFFFFF;
}
.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 300;
  position: relative;
  padding: 0.3rem 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: currentColor;
  transition: width 0.4s cubic-bezier(0.7, 0, 0.3, 1);
}
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  display: none;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid var(--cream);
  padding: 0.6rem 1.4rem;
  border-radius: 100px;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  background: transparent;
  color: var(--cream);
  cursor: pointer;
  white-space: nowrap;
}
.nav-cta svg { width: 12px; height: 12px; transition: transform 0.4s ease; }
.nav-cta:hover { background: var(--cream); color: var(--ink); transform: translateY(-2px); }
.nav-cta:hover svg { transform: translateX(4px); }

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  z-index: 110;
  position: relative;
}
.mobile-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--cream);
  margin: 6px 0;
  transition: all 0.4s cubic-bezier(0.7, 0, 0.3, 1);
}
.nav.is-open .mobile-toggle span:nth-child(1) { transform: translateY(3.5px) rotate(45deg); }
.nav.is-open .mobile-toggle span:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }

.nav-cta.hero-cta {
  display: inline-flex;
  background: var(--cream);
  color: var(--ink);
  font-weight: 600;
}
.nav-cta.hero-cta:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--cream);
}
.nav-cta.hero-cta:active {
  transform: translateY(1px) scale(0.98);
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
}

@media (max-width: 900px) {
  .mobile-toggle { display: block; }
  .nav-links {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: 280px;
    background: #000;
    display: flex !important;
    flex-direction: column;
    padding: 8rem 3rem;
    gap: 2rem;
    transform: translateX(100%);
    transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
    box-shadow: -10px 0 50px rgba(0,0,0,0.8);
    z-index: 100;
    border-left: 1px solid rgba(184, 148, 90, 0.1);
  }
  .nav.is-open .nav-links { transform: translateX(0); }
  .nav-links li { margin: 0; }
  .nav-links a { font-size: 1.2rem; }
  
  .nav-phone-link { display: none; }
  .nav-inner { justify-content: space-between; }
  .nav-right { display: flex; align-items: center; }
  .nav-cta { display: flex !important; }
}

@media (max-width: 768px) {
  .nav { padding: 0.8rem 1.2rem; }
  .logo-word { font-size: 0.75rem; }
  .nav-cta { padding: 0.5rem 1rem; font-size: 0.65rem; }
}

@media (max-width: 480px) {
  .logo-word { display: none; }
  .logo-mark { width: 26px; height: 26px; font-size: 1.1rem; }
  .nav { padding: 0.6rem 0.8rem; }
}

/* ====== HERO ====== */
.hero {
  position: relative;
  min-height: 100vh;
  background: #000;
  color: var(--cream);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 2rem 4rem;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  transform: scale(1.04); /* Crop out watermarks */
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.4), transparent, rgba(0,0,0,0.6));
  pointer-events: none;
}

.hero-meta {
  position: absolute;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 300;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  opacity: 0.8;
  z-index: 2;
}
.hero-meta-tl { top: 7rem; left: 2.5rem; }
.hero-meta-tr { top: 7rem; right: 2.5rem; }
.hero-meta-bl { bottom: 2rem; left: 2.5rem; }
.hero-meta-br { bottom: 2rem; right: 2.5rem; }

.meta-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.scroll-indicator {
  width: 60px; height: 1px;
  background: rgba(243, 234, 216, 0.3);
  position: relative;
  overflow: hidden;
}
.scroll-indicator-fill {
  position: absolute;
  height: 100%;
  width: 30%;
  background: var(--cream);
  animation: scrollHint 2s ease infinite;
}
@keyframes scrollHint {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(330%); }
}

.hero-stage {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 1200px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  font-weight: 300;
  opacity: 0;
  transform: translateY(20px);
}
.hero-eyebrow.active {
  animation: heroFadeUp 1s ease forwards;
}
.hero-eyebrow .line {
  width: 60px; height: 1px;
  background: var(--gold);
}

.hero-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(3.5rem, 11vw, 11rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
}
.hero-line {
  display: block;
  overflow: hidden;
}
.hero-word {
  display: inline-block;
  margin: 0 0.15em;
  opacity: 0;
  transform: translateY(110%);
}
.hero-word.active {
  animation: heroWord 1.2s cubic-bezier(0.7, 0, 0.3, 1) forwards;
}
.hero-word em {
  font-style: italic;
  color: var(--gold-soft);
  font-weight: 400;
}

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

.hero-sub {
  margin-top: 2.5rem;
  font-size: clamp(0.95rem, 1.3vw, 1.15rem);
  font-weight: 300;
  letter-spacing: 0.04em;
  opacity: 0;
  transform: translateY(20px);
  color: var(--cream-warm);
  font-family: var(--serif);
  font-style: italic;
  line-height: 1.6;
}
.hero-sub.active {
  animation: heroFadeUp 1s ease forwards;
}

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

/* ====== SCROLL VIDEO/CANVAS SECTIONS ====== */
.scroll-video {
  position: relative;
  height: 400vh;
  background: var(--cream);
}
.scroll-video-dark {
  background: var(--burgundy-deep);
}
.sv-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sv-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04); /* Default crop */
}

#transformCanvas {
  transform: scale(1.15); /* More aggressive crop for transformation sequence */
}
.sv-overlay {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
}
.sv-text {
  position: absolute;
  color: var(--cream);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  max-width: 480px;
}
.sv-text.active {
  opacity: 1;
  transform: translateY(0);
}
.sv-text-1 { top: 12vh; left: 5vw; }
.sv-text-2 { bottom: 18vh; right: 6vw; text-align: right; }
.sv-text-3 { top: 15vh; left: 6vw; text-align: left; }
.sv-text-3.active { transform: translateY(0); opacity: 1; }

.sv-num {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  margin-bottom: 1.2rem;
  font-weight: 400;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 0.4rem;
  color: var(--gold-soft);
}
.sv-text h2 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  line-height: 1;
  margin-bottom: 0.8rem;
  text-shadow: 0 4px 40px rgba(0,0,0,0.6);
}
.sv-text h2 em { font-style: italic; color: var(--gold-soft); }
.sv-text p {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1rem, 1.4vw, 1.3rem);
  font-weight: 300;
  line-height: 1.4;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.sv-hud {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  color: var(--cream);
  text-transform: uppercase;
  background: rgba(0,0,0,0.3);
  padding: 0.6rem 1.2rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(243, 234, 216, 0.15);
}
.hud-bar {
  width: 120px;
  height: 1px;
  background: rgba(243, 234, 216, 0.25);
  position: relative;
  overflow: hidden;
}
.hud-fill {
  position: absolute;
  inset: 0;
  width: 0%;
  background: var(--cream);
  transition: width 0.1s linear;
}

/* ====== RESET & BASE ====== */
.interlude {
  background: var(--cream);
  padding: 6rem 0 8rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.marquee {
  overflow: hidden;
  padding: 1rem 0 4rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: 5rem;
}
.marquee-track {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  animation: marquee 25s linear infinite;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 400;
  color: var(--burgundy);
  align-items: center;
}
.marquee-track .dot { color: var(--gold); }
@keyframes marquee { to { transform: translateX(-50%); } }

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2.5rem;
  gap: 2rem;
}
.stat { border-top: 1px solid var(--line); padding-top: 1.5rem; }
.stat-num {
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 400;
  line-height: 1;
  color: var(--burgundy);
  margin-bottom: 0.6rem;
}
.stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* ====== PREMIUM PHILOSOPHY CARDS ====== */
.philosophy {
    padding: 15rem 2.5rem;
    background: #000;
}
.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}
.premium-card {
    background: rgba(18, 18, 18, 0.8);
    border: 1px solid rgba(184, 148, 90, 0.3);
    padding: 5rem 3rem;
    text-align: center;
    transition: all 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.premium-card::before {
    content: '';
    position: absolute;
    inset: 10px;
    border: 1px solid rgba(184, 148, 90, 0.1);
    pointer-events: none;
}
.premium-card:hover {
    background: rgba(184, 148, 90, 0.08);
    border-color: var(--gold-soft);
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}
.card-num {
    width: 45px;
    height: 45px;
    border: 1px solid var(--gold-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-soft);
    font-size: 1rem;
    margin-bottom: 3rem;
    font-family: var(--serif);
}
.premium-card h3 {
    font-family: var(--serif);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    line-height: 1.2;
    color: var(--cream);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.premium-card p {
    font-size: 0.9rem;
    opacity: 0.7;
    line-height: 1.8;
    color: var(--cream);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 1rem;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--burgundy);
  border-bottom: 1px solid var(--burgundy);
  padding-bottom: 0.6rem;
  font-weight: 500;
  transition: gap 0.3s ease;
}
.link-arrow svg { width: 14px; height: 14px; transition: transform 0.3s ease; }
.link-arrow:hover { gap: 1.4rem; }
.link-arrow:hover svg { transform: translateX(4px); }

/* ====== EDITORIAL FOOTER ====== */
.site-footer {
  background: var(--burgundy-deep);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

/* 1. Footer CTA Section */
.footer-cta {
  padding: 10rem 2.5rem;
  text-align: center;
  border-bottom: 1px solid var(--line-cream);
  background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.2));
}
.footer-cta .kicker {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  color: var(--gold-soft);
}
.footer-cta h2 {
  font-family: var(--serif);
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-style: italic;
  font-weight: 300;
  margin-bottom: 4rem;
  line-height: 1;
}
.footer-cta .cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.2rem 3rem;
  border: 1px solid var(--cream);
  border-radius: 100px;
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  transition: all 0.4s ease;
}
.footer-cta .cta-btn:hover {
  background: var(--cream);
  color: var(--ink);
}

/* 2. Main Footer Content */
.footer-main {
  padding: 8rem 2.5rem 6rem;
  max-width: 1400px;
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 4rem;
}

.footer-brand .nav-logo { margin-bottom: 2.5rem; }
.footer-brand .tagline {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--gold-soft);
  margin-bottom: 2rem;
}
.footer-brand p {
  font-size: 0.9rem;
  opacity: 0.6;
  line-height: 1.8;
  max-width: 300px;
  margin-bottom: 3rem;
}
.footer-contact {
  list-style: none;
  font-size: 0.85rem;
  opacity: 0.8;
}
.footer-contact li { margin-bottom: 1rem; display: flex; gap: 1rem; }

.footer-col h4 {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
  color: var(--gold-soft);
  position: relative;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  left: 0; bottom: -0.8rem;
  width: 20px; height: 1px;
  background: var(--gold-soft);
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 1.2rem; }
.footer-links a {
  font-size: 0.95rem;
  opacity: 0.7;
  transition: opacity 0.3s ease, transform 0.3s ease;
  display: inline-block;
}
.footer-links a:hover { opacity: 1; transform: translateX(5px); }

/* Newsletter & Socials */
.footer-connect h5 {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}
.footer-connect p {
  font-size: 0.85rem;
  opacity: 0.6;
  margin-bottom: 2rem;
}
.social-links {
  display: flex;
  gap: 1rem;
  margin-bottom: 4rem;
}
.social-icon {
  width: 42px; height: 42px;
  border: 1px solid rgba(243, 234, 216, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  transition: all 0.4s ease;
}
.social-icon:hover {
  background: var(--cream);
  color: var(--ink);
  border-color: var(--cream);
}

.newsletter-form {
  position: relative;
  border-bottom: 1px solid rgba(243, 234, 216, 0.3);
  padding-bottom: 0.5rem;
}
.newsletter-form input {
  background: transparent;
  border: none;
  color: var(--cream);
  padding: 0.5rem 0;
  width: 100%;
  font-family: var(--sans);
  font-size: 0.9rem;
}
.newsletter-form input:focus { outline: none; }
.newsletter-form button {
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: var(--cream);
  cursor: pointer;
  padding: 0.5rem;
}

/* Footer Bottom */
.footer-bottom {
  padding: 4rem 2.5rem;
  border-top: 1px solid rgba(243, 234, 216, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}
.copyright { font-size: 0.7rem; letter-spacing: 0.2em; opacity: 0.5; text-transform: uppercase; }

.scroll-top {
  width: 50px; height: 50px;
  border: 1px solid rgba(243, 234, 216, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s ease;
}
.scroll-top:hover {
  background: var(--gold-soft);
  border-color: var(--gold-soft);
  color: var(--ink);
}

@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 4rem 2rem; }
}
@media (max-width: 700px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-cta h2 { font-size: 3.5rem; }
}

/* ====== PILLARS ====== */
.pillars {
  background: var(--cream-warm);
  padding: 10rem 2.5rem;
  border-top: 1px solid var(--line);
}
.pillars-head {
  max-width: 1400px;
  margin: 0 auto 5rem;
  text-align: center;
}
.pillars-head h3 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1;
  color: var(--burgundy-deep);
  letter-spacing: -0.02em;
}
.pillars-head h3 em { font-style: italic; color: var(--gold); }
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1400px;
  margin: 0 auto;
  gap: 0;
  border-top: 1px solid var(--line);
}
.pillar {
  padding: 3rem 2.5rem 4rem;
  border-right: 1px solid var(--line);
  transition: background 0.4s ease;
}
.pillar:last-child { border-right: none; }
.pillar:hover { background: var(--cream); }
.pillar-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 2rem;
  letter-spacing: 0.1em;
}
.pillar h4 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 2.2rem;
  color: var(--burgundy-deep);
  margin-bottom: 1.2rem;
}
.pillar p {
  font-size: 0.95rem;
  color: var(--ink-soft);
  margin-bottom: 2rem;
  font-weight: 300;
  line-height: 1.65;
}
.pillar-list {
  list-style: none;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}
.pillar-list li {
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-weight: 400;
}
@media (max-width: 900px) {
  .pillars-grid { grid-template-columns: 1fr; }
  .pillar { border-right: none; border-bottom: 1px solid var(--line); }
  .pillar:last-child { border-bottom: none; }
  .pillars { padding: 6rem 1.2rem; }
}

/* ====== TESTIMONIALS (BOARDING PASS) ====== */
.testimonials {
  padding: 10rem 2.5rem;
  background: var(--burgundy-deep);
  position: relative;
  overflow: hidden;
}

/* Add a subtle vignette to match the cinematic feel */
.testimonials::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.4) 100%);
  pointer-events: none;
}

.pass-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(600px, 1fr));
  gap: 3rem;
  margin-top: 5rem;
}

.boarding-pass {
  display: flex;
  background: #5C0632; /* Qatar Maroon */
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem; /* Slightly sharper Qatar look */
  overflow: hidden;
  position: relative;
  min-height: 250px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  z-index: 5;
}

.boarding-pass:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

/* Perforated Edge Effect - Match to background */
.boarding-pass::before,
.boarding-pass::after {
  content: '';
  position: absolute;
  left: 65%;
  width: 20px;
  height: 20px;
  background: var(--burgundy-deep);
  border-radius: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.boarding-pass::before { top: -10px; }
.boarding-pass::after { bottom: -10px; }

.pass-main {
  flex: 65;
  padding: 2.5rem;
  display: flex;
  gap: 2rem;
  border-right: 2px dashed rgba(255,255,255,0.2);
  background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, transparent 100%);
}

.pass-stub {
  flex: 35;
  padding: 2.5rem;
  background: rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pass-photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255,255,255,0.8);
  flex-shrink: 0;
}

.pass-info h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: #FFF;
  margin-bottom: 0.5rem;
}

.pass-info .role {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #D4AF37; /* Gold accent for "Privilege Club" feel */
  font-weight: 700;
}

.pass-meta {
  margin-top: 2rem;
  display: flex;
  gap: 2rem;
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.6);
}

.pass-quote {
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.6;
  position: relative;
  color: #FFF;
}

.pass-quote::before {
  content: '“';
  position: absolute;
  top: -1rem;
  left: -1rem;
  font-size: 3rem;
  opacity: 0.1;
  font-family: 'Cormorant Garamond', serif;
}

.verified-badge {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #D4AF37;
  font-weight: 700;
}

@media (max-width: 768px) {
  .pass-container {
    grid-template-columns: 1fr;
  }
  .boarding-pass {
    flex-direction: column;
    min-width: unset;
  }
  .pass-main {
    border-right: none;
    border-bottom: 1px dashed rgba(255,255,255,0.1);
  }
  .boarding-pass::before,
  .boarding-pass::after {
    display: none;
  }

  /* Scroll hint optimization */
  .sv-scroll-hint {
    bottom: 4rem !important;
    font-size: 0.55rem !important;
    width: 80% !important;
  }
  .sv-scroll-hint p {
    margin-bottom: 0.5rem !important;
  }
  .scroll-indicator {
    height: 30px !important;
    width: 1px !important;
  }

  /* Hero & Flight Sections Mobile Optimization */
  .sv-canvas {
    object-fit: contain !important; /* Shows the full flight window without cropping sides */
    transform: scale(0.95) !important; /* Zoomed out slightly to see the full frame */
    filter: brightness(1.1) contrast(1.05);
    background: #000;
  }



  /* Specific fix for flight sections: ensure container is black */
  #flight-section .sv-sticky, 
  #transform-section .sv-sticky {
    background: #000 !important;
  }



  .sv-phase h1 {
    font-size: 1.5rem !important;
    max-width: 90vw !important;
    text-align: center !important;
    left: 5vw !important;
    right: 5vw !important;
  }

  /* Phase 1: Hero Centering */
  .sv-phase-1 h1:first-child {
    top: 12vh !important;
  }
  .sv-phase-1 h1:nth-child(2) {
    top: 22vh !important;
    bottom: auto !important;
  }
  .sv-phase-1 div {
    bottom: 8vh !important;
    left: 5vw !important;
    right: 5vw !important;
    width: 90vw !important;
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }
  .sv-phase-1 div h2 {
    font-size: 1.5rem !important;
    line-height: 1.2 !important;
  }
  .sv-phase-1 p {
    display: none; 
  }
  .sv-phase-1 .hero-cta {
    display: inline-flex !important;
    padding: 0.7rem 1.5rem !important;
    font-size: 0.75rem !important;
    margin-bottom: 0.5rem !important;
  }

  /* Phase 2 Adjustments */
  .sv-phase-2 h1 {
    top: 15vh !important;
  }
  .sv-phase-2 .sv-text {
    bottom: 5vh !important; /* Moved lower */
    left: 5vw !important;
    right: 5vw !important;
    max-width: 90vw !important;
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }
  .sv-phase-2 .sv-text p {
    font-size: 0.9rem !important;
    line-height: 1.5 !important;
  }


  /* Phase 3 (Transformation) Adjustments */
  .sv-text-3 {
    top: auto !important;
    bottom: 5vh !important; /* Moved lower */
    left: 5vw !important;
    right: 5vw !important;
    max-width: 90vw !important;
    text-align: center !important;
  }

  .sv-text-3 h2 {
    font-size: 1.8rem !important;
  }
  .sv-text-3 p {
    font-size: 0.9rem !important;
    line-height: 1.5 !important;
  }
  #transformCanvas {
    transform: scale(1.1) !important; /* Balanced scale for mobile */
  }


  /* Grid Stacking */
  .about-grid, .card-grid, .services-grid, .pillars-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
  .founder-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 2rem !important;
  }
  .founder-image-wrap {
    max-width: 100% !important;
  }
  .section-title {
    margin-top: 5rem !important;
    font-size: 1.8rem !important;
    text-align: center !important;
  }
  .sv-hud {
    display: none !important;
  }

  /* Footer adjustments */
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 3rem !important;
    text-align: center !important;
  }
  .footer-contact li, .social-links {
    justify-content: center !important;
  }
  .footer-logo {
    justify-content: center !important;
  }
  .footer-cta h2 {
    font-size: 1.8rem !important;
  }
}
