/* ===================================================================
   AURA HAIR & BEAUTY CO. — Design System
   =================================================================== */

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

:root{
  --obsidian:#080709;
  --aura-purple:#2B123B;
  --royal-plum:#522369;
  --aubergine:#713D88;
  --champagne:#C5A15A;
  --soft-gold:#D5BD82;
  --warm-white:#F8F5F2;
  --pure-white:#FFFFFF;

  --ink:var(--obsidian);
  --paper:var(--warm-white);

  --font-display:'Cormorant Garamond', 'Times New Roman', serif;
  --font-sans:'Jost', 'Helvetica Neue', Arial, sans-serif;

  --ease-aura: cubic-bezier(.16,.84,.36,1);
  --ease-soft: cubic-bezier(.4,0,.2,1);

  --header-h: 92px;
  --edge: clamp(20px, 5vw, 64px);

  color-scheme: dark;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:auto; }
html.lenis{ height:auto; }
.lenis.lenis-smooth{ scroll-behavior:auto; }
.lenis.lenis-smooth [data-lenis-prevent]{ overscroll-behavior:contain; }
.lenis.lenis-stopped{ overflow:hidden; }

body{
  margin:0;
  background:var(--obsidian);
  color:var(--warm-white);
  font-family:var(--font-sans);
  font-weight:300;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
  overflow-x:clip;
  cursor:auto;
}

img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
button{ font-family:inherit; background:none; border:none; color:inherit; cursor:pointer; }
input,select,textarea{ font-family:inherit; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4,p{ margin:0; }
svg{ display:block; }

::selection{ background:var(--champagne); color:var(--obsidian); }

.eyebrow{
  font-family:var(--font-sans);
  font-size:.72rem;
  letter-spacing:.32em;
  text-transform:uppercase;
  font-weight:500;
  color:var(--champagne);
}

.serif-italic{ font-family:var(--font-display); font-style:italic; font-weight:400; }

.gold-line{
  display:inline-block;
  width:48px; height:1px;
  background:linear-gradient(90deg,var(--champagne),transparent);
}

.visually-hidden{
  position:absolute !important;
  width:1px;height:1px;
  overflow:hidden;
  clip:rect(0 0 0 0);
  white-space:nowrap;
}

.skip-link{
  position:fixed; top:-100px; left:16px; z-index:9999;
  background:var(--champagne); color:var(--obsidian);
  padding:12px 20px; font-size:.85rem; letter-spacing:.05em;
  transition:top .25s var(--ease-soft);
}
.skip-link:focus{ top:16px; }

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

/* ---------- Layout helpers ---------- */
.wrap{ max-width:1600px; margin-inline:auto; padding-inline:var(--edge); }
.scene{ position:relative; width:100%; }

/* ===================================================================
   PRELOADER
   =================================================================== */
.preloader{
  position:fixed; inset:0; z-index:10000;
  background:var(--obsidian);
  display:flex; align-items:center; justify-content:center;
  flex-direction:column; gap:28px;
}
.preloader__line{
  width:0; height:1px; max-width:220px;
  background:linear-gradient(90deg, transparent, var(--champagne), transparent);
}
.preloader__mark{
  width:88px; opacity:0; transform:scale(.9);
}
.preloader__mark img{ width:100%; filter:drop-shadow(0 0 24px rgba(113,61,136,.55)); }
.preloader__glow{
  position:absolute; width:420px; height:420px; border-radius:50%;
  background:radial-gradient(circle, rgba(113,61,136,.35), transparent 70%);
  opacity:0; filter:blur(10px);
}
body.is-loading{ overflow:hidden; height:100vh; }

/* ===================================================================
   CUSTOM CURSOR
   =================================================================== */
.cursor{
  position:fixed; top:0; left:0; z-index:9998;
  width:14px; height:14px; margin:-7px 0 0 -7px;
  border-radius:50%; background:var(--champagne);
  pointer-events:none; mix-blend-mode:difference;
  transition:transform .18s var(--ease-soft), opacity .2s;
  will-change:transform;
}
.cursor__label{
  position:fixed; top:0; left:0; z-index:9997;
  transform:translate(-50%,-50%);
  font-size:.62rem; letter-spacing:.24em; text-transform:uppercase;
  color:var(--obsidian); background:var(--champagne);
  padding:8px 14px; border-radius:999px;
  pointer-events:none; opacity:0; white-space:nowrap;
  transition:opacity .2s var(--ease-soft);
  font-weight:500;
}
@media (hover:none), (pointer:coarse){
  .cursor,.cursor__label{ display:none !important; }
}

/* ===================================================================
   HEADER
   =================================================================== */
.site-header{
  position:fixed; top:0; left:0; right:0; z-index:900;
  height:var(--header-h);
  display:flex; align-items:center;
  padding-inline:var(--edge);
  transition:background .5s var(--ease-soft), backdrop-filter .5s, border-color .5s, height .4s var(--ease-soft);
  border-bottom:1px solid transparent;
}
.site-header.is-scrolled{
  height:74px;
  background:rgba(8,7,9,.72);
  backdrop-filter:blur(16px) saturate(140%);
  border-bottom-color:rgba(197,161,90,.22);
}
.site-header__inner{
  width:100%; display:flex; align-items:center; justify-content:space-between;
  gap:24px;
}
.brand{ display:flex; align-items:center; gap:12px; z-index:2; }
.brand img{
  height:56px; width:auto;
  transition:height .4s var(--ease-soft);
  filter:drop-shadow(0 2px 10px rgba(0,0,0,.4));
}
.site-header.is-scrolled .brand img{ height:44px; }

.nav-primary{ display:flex; align-items:center; gap:44px; }
.nav-links{ display:flex; gap:40px; }
.nav-links a{
  font-size:.78rem; letter-spacing:.2em; text-transform:uppercase;
  position:relative; padding-bottom:6px; font-weight:500;
}
.nav-links a::after{
  content:''; position:absolute; left:0; bottom:0; height:1px; width:0;
  background:var(--champagne); transition:width .4s var(--ease-aura);
}
.nav-links a:hover::after, .nav-links a.is-active::after{ width:100%; }

.header-actions{ display:flex; align-items:center; gap:22px; }
.icon-btn{ display:flex; align-items:center; justify-content:center; width:22px; height:22px; position:relative; }
.icon-btn svg{ width:19px; height:19px; stroke:var(--warm-white); }
.cart-count{
  position:absolute; top:-8px; right:-10px;
  background:var(--champagne); color:var(--obsidian);
  font-size:.6rem; font-weight:600; width:16px; height:16px;
  border-radius:50%; display:flex; align-items:center; justify-content:center;
}
.cart-count[hidden]{ display:none; }

.btn{
  position:relative; display:inline-flex; align-items:center; gap:10px;
  padding:15px 30px; font-size:.72rem; letter-spacing:.22em; text-transform:uppercase;
  font-weight:600; border:1px solid var(--champagne); color:var(--warm-white);
  overflow:hidden; isolation:isolate; white-space:nowrap;
}
.btn::before{
  content:''; position:absolute; inset:0; background:var(--champagne);
  transform:translateY(101%); transition:transform .5s var(--ease-aura); z-index:-1;
}
.btn:hover::before, .btn:focus-visible::before{ transform:translateY(0); }
.btn:hover, .btn:focus-visible{ color:var(--obsidian); }
.btn--ghost{ border-color:rgba(248,245,242,.4); }
.btn--gold{ background:var(--champagne); color:var(--obsidian); border-color:var(--champagne); }
.btn--gold::before{ background:var(--warm-white); }
.btn--gold:hover{ color:var(--obsidian); }
.btn--sm{ padding:12px 22px; font-size:.66rem; }
.btn-arrow{ transition:transform .4s var(--ease-aura); }
.btn:hover .btn-arrow{ transform:translateX(5px); }

.nav-toggle{
  display:none; flex-direction:column; gap:6px; width:30px; z-index:2;
}
.nav-toggle span{ height:1px; width:100%; background:var(--warm-white); transition:all .35s var(--ease-soft); }

/* Mobile menu */
.mobile-menu{
  position:fixed; inset:0; z-index:850;
  background:var(--obsidian);
  display:flex; flex-direction:column; justify-content:center;
  padding:0 var(--edge);
  opacity:0; visibility:hidden; pointer-events:none;
  transition:opacity .5s var(--ease-soft), visibility .5s;
}
.mobile-menu.is-open{ opacity:1; visibility:visible; pointer-events:auto; }
.mobile-menu__bg{
  position:absolute; inset:0; object-fit:cover; opacity:.22; filter:saturate(60%);
}
.mobile-menu__scrim{
  position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(8,7,9,.9), rgba(43,18,59,.85));
}
.mobile-menu__links{ position:relative; display:flex; flex-direction:column; gap:6px; }
.mobile-menu__links a{
  font-family:var(--font-display); font-size:clamp(2.4rem,10vw,3.4rem);
  font-weight:400; padding:10px 0; border-bottom:1px solid rgba(248,245,242,.12);
}
.mobile-menu__foot{ position:relative; margin-top:40px; display:flex; flex-direction:column; gap:18px; }
.mobile-menu__foot a{ font-size:.9rem; letter-spacing:.05em; color:var(--soft-gold); }

/* ===================================================================
   TYPOGRAPHY SYSTEM
   =================================================================== */
.h-display{
  font-family:var(--font-display);
  font-weight:400;
  line-height:.98;
  letter-spacing:-.01em;
}
.h-giant{ font-size:clamp(3.6rem, 11vw, 9rem); }
.h-xl{ font-size:clamp(2.6rem, 7vw, 5.6rem); }
.h-lg{ font-size:clamp(2rem, 4.4vw, 3.4rem); }
.h-md{ font-size:clamp(1.5rem, 2.6vw, 2.1rem); }

.split-line{ overflow:hidden; display:inline-block; }
.split-line > span{ display:inline-block; will-change:transform; }

/* ===================================================================
   SCENE 01 — HERO
   =================================================================== */
.hero{
  position:relative; height:100svh; min-height:560px;
  overflow:hidden;
  background:var(--obsidian);
}
.hero__media{ position:absolute; inset:0; }
.hero__video, .hero__poster{
  position:absolute; inset:0; width:100%; height:100%; object-fit:cover;
  object-position:70% 30%;
  transform:scale(1.06);
}
.hero__scrim{
  position:absolute; inset:0;
  background:
    linear-gradient(180deg, rgba(8,7,9,.55) 0%, rgba(8,7,9,.15) 30%, rgba(8,7,9,.35) 68%, rgba(8,7,9,.92) 100%),
    linear-gradient(90deg, rgba(8,7,9,.55) 0%, transparent 45%);
}
.hero__purple-sweep{
  position:absolute; inset:0;
  background:linear-gradient(115deg, transparent 30%, rgba(82,35,105,.5) 50%, transparent 70%);
  mix-blend-mode:screen;
  transform:translateX(-120%);
  opacity:.9;
}
.hero__content{
  position:relative; z-index:3; height:100%;
  display:flex; flex-direction:column; justify-content:flex-end;
  padding:0 var(--edge) 96px;
}
.hero__eyebrow{ margin-bottom:22px; opacity:0; }
.hero__eyebrow span{ display:inline-flex; align-items:center; gap:14px; }
.hero__title{ color:var(--pure-white); }
.hero__title .split-line{ padding-bottom:.08em; }
.hero__title em{ font-style:italic; color:var(--soft-gold); }
.hero__sub{
  margin-top:26px; max-width:460px;
  font-size:1rem; line-height:1.7; color:rgba(248,245,242,.82);
  opacity:0;
}
.hero__ctas{ margin-top:38px; display:flex; flex-wrap:wrap; gap:18px; opacity:0; }
.hero__meta{
  margin-top:34px; font-size:.68rem; letter-spacing:.28em; text-transform:uppercase;
  color:var(--soft-gold); opacity:0;
}
.hero__scroll-cue{
  position:absolute; right:var(--edge); bottom:40px; z-index:3;
  display:flex; flex-direction:column; align-items:center; gap:10px;
  writing-mode:vertical-rl; font-size:.66rem; letter-spacing:.3em; text-transform:uppercase;
  color:rgba(248,245,242,.7); opacity:0;
}
.hero__scroll-cue .cue-line{
  writing-mode:initial; width:1px; height:46px;
  background:linear-gradient(180deg, var(--champagne), transparent);
}

/* Giant AURA clip-mask type used in hero -> statement transition */
.aura-mask{
  position:absolute; inset:0; z-index:4;
  display:flex; align-items:center; justify-content:center;
  pointer-events:none;
}
.aura-mask__word{
  font-family:var(--font-display); font-weight:500;
  font-size:clamp(6rem, 26vw, 26rem);
  line-height:1; letter-spacing:-.02em;
  color:var(--warm-white);
  transform:scale(.4);
  opacity:0;
  white-space:nowrap;
}

/* ===================================================================
   SCENE 02 — STATEMENT
   =================================================================== */
.statement{
  position:relative; min-height:100vh; background:var(--obsidian);
  padding:180px 0 160px; overflow:clip;
}
.statement__grid{
  position:relative; display:grid; grid-template-columns:1.05fr .95fr; gap:40px; align-items:center;
}
.statement__text{ position:relative; z-index:3; }
.statement__eyebrow{ margin-bottom:26px; }
.statement__heading{ color:var(--pure-white); max-width:640px; }
.statement__body{
  margin-top:30px; max-width:440px; font-size:1.02rem; line-height:1.85; color:rgba(248,245,242,.78);
}
.statement__cta{ margin-top:40px; }
.statement__media{ position:relative; height:640px; }
.statement__img{
  position:absolute; border-radius:2px; overflow:hidden;
  box-shadow:0 40px 80px -30px rgba(0,0,0,.7);
}
.statement__img img{ width:100%; height:100%; object-fit:cover; }
.statement__img--a{ width:62%; aspect-ratio:3/4; top:0; right:0; z-index:2; }
.statement__img--b{ width:48%; aspect-ratio:4/5; bottom:0; left:0; z-index:1; }
.statement__ring{
  position:absolute; top:-60px; left:-40px; width:220px; height:220px;
  border:1px solid rgba(197,161,90,.35); border-radius:50%;
  z-index:0;
}

/* ===================================================================
   SCENE 03 — SERVICES PINNED SEQUENCE
   =================================================================== */
.services-sequence{
  position:relative; height:600vh; background:var(--obsidian);
}
.services-sequence__pin{
  position:sticky; top:0; height:100svh; overflow:hidden;
  display:flex; flex-direction:column;
}
.services-sequence__bg{ position:absolute; inset:0; }
.services-sequence__bg img{
  position:absolute; inset:0; width:100%; height:100%; object-fit:cover;
  opacity:0; transform:scale(1.12);
  filter:saturate(.75) brightness(.6);
}
.services-sequence__scrim{
  position:absolute; inset:0;
  background:linear-gradient(90deg, rgba(8,7,9,.94) 0%, rgba(8,7,9,.65) 42%, rgba(43,18,59,.35) 100%);
}
.services-sequence__head{
  position:relative; z-index:2; padding:64px var(--edge) 0; display:flex; justify-content:space-between; align-items:flex-start;
}
.services-sequence__counter{ font-size:.72rem; letter-spacing:.25em; color:var(--soft-gold); }
.services-sequence__body{
  position:relative; z-index:2; flex:1; display:flex; align-items:center; padding:0 var(--edge);
}
.service-step{
  position:absolute; max-width:640px; opacity:0; transform:translateY(36px);
}
.service-step__num{
  font-family:var(--font-display); font-size:clamp(4rem,8vw,7rem); color:var(--champagne);
  opacity:.8; line-height:1; margin-bottom:10px; font-weight:400;
}
.service-step__title{ color:var(--pure-white); margin-bottom:20px; }
.service-step__desc{ font-size:1.05rem; line-height:1.8; color:rgba(248,245,242,.8); max-width:480px; }
.services-sequence__progress{
  position:relative; z-index:2; padding:0 var(--edge) 56px;
  display:flex; align-items:center; gap:14px;
}
.services-sequence__track{ flex:1; height:1px; background:rgba(248,245,242,.18); position:relative; }
.services-sequence__fill{ position:absolute; left:0; top:0; height:100%; width:0%; background:var(--champagne); }
.services-sequence__cta{ position:relative; z-index:2; padding:0 var(--edge) 72px; opacity:0; }

/* ===================================================================
   SCENE 04 — HAIR MOTION TRANSITION
   =================================================================== */
.hair-transition{
  position:relative; height:130vh; overflow:hidden;
  background:linear-gradient(180deg, var(--obsidian), var(--aura-purple));
}
.hair-transition__img{
  position:absolute; inset:0; width:100%; height:120%; object-fit:cover;
  filter:brightness(.55) saturate(.9);
  transform:scale(1.15);
}
.hair-transition__scrim{ position:absolute; inset:0; background:linear-gradient(180deg, rgba(8,7,9,.5), rgba(43,18,59,.55)); }
.hair-transition__type{
  position:absolute; inset:0; display:flex; align-items:center; justify-content:center; text-align:center;
  z-index:2; padding-inline:var(--edge);
}
.hair-transition__type h2{ color:var(--pure-white); }

/* ===================================================================
   SCENE 05 — SHOP / EDIT
   =================================================================== */
.shop-scene{ position:relative; padding:170px 0 140px; background:var(--aura-purple);
  background:linear-gradient(180deg, var(--aura-purple) 0%, #250f34 100%); overflow:clip; }
.shop-scene__head{ display:flex; justify-content:space-between; align-items:flex-end; gap:30px; margin-bottom:70px; flex-wrap:wrap; }
.shop-scene__heading{ color:var(--pure-white); max-width:560px; }
.shop-scene__copy{ max-width:360px; font-size:.98rem; line-height:1.8; color:rgba(248,245,242,.78); }

.product-carousel{ position:relative; }
.product-carousel__stage{
  position:relative; height:560px; display:flex; align-items:center; justify-content:center;
  overflow:hidden;
}
.product-card{
  position:absolute; width:340px; transition:transform .7s var(--ease-aura), opacity .7s var(--ease-aura), filter .7s;
  text-align:center;
}
.product-card__frame{ aspect-ratio:3/4; overflow:hidden; border-radius:2px; margin-bottom:22px; position:relative; }
.product-card__frame img{ width:100%; height:100%; object-fit:cover; transition:transform 1.2s var(--ease-aura); }
.product-card__frame::after{
  content:''; position:absolute; inset:0;
  background:linear-gradient(160deg, rgba(82,35,105,.35), rgba(8,7,9,.15));
  mix-blend-mode:multiply;
}
.product-card__name{ font-family:var(--font-display); font-size:1.5rem; color:var(--pure-white); margin-bottom:6px; }
.product-card__meta{ font-size:.72rem; letter-spacing:.15em; text-transform:uppercase; color:var(--soft-gold); }
.product-carousel__nav{ display:flex; justify-content:center; gap:22px; margin-top:36px; align-items:center; }
.carousel-arrow{
  width:46px; height:46px; border:1px solid rgba(248,245,242,.3); border-radius:50%;
  display:flex; align-items:center; justify-content:center; transition:all .3s var(--ease-soft);
}
.carousel-arrow:hover{ border-color:var(--champagne); background:var(--champagne); color:var(--obsidian); }
.carousel-arrow svg{ width:16px; height:16px; }
.product-carousel__count{ font-size:.75rem; letter-spacing:.2em; color:rgba(248,245,242,.7); min-width:64px; text-align:center; }
.shop-scene__cta{ text-align:center; margin-top:70px; }

/* ===================================================================
   SCENE 06 — CUSTOM UNIT EXPERIENCE
   =================================================================== */
.custom-unit{ position:relative; background:var(--obsidian); padding:170px 0; overflow:clip; }
.custom-unit__head{ max-width:680px; margin-bottom:100px; }
.custom-unit__heading{ color:var(--pure-white); }
.custom-unit__body{ margin-top:24px; font-size:1.02rem; line-height:1.85; color:rgba(248,245,242,.78); max-width:520px; }
.custom-steps{ position:relative; display:grid; grid-template-columns:repeat(3,1fr); gap:8px; }
.custom-step{ position:relative; opacity:0; transform:translateY(60px); }
.custom-step__frame{ aspect-ratio:4/5; overflow:hidden; position:relative; margin-bottom:28px; }
.custom-step__frame img{ width:100%; height:100%; object-fit:cover; transform:scale(1.1); transition:transform 1s var(--ease-aura); }
.custom-step:hover .custom-step__frame img{ transform:scale(1); }
.custom-step__num{ font-family:var(--font-display); color:var(--champagne); font-size:1.1rem; margin-bottom:10px; }
.custom-step__title{ color:var(--pure-white); font-size:1.5rem; font-family:var(--font-display); margin-bottom:12px; }
.custom-step__desc{ font-size:.92rem; line-height:1.7; color:rgba(248,245,242,.72); max-width:320px; }
.custom-unit__cta{ text-align:center; margin-top:90px; }

/* ===================================================================
   SCENE 07 — LOOKBOOK (draggable carousel)
   =================================================================== */
.lookbook{ position:relative; background:var(--obsidian); padding:170px 0 130px; overflow:clip; }
.lookbook__head{ margin-bottom:70px; max-width:680px; }
.lookbook__heading{ color:var(--pure-white); }
.lookbook-carousel{
  position:relative; cursor:grab; user-select:none;
  overflow:hidden;
}
.lookbook-carousel.is-dragging{ cursor:grabbing; }
.lookbook-carousel__track{
  display:flex; gap:26px; will-change:transform;
  padding-left:var(--edge);
}
.lookbook-slide{
  position:relative; flex:0 0 auto; width:min(66vw,420px);
  opacity:.45; transition:opacity .5s var(--ease-soft);
}
.lookbook-slide.is-active{ opacity:1; }
.lookbook-slide:nth-child(3n+2){ width:min(48vw,300px); margin-top:60px; }
.lookbook-slide:nth-child(3n){ width:min(58vw,360px); margin-top:24px; }
.lookbook-slide__frame{ aspect-ratio:3/4; overflow:hidden; position:relative; }
.lookbook-slide__frame img{ width:100%; height:100%; object-fit:cover; transform:scale(1.08); transition:transform 1.4s var(--ease-aura); pointer-events:none; -webkit-user-drag:none; }
.lookbook-slide.is-active .lookbook-slide__frame img{ transform:scale(1); }
.lookbook-slide__cap{
  display:flex; justify-content:space-between; align-items:baseline; margin-top:16px;
  opacity:0; transform:translateY(8px); transition:all .5s var(--ease-soft);
}
.lookbook-slide.is-active .lookbook-slide__cap{ opacity:1; transform:translateY(0); }
.lookbook-slide__name{ font-family:var(--font-display); font-size:1.2rem; color:var(--pure-white); }
.lookbook-slide__idx{ font-size:.68rem; letter-spacing:.2em; color:var(--soft-gold); }
.lookbook__controls{
  display:flex; align-items:center; justify-content:space-between; margin-top:50px; padding-inline:var(--edge);
}
.lookbook__hint{ font-size:.68rem; letter-spacing:.24em; text-transform:uppercase; color:rgba(248,245,242,.5); }
.lookbook__cta{ margin-top:70px; text-align:center; }

/* ===================================================================
   SCENE 08 — WHY AURA (typographic)
   =================================================================== */
.why-aura{ position:relative; background:var(--royal-plum); padding:150px 0; overflow:clip; }
.why-aura__row{
  display:flex; align-items:baseline; gap:36px; border-top:1px solid rgba(248,245,242,.18);
  padding:34px 0; flex-wrap:wrap;
}
.why-aura__row:last-child{ border-bottom:1px solid rgba(248,245,242,.18); }
.why-aura__word{
  font-family:var(--font-display); font-size:clamp(2.6rem,7vw,6rem); color:var(--pure-white);
  white-space:nowrap;
}
.why-aura__desc{ max-width:420px; font-size:.98rem; line-height:1.75; color:rgba(248,245,242,.82); flex:1; min-width:240px; }
.why-aura__index{ font-size:.75rem; color:var(--soft-gold); letter-spacing:.2em; }

/* ===================================================================
   SCENE 09 — PRIVATE SUITE
   =================================================================== */
.suite{ position:relative; min-height:100vh; background:var(--obsidian); display:flex; align-items:center; overflow:clip; }
.suite__media{ position:absolute; inset:0; }
.suite__media img{ width:100%; height:100%; object-fit:cover; transform:scale(1.15); filter:brightness(.5) saturate(.85); }
.suite__scrim{ position:absolute; inset:0; background:linear-gradient(90deg, rgba(8,7,9,.92) 15%, rgba(8,7,9,.3) 60%, rgba(43,18,59,.35) 100%); }
.suite__content{ position:relative; z-index:2; max-width:620px; padding:140px var(--edge); }
.suite__heading{ color:var(--pure-white); }
.suite__body{ margin-top:28px; font-size:1.05rem; line-height:1.9; color:rgba(248,245,242,.82); max-width:480px; }

/* ===================================================================
   SCENE 10 — BOOKING CTA
   =================================================================== */
.booking-cta{ position:relative; min-height:100vh; background:var(--obsidian); display:grid; grid-template-columns:1fr 1fr; }
.booking-cta__media{ position:relative; overflow:hidden; }
.booking-cta__media img{ width:100%; height:100%; object-fit:cover; transform:scale(1.1); }
.booking-cta__media::after{ content:''; position:absolute; inset:0; background:linear-gradient(90deg, transparent 70%, var(--obsidian) 100%); }
.booking-cta__panel{ display:flex; flex-direction:column; justify-content:center; padding:80px var(--edge); }
.booking-cta__heading{ color:var(--pure-white); }
.booking-cta__body{ margin-top:26px; font-size:1.02rem; line-height:1.85; color:rgba(248,245,242,.78); max-width:420px; }
.booking-cta__actions{ margin-top:44px; display:flex; flex-direction:column; gap:22px; align-items:flex-start; }
.booking-cta__phone{ font-family:var(--font-display); font-size:1.6rem; color:var(--soft-gold); letter-spacing:.02em; }

/* ===================================================================
   FOOTER
   =================================================================== */
.site-footer{ position:relative; background:var(--obsidian); border-top:1px solid rgba(197,161,90,.18); padding:80px 0 34px; }
.footer-grid{ display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr; gap:40px; margin-bottom:70px; }
.footer-brand img{ height:64px; margin-bottom:20px; }
.footer-brand p{ font-size:.9rem; line-height:1.7; color:rgba(248,245,242,.6); max-width:280px; }
.footer-col h4{ font-size:.72rem; letter-spacing:.22em; text-transform:uppercase; color:var(--champagne); margin-bottom:20px; }
.footer-col ul{ display:flex; flex-direction:column; gap:12px; }
.footer-col a{ font-size:.9rem; color:rgba(248,245,242,.72); }
.footer-col a:hover{ color:var(--soft-gold); }
.footer-bottom{
  display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:14px;
  padding-top:28px; border-top:1px solid rgba(248,245,242,.1);
  font-size:.75rem; color:rgba(248,245,242,.45); letter-spacing:.03em;
}
.footer-social{ display:flex; gap:18px; }

/* ===================================================================
   RIBBON (subtle 3D-ish gold accent, css-driven)
   =================================================================== */
.ribbon-accent{
  position:absolute; pointer-events:none; z-index:1;
  width:220px; height:220px;
  background:conic-gradient(from 180deg, transparent, rgba(197,161,90,.55), transparent 60%);
  border-radius:50%; filter:blur(2px);
  opacity:.5;
  animation:ribbon-spin 18s linear infinite;
}
@keyframes ribbon-spin{ to{ transform:rotate(360deg); } }

/* ===================================================================
   RESPONSIVE
   =================================================================== */
@media (max-width:1080px){
  .nav-primary{ display:none; }
  .nav-toggle{ display:flex; }
  .statement__grid{ grid-template-columns:1fr; }
  .statement__media{ height:480px; margin-top:60px; }
  .custom-steps{ grid-template-columns:1fr; gap:70px; }
  .booking-cta{ grid-template-columns:1fr; }
  .booking-cta__media{ height:44vh; }
  .footer-grid{ grid-template-columns:1fr 1fr; }
}
@media (max-width:720px){
  .hero__content{ padding-bottom:120px; }
  .hero__scroll-cue{ display:none; }
  .services-sequence{ height:520vh; }
  .service-step{ max-width:88%; }
  .why-aura__row{ flex-direction:column; align-items:flex-start; gap:14px; }
  .footer-grid{ grid-template-columns:1fr; gap:44px; }
  .product-card{ width:78vw; }
  .product-carousel__stage{ height:480px; }
  .suite__content, .booking-cta__panel{ padding:90px 24px; }
}

@media (prefers-reduced-motion: reduce){
  *{ animation-duration:.001ms !important; animation-iteration-count:1 !important; transition-duration:.001ms !important; scroll-behavior:auto !important; }
  .hero__eyebrow,.hero__sub,.hero__ctas,.hero__meta,.hero__scroll-cue,
  .service-step,.custom-step,.services-sequence__cta,
  .statement__img,.why-aura__row,.suite__content > *,.booking-cta__panel > *,.booking-cta__media img,
  .lookbook-slide{ opacity:1 !important; transform:none !important; }

  .services-sequence{ height:auto; }
  .services-sequence__pin{ position:relative; height:auto; padding:70px 0 90px; display:block; }
  .services-sequence__bg{ display:none; }
  .services-sequence__body{ position:relative; display:block; padding:0 var(--edge); }
  .service-step{ position:relative; margin-bottom:70px; max-width:640px; }
  .services-sequence__progress{ display:none; }
  .services-sequence__cta{ position:relative; padding:0 var(--edge); }

  .aura-mask{ display:none; }
  .hero__purple-sweep{ display:none; }
}
