/* ==========================================================================
   Signature Catamarans — the cinematic layer
   Video, the pinned passage, parallax, and the configurator.
   Loaded after app.css. Everything here degrades to a static page under
   prefers-reduced-motion or when video can't play.
   ========================================================================== */

/* ============================ VIDEO HERO ============================ */
.vhero{
  position:relative;
  height:calc(100svh - var(--bar-h) - var(--tabs-h) - var(--safe-b));
  /* Tall enough that the copy block always clears the transparent header.
     On a short laptop window the old flex-end alignment pushed the headline
     up underneath the lockup; growing the hero and letting the page scroll a
     little is far better than two pieces of type on top of each other. */
  /* The film runs full-bleed behind a transparent header, so the box starts
     above the viewport. The floor therefore has to cover that overhang, the
     header itself and the copy block — otherwise on a short laptop window the
     headline rises underneath the lockup. Better a hero that scrolls a little
     than two pieces of type on top of each other. */
  min-height:calc(var(--bar-h) + 690px);max-height:940px;
  display:flex;align-items:flex-end;overflow:hidden;color:#fff;
  background:var(--green-900);
}
@media(max-width:899px){.vhero-media video,.vhero-media img{object-position:72% center}}
@media(min-width:900px){.vhero{height:calc(100svh - var(--bar-h))}}
.vhero-media{position:absolute;inset:0;overflow:hidden}
.vhero-media video,.vhero-media img{
  position:absolute;inset:0;width:100%;height:100%;object-fit:cover;
  object-position:64% center;
  will-change:transform;
}
.vhero-media::after{
  content:'';position:absolute;inset:0;
  background:
    linear-gradient(to top,rgba(10,32,38,.94) 0%,rgba(10,32,38,.50) 34%,rgba(10,32,38,.10) 62%,rgba(10,32,38,.46) 100%),
    radial-gradient(120% 80% at 20% 80%,rgba(31,74,85,.55) 0%,rgba(31,74,85,0) 60%);
}
.vhero-inner{
  position:relative;z-index:3;width:100%;
  padding-bottom:clamp(96px,16vh,190px);
}
.vhero h1{
  font-size:clamp(2.5rem,9vw,5.4rem);line-height:1.02;margin-bottom:.3em;
  text-shadow:0 4px 40px rgba(10,32,38,.5);
}
/* breathing room under the lockup, which sits directly above the headline
   while the header is still transparent over the film */
/* The brand lockup sits in the transparent header directly above this
   headline. vh alone is not enough on a short, wide window — the gap
   collapses exactly where the two are closest — so the floor is a real
   pixel value, not a percentage of a viewport that may be short. */
/* The copy sits in the lower part of the frame, clear of the lockup above it. */
@media(min-width:900px){
  .vhero-inner{padding-bottom:clamp(56px,9vh,120px)}
}
.vhero h1 em{font-style:normal;color:var(--green-200);display:block}
.vhero p{max-width:34ch;color:rgba(255,255,255,.92);font-size:clamp(1rem,3.4vw,1.2rem)}
.vhero .label{color:#fff}

/* word-by-word rise */
.rise > span{
  display:inline-block;opacity:0;transform:translateY(.7em);
  animation:riseIn .9s var(--ease) forwards;
}
@keyframes riseIn{to{opacity:1;transform:none}}

/* sound + scroll cue */
.vhero-cue{display:none}
@media(min-width:900px){
.vhero-cue{
  /* centred on the foot of the film, not tucked into the right margin —
     it reads as an instruction to the whole page rather than to one corner */
  display:flex;position:absolute;left:50%;right:auto;bottom:clamp(20px,4vh,40px);
  transform:translateX(-50%);
  z-index:4;flex-direction:column;align-items:center;gap:8px;
  font-size:.6rem;letter-spacing:.24em;text-transform:uppercase;color:rgba(255,255,255,.75);
}
}
.vhero-cue span{width:1px;height:38px;background:linear-gradient(to bottom,rgba(255,255,255,.9),transparent);
  animation:cueDrop 2.2s var(--ease) infinite}
@keyframes cueDrop{0%{transform:scaleY(0);transform-origin:top}45%{transform:scaleY(1);transform-origin:top}
  46%{transform-origin:bottom}100%{transform:scaleY(0);transform-origin:bottom}}

/* ============================ THE PASSAGE ============================ */
/* Pinned. Real photography, hard edges, hairline grid. No illustration. */
.passage{position:relative;height:340vh}
@media(max-width:720px){.passage{height:320vh}}
.passage-stage{
  position:sticky;top:0;height:100svh;overflow:hidden;
  background:#0B2026;color:#fff;
  display:flex;align-items:flex-end;
}
.passage-media{position:absolute;inset:0}
.passage-media figure{
  position:absolute;inset:0;margin:0;opacity:0;
  transition:opacity .7s var(--ease);
  will-change:opacity;
}
.passage-media figure.on{opacity:1}
.passage-media img{
  width:100%;height:100%;object-fit:cover;
  transform:scale(1.06);transition:transform 1.4s var(--ease);
}
.passage-media figure.on img{transform:scale(1)}
.passage-media::after{
  content:'';position:absolute;inset:0;z-index:1;
  background:
    linear-gradient(to top,rgba(11,32,38,.94) 0%,rgba(11,32,38,.60) 38%,rgba(11,32,38,.16) 72%,rgba(11,32,38,.34) 100%),
    linear-gradient(to right,rgba(11,32,38,.72) 0%,rgba(11,32,38,.18) 56%,rgba(11,32,38,0) 100%);
}

.passage-copy{
  position:relative;z-index:3;width:100%;
  padding-bottom:calc(var(--tabs-h) + var(--safe-b) + 76px);
}
@media(min-width:900px){.passage-copy{padding-bottom:clamp(96px,15vh,150px)}}
/* stacked in the padded wrap via grid, so the copy never touches the edge */
.passage-copy .wrap{display:grid}
.pstep{
  grid-area:1/1;align-self:end;
  opacity:0;transform:translateY(14px);
  transition:opacity .5s var(--ease),transform .5s var(--ease);
  pointer-events:none;
}
.pstep.on{opacity:1;transform:none;pointer-events:auto}
.pstep-head{display:flex;align-items:baseline;gap:14px;margin-bottom:.5rem}
.pnum{
  font-family:var(--f-disp);font-weight:700;line-height:1;
  font-size:clamp(2.4rem,7vw,4.6rem);color:var(--green-400);
}
.pkicker{
  font-size:.66rem;font-weight:700;letter-spacing:.24em;text-transform:uppercase;
  color:rgba(255,255,255,.72);position:relative;padding-left:44px;
}
.pkicker::before{
  content:'';position:absolute;left:0;top:.55em;width:32px;height:1px;background:currentColor;
}
.pstep h2{
  font-size:clamp(1.8rem,6vw,3.4rem);margin:0 0 .3em;
  text-shadow:0 3px 30px rgba(11,32,38,.5);
}
.pstep p{color:rgba(255,255,255,.9);max-width:38ch;margin-bottom:1.3rem}

/* precise progress rail */
.passage-rail{
  position:absolute;left:0;right:0;bottom:calc(var(--tabs-h) + var(--safe-b) + 18px);z-index:4;
  display:flex;gap:0;
}
@media(min-width:900px){.passage-rail{bottom:34px}}
.passage-rail div{
  flex:1;padding:0 clamp(18px,5vw,48px) 0 0;
}
.passage-rail div:first-child{padding-left:clamp(18px,5vw,48px)}
.passage-rail span{
  display:block;height:2px;background:rgba(255,255,255,.22);position:relative;overflow:hidden;
}
.passage-rail span::after{
  content:'';position:absolute;top:0;bottom:0;left:0;
  width:calc(var(--fill,0) * 100%);background:var(--green-400);
  transition:width .12s linear;
}
.passage-rail b{
  display:block;margin-top:9px;font-family:var(--f-body);font-size:.6rem;font-weight:700;
  letter-spacing:.2em;color:rgba(255,255,255,.45);
}
.passage-rail .on b{color:#fff}

/* ============================ MOTION FILM ============================ */
.film{position:relative;overflow:hidden;background:var(--green-900)}
.film-media{position:relative;width:100%;height:clamp(300px,58vh,520px)}
@media(min-width:900px){.film-media{height:clamp(420px,74vh,760px)}}
.film-media video,.film-media img{width:100%;height:100%;object-fit:cover}
.film-media::after{content:'';position:absolute;inset:0;
  background:linear-gradient(to top,rgba(10,32,38,.85),rgba(10,32,38,.05) 55%)}
.film-copy{position:absolute;left:0;right:0;bottom:0;z-index:2;padding:0 0 clamp(24px,5vw,54px);color:#fff}
.film-copy h2{margin-bottom:.25em}
.film-copy p{color:rgba(255,255,255,.85);max-width:44ch}
.film-play{
  position:absolute;inset:0;z-index:3;display:grid;place-items:center;border:0;background:none;cursor:pointer;
}
.film-play span{
  width:74px;height:74px;border-radius:50%;background:rgba(255,255,255,.16);
  border:1.5px solid rgba(255,255,255,.7);backdrop-filter:blur(6px);
  display:grid;place-items:center;transition:.3s var(--ease);
}
.film-play:hover span{background:var(--green-500);border-color:var(--green-500);transform:scale(1.06)}
.film-play svg{width:24px;height:24px;fill:#fff;margin-left:3px}
.film.playing .film-play{opacity:0;pointer-events:none}

/* ============================ PARALLAX + TILT ============================ */
.px{will-change:transform}
.tilt{transition:transform .5s var(--ease)}
@media(hover:hover) and (min-width:900px){
  .tilt{transform-style:preserve-3d}
}

/* counters */
.count{font-variant-numeric:tabular-nums}

/* ============================ CONFIGURATOR ============================ */
.cfg-hero{
  position:relative;overflow:hidden;border-radius:var(--r-lg);
  background:var(--green-900);color:#fff;padding:clamp(22px,4vw,40px);
  margin-bottom:20px;
}
.cfg-hero::before{
  content:'';position:absolute;inset:0;
  background:radial-gradient(90% 130% at 85% 10%,rgba(27,169,163,.42) 0%,rgba(27,169,163,0) 60%);
}
.cfg-hero > *{position:relative}
.cfg-hero h1{font-size:clamp(1.9rem,6.4vw,3rem);margin-bottom:.25em}
.cfg-hero p{color:rgba(255,255,255,.85);max-width:44ch;margin-bottom:0}

.cfg-grid{display:grid;gap:18px;min-width:0}
.cfg-grid > *{min-width:0}
@media(min-width:1000px){.cfg-grid{grid-template-columns:1fr 380px;align-items:start}}

/* step block */
.step-card{
  background:#fff;border:1px solid var(--line);border-radius:var(--r);
  padding:18px;margin-bottom:14px;
  transition:border-color .3s var(--ease),box-shadow .3s var(--ease);
}
.step-card.done{border-color:var(--green-200);box-shadow:0 0 0 3px var(--green-050)}
.step-head{display:flex;align-items:center;gap:12px;margin-bottom:14px}
.step-dot{
  width:30px;height:30px;flex:none;border-radius:50%;display:grid;place-items:center;
  background:var(--green-050);color:var(--green-700);
  font-size:.72rem;font-weight:700;border:1.5px solid var(--green-100);
  transition:.3s var(--ease);
}
.step-card.done .step-dot{background:var(--green-500);border-color:var(--green-500);color:#fff}
.step-card.done .step-dot::after{content:'✓'}
.step-card.done .step-dot b{display:none}
.step-head h3{margin:0;font-size:1.08rem}
.step-head small{display:block;font-family:var(--f-body);font-size:.66rem;letter-spacing:.14em;
  text-transform:uppercase;color:var(--ink-faint);font-weight:700}

/* option tiles */
.opts{display:grid;gap:10px;grid-template-columns:1fr}
@media(min-width:560px){.opts{grid-template-columns:repeat(2,1fr)}}
.opt{
  position:relative;text-align:left;border:1.5px solid var(--line-strong);border-radius:var(--r-sm);
  background:#fff;padding:12px 12px 12px 12px;cursor:pointer;
  transition:.25s var(--ease);min-height:64px;
  display:flex;align-items:center;gap:11px;
}
.opt:hover{border-color:var(--green-400)}
.opt.on{border-color:var(--green-500);background:var(--green-050);box-shadow:0 0 0 2px rgba(27,169,163,.18)}
.opt.on::after{
  content:'✓';position:absolute;top:8px;right:10px;color:var(--green-500);font-weight:700;font-size:.9rem;
}
.opt .opt-t{min-width:0;flex:1}
.opt b{display:block;font-size:.94rem;font-weight:700;line-height:1.25}
.opt small{display:block;font-size:.78rem;color:var(--ink-faint);line-height:1.35;margin-top:2px}
.sw{width:44px;height:44px;flex:0 0 44px;border-radius:10px;border:1px solid rgba(0,0,0,.14);
  box-shadow:inset 0 2px 6px rgba(0,0,0,.18)}
.sw-tex{background-size:cover;background-position:center}

/* cabin diagram */
.hulls{display:flex;gap:4px;align-items:center;flex:none}
.hull{width:11px;height:30px;border-radius:6px;background:var(--green-100);border:1px solid var(--green-200)}
.hull.f{background:var(--green-500);border-color:var(--green-500)}

/* summary panel */
.cfg-sum{
  background:var(--green-900);color:#fff;border-radius:var(--r);overflow:hidden;
  position:sticky;top:calc(var(--bar-h) + 12px);
}
.cfg-sum-top{padding:18px;display:flex;gap:14px;align-items:center;border-bottom:1px solid rgba(255,255,255,.12)}
.ring{width:70px;height:70px;flex:none;position:relative}
.ring svg{transform:rotate(-90deg);width:100%;height:100%}
.ring circle{fill:none;stroke-width:6}
.ring .bg{stroke:rgba(255,255,255,.18)}
.ring .fg{stroke:var(--green-400);stroke-linecap:round;transition:stroke-dashoffset .6s var(--ease)}
.ring b{position:absolute;inset:0;display:grid;place-items:center;font-family:var(--f-disp);font-size:1.05rem}
.cfg-sum-top h3{margin:0 0 .1em;font-size:1.15rem}
.cfg-sum-top p{margin:0;font-size:.8rem;color:rgba(255,255,255,.66)}
.cfg-lines{padding:6px 18px 14px;margin:0;list-style:none;font-size:.9rem}
.cfg-lines li{
  display:flex;justify-content:space-between;gap:14px;padding:9px 0;min-width:0;
  border-bottom:1px solid rgba(255,255,255,.09);
}
.cfg-lines li:last-child{border-bottom:0}
.cfg-lines span{color:rgba(255,255,255,.6);font-size:.68rem;letter-spacing:.13em;text-transform:uppercase;flex:none}
.cfg-lines b{font-weight:700;text-align:right;min-width:0;overflow-wrap:anywhere}
.cfg-lines b.pending{color:rgba(255,255,255,.4);font-weight:400;font-style:italic}
.cfg-sum-foot{padding:0 18px 18px;display:grid;gap:9px}
.cfg-name{
  width:100%;font:inherit;font-size:.95rem;padding:.7rem .85rem;border-radius:var(--r-sm);
  background:rgba(255,255,255,.10);border:1px solid rgba(255,255,255,.22);color:#fff;
}
.cfg-name::placeholder{color:rgba(255,255,255,.45)}
.cfg-name:focus{outline:2px solid var(--green-400);outline-offset:1px}
.cfg-send{position:relative;overflow:hidden}
.cfg-send.ready{animation:pulse 2.6s var(--ease) infinite}
@keyframes pulse{
  0%,100%{box-shadow:0 0 0 0 rgba(53,192,186,.55)}
  50%{box-shadow:0 0 0 12px rgba(53,192,186,0)}
}

/* mobile: summary becomes a docked bar */
.cfg-dock{
  position:fixed;left:0;right:0;bottom:calc(var(--tabs-h) + var(--safe-b));z-index:65;
  background:var(--green-900);color:#fff;display:flex;align-items:center;gap:12px;
  padding:10px 16px;box-shadow:var(--sh-up);
  transform:translateY(130%);transition:transform .4s var(--ease);
}
.cfg-dock.up{transform:translateY(0)}
.cfg-dock .ring{width:44px;height:44px}
.cfg-dock .ring b{font-size:.78rem}
.cfg-dock div{flex:1;min-width:0}
.cfg-dock strong{display:block;font-size:.92rem;line-height:1.2}
.cfg-dock small{color:rgba(255,255,255,.62);font-size:.72rem}
@media(min-width:1000px){.cfg-dock{display:none}}

/* the "complete" flash */
.cfg-done-note{
  display:none;margin-top:10px;padding:.8rem 1rem;border-radius:var(--r-sm);
  background:rgba(53,192,186,.16);border:1px solid rgba(53,192,186,.45);font-size:.88rem;
}
.cfg-done-note.show{display:block}

/* ============================ REDUCED MOTION ============================ */
@media(prefers-reduced-motion:reduce){
  .vhero-cue span,.cfg-send.ready{animation:none!important}
  .rise > span{opacity:1;transform:none;animation:none}
  .passage{height:auto}
  .passage-stage{position:static;height:auto;display:block;padding:0}
  .passage-media{position:relative;height:56vh}
  .passage-media figure{opacity:1;position:relative;height:100%}
  .passage-media figure ~ figure{display:none}
  .passage-media img{transform:none}
  .passage-copy{padding:34px 0}
  .passage-copy .wrap{display:block}
  .pstep{opacity:1;transform:none;pointer-events:auto;margin-bottom:30px}
  .pstep.on{transform:none}
  .passage-rail{display:none}
  .px{transform:none!important}
}


/* ============================ FACT STRIP ============================ */
/* Hard edges and hairlines — the sharp answer to a curved divider. */
.factstrip{
  background:var(--green-900);color:#fff;
  border-top:1px solid rgba(255,255,255,.10);
}
.factstrip .wrap{
  display:grid;grid-template-columns:repeat(2,1fr);
}
@media(min-width:760px){.factstrip .wrap{grid-template-columns:repeat(3,1fr)}}
/* five locations now, so it goes 2 → 3 → 5 rather than wrapping one orphan
   onto a second row */
@media(min-width:1100px){.factstrip .wrap{grid-template-columns:repeat(5,1fr)}}
.factstrip div{
  padding:16px 18px 16px 0;border-left:1px solid rgba(255,255,255,.13);
  padding-left:18px;
}
.factstrip div:first-child{border-left:0;padding-left:0}
@media(max-width:759px){
  .factstrip div:nth-child(n+3){border-top:1px solid rgba(255,255,255,.13)}
  .factstrip div:nth-child(odd){border-left:0;padding-left:0}
}
@media(min-width:760px) and (max-width:1099px){
  .factstrip div:nth-child(n+4){border-top:1px solid rgba(255,255,255,.13)}
  .factstrip div:nth-child(3n+1){border-left:0;padding-left:0}
}
.factstrip b{
  display:block;font-family:var(--f-disp);font-size:clamp(.95rem,2.6vw,1.15rem);
  font-weight:700;line-height:1.2;
}
.factstrip span{
  display:block;margin-top:3px;font-size:.62rem;font-weight:700;
  letter-spacing:.18em;text-transform:uppercase;color:rgba(255,255,255,.55);
}

/* ============================ HAIRLINE SECTION EDGES ============================ */
.sec-warm,.sec-mint{border-top:1px solid var(--line);border-bottom:1px solid var(--line)}
.sec-green{border-top:1px solid rgba(255,255,255,.10)}

/* squared-off hero bottom: no curve, just a crisp edge */
.vhero{border-bottom:0}

/* ============================ YOUTUBE FACADE ============================ */
.ytband{background:var(--green-900);color:#fff;padding:clamp(40px,7vw,84px) 0;
  border-top:1px solid rgba(255,255,255,.10)}
.ytband-head{margin-bottom:clamp(18px,3vw,28px);max-width:52ch}
.ytband-head .label{color:var(--green-200)}
.ytband-head h2{margin-bottom:.25em}
.ytband-head p{color:rgba(255,255,255,.82);margin:0}

.yt{
  position:relative;width:100%;aspect-ratio:16/9;overflow:hidden;
  background:#07171C;border:1px solid rgba(255,255,255,.14);
  border-radius:var(--r);
}
.yt img,.yt iframe{position:absolute;inset:0;width:100%;height:100%;border:0}
.yt img{object-fit:cover;filter:saturate(.85) brightness(.72);transition:transform .8s var(--ease)}
.yt:hover img{transform:scale(1.03)}
.yt-play{
  position:absolute;inset:0;z-index:2;display:grid;place-items:center;
  border:0;background:none;cursor:pointer;
}
.yt-play span{
  width:76px;height:76px;border-radius:50%;
  background:rgba(255,255,255,.14);border:1.5px solid rgba(255,255,255,.75);
  backdrop-filter:blur(6px);display:grid;place-items:center;
  transition:.3s var(--ease);
}
.yt-play:hover span{background:var(--green-500);border-color:var(--green-500);transform:scale(1.06)}
.yt-play svg{width:26px;height:26px;fill:#fff;margin-left:4px}
.yt-badge{
  position:absolute;left:14px;bottom:14px;z-index:2;
  font-size:.58rem;font-weight:700;letter-spacing:.18em;text-transform:uppercase;
  color:rgba(255,255,255,.72);background:rgba(7,23,28,.6);
  padding:.45em .8em;border:1px solid rgba(255,255,255,.2);
}
.yt.playing .yt-play,.yt.playing .yt-badge,.yt.playing img{display:none}

/* ============================ HERO FILM ============================
   A 16:9 YouTube player made to behave like object-fit:cover. The player box
   is always 16:9, so it is sized off whichever axis is short and scaled up
   until it fills — the same maths object-fit does, done by hand because an
   iframe cannot be object-fitted. */
.yt-cover{
  position:absolute;inset:0;overflow:hidden;z-index:1;
  opacity:0;transition:opacity 1s var(--ease);pointer-events:none;
  background-size:cover;background-position:center;
}
.yt-cover.on{opacity:1}
.yt-cover iframe{
  opacity:0;transition:opacity .8s var(--ease);
  position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);
  border:0;pointer-events:none;
  /* cover: whichever of these is larger wins */
  width:max(100%,177.78vh);      /* 16/9 of the viewport height  */
  height:max(100%,56.25vw);      /* 9/16 of the viewport width   */
}
.yt-cover iframe.on{opacity:1}
.vhero-media::after{z-index:2}
.vhero-inner{z-index:3}

/* the sound button, bottom-left of the hero */
.vhero-sound{
  position:absolute;left:clamp(14px,4vw,40px);bottom:clamp(14px,3vh,28px);z-index:4;
  display:inline-flex;align-items:center;gap:.6rem;
  min-height:44px;padding:0 1.05rem 0 .85rem;
  border:1px solid rgba(255,255,255,.35);border-radius:var(--r-pill);cursor:pointer;
  background:rgba(10,32,38,.5);backdrop-filter:blur(10px);color:#fff;
  font-family:var(--f-body);font-size:.68rem;font-weight:700;
  letter-spacing:.12em;text-transform:uppercase;
  transition:background .2s var(--ease),border-color .2s var(--ease);
}
.vhero-sound:hover{background:rgba(10,32,38,.72);border-color:rgba(255,255,255,.6)}
.vhero-sound svg{width:16px;height:16px;fill:currentColor;flex:none}
@media(max-width:520px){.vhero-sound span{display:none}
  .vhero-sound{padding:0;width:44px;justify-content:center}}

/* --- the autumn season strip ------------------------------------------- */
.season{
  display:flex;flex-wrap:wrap;align-items:center;gap:10px 16px;
  margin-top:1.4rem;padding:12px 14px;
  border-radius:var(--r);border:1px solid rgba(255,255,255,.22);
  background:rgba(10,32,38,.42);backdrop-filter:blur(10px);
  animation:bootIn .8s var(--ease) .5s both;
}
.season[hidden]{display:none}
.season-lead{
  font-size:.58rem;letter-spacing:.2em;text-transform:uppercase;
  color:var(--green-200);flex:0 0 100%;
}
.season-next{display:flex;align-items:baseline;gap:.5rem;color:#fff}
.season-next b{font-family:var(--f-disp);font-size:1.02rem;font-weight:700;line-height:1.2}
.season-next span{font-size:.78rem;color:rgba(255,255,255,.72)}
.season-count{display:flex;gap:8px;margin-left:auto}
.season-count div{
  min-width:44px;padding:5px 8px;border-radius:var(--r-sm);text-align:center;
  background:rgba(255,255,255,.12);
}
.season-count b{display:block;font-family:var(--f-disp);font-size:1.05rem;color:#fff;line-height:1.1}
.season-count span{font-size:.52rem;letter-spacing:.14em;text-transform:uppercase;color:rgba(255,255,255,.66)}
.season-more{
  flex:0 0 100%;font-size:.76rem;color:rgba(255,255,255,.72);margin:0;
}
.season-more a{color:var(--green-200);font-weight:700;text-decoration:underline;text-underline-offset:2px}
@media(min-width:900px){.season{max-width:560px}}
@media(max-width:400px){
  .season-count div{min-width:38px;padding:4px 6px}
  .season-next b{font-size:.95rem}
}

@media(prefers-reduced-motion:reduce){
  .season,.vhero-reel-btn{animation:none;transition:none}
}

/* ---- configurator header: name and progress, no photograph ---------------- */
.cfg-wrap{padding-top:clamp(14px,2.4vw,26px);padding-bottom:clamp(40px,6vw,72px)}
.cfg-head{
  position:relative;
  display:flex;align-items:flex-end;justify-content:space-between;gap:18px;flex-wrap:wrap;
  padding-bottom:14px;margin-bottom:clamp(14px,2.4vw,22px);
  border-bottom:1px solid var(--line);
}
.cfg-head-name .label{margin-bottom:6px}
.cfg-head h1{font-size:clamp(1.7rem,4.6vw,2.6rem);line-height:1.05;margin:0}
.cfg-head-prog{display:flex;align-items:center;gap:12px;flex:0 1 260px;min-width:180px}
.cfg-prog-txt{
  font-family:var(--f-ui);font-size:.66rem;letter-spacing:.13em;text-transform:uppercase;
  color:var(--ink-faint);white-space:nowrap;
}
.cfg-prog-txt b{color:var(--green-700);font-size:.9rem}
.cfg-prog-rail{
  flex:1;height:3px;border-radius:2px;background:var(--green-050);overflow:hidden;min-width:70px;
}
.cfg-prog-rail i{
  display:block;height:100%;background:linear-gradient(90deg,var(--green-500),var(--green-700));
  transition:width .5s var(--ease);
}

/* On a laptop the recap now starts level with the first step and stays put
   while options are chosen — it is the thing you are checking against. */
@media(min-width:1000px){
  .cfg-col-sum{position:sticky;top:calc(var(--bar-h) + 12px);align-self:start}
  /* Leave room beneath the panel so a sticky column that outlives its
     neighbour still stops short of whatever section comes next. */
  .cfg-sum{
    position:static;max-height:calc(100svh - var(--bar-h) - 60px);overflow:auto;
    margin-bottom:24px;
  }
}
/* Below that the recap cannot follow, so the header does instead: a slim bar
   that keeps the boat and the count on screen without eating the viewport. */
@media(max-width:999px){
  .cfg-head{
    position:sticky;top:var(--bar-h);z-index:20;background:var(--paper);
    padding:10px 0;margin-bottom:14px;
  }
  /* bleed the sticky bar's background to the edges without negative margins,
     which fight the wrap's own responsive padding */
  .cfg-head::before{
    content:'';position:absolute;left:-50vw;right:-50vw;top:0;bottom:0;
    background:var(--paper);border-bottom:1px solid var(--line);z-index:-1;
  }
  .cfg-head{border-bottom:0}
  .cfg-head h1{font-size:clamp(1.25rem,5vw,1.6rem)}
  .cfg-head-name .label{display:none}
  .cfg-head-prog{flex:1 1 130px}
}

/* tighter steps: nine cards should not read as nine pages */
.step-card{padding:15px 16px;margin-bottom:11px}
.step-card .step-head{margin-bottom:8px}
@media(min-width:1000px){.cfg-grid{gap:26px}}

/* the progress block doubles as the way into the recap on narrow screens */
.cfg-head-prog{
  border:0;background:none;padding:0;cursor:pointer;text-align:left;font:inherit;color:inherit;
}
.cfg-head-prog:focus-visible{outline:2px solid var(--green-500);outline-offset:4px;border-radius:6px}
.cfg-prog-open{
  display:none;font-family:var(--f-ui);font-size:.62rem;letter-spacing:.13em;
  text-transform:uppercase;color:var(--green-700);white-space:nowrap;
}
.cfg-prog-open::after{content:' \203A';font-size:1.1em}
@media(max-width:999px){
  .cfg-prog-open{display:inline}
  .cfg-head-prog{display:flex;align-items:center;gap:10px}
}
@media(min-width:1000px){.cfg-head-prog{cursor:default}}
/* the recap when it is shown in the sheet rather than the column */
.cfg-sheet-sum .cfg-sum{position:static;max-height:none}

/* ==========================================================================
   THE BUILDER — screen one: choosing the hull
   ========================================================================== */
.cfg-pick-head{max-width:64ch;margin-bottom:clamp(22px,3.4vw,38px)}
.cfg-pick-head h1{font-size:clamp(1.9rem,5.6vw,2.9rem);margin:0 0 .35em}
.cfg-resume{
  margin-top:22px;display:flex;flex-wrap:wrap;align-items:center;gap:14px;
  padding:14px 16px;border:1px solid var(--green-200);background:var(--green-050);
  border-radius:var(--r-sm);
}
.cfg-resume small{
  display:block;font-size:.62rem;letter-spacing:.14em;text-transform:uppercase;
  color:var(--green-700);margin-bottom:3px;
}
.cfg-resume b{font-family:var(--f-disp);font-size:1.02rem}
.cfg-resume .btn{margin-left:auto;min-height:42px;padding:0 1.1rem;font-size:.72rem}

.cfg-pick-group{margin-bottom:clamp(26px,4vw,46px)}
.cfg-pick-title{
  display:flex;flex-wrap:wrap;align-items:baseline;gap:6px 14px;
  padding-bottom:10px;margin-bottom:16px;border-bottom:1px solid var(--line);
}
.cfg-pick-title h2{margin:0;font-size:clamp(1.15rem,3vw,1.45rem)}
.cfg-pick-title p{margin:0;font-size:.86rem;color:var(--ink-faint)}

.pickgrid{display:grid;gap:14px;grid-template-columns:repeat(auto-fill,minmax(232px,1fr))}
.pickcard{
  display:block;text-align:left;background:#fff;border:1px solid var(--line);
  border-radius:var(--r-sm);overflow:hidden;cursor:pointer;
  transition:border-color .25s var(--ease),box-shadow .25s var(--ease),transform .25s var(--ease);
}
.pickcard:hover{border-color:var(--green-400);box-shadow:var(--sh-2);transform:translateY(-2px)}
.pickcard:focus-visible{outline:2px solid var(--green-500);outline-offset:3px}
.pickcard-img{display:block;position:relative;aspect-ratio:4/3;background:var(--green-050)}
.pickcard-img img{width:100%;height:100%;object-fit:cover;display:block}
.pickcard-go{
  position:absolute;left:10px;bottom:10px;z-index:2;
  padding:6px 12px;border-radius:var(--r-pill);
  background:rgba(255,255,255,.94);color:var(--green-700);
  font-size:.62rem;font-weight:800;letter-spacing:.13em;text-transform:uppercase;
  opacity:0;transform:translateY(6px);transition:.28s var(--ease);
}
.pickcard:hover .pickcard-go,.pickcard:focus-visible .pickcard-go{opacity:1;transform:none}
.pickcard-body{display:block;padding:13px 15px 15px}
.pickcard-body b{display:block;font-family:var(--f-disp);font-size:1.06rem;line-height:1.2}
.pickcard-spec{display:block;margin-top:3px;font-size:.82rem;color:var(--ink-soft)}
.pickcard-opts{
  display:block;margin-top:8px;font-size:.6rem;font-weight:700;letter-spacing:.12em;
  text-transform:uppercase;color:var(--green-600);
}
.cfg-pick-note{max-width:70ch;margin-top:4px}

/* ==========================================================================
   THE BUILDER — screen two: the option list
   ========================================================================== */
.cfg-back{
  display:inline-flex;align-items:center;gap:6px;margin-bottom:8px;
  font-size:.62rem;font-weight:800;letter-spacing:.14em;text-transform:uppercase;
  color:var(--green-600);cursor:pointer;background:none;border:0;padding:0;
}
.cfg-back::before{content:'\2039';font-size:1.25em;line-height:1}
.cfg-back:hover{color:var(--green-800)}
.cfg-lead{margin:0 0 12px}

.cfg-cat{
  background:#fff;border:1px solid var(--line);border-radius:var(--r-sm);
  margin-bottom:9px;overflow:hidden;
  transition:border-color .25s var(--ease),box-shadow .25s var(--ease);
}
.cfg-cat.done{border-color:var(--green-200)}
.cfg-cat.open{box-shadow:var(--sh-1)}

.cfg-cat-head{
  width:100%;display:grid;grid-template-columns:auto 1fr auto auto;align-items:center;
  gap:12px;padding:14px 16px;text-align:left;cursor:pointer;background:none;border:0;
}
.cfg-cat-head:focus-visible{outline:2px solid var(--green-500);outline-offset:-3px}
.cfg-cat-no{
  width:30px;height:30px;flex:none;display:grid;place-items:center;border-radius:50%;
  border:1px solid var(--line-strong);background:#fff;
  font-family:var(--f-disp);font-size:.76rem;color:var(--ink-faint);
  transition:.25s var(--ease);
}
.cfg-cat.done .cfg-cat-no{background:var(--green-500);border-color:var(--green-500);color:#fff;font-size:0}
.cfg-cat.done .cfg-cat-no::after{content:'\2713';font-size:.86rem}
.cfg-cat-name{
  min-width:0;font-family:var(--f-disp);font-size:1rem;font-weight:700;line-height:1.2;color:var(--ink);
}
.cfg-cat-name em{
  display:block;font-family:var(--f-body);font-style:normal;
  font-size:.58rem;font-weight:700;letter-spacing:.14em;text-transform:uppercase;
  color:var(--ink-faint);margin-top:3px;
}
.cfg-cat-state{
  min-width:0;text-align:right;font-size:.78rem;color:var(--ink-faint);
  overflow:hidden;text-overflow:ellipsis;white-space:nowrap;max-width:15ch;
}
.cfg-cat.done .cfg-cat-state{color:var(--green-700);font-weight:600}
.cfg-cat-chev{
  width:16px;height:16px;flex:none;position:relative;transition:transform .3s var(--ease);
}
.cfg-cat-chev::before,.cfg-cat-chev::after{
  content:'';position:absolute;top:7px;width:9px;height:1.6px;background:var(--ink-faint);border-radius:2px;
}
.cfg-cat-chev::before{left:0;transform:rotate(45deg)}
.cfg-cat-chev::after{right:0;transform:rotate(-45deg)}
.cfg-cat.open .cfg-cat-chev{transform:rotate(180deg)}

.cfg-cat-body{display:none;padding:0 16px 16px}
.cfg-cat.open .cfg-cat-body{display:block;animation:catopen .32s var(--ease)}
@keyframes catopen{from{opacity:0;transform:translateY(-6px)}to{opacity:1;transform:none}}

@media(max-width:520px){
  .cfg-cat-head{grid-template-columns:auto 1fr auto;gap:10px;padding:13px 13px}
  .cfg-cat-state{grid-column:2/4;grid-row:2;text-align:left;max-width:100%}
}

/* the contents of a pack, revealed once it is chosen */
.opt-list{display:none}
.opt.on .opt-list{
  display:block;margin-top:9px;padding-top:9px;border-top:1px solid var(--green-200);
}
.opt-list em{
  display:block;font-style:normal;font-size:.56rem;font-weight:800;letter-spacing:.14em;
  text-transform:uppercase;color:var(--green-700);margin-bottom:5px;
}
.opt-list i{
  display:block;font-style:normal;font-size:.74rem;line-height:1.45;color:var(--ink-soft);
  padding-left:11px;position:relative;
}
.opt-list i::before{content:'';position:absolute;left:0;top:.62em;width:4px;height:1px;background:var(--green-400)}
.opt.has-shot .opt-shot{
  width:74px;height:74px;flex:none;border-radius:10px;overflow:hidden;background:var(--green-050);
}
.opt.has-shot .opt-shot img{width:100%;height:100%;object-fit:cover;display:block}

/* the header used to sit on one line because the old h1 was a short model
   name under a kicker; with the "All models" control above it and a longer
   name beside the progress rail, narrow screens need it stacked */
@media(max-width:720px){
  .cfg-head{display:block;padding-bottom:12px}
  .cfg-head-name{margin-bottom:12px}
  .cfg-head-prog{width:100%;flex:1 1 auto;justify-content:flex-start}
  .cfg-head-prog .cfg-prog-rail{flex:1 1 auto;min-width:60px}
  .cfg-prog-open{margin-left:auto}
}
