/* © UMC Dubai LLC. All rights reserved. */
/* ----------------------------------------------------------------
   S-Class fleet page,page-scoped styles
   Scope: .sc-*  · Tokens: only those defined in style.css :root
   Template for the remaining 7 fleet pages.
---------------------------------------------------------------- */

/* ---------- shared: lock body scroll while a modal is open ---------- */
body.sc-no-scroll{overflow:hidden}

/* ---------- subtle institutional load-in: hero reveals on paint, sections
   on scroll. Restrained: opacity + small translateY, ~500ms ease-out. ---------- */
.sc-hero,.sc-int,.sc-am,.sc-paper,.sc-chau,.sc-also,.closing.band-dark{
  opacity:0;transform:translateY(8px);
  transition:opacity .55s cubic-bezier(.2,.6,.2,1), transform .55s cubic-bezier(.2,.6,.2,1);
}
.sc-hero.sc-in,.sc-int.sc-in,.sc-am.sc-in,.sc-paper.sc-in,.sc-chau.sc-in,.sc-also.sc-in,.closing.sc-in{
  opacity:1;transform:translateY(0);
}
@media (prefers-reduced-motion:reduce){
  .sc-hero,.sc-int,.sc-am,.sc-paper,.sc-chau,.sc-also,.closing.band-dark{
    opacity:1;transform:none;transition:none;
  }
}

/* ---------- 1 · HERO,institutional full-bleed image, caption overlaid ---------- */
/* v78: the hero fills the viewport below the sticky header. Image is an
   absolute inset:0 cover-fill; caption sits at bottom-left over a gradient
   scrim on the image (no ink box). Per-breakpoint --hdr matches the live
   header height: 80 (mobile) / 130 (two-row narrow desktop) / 81 (one-row
   wide desktop). Placeholder pages render the inline SVG inside the same
   stage and so fill the same viewport. */
.sc-hero{position:relative;background:var(--ink);overflow:hidden;border-bottom:1px solid var(--hair);
  --hdr:80px;
  min-height:calc(100vh - var(--hdr));
  min-height:calc(100svh - var(--hdr))}
@media (min-width:860px){.sc-hero{--hdr:130px}}
@media (min-width:1280px){.sc-hero{--hdr:81px}}

.sc-hero__stage{position:absolute;inset:0;margin:0;overflow:hidden}
.sc-hero__img{width:100%;height:100%;display:block;object-fit:cover;
  /* v89: object-position now reads CSS variables, not an inline declaration,
     so the mobile @media rule (which sets var(--hero-pos-mobile, ...)) can
     actually win on phones (equal specificity, later in cascade). Each car
     sets --hero-pos and --hero-pos-mobile inline via build_pages.py from
     car["hero_object_pos"] / car["hero_object_pos_mobile"]. */
  object-position:var(--hero-pos, 50% 50%)}
/* Vehicle-name H1 lives in the stage but shows only on mobile (<=600px), where
   it sits low over the image; hidden on desktop/tablet so those stay identical.
   Declared BEFORE the mobile block so the mobile display:block wins the cascade. */
.sc-hero__name{display:none}
/* v88 — 3-tier responsive hero.
   Phones (<=600px): portrait frame so the front-centred crops the per-car
   --hero-pos-mobile values were tuned for actually land. Below 380 we shift
   the X further to compensate for the narrower portrait box.
   Tablets (601-1024px): capped landscape band, NOT full-viewport, NOT
   portrait. Inline desktop object-position centre value applies.
   Wide desktop (>=1025px): full-bleed but capped so ultrawide and tall
   screens don't over-stretch the 1200px source. */
@media (max-width:600px){
  /* Mirror the homepage mobile hero. The 380px HORIZONTAL image frame carries
     ONLY the vehicle name (an H1) low over a fade-to-black gradient (reusing the
     homepage .h2scrim values); the marque, tagline, sub and CTA are relocated
     BELOW the frame on the ink background (visible, not hidden). The .sc-hero
     grows to fit; the image frame itself stays 380px with the same per-image
     object-position from the last pass. */
  .sc-hero{height:auto;min-height:0;max-height:none;aspect-ratio:auto;overflow:visible;background:var(--ink)}
  .sc-hero__stage{position:relative;height:380px}
  .sc-hero__img{object-position:var(--hero-pos-mobile,50% 50%)}
  /* Mobile hero fade-to-black kept ONLY on .sc-hero--mfade (gmc-yukon-xl, lexus-es).
     Every other vehicle hero shows the image clean at mobile (::after suppressed,
     also overriding the desktop base scrim), with a stronger H1 shadow below. */
  .sc-hero:not(.sc-hero--mfade) .sc-hero__stage::after{background:none}
  .sc-hero--mfade .sc-hero__stage::after{background:linear-gradient(180deg,rgba(20,15,9,.4) 0%,rgba(20,15,9,.5) 45%,rgba(12,8,4,.82) 78%,rgba(4,3,1,.97) 100%)}
  .sc-hero:not(.sc-hero--mfade) .sc-hero__name{text-shadow:0 1px 3px rgba(0,0,0,.78),0 2px 22px rgba(0,0,0,.6)}
  .sc-hero__name{display:block;position:absolute;left:0;right:0;bottom:0;z-index:2;margin:0;
    padding:0 clamp(1.1rem,4vw,1.6rem) clamp(16px,4vh,26px);
    font-family:var(--serif);font-weight:400;color:var(--bone);
    font-size:clamp(1.5rem,6.4vw,2.1rem);line-height:1.1;letter-spacing:.005em;
    text-shadow:0 2px 18px rgba(0,0,0,.5)}
}
@media (min-width:601px) and (max-width:1024px){
  .sc-hero{height:clamp(440px,62vh,600px);min-height:0;aspect-ratio:auto}
}
@media (min-width:1025px){
  /* Match the homepage hero (.hero2, style.css) fit logic exactly: fill the
     viewport minus the header, uncapped, so ultrawide/tall screens don't leave
     the hero short. object-fit:cover + per-image --hero-pos keep the crop sane. */
  .sc-hero{min-height:calc(100vh - var(--hdr));min-height:calc(100svh - var(--hdr))}
}
.sc-hero__stage::after{content:"";position:absolute;inset:0;pointer-events:none;
  background:linear-gradient(
    rgba(34,27,20,0) 26%,
    rgba(34,27,20,.46) 58%,
    rgba(34,27,20,.80) 83%,
    rgba(34,27,20,.93) 100%)}

.sc-hero__caps{position:absolute;left:0;right:0;bottom:0;background:none;color:var(--bone);
  padding:0 var(--gutter,52px) clamp(28px,5vh,64px)}
.sc-hero__caps-inner{max-width:680px;margin:0;display:flex;flex-direction:column;align-items:flex-start;gap:1rem}
.sc-hero__kicker{font-family:var(--sans);font-weight:500;font-size:.72rem;letter-spacing:.42em;text-transform:uppercase;color:#E0894A;margin-bottom:.2rem}
.sc-hero__tagline{font-family:var(--serif);font-weight:400;font-size:clamp(1.45rem,3.6vw,2.3rem);line-height:1.16;letter-spacing:.005em;color:#F6F1E7;max-width:24ch;text-shadow:0 1px 24px rgba(0,0,0,.35)}
.sc-hero__sub{margin-top:.2rem;font-family:var(--sans);font-weight:300;font-size:clamp(.88rem,1.2vw,.98rem);line-height:1.5;color:#E6DDC9;max-width:48ch;text-shadow:0 1px 18px rgba(0,0,0,.45)}
.sc-hero__ctas{display:flex;gap:.7rem;flex-wrap:wrap;align-items:center}
.sc-hero__ctas .btn-ink{background:var(--bone);color:var(--ink);border-color:var(--bone)}
.sc-hero__ctas .btn-ink:hover{background:#fff}

@media (max-width:859px){
  .sc-hero__caps{padding:0 clamp(1.1rem,4vw,1.6rem) clamp(20px,4vh,36px)}
  .sc-hero__caps-inner{gap:.85rem}
  .sc-hero__tagline{font-size:clamp(1.2rem,5vw,1.7rem)}
}
@media (max-width:600px){
  /* Relocated caps below the 380px image frame, on the ink background (placed
     after the <=859 rule so this padding wins the cascade). Light caption text
     stays legible on ink — no colour changes needed. */
  .sc-hero__caps{position:static;left:auto;right:auto;bottom:auto;margin:0;
    padding:clamp(20px,4.5vh,28px) clamp(1.1rem,4vw,1.6rem) clamp(24px,5vh,34px)}
}

/* ---------- 2 · INTERIOR,primary hotspot image (left) + 2x2 detail grid (right) ---------- */
.sc-int{padding:clamp(3.4rem,8vw,6rem) 0 clamp(3rem,7vw,5rem);background:var(--bone)}
.sc-int__head{max-width:var(--wrap);margin:0 auto;padding:0 clamp(1.1rem,4vw,2rem);display:grid;grid-template-columns:1fr;gap:1.2rem;margin-bottom:clamp(2.4rem,5vw,3.4rem)}
@media (min-width:880px){.sc-int__head{grid-template-columns:.8fr 1.2fr;gap:3.6rem;align-items:end}}
.sc-int__head .lbl{display:block;margin-bottom:.8rem}
.sc-int__head h2{font-size:clamp(1.8rem,4.2vw,2.7rem);max-width:18ch}
.sc-int__head .lede{font-size:1.04rem;color:var(--ink-soft);max-width:50ch;line-height:1.62}
.sc-int__head .lede em{font-style:italic;color:var(--ink)}

/* Cap so detail cells stop scaling up past the 1000-px-wide source images
   on ultrawide displays. Sensible default,tune live on the 3440 display. */
.sc-int__canvas{max-width:1280px;margin:0 auto;padding:0 clamp(1.1rem,4vw,2rem)}
.sc-int__grid{display:grid;grid-template-columns:1fr;gap:1rem;align-items:stretch}
@media (min-width:900px){.sc-int__grid{grid-template-columns:1.35fr 1fr;gap:1rem}}

/* Primary cabin image,16/9 aspect matches the source image (no crop), and
   the math (1.35fr primary at 16/9 + 1fr details at 4/3 over two rows) makes
   the column bottoms land at the same line without forcing the cells to a
   weird portrait shape that softens the small images. */
.sc-int__primary{position:relative;background:var(--card);border:1px solid var(--hair);border-radius:3px;overflow:hidden;line-height:0;transition:transform .35s cubic-bezier(.2,.6,.2,1)}
.sc-int__primary:hover{transform:translateY(-1px)}
.sc-int__photo{display:block;width:100%;height:auto;aspect-ratio:16/9;object-fit:cover;background:var(--bone-2)}

/* 2x2 detail grid,cells at 4/3 aspect (closer to the source's 16/9 than the
   stretched 1.19/1 cells we had, so the small images stay crisp). */
.sc-int__details{display:grid;grid-template-columns:1fr 1fr;gap:.8rem;line-height:0;align-content:start}
.sc-int__detail{display:block;width:100%;height:auto;aspect-ratio:4/3;object-fit:cover;background:var(--bone-2);border:1px solid var(--hair);border-radius:3px;transition:transform .35s cubic-bezier(.2,.6,.2,1)}
.sc-int__detail:hover{transform:translateY(-1px)}
@media (max-width:560px){.sc-int__detail{aspect-ratio:1/1}}
@media (prefers-reduced-motion:reduce){
  .sc-int__primary,.sc-int__detail{transition:none}
  .sc-int__primary:hover,.sc-int__detail:hover{transform:none}
}

/* ---------- 3 · AMENITIES,square cards, 3x2 desktop ---------- */
.sc-am{padding:clamp(3rem,7vw,5rem) 0;background:var(--bone-2);border-block:1px solid var(--hair)}
.sc-am__head{max-width:var(--wrap);margin:0 auto 2.4rem;padding:0 clamp(1.1rem,4vw,2rem);text-align:center}
.sc-am__head .lbl{display:inline-block;margin-bottom:.8rem}
.sc-am__head h2{font-size:clamp(1.6rem,3.8vw,2.3rem)}
.sc-am__head .lede{margin:.7rem auto 0;font-size:.98rem;max-width:54ch}
/* Squares, 6-in-a-row on desktop,original compact card size. */
.sc-am__grid{max-width:var(--wrap);margin:0 auto;padding:0 clamp(1.1rem,4vw,2rem);display:grid;grid-template-columns:repeat(2,1fr);gap:.7rem}
@media (min-width:560px){.sc-am__grid{grid-template-columns:repeat(3,1fr);gap:.8rem}}
@media (min-width:880px){.sc-am__grid{grid-template-columns:repeat(6,1fr);gap:.9rem}}
.sc-am__cell{background:var(--card);border:1px solid var(--hair);border-radius:3px;padding:.9rem .55rem;display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center;aspect-ratio:1/1;position:relative;transition:transform .28s cubic-bezier(.3,.6,.2,1), border-color .28s ease;gap:.45rem}
.sc-am__cell .ico{display:flex;align-items:center;justify-content:center;width:34px;height:34px;color:var(--ink);transition:transform .28s cubic-bezier(.3,.6,.2,1)}
.sc-am__cell .ico svg{width:24px;height:24px;fill:none;stroke:currentColor;stroke-width:1.3;stroke-linecap:round;stroke-linejoin:round}
.sc-am__cell b{display:block;font-family:var(--serif);font-weight:400;font-size:.85rem;color:var(--ink);letter-spacing:.005em;line-height:1.2;margin:0;position:relative;padding-bottom:.35rem}
.sc-am__cell b::after{content:"";position:absolute;left:50%;bottom:0;width:0;height:1px;background:var(--amber);transition:width .35s ease;transform:translateX(-50%)}
.sc-am__cell .meta{display:block;font-family:var(--sans);font-size:.56rem;letter-spacing:.16em;text-transform:uppercase;color:var(--muted);line-height:1.3}
.sc-am__cell:hover{transform:translateY(-2px);border-color:rgba(34,27,20,.22)}
.sc-am__cell:hover .ico{transform:translateY(-2px)}
.sc-am__cell:hover b::after{width:30px}
@media (prefers-reduced-motion:reduce){
  .sc-am__cell,.sc-am__cell .ico,.sc-am__cell b::after{transition:none}
  .sc-am__cell:hover,.sc-am__cell:hover .ico{transform:none}
}

/* ---------- 4 · ON PAPER,facts card + small modal triggers below each value ---------- */
.sc-paper{padding:clamp(3rem,7vw,5rem) 0;background:var(--bone)}
.sc-paper__wrap{max-width:780px;margin:0 auto;padding:0 clamp(1.1rem,4vw,2rem)}
.sc-paper__head{text-align:center;margin-bottom:2rem}
.sc-paper__head .lbl{display:inline-block;margin-bottom:.8rem}
.sc-paper__head h2{font-size:clamp(1.6rem,3.8vw,2.2rem)}
.sc-paper .card{background:var(--card);border:1px solid var(--hair);border-radius:3px;padding:clamp(1.6rem,4vw,2.4rem);box-shadow:0 18px 40px -28px rgba(34,27,20,.35)}
.sc-paper .rows{margin:0 0 1.6rem;border-top:1px solid var(--hair)}
.sc-paper .rows .row{display:grid;grid-template-columns:1fr auto;align-items:start;padding:1rem 0;border-bottom:1px solid var(--hair);gap:1rem}
.sc-paper .rows .k{font-family:var(--sans);font-weight:500;font-size:.72rem;letter-spacing:.24em;text-transform:uppercase;color:var(--muted);padding-top:.35rem}
.sc-paper .rows .v{display:flex;flex-direction:column;align-items:flex-end;gap:.35rem;text-align:right}
.sc-paper .rows .v .vmain{font-family:var(--serif);font-size:1.12rem;color:var(--ink);letter-spacing:.01em;line-height:1.2}
/* Small modal trigger,sits below the value, quiet uppercase underlined link. */
.sc-mt{font-family:var(--sans);font-weight:500;font-size:.62rem;letter-spacing:.22em;text-transform:uppercase;color:var(--muted);background:transparent;border:0;padding:.18rem 0;cursor:pointer;border-bottom:1px solid var(--amber);transition:.2s;line-height:1}
.sc-mt:hover{color:var(--ink);border-bottom-color:var(--ink)}
.sc-mt:focus-visible{outline:2px solid var(--amber);outline-offset:3px}
.sc-mt[aria-expanded="true"]{color:var(--ink);border-bottom-color:var(--ink)}

.sc-paper p{margin-top:.4rem;font-size:.95rem;color:var(--ink-soft);line-height:1.72;max-width:62ch}
.sc-paper p::first-letter{font-family:var(--serif);font-size:2.6rem;float:left;line-height:.9;margin:.1rem .6rem 0 0;color:var(--ink)}

/* ---------- 5 · MODAL (size guide + seating detail; centered, scrim, focus-trapped) ---------- */
.sc-modal{position:fixed;inset:0;z-index:200;display:flex;align-items:center;justify-content:center;padding:1.4rem}
.sc-modal[hidden]{display:none}
.sc-modal__backdrop{position:absolute;inset:0;background:rgba(34,27,20,.62);opacity:0;transition:opacity .24s ease;cursor:pointer}
.sc-modal.on .sc-modal__backdrop{opacity:1}
.sc-modal__panel{position:relative;background:var(--card);border:1px solid var(--hair);border-radius:3px;padding:clamp(1.7rem,3.4vw,2.2rem) clamp(1.7rem,3.4vw,2.4rem) clamp(1.9rem,3.4vw,2.4rem);max-width:520px;width:100%;box-shadow:0 40px 80px -28px rgba(34,27,20,.55);opacity:0;transform:translateY(-12px) scale(.97);transition:opacity .26s ease, transform .32s cubic-bezier(.2,.6,.2,1)}
.sc-modal.on .sc-modal__panel{opacity:1;transform:translateY(0) scale(1)}
.sc-modal__panel::before{content:"";position:absolute;left:0;top:0;width:2px;height:42px;background:var(--amber)}
.sc-modal__panel .lbl{display:block;margin-bottom:.6rem}
.sc-modal__panel h3{font-family:var(--serif);font-weight:400;font-size:1.32rem;color:var(--ink);letter-spacing:.005em;margin-bottom:.7rem}
.sc-modal__panel p{font-size:.95rem;color:var(--ink-soft);line-height:1.62;max-width:none;margin:0 0 1.1rem}
.sc-modal__panel p::first-letter{font-size:1em;float:none;margin:0;color:var(--ink-soft);font-family:inherit;line-height:inherit}
.sc-modal__rows{display:grid;gap:.7rem;margin:.2rem 0 0;padding-top:.8rem;border-top:1px solid var(--hair)}
.sc-modal__rows div{display:flex;justify-content:space-between;gap:1rem;align-items:baseline}
.sc-modal__rows dt{font-family:var(--sans);font-weight:500;font-size:.7rem;letter-spacing:.22em;text-transform:uppercase;color:var(--muted)}
.sc-modal__rows dd{font-family:var(--serif);font-size:1rem;color:var(--ink);text-align:right;max-width:60%}
.sc-modal__rows--stack div{flex-direction:column;align-items:flex-start;gap:.3rem}
.sc-modal__rows--stack dd{font-family:var(--sans);font-size:.92rem;color:var(--ink-soft);line-height:1.55;text-align:left;max-width:none;font-weight:300}
.sc-modal__loads{margin:0 0 .4rem 1.1rem;padding:0;color:var(--ink-soft);font-size:.95rem;line-height:1.7;font-family:var(--sans);font-weight:300}
.sc-modal__loads li{margin-bottom:.25rem}
.sc-modal__close{position:absolute;top:.6rem;right:.85rem;background:transparent;border:0;font-family:var(--sans);font-weight:300;font-size:1.6rem;line-height:1;color:var(--ink-soft);cursor:pointer;padding:.2rem .45rem;transition:.2s;border-radius:2px}
.sc-modal__close:hover{color:var(--ink);background:var(--bone-2)}
.sc-modal__close:focus-visible{outline:2px solid var(--amber);outline-offset:2px}
@media (prefers-reduced-motion:reduce){.sc-modal__backdrop,.sc-modal__panel{transition:none}}
@media (max-width:520px){
  .sc-modal__rows div{flex-direction:column;align-items:flex-start;gap:.25rem}
  .sc-modal__rows dd{text-align:left;max-width:none}
}

/* ---------- 6 · CHAUFFEUR ---------- */
.sc-chau{padding:clamp(3.4rem,8vw,5.4rem) 0;background:var(--bone-2);border-block:1px solid var(--hair)}
.sc-chau__wrap{max-width:var(--wrap);margin:0 auto;padding:0 clamp(1.1rem,4vw,2rem);display:grid;grid-template-columns:1fr;gap:2.4rem;align-items:center}
@media (min-width:880px){.sc-chau__wrap{grid-template-columns:1.1fr .9fr;gap:4rem}}
.sc-chau .lbl{display:inline-block;margin-bottom:.8rem}
.sc-chau h2{font-size:clamp(1.8rem,4.4vw,2.7rem);max-width:18ch;line-height:1.14}
.sc-chau p{margin-top:1.1rem;font-size:1.02rem;color:var(--ink-soft);line-height:1.7;max-width:50ch}
.sc-chau__points{display:grid;gap:.85rem;margin-top:1.6rem;max-width:46ch;list-style:none;padding:0}
.sc-chau__points li{display:flex;gap:.7rem;font-size:.94rem;color:var(--ink-soft);line-height:1.55}
.sc-chau__points li::before{content:"";flex:0 0 8px;height:1px;background:var(--amber);margin-top:.95rem}
.sc-chau__quote{position:relative;background:var(--espresso);color:var(--bone);padding:clamp(2rem,4vw,2.8rem) clamp(2rem,4vw,2.8rem) clamp(2.2rem,5vw,3rem);border-radius:2px;overflow:hidden}
.sc-chau__quote::before{content:"";position:absolute;left:0;top:0;bottom:0;width:2px;background:var(--amber)}
.sc-chau__quote .lbl{color:#E0894A}
.sc-chau__quote blockquote{margin-top:1rem;font-family:var(--serif);font-style:italic;font-size:clamp(1.3rem,3vw,1.65rem);line-height:1.4;color:var(--bone);letter-spacing:.005em}
.sc-chau__quote .attr{margin-top:1.4rem;font-family:var(--sans);font-size:.7rem;letter-spacing:.26em;text-transform:uppercase;color:#CBBFA9}
.sc-chau__quote .dash{display:inline-block;width:18px;height:1px;background:#E0894A;vertical-align:middle;margin-right:.7rem}

/* ---------- 7 · ALSO CONSIDER (typographic cards) ---------- */
.sc-also{padding:clamp(3rem,7vw,5rem) 0;background:var(--bone)}
.sc-also__head{text-align:center;max-width:var(--wrap);margin:0 auto 2.4rem;padding:0 clamp(1.1rem,4vw,2rem)}
.sc-also__head .lbl{display:inline-block;margin-bottom:.8rem}
.sc-also__head h2{font-size:clamp(1.5rem,3.4vw,2rem)}
.sc-also__grid{max-width:var(--wrap);margin:0 auto;padding:0 clamp(1.1rem,4vw,2rem);display:grid;gap:1.4rem;grid-template-columns:1fr}
@media (min-width:720px){
  .sc-also__grid{grid-template-columns:1fr 1fr;gap:1.6rem}
  /* When the strict same-class taxonomy yields only one mate (S-Class, BMW 7,
     E-Class, Lexus ES, Sprinter, King Long), centre the single card in a
     capped column instead of leaving it left-aligned in a 2-col grid. */
  .sc-also__grid:has(> .acard:only-child){grid-template-columns:minmax(0,560px);justify-content:center}
}
/* Match the site-standard vcard hover (translateY + soft shadow). No left-edge rail. */
.sc-also .acard{position:relative;background:var(--card);border:1px solid var(--hair);border-radius:3px;padding:clamp(1.6rem,3vw,2.2rem) clamp(1.6rem,3vw,2.4rem) clamp(1.7rem,3vw,2.4rem);display:grid;gap:1rem;transition:transform .25s ease, box-shadow .35s ease;overflow:hidden}
.sc-also .acard:hover{transform:translateY(-3px);box-shadow:0 22px 44px -26px rgba(34,27,20,.4)}
.sc-also .acard .marque-row{display:flex;align-items:center;gap:.85rem;font-family:var(--sans);font-weight:500;font-size:.66rem;letter-spacing:.32em;text-transform:uppercase;color:var(--muted)}
.sc-also .acard .marque-row .mk{font-family:var(--serif);font-style:italic;font-size:.78rem;letter-spacing:.04em;color:var(--ink-soft);text-transform:none}
.sc-also .acard .marque-row .dash{width:18px;height:1px;background:var(--line)}
.sc-also .acard h3{font-family:var(--serif);font-weight:400;font-size:clamp(1.4rem,3vw,1.8rem);color:var(--ink);line-height:1.16;letter-spacing:.005em;max-width:14ch}
.sc-also .acard .strap{font-family:var(--serif);font-style:italic;font-size:1.04rem;color:var(--ink-soft);line-height:1.4;max-width:30ch}
.sc-also .acard p{font-size:.93rem;color:var(--ink-soft);line-height:1.62;max-width:36ch}
.sc-also .acard .stats{display:flex;gap:1.6rem;padding-top:.5rem;margin-top:.2rem;border-top:1px solid var(--hair)}
.sc-also .acard .stats .it{display:flex;flex-direction:column;gap:.2rem}
.sc-also .acard .stats .k{font-family:var(--sans);font-weight:500;font-size:.62rem;letter-spacing:.24em;text-transform:uppercase;color:var(--muted)}
.sc-also .acard .stats .v{font-family:var(--serif);font-size:1.1rem;color:var(--ink);line-height:1}
/* In a grid item, inline-flex still gets stretched horizontally; justify-self
   constrains the link to the width of its text so the underline hugs it. */
.sc-also .acard .btn-line{margin-top:.6rem;justify-self:start;width:auto}
@media (prefers-reduced-motion:reduce){.sc-also .acard{transition:none}.sc-also .acard:hover{transform:none;box-shadow:none}}

/* ============================================================
   FLEET-UX-1-DESIGN — capacity module (seat map + luggage)
   ============================================================ */
.sc-cap .sc-paper__wrap{max-width:760px}
.cap-card{background:var(--bone,#F6F1E7);border:1px solid var(--hair,rgba(34,27,20,.10));border-radius:14px;padding:1.5rem 1.5rem 1.4rem}
.cap-head{margin-bottom:1rem}
.cap-eyebrow{display:block;font-family:var(--sans,'Outfit',system-ui,sans-serif);font-weight:500;font-size:.68rem;letter-spacing:.24em;text-transform:uppercase;color:var(--amber-deep,#A84B0C)}
.cap-name{font-family:var(--serif,'Marcellus',Georgia,serif);font-weight:400;font-size:1.5rem;line-height:1.15;color:var(--ink,#221B14);margin:.35rem 0 0}
.cap-body{display:flex;flex-direction:column;gap:1.4rem}
.cap-panel{display:flex;flex-direction:column;gap:.55rem;margin:0}
.cap-panel[hidden]{display:none}
.cap-scen{display:flex;align-items:center;gap:.6rem;text-align:left;width:100%;background:var(--card,#FBF8F1);border:1px solid var(--line,rgba(34,27,20,.18));border-radius:9px;padding:.7rem .85rem;cursor:pointer;transition:border-color .18s,box-shadow .18s}
.cap-scen:hover{border-color:rgba(199,91,18,.5)}
.cap-scen.on{border-color:#C75B12;box-shadow:inset 0 0 0 1px #C75B12}
.cap-scen__txt{flex:1 1 auto;min-width:0}
.cap-scen__t{display:block;font-family:var(--sans,'Outfit',system-ui,sans-serif);font-weight:500;font-size:12.5px;color:var(--ink,#221B14)}
.cap-scen__d{display:block;font-size:11.5px;line-height:1.45;color:var(--muted,#7A6F5F);margin-top:.15rem}
.cap-scen__chev{flex:0 0 auto;width:16px;height:16px;color:var(--muted,#7A6F5F);opacity:.55;transition:transform .18s,opacity .18s,color .18s}
.cap-scen:hover .cap-scen__chev{opacity:1}
.cap-scen.on .cap-scen__chev{color:#C75B12;opacity:1;transform:translateX(2px)}
.cap-honesty{font-size:12px;line-height:1.5;color:var(--muted,#7A6F5F);margin:.25rem 0 0}
.cap-size{align-self:flex-start;background:none;border:0;padding:0;font-family:var(--sans,'Outfit',system-ui,sans-serif);font-weight:500;font-size:12.5px;color:#A84B0C;text-decoration:underline;text-underline-offset:3px;cursor:pointer}
/* two-column desktop: the CAP-3 photographic layout (.cap-card--photo below) orders the
   media/controls; .cap-body just needs to become a row at this breakpoint. */
@media (min-width:720px){
  .cap-body{flex-direction:row;align-items:flex-start;gap:2rem}
}
/* CAP-3 photographic seating: static-camera media + cross-fade + captain/bench toggle */
.cap-media{position:relative}
/* CAP-7.3: the seating box is a FIXED-aspect frame — its aspect-ratio is set inline from the
   default scenario's render. Every scenario picture is absolutely positioned inside it and the
   image uses object-fit:contain, so a config toggle to a DIFFERENT-aspect render (Yukon captain
   4:3 vs bench ~1.83:1, now shipped as-is with no canvas normalization) never resizes the box —
   CLS 0 — and letterboxes into the card bg. All pictures absolute means the box height comes
   from aspect-ratio, not from whichever image is current. */
.cap-media__seating{position:relative;border-radius:12px;overflow:hidden;background:var(--card,#FBF8F1);border:1px solid var(--hair,rgba(34,27,20,.08))}
.cap-media__seating>picture{position:absolute;inset:0;display:block}
/* base (non-layer) picture fades to the ground on a config toggle */
.cap-media__seating>picture:not(.cap-photo-layer){transition:opacity .13s ease}
.cap-media__seating>picture.cap-photo-out{opacity:0}
.cap-photo{display:block;width:100%;height:100%;object-fit:contain}
.cap-photo-layer{opacity:0;transition:opacity .2s ease}
.cap-photo-layer.is-in{opacity:1}
/* faster fade-in for the ground swap (config toggle) than the within-config cross-fade */
.cap-photo-layer.cap-photo-layer--ground{transition:opacity .13s ease}
.cap-media__luggage{display:flex;justify-content:center}
.cap-media__luggage[hidden]{display:none}
.cap-controls{display:flex;flex-direction:column;gap:.9rem}
.cap-rows{display:flex;flex-direction:column;gap:.55rem}
.cap-seg{display:flex;gap:.4rem;background:var(--bone-2,#EFE8D9);border-radius:999px;padding:.25rem}
.cap-seg__btn{flex:1 1 0;min-height:0;background:none;border:0;border-radius:999px;padding:.5rem .6rem;font-family:var(--sans,'Outfit',system-ui,sans-serif);font-weight:500;font-size:.72rem;letter-spacing:.08em;text-transform:uppercase;color:var(--muted,#7A6F5F);cursor:pointer;transition:.18s}
.cap-seg__btn.on{background:var(--ink,#221B14);color:#fff}
@media (min-width:720px){
  .cap-card--photo .cap-media{order:2;flex:0 0 auto;width:400px}
  .cap-card--photo .cap-controls{order:1;flex:1 1 auto;min-width:0}
}
@media (prefers-reduced-motion:reduce){.cap-photo-layer,.cap-media__seating>picture{transition:none}}
/* CAP-4: section eyebrows (Seating / Boot space) + BOOT SPACE block */
/* UI-2: adopt the site-wide FAQ grammar for the Boot space disclosure — eyebrow
   letter-spacing + rhythm to match the homepage .shead .lbl / .faq. Structure, SSR
   panels, chevron and capacity.js are untouched; only eyebrow/rules/type/spacing align. */
.cap-eyebrow--sec{display:block;margin:0 0 .85rem;letter-spacing:.3em}
.cap-boot{margin-top:1.7rem;padding-top:1.5rem;border-top:1px solid var(--hair,rgba(34,27,20,.14))}
.cap-boot__rows{display:flex;flex-direction:column}
/* CAP-5-SIMPLE: each combo row is a disclosure button; hairline separators live on the
   item so an open panel doesn't break the rhythm. Open row carries a subtle amber accent
   in the card gutter (calmer than a full active border, consistent with the seating cards). */
.cap-boot__item{position:relative;border-bottom:1px solid var(--hair,rgba(34,27,20,.08))}
.cap-boot__item:last-child{border-bottom:0}
.cap-boot__item::before{content:"";position:absolute;left:-.75rem;top:0;bottom:0;width:2px;background:#C75B12;opacity:0;transition:opacity .18s ease}
.cap-boot__item:has(.cap-boot__row[aria-expanded="true"])::before{opacity:1}
/* UI-2: the combo row is the FAQ "question" — serif type, size, colour and padding
   matched to .faq summary (the dimension panel below stays mono, as measurements). */
.cap-boot__row{display:flex;align-items:center;gap:1rem;width:100%;text-align:left;background:transparent;border:0;min-height:0;cursor:pointer;padding:1.05rem .2rem;font-family:var(--serif,Georgia,serif);font-size:1.05rem;letter-spacing:0;color:var(--ink,#221B14)}
.cap-boot__item:first-child .cap-boot__row{padding-top:0}
.cap-boot__combo{flex:1 1 auto;min-width:0}
.cap-boot__chev{flex:0 0 auto;width:15px;height:15px;color:var(--muted,#7A6F5F);opacity:.55;transition:transform .18s ease,opacity .18s ease,color .18s ease}
.cap-boot__row:hover .cap-boot__chev{opacity:1}
.cap-boot__row:focus-visible{outline:2px solid var(--amber,#C75B12);outline-offset:2px}
.cap-boot__row[aria-expanded="true"] .cap-boot__chev{transform:rotate(90deg);color:#C75B12;opacity:1}
/* Panel collapses via grid-template-rows 0fr->1fr (no JS height measurement); visibility
   toggle keeps closed panels out of the a11y tree and tab order. */
.cap-boot__panel{display:grid;grid-template-rows:0fr;opacity:0;visibility:hidden;transition:grid-template-rows .2s ease,opacity .2s ease,visibility 0s linear .2s}
.cap-boot__row[aria-expanded="true"]+.cap-boot__panel{grid-template-rows:1fr;opacity:1;visibility:visible;transition:grid-template-rows .2s ease,opacity .2s ease,visibility 0s linear 0s}
/* The collapsing grid child must be a plain block with only HORIZONTAL padding — a flex
   box or vertical padding here floors the 0fr track at min-content and it never reaches 0
   (breaking the animation and adding CLS). Vertical rhythm lives on the child rows so it
   collapses with the content. */
.cap-boot__dims{overflow:hidden;padding:0 0 0 .9rem}
.cap-boot__dim{display:flex;gap:.5rem;align-items:baseline;font-family:var(--mono,ui-monospace,Menlo,monospace);font-size:12px;line-height:1.5;padding:.14rem 0}
.cap-boot__dim:first-child{padding-top:.35rem}
.cap-boot__dim:last-child{padding-bottom:.85rem}
.cap-boot__sz{color:var(--ink,#221B14);font-weight:500}
.cap-boot__mm{color:var(--muted,#7A6F5F)}
@media (prefers-reduced-motion:reduce){
  .cap-boot__panel,.cap-boot__row[aria-expanded="true"]+.cap-boot__panel{transition:visibility 0s}
  .cap-boot__chev,.cap-boot__item::before{transition:none}
}
.cap-boot__foot{display:flex;flex-direction:column;gap:.6rem;align-items:flex-start;margin-top:1.1rem}
/* Two classes (0,2,0) beat `.sc-paper p` (0,1,1) so the footnote is plain small muted text,
   not leaked 0.95rem body type. Part of the CAP-5-SIMPLE article-typography reset. */
.cap-boot__foot .cap-honesty{margin:0;max-width:60ch;font-size:12px;line-height:1.5;color:var(--muted,#7A6F5F)}
/* CAP-5-SIMPLE drop-cap fix: the module renders inside .sc-paper, whose `p::first-letter`
   drop cap and first-line styling leaked onto the honesty footnote. Reset both, scoped to
   the capacity card, so the footnote is plain small muted text. */
.cap-card p::first-letter{font-family:inherit;font-size:1em;float:none;margin:0;line-height:inherit;color:inherit}
.cap-card p::first-line{font-weight:inherit;letter-spacing:inherit}
