/* ============================================================
   FOREVER IN FRAME — CORE STYLES
   Mobile-first. Desktop expands the experience (see responsive.css)
   ============================================================ */

/* ---------- TOKENS ---------------------------------------- */
:root{
  /* brand */
  --black:#050507;
  --black-soft:#09090B;
  --charcoal:#111116;
  --white:#F7F7F5;
  --muted:#B8B8C2;

  --gold-light:#F3D28A;
  --gold:#E7BF68;
  --gold-dark:#CFA64C;
  --gold-grad:linear-gradient(90deg,#CFA64C 0%,#F3D28A 45%,#E7BF68 100%);

  --neon-purple:#8A5CFF;
  --neon-magenta:#E84CFF;
  --neon-blue:#26C6FF;

  /* light breathing sections */
  --ivory:#F4F0E8;
  --champagne-bg:#EDE4D5;
  --ink:#111116;

  /* type */
  --display:"Bebas Neue","Oswald","Arial Narrow",sans-serif;
  --body:"Manrope","Montserrat",system-ui,-apple-system,"Segoe UI",sans-serif;

  /* rhythm */
  --gutter:clamp(1.25rem,5vw,2rem);
  --section-y:clamp(4.5rem,12vw,9rem);
  --maxw:1320px;

  --ease:cubic-bezier(.22,.61,.36,1);
  --ease-out:cubic-bezier(.16,1,.3,1);

  --header-h:72px;
}

*,*::before,*::after{box-sizing:border-box}

html{
  -webkit-text-size-adjust:100%;
  scroll-behavior:smooth;
  scroll-padding-top:calc(var(--header-h) + 12px);
  /* `clip` — never `hidden`: overflow:hidden turns the element into a
     scroll container, which breaks ScrollTrigger's position maths on
     every refresh that happens while the page is scrolled. */
  overflow-x:clip;
}

body{
  margin:0;
  background:var(--black);
  color:var(--white);
  font-family:var(--body);
  font-size:clamp(.95rem,.9rem + .3vw,1.0625rem);
  line-height:1.65;
  font-weight:400;
  -webkit-font-smoothing:antialiased;
  overflow-x:clip;
}
body.menu-open{overflow:hidden}

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

h1,h2,h3,h4,p,figure,ul,ol{margin:0}
ul,ol{padding:0;list-style:none}
a{color:inherit;text-decoration:none}
button{font:inherit;color:inherit;background:none;border:0;cursor:pointer}

::selection{background:var(--gold);color:#0b0b0f}

/* ---------- FOCUS / A11Y ---------------------------------- */
:focus-visible{
  outline:2px solid var(--gold);
  outline-offset:3px;
  border-radius:2px;
}
.skip-link{
  position:absolute;left:var(--gutter);top:-100px;z-index:200;
  background:var(--gold);color:#0b0b0f;font-weight:700;
  padding:.7rem 1.1rem;border-radius:4px;transition:top .2s var(--ease);
}
.skip-link:focus{top:12px}

/* ---------- LAYOUT ---------------------------------------- */
.wrap{
  width:100%;max-width:var(--maxw);
  margin-inline:auto;
  padding-inline:var(--gutter);
}
.wrap-narrow{max-width:820px}

.section{
  position:relative;
  padding-block:var(--section-y);
  isolation:isolate;
}
.section-dark{background:var(--black-soft)}
.section-black{background:var(--black)}
.section-charcoal{background:var(--charcoal)}
.section-ivory{background:var(--ivory);color:var(--ink)}

/* subtle film grain on dark sections */
.section-dark::after,.section-black::after,.section-charcoal::after,
.final-cta::after{
  content:"";position:absolute;inset:0;pointer-events:none;z-index:-1;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
  opacity:.035;mix-blend-mode:overlay;
}

/* ---------- TYPOGRAPHY ------------------------------------ */
.display{
  font-family:var(--display);
  font-weight:400;
  line-height:.92;
  letter-spacing:.005em;
  text-transform:uppercase;
  text-wrap:balance;
}
.display .line{display:block}

.display-xl{font-size:clamp(3.2rem,15vw,8.5rem)}
.display-lg{font-size:clamp(2.5rem,10vw,5.5rem)}
.display-md{font-size:clamp(2rem,7.5vw,4rem)}
.display-sm{font-size:clamp(1.65rem,5.5vw,2.6rem)}

.gold-text{
  background:var(--gold-grad);
  -webkit-background-clip:text;background-clip:text;
  color:transparent;
}
.gold-text-ink{
  background:linear-gradient(90deg,#B98F32 0%,#D8B25C 50%,#A8802A 100%);
  -webkit-background-clip:text;background-clip:text;color:transparent;
}

.eyebrow{
  font-size:.68rem;font-weight:600;
  letter-spacing:.34em;text-transform:uppercase;
  color:var(--gold);
  display:flex;align-items:center;gap:.7rem;
  margin-bottom:1.1rem;
}
.eyebrow::after{
  content:"";height:1px;flex:1;max-width:80px;
  background:linear-gradient(90deg,var(--gold-dark),transparent);
}
.section-ivory .eyebrow{color:#9A7526}
.section-ivory .eyebrow::after{background:linear-gradient(90deg,#B98F32,transparent)}

.num-tag{
  font-family:var(--display);font-size:1.15em;
  color:var(--white);letter-spacing:.02em;opacity:.55;
}
.section-ivory .num-tag{color:var(--ink)}

.lede,.section-lede,.body-lg{color:var(--muted)}
.section-ivory .body-lg,.section-ivory .section-lede{color:#4A4A52}

.section-lede{max-width:46ch;margin-top:1.4rem;font-size:1.02rem}
.body-lg{font-size:clamp(1rem,.95rem + .4vw,1.2rem);margin-top:1.3rem;max-width:44ch}
.center-narrow{margin-inline:auto;text-align:center}

.section-head{margin-bottom:clamp(2.5rem,7vw,4.5rem)}

/* ---------- BUTTONS --------------------------------------- */
.btn{
  --btn-pad-y:.95rem;--btn-pad-x:1.6rem;
  display:inline-flex;align-items:center;justify-content:center;gap:.65rem;
  padding:var(--btn-pad-y) var(--btn-pad-x);
  font-family:var(--body);font-size:.78rem;font-weight:700;
  letter-spacing:.18em;text-transform:uppercase;
  border-radius:999px;
  position:relative;overflow:hidden;
  transition:color .35s var(--ease),border-color .35s var(--ease),
             box-shadow .35s var(--ease),transform .35s var(--ease);
  min-height:48px;
}
.btn-sm{--btn-pad-y:.7rem;--btn-pad-x:1.2rem;font-size:.7rem;min-height:42px}
.btn-lg{--btn-pad-y:1.1rem;--btn-pad-x:2rem;font-size:.8rem;min-height:54px}
.btn-block{display:flex;width:100%}

.btn-arrow{
  display:inline-block;
  transition:transform .35s var(--ease);
}
.btn:hover .btn-arrow,.btn:focus-visible .btn-arrow{transform:translateX(5px)}

/* gold */
.btn-gold{
  color:var(--gold-light);
  border:1px solid rgba(231,191,104,.55);
  background:linear-gradient(180deg,rgba(231,191,104,.10),rgba(231,191,104,.03));
  box-shadow:inset 0 0 0 0 rgba(231,191,104,0);
}
.btn-gold::before{
  content:"";position:absolute;inset:0;
  background:var(--gold-grad);opacity:0;
  transition:opacity .35s var(--ease);z-index:-1;
}
.btn-gold:hover,.btn-gold:focus-visible{
  color:#0b0b0f;border-color:var(--gold-light);
  box-shadow:0 0 28px rgba(231,191,104,.35),0 0 0 1px rgba(243,210,138,.25);
}
.btn-gold:hover::before,.btn-gold:focus-visible::before{opacity:1}
.btn-gold:active{transform:translateY(1px)}

/* ghost */
.btn-ghost{
  color:var(--white);
  border:1px solid rgba(247,247,245,.28);
}
.btn-ghost:hover,.btn-ghost:focus-visible{
  border-color:var(--white);
  box-shadow:0 0 24px rgba(247,247,245,.12);
}
.section-ivory .btn-ghost{color:var(--ink);border-color:rgba(17,17,22,.28)}
.section-ivory .btn-ghost:hover{border-color:var(--ink);box-shadow:none}

/* text link with arrow */
.link-arrow{
  display:inline-flex;align-items:center;gap:.5rem;
  font-size:.74rem;font-weight:700;letter-spacing:.2em;text-transform:uppercase;
  color:var(--gold);padding-block:.4rem;
  position:relative;
}
.link-arrow span{transition:transform .35s var(--ease)}
.link-arrow::after{
  content:"";position:absolute;left:0;bottom:0;height:1px;width:100%;
  background:currentColor;transform:scaleX(0);transform-origin:right;
  transition:transform .4s var(--ease);
}
.link-arrow:hover::after,.link-arrow:focus-visible::after{transform:scaleX(1);transform-origin:left}
.link-arrow:hover span{transform:translateX(5px)}

/* ---------- HEADER ---------------------------------------- */
.site-header{
  position:fixed;inset:0 0 auto 0;z-index:100;
  transition:background .45s var(--ease),backdrop-filter .45s var(--ease),
             border-color .45s var(--ease);
  border-bottom:1px solid transparent;
}
.site-header.is-solid{
  background:rgba(5,5,7,.85);
  backdrop-filter:blur(14px) saturate(1.2);
  -webkit-backdrop-filter:blur(14px) saturate(1.2);
  border-bottom-color:rgba(231,191,104,.12);
}
.header-inner{
  max-width:var(--maxw);margin-inline:auto;
  padding:.65rem var(--gutter);
  display:flex;align-items:center;gap:1.5rem;
  min-height:var(--header-h);
}
.brand{flex:0 0 auto;margin-right:auto}
.brand img{
  width:clamp(118px,26vw,168px);height:auto;
  filter:drop-shadow(0 2px 14px rgba(231,191,104,.22));
}
.nav-desktop{display:none}
.header-cta{display:none}

/* burger */
.burger{
  width:44px;height:44px;flex:0 0 auto;
  display:grid;place-content:center;gap:6px;
  border:1px solid rgba(247,247,245,.18);border-radius:50%;
}
.burger span{
  display:block;width:18px;height:1.5px;background:var(--white);
  transition:transform .35s var(--ease),opacity .25s var(--ease);
}
.burger[aria-expanded="true"] span:first-child{transform:translateY(3.75px) rotate(45deg)}
.burger[aria-expanded="true"] span:last-child{transform:translateY(-3.75px) rotate(-45deg)}

/* ---------- MOBILE MENU ----------------------------------- */
.mobile-menu{
  position:fixed;inset:0;z-index:99;
  background:
    radial-gradient(120% 70% at 70% 0%,rgba(138,92,255,.20),transparent 60%),
    radial-gradient(90% 60% at 10% 100%,rgba(232,76,255,.14),transparent 60%),
    rgba(5,5,7,.97);
  backdrop-filter:blur(18px);-webkit-backdrop-filter:blur(18px);
  display:flex;flex-direction:column;justify-content:center;
  gap:2.5rem;padding:calc(var(--header-h) + 2rem) var(--gutter) calc(2rem + env(safe-area-inset-bottom));
}
.mobile-menu[hidden]{display:none}
.mobile-menu ul{display:flex;flex-direction:column;gap:.2rem}
.mobile-menu ul a{
  display:block;
  font-family:var(--display);font-size:clamp(2.4rem,12vw,4rem);
  text-transform:uppercase;line-height:1.05;letter-spacing:.01em;
  padding-block:.28rem;
  transition:color .3s var(--ease),transform .4s var(--ease);
}
.mobile-menu ul a:hover,.mobile-menu ul a:focus-visible{color:var(--gold);transform:translateX(8px)}
.menu-cta{margin-top:.5rem}
.menu-foot{
  font-size:.7rem;letter-spacing:.24em;text-transform:uppercase;color:var(--muted);
  display:flex;flex-direction:column;gap:.25rem;
}
.menu-foot span{color:rgba(184,184,194,.55);letter-spacing:.16em}

/* ============================================================
   HERO
   ============================================================ */
.hero{
  position:relative;
  height:240vh;                 /* scroll runway — mobile */
  background:var(--black);
}
.hero-sticky{
  position:sticky;top:0;
  height:100svh;min-height:560px;
  overflow:hidden;
  display:flex;flex-direction:column;
}
.hero-media{
  position:absolute;inset:0;z-index:0;
  /* Doubles as the video poster and the reduced-motion still.
     These queries mirror pickVariant() in js/hero-scroll.js exactly,
     so the still always matches the video that will be loaded.
     Only the winning background-image is ever downloaded. */
  background:#050507 url("../assets/hero/hero-poster.jpg") 50% 50%/cover no-repeat;
}
.hero-video{
  width:100%;height:100%;
  object-fit:cover;object-position:50% 50%;
  background:#050507;
}
.hero-scrim{
  position:absolute;inset:0;
  background:
    linear-gradient(180deg,
      rgba(3,3,8,.94) 0%,
      rgba(3,3,8,.80) 26%,
      rgba(3,3,8,.54) 44%,
      rgba(3,3,8,.20) 62%,
      rgba(3,3,8,.52) 88%,
      rgba(3,3,8,.90) 100%);
}
.hero-grain{
  position:absolute;inset:0;opacity:.05;mix-blend-mode:overlay;
  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='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100' height='100' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero-content{
  position:relative;z-index:2;
  flex:1;display:flex;flex-direction:column;
  justify-content:flex-start;
  padding:calc(var(--header-h) + clamp(1rem,5vh,3rem)) var(--gutter) 0;
  max-width:var(--maxw);width:100%;margin-inline:auto;
}

/* phase stack */
.hero-copy{position:relative;min-height:clamp(9rem,30vw,14rem)}
.hero-phase{
  position:absolute;inset:0;
  will-change:opacity,transform,filter;
}
.hero-phase:not(.is-first){opacity:0}
.hero-phase .eyebrow{margin-bottom:.8rem}
.hero-phase .display{
  text-shadow:0 2px 30px rgba(0,0,0,.55);
}

.hero-lede{margin-top:clamp(1.2rem,4vh,2rem);will-change:opacity,transform}
.lede{
  font-size:.82rem;font-weight:500;
  letter-spacing:.2em;text-transform:uppercase;line-height:1.75;
  color:rgba(247,247,245,.82);
  text-shadow:0 2px 16px rgba(0,0,0,.6);
  margin-bottom:1.5rem;
}
.hero-cta{backdrop-filter:blur(6px);-webkit-backdrop-filter:blur(6px)}

/* hero marks */
.hero-marks{
  position:relative;z-index:2;
  display:flex;gap:clamp(1.1rem,5vw,2.6rem);
  padding:0 var(--gutter) clamp(1.4rem,5vh,2.5rem);
  max-width:var(--maxw);width:100%;margin-inline:auto;
  font-size:.62rem;font-weight:700;letter-spacing:.2em;text-transform:uppercase;
  line-height:1.5;color:rgba(247,247,245,.72);
}
.hero-marks li{display:flex;flex-direction:column;gap:.55rem}
.mark-ico{width:22px;height:22px;color:var(--gold)}
.mark-ico svg{width:100%;height:100%}

/* scroll cue */
.scroll-cue{
  position:absolute;right:var(--gutter);bottom:clamp(1.4rem,5vh,2.5rem);z-index:2;
  display:none;align-items:center;gap:.8rem;
  font-size:.58rem;font-weight:700;letter-spacing:.24em;text-transform:uppercase;
  color:rgba(247,247,245,.62);text-align:right;line-height:1.5;
}
.cue-ring{
  width:46px;height:46px;border-radius:50%;
  border:1px solid rgba(247,247,245,.28);
  display:grid;place-content:center;color:var(--gold);
}

/* ---------- TRANSITION BAND ------------------------------- */
.band-transition{
  position:relative;
  background:linear-gradient(180deg,var(--black) 0%,var(--charcoal) 100%);
  padding:clamp(3rem,10vw,6rem) var(--gutter);
  display:grid;place-items:center;
}
.band-label{
  font-size:.62rem;font-weight:700;letter-spacing:.42em;text-transform:uppercase;
  color:rgba(231,191,104,.62);text-align:center;
}
.band-transition::before{
  content:"";position:absolute;left:50%;top:0;transform:translateX(-50%);
  width:1px;height:clamp(2rem,7vw,4rem);
  background:linear-gradient(180deg,transparent,rgba(231,191,104,.6));
}

/* ============================================================
   EXPERIENCE CARDS
   ============================================================ */
.xp-grid{display:grid;gap:clamp(2rem,6vw,2.5rem)}

.xp-media{
  position:relative;display:block;overflow:hidden;
  border-radius:3px;
  aspect-ratio:4/5;
  background:var(--black);
}
.xp-media img{
  width:100%;height:100%;object-fit:cover;
  transition:transform .9s var(--ease-out),filter .6s var(--ease);
}
.xp-media::after{
  content:"";position:absolute;inset:0;
  background:linear-gradient(180deg,transparent 40%,rgba(5,5,7,.85) 100%);
}
.xp-card:hover .xp-media img{transform:scale(1.045)}
.xp-num{
  position:absolute;left:1.1rem;top:.7rem;z-index:2;
  font-family:var(--display);font-size:clamp(2.6rem,9vw,3.6rem);
  line-height:1;color:rgba(247,247,245,.9);
  text-shadow:0 2px 20px rgba(0,0,0,.6);
}
.xp-body{padding-top:1.4rem}
.xp-body h3{margin-bottom:.9rem}
.xp-body p{color:var(--muted);margin-bottom:1.2rem;font-size:.97rem}

/* ============================================================
   FEATURE SECTIONS (products)
   ============================================================ */
.grid-split{display:grid;gap:clamp(2.5rem,8vw,4.5rem);align-items:center}
.xp-text .pill-list{
  display:flex;flex-wrap:wrap;gap:.55rem;margin-top:1.8rem;
}
.pill-list li{
  font-size:.64rem;font-weight:700;letter-spacing:.18em;text-transform:uppercase;
  padding:.5rem .95rem;border-radius:999px;
  border:1px solid rgba(231,191,104,.28);color:var(--gold-light);
  background:rgba(231,191,104,.05);
}
.section-ivory .pill-list li{border-color:rgba(17,17,22,.18);color:#8A6A22;background:rgba(17,17,22,.03)}
.xp-text .btn{margin-top:2rem}

/* --- 360 orbit --- */
.orbit-media{position:relative;display:grid;place-items:center;padding:clamp(1rem,5vw,2.5rem)}
.orbit-ring{
  position:absolute;inset:0;display:grid;place-items:center;pointer-events:none;
}
.orbit-svg{width:100%;height:100%;opacity:.5;overflow:visible}
.orbit-path{
  filter:drop-shadow(0 0 10px rgba(138,92,255,.55));
  stroke-dasharray:6 14;
}
.orbit-dot{
  position:absolute;width:10px;height:10px;border-radius:50%;
  background:var(--gold-light);
  box-shadow:0 0 16px 4px rgba(243,210,138,.7);
  offset-path:circle(44.6% at 50% 50%);
  offset-distance:0%;
}
.orbit-frame{
  position:relative;width:min(100%,520px);
  border-radius:50%;overflow:hidden;aspect-ratio:1;
  box-shadow:0 30px 90px -30px rgba(138,92,255,.55),
             0 0 0 1px rgba(247,247,245,.08);
}
.orbit-frame img{width:100%;height:100%;object-fit:cover}

/* --- photo booth flash + strips --- */
.xp-booth{overflow:hidden}
.flash-layer{
  position:absolute;inset:0;background:#fff;opacity:0;pointer-events:none;z-index:5;
}
.strip-media{position:relative;display:grid;place-items:center;min-height:clamp(20rem,60vw,28rem)}
.strip{
  position:absolute;width:clamp(10rem,42vw,15rem);
  border:.55rem solid #F7F7F5;border-bottom-width:2.2rem;
  border-radius:2px;
  box-shadow:0 24px 60px -18px rgba(0,0,0,.8);
  background:#F7F7F5;
  will-change:transform;
}
.strip img{width:100%;aspect-ratio:4/5;object-fit:cover}
.strip-1{transform:rotate(-7deg) translate(-22%,-8%);z-index:1}
.strip-2{transform:rotate(4deg) translate(6%,4%);z-index:3}
.strip-3{transform:rotate(11deg) translate(30%,12%);z-index:2}

/* --- LED cabin --- */
.xp-cabin{overflow:hidden;padding-top:0}
.cabin-stage{
  position:relative;height:clamp(22rem,75vw,40rem);
  display:grid;place-items:center;margin-bottom:clamp(2.5rem,8vw,4.5rem);
}
.cabin-media{
  position:relative;width:min(92%,900px);
  aspect-ratio:4/3;border-radius:4px;overflow:hidden;
  will-change:transform;
  box-shadow:0 40px 120px -40px rgba(38,198,255,.45);
}
.cabin-media img{width:100%;height:100%;object-fit:cover}
.cabin-glow{
  position:absolute;inset:0;
  background:radial-gradient(60% 60% at 50% 55%,rgba(38,198,255,.30),transparent 70%);
  mix-blend-mode:screen;opacity:.2;transition:opacity .6s var(--ease);
}
.cabin-copy{text-align:center;display:grid;justify-items:center}
.cabin-copy .eyebrow{justify-content:center}
.cabin-copy .eyebrow::after{display:none}
.cabin-copy .btn{margin-top:2rem}

/* ============================================================
   EVENTS
   ============================================================ */
.event-rail{
  display:flex;gap:1rem;
  overflow-x:auto;scroll-snap-type:x mandatory;
  padding-inline:var(--gutter);padding-bottom:1rem;
  /* snap targets must respect the gutter, otherwise the browser
     scrolls the first tile flush to the edge and eats the padding */
  scroll-padding-inline:var(--gutter);
  -webkit-overflow-scrolling:touch;scrollbar-width:none;
}
.event-rail::-webkit-scrollbar{display:none}
.ev{
  position:relative;flex:0 0 min(74vw,300px);scroll-snap-align:start;
  aspect-ratio:3/4;border-radius:3px;overflow:hidden;background:var(--black);
}
.ev img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;
        transition:transform .9s var(--ease-out)}
.ev::after{
  content:"";position:absolute;inset:0;
  background:linear-gradient(180deg,transparent 35%,rgba(5,5,7,.88) 100%);
}
.ev:hover img{transform:scale(1.05)}
.ev-body{
  position:absolute;inset:auto 0 0 0;z-index:2;
  padding:1.3rem 1.2rem;
}
.ev-body h3{
  font-family:var(--display);font-size:clamp(1.4rem,5.5vw,1.9rem);
  text-transform:uppercase;line-height:1;margin-bottom:.45rem;
}
.ev-body p{font-size:.82rem;color:var(--muted);max-width:24ch}
.ev-arrow{
  position:absolute;right:1.2rem;bottom:1.4rem;color:var(--gold);
  transition:transform .4s var(--ease);
}
.ev:hover .ev-arrow{transform:translateX(5px)}

/* ============================================================
   GALLERY
   ============================================================ */
.gal-grid{display:grid;gap:.7rem;grid-template-columns:repeat(2,1fr)}
.gal{position:relative;overflow:hidden;border-radius:3px;background:var(--black-soft)}
.gal img{width:100%;height:100%;object-fit:cover;aspect-ratio:4/3;
         transition:transform .9s var(--ease-out),filter .5s var(--ease)}
.gal-tall img{aspect-ratio:2/3}
.gal figcaption{
  position:absolute;inset:auto 0 0 0;
  padding:.9rem 1rem;
  font-size:.6rem;font-weight:700;letter-spacing:.22em;text-transform:uppercase;
  color:var(--white);
  background:linear-gradient(180deg,transparent,rgba(5,5,7,.9));
  opacity:0;transform:translateY(8px);
  transition:opacity .4s var(--ease),transform .4s var(--ease);
}
.gal:hover img{transform:scale(1.05)}
.gal:hover figcaption{opacity:1;transform:none}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps{display:grid;gap:clamp(1.6rem,5vw,2.2rem)}
.steps li{
  position:relative;padding-top:1.5rem;
  border-top:1px solid rgba(17,17,22,.14);
}
.step-n{
  display:block;font-family:var(--display);
  font-size:clamp(2rem,7vw,2.8rem);line-height:1;
  color:#B98F32;margin-bottom:.7rem;
}
.steps h3{
  font-family:var(--display);font-size:clamp(1.3rem,4.5vw,1.7rem);
  text-transform:uppercase;line-height:1.05;margin-bottom:.5rem;
}
.steps p{color:#4A4A52;font-size:.95rem;max-width:32ch}

/* ============================================================
   PACKAGES
   ============================================================ */
.pkg-grid{display:grid;gap:1.1rem}
.pkg{
  position:relative;padding:clamp(1.6rem,5vw,2.2rem);
  border:1px solid rgba(247,247,245,.10);border-radius:4px;
  background:linear-gradient(180deg,rgba(247,247,245,.035),rgba(247,247,245,.01));
  transition:border-color .45s var(--ease),transform .45s var(--ease),box-shadow .45s var(--ease);
  overflow:hidden;
}
.pkg::before{
  content:"";position:absolute;inset:0 0 auto 0;height:1px;
  background:var(--gold-grad);opacity:.35;
}
.pkg:hover{
  border-color:rgba(231,191,104,.32);transform:translateY(-4px);
  box-shadow:0 24px 60px -30px rgba(231,191,104,.35);
}
.pkg-n{
  font-size:.62rem;font-weight:700;letter-spacing:.28em;text-transform:uppercase;
  color:rgba(184,184,194,.55);
}
.pkg h3{
  font-family:var(--display);font-size:clamp(1.7rem,6vw,2.3rem);
  text-transform:uppercase;line-height:1;margin:.6rem 0 .5rem;
}
.pkg-tagline{color:var(--muted);font-size:.92rem;margin-bottom:1.3rem}
.pkg-meta{
  display:flex;flex-wrap:wrap;gap:.5rem 1.4rem;margin-bottom:1.2rem;
  font-size:.68rem;font-weight:700;letter-spacing:.16em;text-transform:uppercase;
  color:var(--gold-light);
}
.pkg-features{display:grid;gap:.55rem;margin-bottom:1.6rem}
.pkg-features li{
  display:flex;gap:.65rem;font-size:.9rem;color:var(--muted);
}
.pkg-features li::before{
  content:"";flex:0 0 auto;width:5px;height:5px;margin-top:.55rem;
  border-radius:50%;background:var(--gold);opacity:.75;
}
.pkg-features li.is-todo{color:rgba(184,184,194,.42);font-style:italic}
.pkg-features li.is-todo::before{background:rgba(184,184,194,.35)}
.pkg-foot{margin-top:clamp(2rem,6vw,3rem);display:flex;justify-content:center}

/* ============================================================
   RENTALS
   ============================================================ */
.rentals-media{border-radius:3px;overflow:hidden}
.rentals-media img{width:100%;aspect-ratio:16/10;object-fit:cover}

/* ============================================================
   FAQ
   ============================================================ */
.acc-item{border-top:1px solid rgba(247,247,245,.10)}
.acc-item:last-child{border-bottom:1px solid rgba(247,247,245,.10)}
.acc-item h3{margin:0}
.acc-btn{
  width:100%;display:flex;align-items:flex-start;justify-content:space-between;gap:1.2rem;
  padding:1.35rem 0;text-align:left;
  font-size:1rem;font-weight:600;line-height:1.45;
  transition:color .3s var(--ease);
}
.acc-btn:hover{color:var(--gold-light)}
.acc-btn::after{
  content:"";flex:0 0 auto;width:13px;height:13px;margin-top:.45rem;
  background:
    linear-gradient(var(--gold),var(--gold)) center/100% 1.5px no-repeat,
    linear-gradient(var(--gold),var(--gold)) center/1.5px 100% no-repeat;
  transition:transform .4s var(--ease);
}
.acc-btn[aria-expanded="true"]::after{transform:rotate(135deg)}
.acc-panel{
  display:grid;grid-template-rows:0fr;
  transition:grid-template-rows .45s var(--ease);
}
.acc-panel>div{overflow:hidden}
.acc-panel p{
  color:var(--muted);font-size:.95rem;
  padding-bottom:1.4rem;max-width:62ch;
}
/* the button is wrapped in an <h3>, so it is not a sibling of the
   panel — drive the open state from a class on the item instead */
.acc-item.is-open .acc-panel{grid-template-rows:1fr}

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta{
  position:relative;text-align:center;overflow:hidden;
  background:var(--black);
  padding-block:clamp(5rem,15vw,10rem);
}
.cta-halo{
  position:absolute;left:50%;top:45%;transform:translate(-50%,-50%);
  width:min(140vw,1200px);aspect-ratio:1;pointer-events:none;
  background:
    radial-gradient(40% 40% at 35% 40%,rgba(138,92,255,.30),transparent 70%),
    radial-gradient(40% 40% at 65% 55%,rgba(232,76,255,.22),transparent 70%),
    radial-gradient(45% 45% at 50% 50%,rgba(38,198,255,.16),transparent 72%);
  filter:blur(30px);
}
.final-cta .display-xl{margin-bottom:1rem}
.final-cta .section-lede{margin-inline:auto;margin-top:1.8rem}
.cta-row{
  display:flex;flex-direction:column;gap:.8rem;
  margin-top:2.4rem;align-items:center;
}
.cta-row .btn{width:100%;max-width:340px}
.cta-sig{
  margin-top:clamp(3rem,9vw,5rem);
  font-size:.62rem;font-weight:700;letter-spacing:.34em;text-transform:uppercase;
  color:rgba(231,191,104,.7);
  display:flex;flex-direction:column;gap:.4rem;align-items:center;
}
.cta-sig span{color:rgba(184,184,194,.45);letter-spacing:.2em}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-list{display:grid;gap:.9rem;margin-top:2rem}
.contact-list li{display:flex;gap:.8rem;align-items:center;font-size:.9rem}
.contact-list .c-label{
  font-size:.6rem;font-weight:700;letter-spacing:.24em;text-transform:uppercase;
  color:var(--gold);min-width:74px;
}
.contact-list .c-val{color:var(--muted)}
.contact-list a.c-val:hover{color:var(--gold-light)}
.contact-list .is-placeholder{
  color:rgba(184,184,194,.42);font-style:italic;
}

.lead-form{
  padding:clamp(1.5rem,5vw,2.2rem);
  border:1px solid rgba(247,247,245,.10);border-radius:4px;
  background:linear-gradient(180deg,rgba(247,247,245,.035),rgba(247,247,245,.01));
  display:grid;gap:1.1rem;
}
.field{display:grid;gap:.45rem}
.field-row{display:grid;gap:1.1rem}
.field label{
  font-size:.62rem;font-weight:700;letter-spacing:.2em;text-transform:uppercase;
  color:rgba(247,247,245,.72);
}
.field .opt{color:rgba(184,184,194,.5);letter-spacing:.12em}
.field input,.field select,.field textarea{
  width:100%;font:inherit;font-size:.95rem;color:var(--white);
  background:rgba(5,5,7,.6);
  border:1px solid rgba(247,247,245,.14);border-radius:3px;
  padding:.85rem .95rem;min-height:48px;
  transition:border-color .3s var(--ease),box-shadow .3s var(--ease);
}
.field textarea{min-height:90px;resize:vertical}
.field select{appearance:none;
  background-image:linear-gradient(45deg,transparent 50%,var(--gold) 50%),
                   linear-gradient(135deg,var(--gold) 50%,transparent 50%);
  background-position:calc(100% - 20px) 50%,calc(100% - 14px) 50%;
  background-size:6px 6px,6px 6px;background-repeat:no-repeat;
  padding-right:2.6rem;
}
.field input:focus,.field select:focus,.field textarea:focus{
  outline:none;border-color:rgba(231,191,104,.6);
  box-shadow:0 0 0 3px rgba(231,191,104,.12);
}
.field input[aria-invalid="true"],.field textarea[aria-invalid="true"]{
  border-color:#E2555F;
}
.field-error{font-size:.75rem;color:#F08A92}
.lead-form .btn{margin-top:.4rem}
.form-status{
  font-size:.85rem;line-height:1.55;color:var(--muted);
  min-height:1.2em;
}
.form-status.is-error{color:#F08A92}
.form-status.is-ok{color:var(--gold-light)}
.form-status a{color:var(--gold-light);text-decoration:underline}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer{
  background:var(--black);
  border-top:1px solid rgba(247,247,245,.08);
  padding-block:clamp(3rem,9vw,5rem) 0;
}
.footer-grid{display:grid;gap:2.5rem}
.foot-brand img{width:170px;margin-bottom:1rem}
.foot-brand p{
  font-size:.62rem;font-weight:700;letter-spacing:.26em;text-transform:uppercase;
  color:rgba(184,184,194,.55);
}
.site-footer h2{
  font-size:.62rem;font-weight:700;letter-spacing:.26em;text-transform:uppercase;
  color:var(--gold);margin-bottom:1.1rem;
}
.site-footer ul{display:grid;gap:.6rem}
.site-footer li,.site-footer a{font-size:.9rem;color:var(--muted)}
.site-footer a{transition:color .3s var(--ease)}
.site-footer a:hover{color:var(--gold-light)}
.site-footer .is-placeholder{color:rgba(184,184,194,.38);font-style:italic}
.foot-base{
  margin-top:clamp(2.5rem,7vw,4rem);
  padding-block:1.5rem calc(1.5rem + env(safe-area-inset-bottom));
  border-top:1px solid rgba(247,247,245,.08);
  display:flex;flex-wrap:wrap;gap:.6rem 1.5rem;justify-content:space-between;
  font-size:.72rem;letter-spacing:.1em;color:rgba(184,184,194,.5);
}

/* ============================================================
   MOBILE STICKY CTA
   ============================================================ */
.sticky-cta{
  position:fixed;left:0;right:0;bottom:0;z-index:90;
  padding:.65rem var(--gutter) calc(.65rem + env(safe-area-inset-bottom));
  background:rgba(5,5,7,.86);
  backdrop-filter:blur(14px);-webkit-backdrop-filter:blur(14px);
  border-top:1px solid rgba(231,191,104,.16);
  transform:translateY(110%);
  transition:transform .45s var(--ease);
  display:flex;gap:.6rem;
}
.sticky-cta.is-visible{transform:none}
.sticky-cta .btn{min-height:46px;flex:1}
body.has-sticky-cta .site-footer{padding-bottom:78px}

/* ============================================================
   MORE THAN A PHOTO — floating frame collage (§29)
   ============================================================ */
.float-frames{
  position:relative;
  width:100%;
  aspect-ratio:4/5;
  max-width:520px;
  margin-inline:auto;
}
.ff{
  position:absolute;
  border:.5rem solid #FFFDF8;
  border-bottom-width:1.6rem;
  border-radius:2px;
  background:#FFFDF8;
  box-shadow:0 26px 60px -24px rgba(17,17,22,.45);
  overflow:hidden;
  will-change:transform;
}
.ff img{width:100%;height:100%;object-fit:cover;display:block}

.ff-1{width:52%;aspect-ratio:3/4;  left:0;      top:6%;   transform:rotate(-6deg); z-index:2}
.ff-2{width:46%;aspect-ratio:4/3;  right:2%;    top:0;    transform:rotate(5deg);  z-index:1}
.ff-3{width:48%;aspect-ratio:2/3;  right:6%;    bottom:0; transform:rotate(3deg);  z-index:3}

/* ============================================================
   TESTIMONIALS (markup ready; section stays hidden until
   real quotes exist — see config.flags.showTestimonials)
   ============================================================ */
.tst-grid{display:grid;gap:1.1rem}
.tst{
  padding:clamp(1.5rem,5vw,2.1rem);
  border:1px solid rgba(247,247,245,.10);border-radius:4px;
  background:linear-gradient(180deg,rgba(247,247,245,.035),rgba(247,247,245,.01));
}
.tst blockquote{
  margin:0 0 1.1rem;font-size:1.05rem;line-height:1.6;color:var(--white);
}
.tst blockquote::before{content:"\201C"}
.tst blockquote::after{content:"\201D"}
.tst figcaption{
  font-size:.64rem;font-weight:700;letter-spacing:.2em;text-transform:uppercase;
  color:var(--gold);
}
@media (min-width:768px){ .tst-grid{grid-template-columns:repeat(3,1fr)} }

/* honeypot — present in the DOM, never on screen (§ lead form) */
.hp{
  position:absolute !important;
  width:1px;height:1px;
  margin:-1px;padding:0;border:0;
  overflow:hidden;clip:rect(0 0 0 0);clip-path:inset(50%);
  white-space:nowrap;
}
