/* ==========================================================================
   iBlast Photobooth — "Memories in Motion"
   2026 redesign. Framework-free CSS.

   CONTENTS
   00  Brand fonts (how to install the real ones)
   01  Tokens
   02  Reset & base
   03  Layout primitives
   04  Typography components
   05  Buttons & chips
   06  Memory Field (ambient background)
   07  Masthead / navigation
   08  Hero
   09  Trust ribbon
   10  Experience
   11  Layout showcase (dark)
   12  Packages
   13  Client feedback
   14  Gallery + lightbox
   15  Booking process
   16  FAQ accordion
   17  Availability inquiry flow
   18  High-angle notice
   19  Finale CTA (dark)
   20  Footer
   21  Sticky mobile CTA
   22  Motion system
   23  Responsive
   24  Reduced motion & print
   ========================================================================== */

/* --------------------------------------------------------------------------
   00  BRAND FONTS
   Ahsing and Glacial Indifference Bold are Canva-licensed and are NOT in this
   project. The real Ahsing letterforms still appear on the site as the
   exported wordmark artwork (header / footer). Live text uses documented
   substitutes: Instrument Serif (display) and Manrope (UI).

   To install the real webfonts: drop the files into assets/fonts/ using the
   names below and un-comment this block. Nothing else needs to change — the
   font stacks in §01 already list the brand names first.
   -------------------------------------------------------------------------- */
/*
@font-face {
  font-family: 'Ahsing';
  src: url('../assets/fonts/ahsing.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Glacial Indifference';
  src: url('../assets/fonts/glacial-indifference-bold.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}
*/

/* --------------------------------------------------------------------------
   01  TOKENS
   -------------------------------------------------------------------------- */
:root {
  /* Palette */
  --porcelain: #F8F2E9;
  --beige:     #EADCCB;
  --sandstone: #D8C1A8;
  --crimson:   #D62835;
  --crimson-d: #B41F2B;
  /* Brand crimson is only 4.5:1 against the warm backgrounds, so small red
     text uses this darker mix (6.2:1). Buttons and large type keep --crimson. */
  --crimson-ink: #B01E29;
  --wine:      #651722;
  --ink:       #171310;
  --warm-white:#FFFDF8;
  --champagne: #C6A66A;

  /* Text greys are deliberately heavier than they look "designerly".
     At the original .55 / .38 these landed at 4.1:1 and 2.4:1 against the
     warm backgrounds — below the WCAG AA minimum of 4.5:1 for normal text,
     and genuinely hard to read for older eyes. Do not lighten these without
     re-measuring contrast. --ink-14 / --ink-08 are borders only, never text. */
  --ink-70: rgba(23, 19, 16, .74);
  --ink-55: rgba(23, 19, 16, .68);
  --ink-38: rgba(23, 19, 16, .62);
  --ink-14: rgba(23, 19, 16, .14);
  --ink-08: rgba(23, 19, 16, .08);

  --cream-78: rgba(255, 253, 248, .78);
  --cream-55: rgba(255, 253, 248, .55);
  --cream-16: rgba(255, 253, 248, .16);

  /* Type */
  --f-display: 'Ahsing', 'Instrument Serif', Georgia, 'Times New Roman', serif;
  --f-ui: 'Glacial Indifference', 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --fs-hero:  clamp(2.5rem, 6.4vw, 4.9rem);
  --fs-h2:    clamp(2rem, 4.6vw, 3.5rem);
  --fs-h3:    clamp(1.05rem, 1.5vw, 1.28rem);
  --fs-lede:  clamp(1rem, 1.25vw, 1.15rem);
  --fs-body:  clamp(.95rem, 1.05vw, 1.02rem);
  /* Small sizes raised from .84 / .74 / .715 — the old values rendered at
     roughly 13px / 12px / 11px, which is below comfortable reading size. */
  --fs-sm:    .885rem;
  --fs-xs:    .805rem;
  --fs-eyebrow: .75rem;
  --fs-nav:   .795rem;   /* nav has its own size so the bump cannot wrap it */

  /* Space */
  --gutter:  clamp(1.15rem, 4vw, 3rem);
  --section: clamp(4.25rem, 8.5vw, 8.5rem);
  --wrap:    1280px;
  --wrap-wide: 1440px;

  /* Shape */
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --hair: 1px solid var(--ink-14);
  --hair-light: 1px solid var(--cream-16);

  /* Motion */
  --e-out: cubic-bezier(.22, .68, .28, 1);
  --e-soft: cubic-bezier(.32, .72, .3, 1);

  --nav-h: 74px;
}

/* --------------------------------------------------------------------------
   02  RESET & BASE
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 12px);
}

body {
  font-family: var(--f-ui);
  font-size: var(--fs-body);
  line-height: 1.62;
  color: var(--ink);
  background: var(--porcelain);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

/* The HTML `hidden` attribute must beat component display rules
   (.btn is inline-flex, .summary is block, etc.) or JS-hidden controls
   like the Back button would stay on screen. */
[hidden] { display: none !important; }
ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }

/* Inline SVG icon default — line-art, inherits text colour */
svg[viewBox] { fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }

:focus-visible {
  outline: 2px solid var(--crimson);
  outline-offset: 3px;
  border-radius: 3px;
}
.onDark :focus-visible, .showcase :focus-visible,
.finale :focus-visible, .foot :focus-visible, .ribbon :focus-visible {
  outline-color: var(--champagne);
}

::selection { background: var(--crimson); color: var(--warm-white); }

.skip-link {
  position: absolute; left: 50%; top: 0;
  transform: translate(-50%, -120%);
  z-index: 999;
  background: var(--ink); color: var(--warm-white);
  padding: .7rem 1.1rem; border-radius: 0 0 var(--r-sm) var(--r-sm);
  font-size: var(--fs-sm); font-weight: 700;
  transition: transform .2s var(--e-out);
}
.skip-link:focus { transform: translate(-50%, 0); }

/* Invisible scroll target so sticky nav never covers a heading */
.anchor-offset { display: block; height: 0; scroll-margin-top: calc(var(--nav-h) + 16px); }

/* Visually hidden, still read by screen readers */
.u-sr {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

/* --------------------------------------------------------------------------
   03  LAYOUT PRIMITIVES
   -------------------------------------------------------------------------- */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
section { position: relative; }

/* Section rhythm.
   A full --section of padding on both sides of a boundary doubles up and
   reads as dead air where two light sections meet. Dark sections keep the
   full measure because the colour change earns the breathing room. */
.experience, .packages, .voices, .gallery, .process, .faq, .availability {
  padding-block: var(--section) calc(var(--section) * .42);
}
.voices, .gallery, .process, .faq, .availability { padding-top: calc(var(--section) * .62); }
.experience { padding-top: var(--section); }

/* --------------------------------------------------------------------------
   04  TYPOGRAPHY COMPONENTS
   -------------------------------------------------------------------------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: var(--fs-eyebrow);
  font-weight: 700;
  letter-spacing: .19em;
  text-transform: uppercase;
  color: var(--crimson-ink);
}
.eyebrow__dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--crimson); flex: none;
}
.eyebrow--onDark { color: var(--champagne); }
.eyebrow--onDark .eyebrow__dot { background: var(--champagne); }

.section-title {
  font-family: var(--f-ui);
  font-size: var(--fs-h2);
  font-weight: 800;
  line-height: 1.03;
  letter-spacing: -.022em;
  margin-top: .7rem;
  text-wrap: balance;
}
.section-title--onDark { color: var(--warm-white); }

/* The one place the display face is used for live text: a highlighted word */
.display-accent {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -.01em;
  color: var(--crimson);
  /* optical size-match against the heavy sans */
  font-size: 1.13em;
  line-height: .9;
}
.section-title--onDark .display-accent,
.finale__title .display-accent { color: var(--champagne); }

.lede {
  font-size: var(--fs-lede);
  color: var(--ink-70);
  max-width: 54ch;
  margin-top: 1.15rem;
}
.lede--onDark { color: var(--cream-78); }

.notice {
  display: flex; gap: .7rem; align-items: flex-start;
  font-size: var(--fs-sm);
  color: var(--wine);
  background: rgba(214, 40, 53, .07);
  border-left: 2px solid var(--crimson);
  padding: .85rem 1rem;
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  margin-top: 1.5rem;
}
.notice svg { width: 18px; height: 18px; flex: none; margin-top: .15em; stroke: var(--crimson); }
.notice--strong { font-weight: 600; }

/* --------------------------------------------------------------------------
   05  BUTTONS & CHIPS
   -------------------------------------------------------------------------- */
.btn {
  --btn-fill: var(--crimson);
  position: relative;
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  min-height: 48px;
  padding: .8rem 1.5rem;
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: .01em;
  border-radius: 999px;
  border: 1.5px solid transparent;
  overflow: hidden;
  isolation: isolate;
  transition: color .28s var(--e-out), border-color .28s var(--e-out), transform .18s var(--e-out);
  text-align: center;
}
.btn svg { width: 17px; height: 17px; }
.btn::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: var(--btn-fill);
  transform: translateY(101%);
  transition: transform .38s var(--e-soft);
}
.btn:active { transform: translateY(1px); }

.btn--primary { background: var(--crimson); color: var(--warm-white); --btn-fill: var(--wine); }
.btn--primary:hover::before, .btn--primary:focus-visible::before { transform: translateY(0); }

.btn--outline { border-color: var(--ink-14); color: var(--ink); --btn-fill: var(--ink); }
.btn--outline:hover, .btn--outline:focus-visible { color: var(--warm-white); border-color: var(--ink); }
.btn--outline:hover::before, .btn--outline:focus-visible::before { transform: translateY(0); }

.btn--ghost { border-color: var(--ink-14); color: var(--ink); --btn-fill: transparent; }
.btn--ghost:hover, .btn--ghost:focus-visible { border-color: var(--ink); background: var(--ink-08); }

.btn--lg { min-height: 56px; padding: 1rem 2rem; font-size: .93rem; }
.btn--sm { min-height: 44px; padding: .6rem 1.15rem; font-size: var(--fs-xs); }
.btn--block { width: 100%; }

.chip {
  display: inline-block;
  font-size: var(--fs-xs); font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: .34rem .7rem; border-radius: 999px;
  border: 1px solid currentColor;
}
.chip--ok      { color: var(--wine); }
.chip--off     { color: var(--ink-55); }
.chip--pending { color: #8A6A22; }

/* --------------------------------------------------------------------------
   06  MEMORY FIELD — ambient background
   Fixed behind everything. Only transform/opacity animate; blur is static.
   -------------------------------------------------------------------------- */
.memory-field {
  position: fixed; inset: 0; z-index: -1;
  overflow: hidden; pointer-events: none;
  background:
    radial-gradient(120% 80% at 12% 0%, var(--warm-white) 0%, transparent 58%),
    linear-gradient(168deg, var(--porcelain) 0%, #F5EADC 46%, var(--beige) 100%);
}

.mf-wash {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);            /* static blur — never animated */
  will-change: transform, opacity;
  transition: opacity 1.2s ease;
}
.mf-wash--crimson {
  width: 46vmax; height: 46vmax; top: -12vmax; left: -8vmax;
  background: radial-gradient(circle, rgba(214,40,53,.20) 0%, rgba(214,40,53,0) 68%);
  animation: washA 26s var(--e-soft) infinite alternate;
}
.mf-wash--champagne {
  width: 40vmax; height: 40vmax; top: 34%; right: -12vmax;
  background: radial-gradient(circle, rgba(198,166,106,.24) 0%, rgba(198,166,106,0) 70%);
  animation: washB 32s var(--e-soft) infinite alternate;
}
.mf-wash--peach {
  width: 38vmax; height: 38vmax; bottom: -14vmax; left: 22%;
  background: radial-gradient(circle, rgba(240,178,140,.24) 0%, rgba(240,178,140,0) 70%);
  animation: washC 21s var(--e-soft) infinite alternate;
}
@keyframes washA {
  0%   { transform: translate3d(0,0,0) scale(1); }
  100% { transform: translate3d(7vmax, 5vmax, 0) scale(1.14); }
}
@keyframes washB {
  0%   { transform: translate3d(0,0,0) scale(1.06); }
  100% { transform: translate3d(-8vmax, -6vmax, 0) scale(.94); }
}
@keyframes washC {
  0%   { transform: translate3d(0,0,0) scale(.96); }
  100% { transform: translate3d(5vmax, -6vmax, 0) scale(1.12); }
}

/* Print-path curves, 4R frame silhouettes, registration marks */
.mf-marks {
  position: absolute; inset: -6% -4%;
  width: 108%; height: 112%;
  color: var(--ink);
}
.mf-curves { opacity: .075; animation: driftSlow 40s ease-in-out infinite alternate; }
.mf-frames { opacity: .055; animation: driftSlow 34s ease-in-out infinite alternate-reverse; }
.mf-reg    { opacity: .085; color: var(--crimson); animation: driftSlow 46s ease-in-out infinite alternate; }
@keyframes driftSlow {
  0%   { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-1.6%, 1.4%, 0); }
}

/* Subtle film grain (SVG turbulence, no image request) */
.mf-grain {
  position: absolute; inset: -50%;
  width: 200%; height: 200%;
  opacity: .05;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
  animation: grainShift 8s steps(6) infinite;
}
@keyframes grainShift {
  0%   { transform: translate3d(0,0,0); }
  20%  { transform: translate3d(-2%, 1%, 0); }
  40%  { transform: translate3d(1%, -2%, 0); }
  60%  { transform: translate3d(-1%, -1%, 0); }
  80%  { transform: translate3d(2%, 1%, 0); }
  100% { transform: translate3d(0,0,0); }
}

/* Calm state — applied while reading the FAQ or filling the form */
body.is-calm .mf-wash { opacity: .34; animation-play-state: paused; }
body.is-calm .mf-grain { opacity: .028; }
body.is-calm .mf-curves,
body.is-calm .mf-frames,
body.is-calm .mf-reg { animation-play-state: paused; }

/* --------------------------------------------------------------------------
   07  MASTHEAD / NAVIGATION
   -------------------------------------------------------------------------- */
.masthead {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: .85rem var(--gutter);
  transition: padding .3s var(--e-out);
}
.masthead__inner {
  max-width: var(--wrap-wide);
  margin-inline: auto;
  min-height: 54px;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: .45rem .5rem .45rem 1.1rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: background .34s var(--e-out), border-color .34s var(--e-out),
              box-shadow .34s var(--e-out), backdrop-filter .34s var(--e-out);
}
.masthead.is-stuck { padding-top: .5rem; padding-bottom: .5rem; }
.masthead.is-stuck .masthead__inner {
  background: rgba(248, 242, 233, .82);
  border-color: var(--ink-08);
  box-shadow: 0 10px 34px -22px rgba(23, 19, 16, .5);
  backdrop-filter: blur(14px) saturate(1.1);
}

.brand { display: flex; align-items: center; flex: none; }
.brand__mark { width: auto; height: 34px; }

.nav { display: flex; align-items: center; gap: clamp(.6rem, 1.6vw, 1.9rem); }
.nav__list { display: flex; align-items: center; gap: clamp(.5rem, 1.5vw, 1.55rem); }
.nav__list a {
  position: relative;
  font-size: var(--fs-nav);
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--ink-70);
  padding: .55rem .1rem;
  display: inline-block;
  transition: color .2s var(--e-out);
}
.nav__list a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: .3rem;
  height: 1px; background: var(--crimson);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--e-out);
}
.nav__list a:hover, .nav__list a:focus-visible { color: var(--ink); }
.nav__list a:hover::after, .nav__list a:focus-visible::after { transform: scaleX(1); }

.nav-toggle { display: none; align-items: center; gap: .55rem; padding: .6rem .3rem; min-height: 44px; }
.nav-toggle__bars { display: grid; gap: 5px; width: 22px; }
.nav-toggle__bars i {
  display: block; height: 1.5px; background: var(--ink); border-radius: 2px;
  transition: transform .3s var(--e-out), opacity .2s;
}
.nav-toggle__label { font-size: var(--fs-xs); font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars i:first-child { transform: translateY(3.25px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars i:last-child  { transform: translateY(-3.25px) rotate(-45deg); }

/* --------------------------------------------------------------------------
   08  HERO
   -------------------------------------------------------------------------- */
.hero { padding: calc(var(--nav-h) + clamp(2.5rem, 6vw, 5rem)) 0 clamp(2.5rem, 5vw, 4.5rem); }
.hero__inner {
  max-width: var(--wrap-wide);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: grid;
  gap: clamp(2.5rem, 5vw, 3rem);
  align-items: center;
}

.hero__title {
  font-family: var(--f-ui);
  font-size: var(--fs-hero);
  font-weight: 800;
  line-height: .98;
  letter-spacing: -.033em;
  margin-top: 1.1rem;
}
.hero__title .line { display: block; overflow: hidden; }
.hero__title .line > span { display: block; }
.hero__lede { font-size: var(--fs-lede); color: var(--ink-70); max-width: 46ch; margin-top: 1.5rem; }

.hero__actions { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 2rem; }

.hero__tagline {
  display: flex; align-items: center; gap: .9rem;
  margin-top: 2.4rem;
  font-family: var(--f-display);
  font-size: 1.02rem;
  color: var(--ink-55);
  letter-spacing: .02em;
}
.hero__tagline .rule { display: block; width: clamp(32px, 7vw, 64px); height: 1px; background: var(--champagne); flex: none; }

/* --- kinetic 4R print stack --- */
.hero__stage { display: flex; justify-content: center; }
.print-stack {
  position: relative;
  width: 100%;
  max-width: 560px;
  aspect-ratio: 1 / .92;
  perspective: 1200px;
  transform-style: preserve-3d;
  /* --rx / --ry are written by JS on pointer move (desktop only, max 4deg) */
  --rx: 0deg; --ry: 0deg;
}
.plane {
  position: absolute;
  border-radius: 3px;
  background: var(--warm-white);
  padding: 7px 7px 7px;
  box-shadow:
    0 1px 1px rgba(23,19,16,.10),
    0 18px 40px -18px rgba(23,19,16,.45);
  transform-style: preserve-3d;
  transition: transform .5s var(--e-soft), box-shadow .5s var(--e-soft);
}
.plane img { border-radius: 1px; }

.plane--front {
  width: 76%; left: 4%; top: 16%;
  transform: rotate(-2.2deg)
             rotateX(var(--rx)) rotateY(var(--ry))
             translateZ(60px);
  z-index: 3;
}
.plane--back {
  width: 62%; right: 0; top: 0;
  transform: rotate(5.5deg)
             rotateX(calc(var(--rx) * .6)) rotateY(calc(var(--ry) * .6))
             translateZ(10px);
  z-index: 1;
}
.plane--strip {
  width: 27%; right: 3%; bottom: -2%;
  transform: rotate(-6deg)
             rotateX(calc(var(--rx) * .85)) rotateY(calc(var(--ry) * .85))
             translateZ(95px);
  z-index: 4;
}

.plane__meta {
  position: absolute; left: 8px; bottom: -1.55rem;
  font-size: .68rem; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--ink-70);
  white-space: nowrap;
}
.plane--strip .plane__meta { left: auto; right: 4px; }

.stage-tag {
  position: absolute;
  font-size: .68rem; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase;
  color: #8A6A22;   /* darkened champagne: the token is too light for text */
  display: inline-flex; align-items: center; gap: .45rem;
}
.stage-tag::before { content: ''; width: 16px; height: 1px; background: currentColor; }
.stage-tag--a { left: 0; top: 6%; }

/* --------------------------------------------------------------------------
   09  TRUST RIBBON
   -------------------------------------------------------------------------- */
.ribbon {
  background: var(--ink);
  color: var(--cream-78);
  border-block: 1px solid rgba(255,253,248,.09);
  overflow: hidden;
}
.ribbon__viewport { display: flex; width: max-content; }
.ribbon__track {
  display: flex; align-items: center; flex: none;
  animation: ribbonRoll 42s linear infinite;
}
.ribbon:hover .ribbon__track,
.ribbon:focus-within .ribbon__track { animation-play-state: paused; }

.ribbon__track > li {
  display: flex; align-items: center; gap: .7rem;
  padding: 1.05rem clamp(1.1rem, 2.6vw, 2.2rem);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  white-space: nowrap;
  position: relative;
}
.ribbon__track > li::after {
  content: ''; position: absolute; right: 0; top: 50%;
  transform: translateY(-50%);
  width: 3px; height: 3px; border-radius: 50%;
  background: var(--champagne); opacity: .6;
}
.ribbon__track svg { width: 19px; height: 19px; stroke: var(--champagne); flex: none; }
@keyframes ribbonRoll {
  from { transform: translate3d(0,0,0); }
  to   { transform: translate3d(-100%,0,0); }
}

/* --------------------------------------------------------------------------
   10  EXPERIENCE
   -------------------------------------------------------------------------- */
.experience__inner {
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: grid;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
}

.frame {
  background: var(--warm-white);
  padding: 10px;
  border-radius: 3px;
  box-shadow: 0 1px 1px rgba(23,19,16,.08), 0 30px 60px -30px rgba(23,19,16,.42);
}
.frame--tilt { transform: rotate(-1.6deg); }

.experience__media { position: relative; }
.experience__stat {
  position: absolute; right: clamp(-.5rem, -1vw, -1.6rem); bottom: -1.6rem;
  background: var(--ink); color: var(--warm-white);
  padding: 1rem 1.2rem; border-radius: var(--r-md);
  display: flex; align-items: center; gap: .85rem;
  box-shadow: 0 20px 44px -24px rgba(23,19,16,.7);
  max-width: 15rem;
}
.experience__stat-k {
  font-family: var(--f-display);
  font-size: 2.35rem; line-height: 1;
  color: var(--champagne);
}
.experience__stat-v { font-size: .7rem; line-height: 1.42; letter-spacing: .04em; color: var(--cream-78); }

.pillars { margin-top: 2.4rem; border-top: var(--hair); }
.pillars > li {
  display: grid;
  grid-template-columns: 2.4rem 1fr;
  grid-template-areas: 'n t' '. d';
  gap: .15rem .9rem;
  padding: 1.05rem 0;
  border-bottom: var(--hair);
}
.pillars__n {
  grid-area: n;
  font-size: var(--fs-xs); font-weight: 700;
  color: var(--crimson-ink); letter-spacing: .08em;
  padding-top: .18em;
}
.pillars__t { grid-area: t; font-weight: 700; font-size: 1rem; letter-spacing: -.005em; }
.pillars__d { grid-area: d; font-size: var(--fs-sm); color: var(--ink-55); }

/* --------------------------------------------------------------------------
   11  LAYOUT SHOWCASE (dark)
   -------------------------------------------------------------------------- */
.showcase {
  background:
    radial-gradient(90% 60% at 78% 8%, rgba(214,40,53,.20) 0%, transparent 62%),
    radial-gradient(70% 50% at 8% 96%, rgba(198,166,106,.14) 0%, transparent 60%),
    linear-gradient(174deg, var(--ink) 0%, #22160F 58%, var(--wine) 100%);
  color: var(--warm-white);
  padding-block: var(--section);
  overflow: hidden;
}
.showcase__head {
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.showcase__hint {
  display: inline-flex; align-items: center; gap: .55rem;
  margin-top: 1.9rem;
  font-size: var(--fs-xs); font-weight: 700;
  letter-spacing: .13em; text-transform: uppercase;
  color: var(--champagne);
}
.showcase__hint svg { width: 20px; height: 20px; animation: nudge 2.4s ease-in-out infinite; }
@keyframes nudge {
  0%, 100% { transform: translateX(0); }
  50%      { transform: translateX(5px); }
}

.rail {
  display: flex;
  gap: clamp(.9rem, 2vw, 1.5rem);
  margin-top: clamp(2rem, 4vw, 3rem);
  padding: .5rem calc(50vw - min(var(--wrap), 100vw) / 2 + var(--gutter));
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--champagne) transparent;
  cursor: grab;
}
.rail.is-dragging { cursor: grabbing; scroll-snap-type: none; }
.rail.is-dragging .rail__item { pointer-events: none; }
.rail::-webkit-scrollbar { height: 6px; }
.rail::-webkit-scrollbar-track { background: rgba(255,253,248,.08); border-radius: 99px; }
.rail::-webkit-scrollbar-thumb { background: var(--champagne); border-radius: 99px; }

.rail__item {
  flex: 0 0 auto;
  width: clamp(255px, 34vw, 430px);
  scroll-snap-align: center;
  background: var(--warm-white);
  padding: 9px 9px 0;
  border-radius: 3px;
  box-shadow: 0 24px 50px -26px rgba(0,0,0,.75);
  transition: transform .42s var(--e-soft);
}
.rail__item:hover { transform: translateY(-7px); }
.rail__item figcaption {
  display: flex; flex-direction: column; gap: .1rem;
  padding: .75rem .3rem .85rem;
}
.rail__cat { font-size: .7rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--crimson-ink); }
.rail__name { font-size: var(--fs-sm); font-weight: 700; color: var(--ink); }

/* --------------------------------------------------------------------------
   12  PACKAGES
   -------------------------------------------------------------------------- */
.packages__head { max-width: 58ch; }

.passes {
  display: grid;
  gap: clamp(1rem, 2vw, 1.4rem);
  margin-top: clamp(2.4rem, 4vw, 3.4rem);
}

/* An event pass, not a pricing box: stub + perforation + body */
.pass {
  display: grid;
  grid-template-columns: minmax(94px, .34fr) auto 1fr;
  align-items: stretch;
  background: var(--warm-white);
  border: var(--hair);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: transform .4s var(--e-soft), box-shadow .4s var(--e-soft), border-color .4s;
}
.pass:hover {
  transform: translateY(-4px);
  border-color: var(--ink-14);
  box-shadow: 0 26px 50px -30px rgba(23,19,16,.5);
}
.pass__stub {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: .1rem;
  padding: 1.6rem .8rem;
  background: linear-gradient(158deg, var(--ink) 0%, #2A1B14 100%);
  color: var(--warm-white);
}
.pass__hours { font-family: var(--f-display); font-size: clamp(2.6rem, 5vw, 3.5rem); line-height: 1; color: var(--champagne); }
.pass__unit { font-size: .62rem; font-weight: 700; letter-spacing: .19em; text-transform: uppercase; color: var(--cream-55); }

/* Perforated tear line with punched notches */
.pass__perf { position: relative; width: 1px; background: transparent; }
.pass__perf::before {
  content: ''; position: absolute; inset: 0;
  border-left: 1.5px dashed var(--ink-14);
}
.pass__perf::after {
  content: ''; position: absolute; left: 50%; top: -7px;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--porcelain);
  transform: translateX(-50%);
  box-shadow: 0 calc(100% + 7px) 0 var(--porcelain);
}

.pass__body {
  display: flex; flex-direction: column; align-items: flex-start;
  gap: .35rem;
  padding: clamp(1.2rem, 2.4vw, 1.7rem);
}
.pass__label { font-size: var(--fs-xs); font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--ink-38); }
.pass__price { font-family: var(--f-display); font-size: clamp(2.1rem, 4.2vw, 2.7rem); line-height: 1.05; color: var(--ink); }
.pass__body .btn { margin-top: .7rem; max-width: 15rem; }

.packages__extend {
  margin-top: 1.5rem;
  font-size: var(--fs-sm);
  color: var(--ink-55);
}
.packages__extend strong { color: var(--ink); }

.inclusions { margin-top: clamp(2.6rem, 5vw, 4rem); border-top: 1px solid var(--ink-14); padding-top: 1.9rem; }
.inclusions__title, .addons__title {
  font-size: var(--fs-eyebrow); font-weight: 700;
  letter-spacing: .19em; text-transform: uppercase; color: var(--ink-38);
}
.inclusions__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: .55rem 1.6rem;
  margin-top: 1.1rem;
}
.inclusions__list li {
  display: flex; align-items: baseline; gap: .65rem;
  font-size: var(--fs-body);
}
.inclusions__list li::before {
  content: ''; flex: none;
  width: 7px; height: 7px; border-radius: 50%;
  border: 1.5px solid var(--crimson);
  transform: translateY(-1px);
}

.addons { margin-top: clamp(2rem, 3.6vw, 3rem); }
.addons__list { margin-top: 1.1rem; border-top: var(--hair); }
.addons__list li {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas: 'name chip' 'note note';
  gap: .3rem .9rem;
  align-items: center;
  padding: .95rem 0;
  border-bottom: var(--hair);
}
.addons__name { grid-area: name; font-weight: 700; }
.addons .chip { grid-area: chip; }
.addons__note { grid-area: note; font-size: var(--fs-sm); color: var(--ink-55); }
.addons__foot {
  margin-top: 1rem;
  font-size: var(--fs-sm);
  color: var(--ink-70);
  max-width: 56ch;
}

/* --------------------------------------------------------------------------
   13  CLIENT FEEDBACK
   -------------------------------------------------------------------------- */
.voices__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
  margin-top: clamp(2rem, 4vw, 3rem);
}
.voice {
  display: flex; flex-direction: column; gap: .9rem;
  padding: clamp(1.3rem, 2.4vw, 1.75rem);
  background: var(--warm-white);
  border: var(--hair);
  border-radius: var(--r-md);
}
/* Quote glyph sits in flow above the text — never overlapping it */
.voice::before {
  content: '\201C';
  font-family: var(--f-display);
  font-size: 2.6rem; line-height: .62;
  height: .62em;
  color: var(--crimson); opacity: .3;
}
.voice blockquote { flex: 1 1 auto; }
.voice p { font-size: var(--fs-sm); color: var(--ink-70); }
/* Attribution row: name on the left, Facebook source mark on the right.
   Identical structure in every card so the rule and baseline always line up. */
.voice__who {
  display: flex; align-items: center; justify-content: space-between;
  gap: .75rem;
  padding-top: .9rem;
  border-top: var(--hair);
}
.voice__name {
  font-size: var(--fs-xs); font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--ink);
  min-width: 0;
}
/* Facebook blue, nudged from the brand #1877F2 to #1668D8. The exact brand
   hex is only 4.2:1 on this warm card; this reads as the same blue but clears
   the 4.5:1 text threshold. */
.voice__src { display: inline-flex; align-items: center; flex: none; color: #1668D8; }
.voice__src svg { width: 18px; height: 18px; }

/* --------------------------------------------------------------------------
   14  GALLERY + LIGHTBOX
   -------------------------------------------------------------------------- */
.gallery__head { max-width: 58ch; }

/* Editorial masonry via CSS multi-column.
   These are real print LAYOUT designs — cropping them to a uniform grid
   destroys the artwork, so every tile keeps its native aspect ratio and
   the columns simply flow. No JS, no fixed row heights, no cropping. */
.bento {
  --bento-gap: clamp(.5rem, 1.2vw, .9rem);
  columns: 2;
  column-gap: var(--bento-gap);
  margin-top: clamp(2rem, 4vw, 3rem);
}
.bento__cell {
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  margin-bottom: var(--bento-gap);
  min-width: 0;
}

.tile {
  position: relative;
  display: block; width: 100%;
  padding: 0; overflow: hidden;
  border-radius: var(--r-sm);
  background: var(--sandstone);
  cursor: zoom-in;
  line-height: 0;
}
.tile img {
  width: 100%; height: auto;
  transition: transform .7s var(--e-soft), filter .5s var(--e-out);
}
/* The scrim and caption are always present, not hover-only: on a touch screen
   there is no hover, so hiding the label there would make it unreachable.
   Hovering simply deepens the scrim and lifts the image. */
.tile::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(23,19,16,.96) 0%, rgba(23,19,16,.88) 14%, rgba(23,19,16,.5) 34%, rgba(23,19,16,.06) 58%, transparent 74%);
  opacity: 1; transition: opacity .4s var(--e-out);
}
.tile:hover img, .tile:focus-visible img { transform: scale(1.05); }
.tile:hover::after, .tile:focus-visible::after { opacity: 1; }

.tile__cap {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  display: flex; flex-direction: column; gap: .15rem;
  padding: .8rem .9rem;
  text-align: left;
  color: var(--warm-white);
  transition: transform .4s var(--e-out);
}
.tile:hover .tile__cap, .tile:focus-visible .tile__cap { transform: translateY(-2px); }
.tile__cat {
  font-size: .7rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: #EBD9AE;   /* lightened champagne — the token is too dark on the scrim */
}
.tile__name { font-size: var(--fs-sm); font-weight: 700; text-shadow: 0 1px 3px rgba(0,0,0,.5); }

.gallery__more { margin-top: 1.8rem; font-size: var(--fs-sm); color: var(--ink-55); }
.gallery__more a { color: var(--crimson-ink); font-weight: 700; text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }

/* Lightbox */
.lb {
  position: fixed; inset: 0; z-index: 200;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(.4rem, 2vw, 1.5rem);
  padding: clamp(3.4rem, 7vw, 5rem) clamp(.6rem, 3vw, 2.5rem);
  background: rgba(15, 11, 9, .93);
  backdrop-filter: blur(8px);
  animation: lbIn .28s var(--e-out);
}
.lb[hidden] { display: none; }
@keyframes lbIn { from { opacity: 0; } to { opacity: 1; } }

.lb__figure {
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
  min-width: 0; max-height: 100%;
}
.lb__figure img {
  max-width: 100%;
  max-height: calc(100vh - 12rem);
  width: auto; object-fit: contain;
  background: var(--warm-white);
  padding: 8px; border-radius: 3px;
  box-shadow: 0 30px 70px -30px #000;
}
.lb__cap { display: flex; flex-direction: column; align-items: center; gap: .15rem; text-align: center; }
.lb__cap span:first-child { font-size: .62rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--champagne); }
.lb__cap span:last-child { font-size: var(--fs-sm); font-weight: 700; color: var(--warm-white); }

.lb__close, .lb__nav {
  display: grid; place-items: center;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid var(--cream-16);
  color: var(--warm-white);
  background: rgba(255,253,248,.06);
  transition: background .2s, border-color .2s, transform .2s;
}
.lb__close:hover, .lb__nav:hover { background: rgba(255,253,248,.16); border-color: var(--champagne); }
.lb__close:active, .lb__nav:active { transform: scale(.94); }
.lb__close { position: absolute; top: clamp(.8rem, 2vw, 1.5rem); right: clamp(.8rem, 3vw, 2rem); z-index: 3; }
.lb__close svg, .lb__nav svg { width: 20px; height: 20px; }

/* --------------------------------------------------------------------------
   14b  VIDEO SHOWCASE — "iBlast in Action"
   Cards reserve their aspect ratio up front (--ar) so nothing shifts when a
   video attaches: no layout shift, no jump. Poster and video are stacked in
   the same box and cross-faded.
   -------------------------------------------------------------------------- */
.vs {
  padding-block: calc(var(--section) * .62) calc(var(--section) * .42);
}
.vs__head { max-width: 58ch; }

.vs__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.1rem, 2.4vw, 1.8rem);
  margin-top: clamp(2rem, 4vw, 3rem);
}

.vcard { min-width: 0; }

/* The stage holds poster + video + controls, and owns the reserved ratio. */
.vcard__stage {
  position: relative;
  aspect-ratio: var(--ar, 9 / 16);
  overflow: hidden;
  border-radius: 14px;
  background: linear-gradient(168deg, #2A1B14 0%, var(--ink) 100%);
  border: 1px solid rgba(23, 19, 16, .1);
  box-shadow: 0 1px 2px rgba(23,19,16,.08), 0 26px 52px -30px rgba(23,19,16,.55);
  transition: transform .45s var(--e-soft), box-shadow .45s var(--e-soft);
}
@media (hover: hover) and (pointer: fine) {
  .vcard__stage:hover { transform: translateY(-5px); box-shadow: 0 1px 2px rgba(23,19,16,.08), 0 34px 64px -30px rgba(23,19,16,.62); }
}

.vcard__poster,
.vcard__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.vcard__poster { z-index: 1; transition: opacity .5s var(--e-out); }
.vcard__video  { z-index: 2; opacity: 0; transition: opacity .5s var(--e-out); }

/* Once the video is actually rendering frames, fade it in over the poster. */
.vcard.is-playing .vcard__video { opacity: 1; }
.vcard.is-playing .vcard__poster { opacity: 0; }

/* Subtle top-and-bottom scrim so the badge and play button stay legible
   against any frame of any video. */
.vcard__stage::after {
  content: ''; position: absolute; inset: 0; z-index: 3;
  pointer-events: none;
  background:
    linear-gradient(to bottom, rgba(23,19,16,.42) 0%, transparent 22%),
    linear-gradient(to top, rgba(23,19,16,.34) 0%, transparent 20%);
  opacity: .9;
  transition: opacity .4s var(--e-out);
}
.vcard.is-playing .vcard__stage::after { opacity: .55; }

.vcard__badge {
  position: absolute; z-index: 4;
  top: .75rem; left: .75rem;
  font-size: .68rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--warm-white);
  background: rgba(23, 19, 16, .55);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,253,248,.22);
  padding: .3rem .6rem;
  border-radius: 999px;
}

/* Manual play affordance. Visible until the card is playing — this is the
   control keyboard and reduced-motion users rely on. */
.vcard__play {
  position: absolute; z-index: 5;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  display: grid; place-items: center;
  width: 62px; height: 62px;
  border-radius: 50%;
  color: var(--ink);
  background: rgba(255, 253, 248, .92);
  box-shadow: 0 10px 28px -10px rgba(0,0,0,.6);
  transition: transform .28s var(--e-out), opacity .3s var(--e-out), background .2s;
}
.vcard__play svg { width: 26px; height: 26px; margin-left: 2px; }
.vcard__play:hover { background: var(--warm-white); transform: translate(-50%, -50%) scale(1.07); }
.vcard__play:active { transform: translate(-50%, -50%) scale(.95); }
.vcard.is-playing .vcard__play { opacity: 0; pointer-events: none; transform: translate(-50%, -50%) scale(.8); }
/* keep it reachable by keyboard even while playing */
.vcard.is-playing .vcard__play:focus-visible { opacity: 1; pointer-events: auto; transform: translate(-50%, -50%) scale(1); }

/* Buffering indicator — only while the browser is actually fetching. */
.vcard__spinner {
  position: absolute; z-index: 5;
  left: 50%; top: 50%; margin: -13px 0 0 -13px;
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 2px solid rgba(255,253,248,.35);
  border-top-color: var(--warm-white);
  opacity: 0; pointer-events: none;
  animation: vspin .8s linear infinite;
}
.vcard.is-loading .vcard__spinner { opacity: 1; }
.vcard.is-loading .vcard__play { opacity: 0; }
@keyframes vspin { to { transform: rotate(360deg); } }

/* No-JavaScript fallback: direct links to every clip. */
.vs__noscript {
  margin-top: 1.6rem;
  padding: 1.1rem 1.2rem;
  background: var(--warm-white);
  border: var(--hair);
  border-left: 3px solid var(--champagne);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  font-size: var(--fs-sm);
}
.vs__noscript ul { margin-top: .6rem; display: grid; gap: .4rem; }
.vs__noscript a {
  color: var(--crimson-ink); font-weight: 700;
  text-decoration: underline; text-underline-offset: 3px;
  display: inline-block; min-height: 32px;
}

.vcard__cap {
  display: flex; flex-direction: column; gap: .1rem;
  padding: .8rem .2rem 0;
}
.vcard__ev { font-size: var(--fs-body); font-weight: 700; letter-spacing: -.01em; }
.vcard__meta { font-size: var(--fs-sm); color: var(--ink-55); }

.vs__foot {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 1rem clamp(1rem, 3vw, 2rem);
  margin-top: clamp(2rem, 4vw, 3rem);
}
.vs__more {
  display: inline-flex; align-items: center; gap: .45rem;
  min-height: 44px;
  font-size: var(--fs-sm); font-weight: 700;
  color: var(--crimson-ink);
  text-decoration: underline; text-underline-offset: 3px;
}
.vs__more svg { width: 15px; height: 15px; }
.vs__more:hover { color: var(--wine); }

/* Shared sound toggle — pinned above the mobile CTA bar, follows the
   currently playing video. Hidden until something is actually playing. */
.vs__sound {
  position: fixed; z-index: 88;
  right: clamp(.8rem, 3vw, 2rem);
  bottom: clamp(.8rem, 3vw, 2rem);
  display: inline-flex; align-items: center; gap: .5rem;
  min-height: 46px;
  padding: .55rem .95rem;
  border-radius: 999px;
  color: var(--warm-white);
  background: rgba(23, 19, 16, .84);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,253,248,.2);
  box-shadow: 0 14px 34px -16px rgba(0,0,0,.7);
  font-size: var(--fs-xs); font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  transition: opacity .3s var(--e-out), transform .3s var(--e-out), background .2s;
}
.vs__sound:hover { background: rgba(23, 19, 16, .95); }
.vs__sound[hidden] { display: none; }
.vs__sound-ico { display: grid; place-items: center; width: 20px; height: 20px; }
.vs__sound-ico svg { width: 20px; height: 20px; grid-area: 1 / 1; }
.vs__sound .is-loud { display: none; }
.vs__sound[aria-pressed="true"] .is-muted { display: none; }
.vs__sound[aria-pressed="true"] .is-loud { display: block; }
.vs__sound[aria-pressed="true"] { background: var(--crimson); border-color: transparent; }

/* Lift clear of the sticky mobile CTA bar wherever that bar is shown,
   otherwise the two fixed elements sit on top of each other. */
@media (max-width: 999px) {
  .vs__sound { bottom: calc(76px + env(safe-area-inset-bottom, 0px)); }
}

/* --------------------------------------------------------------------------
   15  BOOKING PROCESS
   -------------------------------------------------------------------------- */
.process__inner { display: grid; gap: clamp(2.2rem, 4vw, 4rem); align-items: start; }

.process__counter {
  display: flex; align-items: baseline; gap: .3rem;
  margin-top: 2.2rem;
  font-family: var(--f-display);
  font-size: 3rem; line-height: 1;
  color: var(--crimson);
}
.process__counter-sep { color: var(--ink-14); }
.process__counter span:last-child { font-size: 1.5rem; color: var(--ink-38); }
.process__nowLabel {
  font-size: var(--fs-sm); font-weight: 700;
  color: var(--ink-70); margin-top: .3rem;
  min-height: 1.6em;
}

.steps { position: relative; padding-left: 0; }
.steps__line {
  position: absolute; left: 15px; top: .8rem; bottom: .8rem;
  width: 1.5px; background: var(--ink-14);
}
.steps__line i {
  position: absolute; left: 0; top: 0; width: 100%;
  height: var(--steps-progress, 0%);
  background: var(--crimson);
  transition: height .18s linear;
}
.step {
  position: relative;
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 1.1rem;
  padding: .8rem 0 1.5rem;
}
.step__n {
  position: relative; z-index: 2;
  display: grid; place-items: center;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--porcelain);
  border: 1.5px solid var(--ink-14);
  font-size: .66rem; font-weight: 800; letter-spacing: .04em;
  color: var(--ink-38);
  transition: background .35s var(--e-out), color .35s var(--e-out), border-color .35s var(--e-out);
}
.step h3 { font-size: var(--fs-h3); font-weight: 700; letter-spacing: -.012em; }
.step p { font-size: var(--fs-sm); color: var(--ink-55); margin-top: .2rem; max-width: 48ch; }
.step.is-on .step__n { background: var(--crimson); border-color: var(--crimson); color: var(--warm-white); }

/* --------------------------------------------------------------------------
   16  FAQ ACCORDION
   -------------------------------------------------------------------------- */
.faq__inner { display: grid; gap: clamp(2rem, 4vw, 3.5rem); align-items: start; }
.faq__aside { margin-top: 1.4rem; font-size: var(--fs-sm); color: var(--ink-55); max-width: 32ch; }
.faq__aside a, .foot__note a { color: var(--crimson-ink); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }

.accordion { border-top: 1px solid var(--ink-14); }
.ac { border-bottom: 1px solid var(--ink-14); }
.ac__q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 1.2rem;
  padding: 1.15rem 0;
  min-height: 56px;
  text-align: left;
  font-size: clamp(.98rem, 1.4vw, 1.1rem);
  font-weight: 700;
  letter-spacing: -.01em;
  color: var(--ink);
  transition: color .22s var(--e-out);
}
.ac__q:hover { color: var(--crimson); }

.ac__ico { position: relative; flex: none; width: 17px; height: 17px; }
.ac__ico::before, .ac__ico::after {
  content: ''; position: absolute; left: 0; top: 50%;
  width: 100%; height: 1.5px; background: var(--crimson);
  transform: translateY(-50%);
  transition: transform .34s var(--e-out), opacity .2s;
}
.ac__ico::after { transform: translateY(-50%) rotate(90deg); }
.ac__q[aria-expanded="true"] .ac__ico::after { transform: translateY(-50%) rotate(0deg); opacity: 0; }

.ac__a {
  max-height: 0; overflow: hidden;
  transition: max-height .4s var(--e-soft);
}
.ac__a > div { padding-bottom: 1.3rem; }
.ac__a p { font-size: var(--fs-sm); color: var(--ink-70); max-width: 62ch; }

/* --------------------------------------------------------------------------
   17  AVAILABILITY INQUIRY FLOW
   -------------------------------------------------------------------------- */
.availability__head { max-width: 56ch; }

.inquiry {
  margin-top: clamp(2rem, 4vw, 3rem);
  background: var(--warm-white);
  border: var(--hair);
  border-radius: var(--r-lg);
  box-shadow: 0 40px 80px -50px rgba(23,19,16,.45);
  overflow: hidden;
}

.prog {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-bottom: var(--hair);
  background: linear-gradient(180deg, rgba(234,220,203,.42), transparent);
}
.prog__i {
  display: flex; align-items: center; justify-content: center; gap: .55rem;
  padding: 1rem .5rem;
  font-size: var(--fs-xs); font-weight: 700;
  letter-spacing: .06em;
  color: var(--ink-38);
  position: relative;
  transition: color .3s var(--e-out);
}
.prog__i + .prog__i::before {
  content: ''; position: absolute; left: 0; top: 25%; bottom: 25%;
  width: 1px; background: var(--ink-08);
}
.prog__n {
  display: grid; place-items: center;
  width: 23px; height: 23px; border-radius: 50%;
  border: 1.5px solid currentColor;
  font-size: .68rem;
  flex: none;
}
.prog__i.is-current { color: var(--crimson); }
.prog__i.is-done { color: var(--wine); }
.prog__i.is-done .prog__n { background: var(--wine); border-color: var(--wine); color: var(--warm-white); }
.prog__t { white-space: nowrap; }

.inquiry__form { padding: clamp(1.3rem, 3vw, 2.4rem); }
.fs { border: 0; }
.fs[hidden] { display: none; }
.fs__legend {
  font-size: var(--fs-eyebrow); font-weight: 700;
  letter-spacing: .19em; text-transform: uppercase;
  color: var(--ink-38);
  margin-bottom: 1.3rem;
}

.grid2 { display: grid; grid-template-columns: 1fr; gap: 1.1rem; }
.field { display: flex; flex-direction: column; gap: .4rem; min-width: 0; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: var(--fs-sm); font-weight: 700; letter-spacing: -.005em; }
.req { color: var(--crimson); }
.opt { font-weight: 500; color: var(--ink-38); font-size: var(--fs-xs); text-transform: lowercase; letter-spacing: .04em; }

.field input, .field select, .field textarea {
  width: 100%;
  min-height: 48px;
  padding: .7rem .9rem;
  font-size: var(--fs-body);
  background: var(--porcelain);
  border: 1.5px solid var(--ink-14);
  border-radius: var(--r-sm);
  transition: border-color .22s var(--e-out), background .22s var(--e-out), box-shadow .22s;
}
.field textarea { resize: vertical; min-height: 92px; }
.field select { appearance: none; padding-right: 2.4rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23171310' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right .85rem center; background-size: 15px;
}
.field input:hover, .field select:hover, .field textarea:hover { border-color: var(--ink-38); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--crimson);
  background: var(--warm-white);
  box-shadow: 0 0 0 3px rgba(214,40,53,.13);
}
.field input[aria-invalid="true"], .field select[aria-invalid="true"] { border-color: var(--crimson); background: rgba(214,40,53,.05); }

/* Field hints are instructions, not decoration — full readable weight. */
.hint { font-size: var(--fs-sm); color: var(--ink-70); }
.err { font-size: var(--fs-sm); font-weight: 700; color: var(--crimson-ink); min-height: 0; }
.err:empty { display: none; }

.live {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--wine);
  margin-top: .9rem;
}
.live:empty { display: none; }

.inquiry__nav {
  display: flex; flex-wrap: wrap; gap: .7rem;
  margin-top: 1.7rem;
  padding-top: 1.5rem;
  border-top: var(--hair);
}
.inquiry__nav .btn { min-width: 8.5rem; }

/* Summary */
.summary[hidden] { display: none; }
.summary__title { font-size: var(--fs-h3); font-weight: 800; letter-spacing: -.015em; }
.summary__intro { font-size: var(--fs-sm); color: var(--ink-70); margin-top: .5rem; max-width: 58ch; }
.summary__box {
  cursor: text;
  padding: 1.1rem 1.2rem;
  background: var(--ink);
  color: var(--cream-78);
  border-radius: var(--r-md);
  font-family: ui-monospace, 'SF Mono', Menlo, Consolas, monospace;
  font-size: .8rem;
  line-height: 1.72;
  white-space: pre-wrap;
  word-break: break-word;
  max-height: 22rem; overflow: auto;
}
.summary__actions { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.2rem; }
/* Messenger stays the lead channel; SMS and Email are equal-weight
   secondary options that wrap underneath it on narrow screens. */
.summary__actions #messengerBtn { flex: 1 1 100%; }
.summary__actions .btn--outline { flex: 1 1 11rem; }
@media (min-width: 620px) {
  .summary__actions #messengerBtn { flex: 1 1 15rem; max-width: 22rem; }
}

/* Hide the SMS option on desktop: an `sms:` link usually does nothing on a
   computer with no messaging app registered, and a button that appears to do
   nothing is worse than no button. Desktop users still get Messenger + Email.
   Two queries on purpose — pointer detection is unreliable on some browsers,
   so the width query guarantees the behaviour either way. */
@media (hover: hover) and (pointer: fine) { #smsBtn { display: none; } }
@media (min-width: 1000px)               { #smsBtn { display: none; } }

.summary__boxhead {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap;
  margin: 1.2rem 0 .45rem;
}
.summary__boxlabel {
  font-size: var(--fs-eyebrow); font-weight: 700;
  letter-spacing: .19em; text-transform: uppercase; color: var(--ink-38);
}
.summary__boxtools {
  display: flex; align-items: center; gap: .5rem;
  font-size: var(--fs-xs); color: var(--ink-38);
}

/* Presented as an information panel rather than fine print: this text tells
   the client what to do if the prefill does not work, so it has to be read. */
.summary__note {
  font-size: var(--fs-sm);
  line-height: 1.62;
  color: var(--ink);
  margin-top: 1.1rem;
  max-width: 62ch;
  background: rgba(234, 220, 203, .55);
  border-left: 3px solid var(--champagne);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  padding: .85rem 1rem;
}
.summary__note.is-armed {
  background: rgba(198, 166, 106, .22);
  font-weight: 600;
}
/* Shown only if the browser genuinely refused to copy */
.summary__note.is-manual {
  color: var(--wine);
  font-weight: 600;
  background: rgba(214, 40, 53, .07);
  border-left: 2px solid var(--crimson);
  padding: .7rem .9rem;
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
}

/* A real button that reads as inline link text */
.linkbtn {
  font: inherit;
  color: var(--crimson-ink);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
  padding: 0;
}
.linkbtn:hover { color: var(--wine); }

.summary__fallback {
  font-size: var(--fs-sm);
  line-height: 1.6;
  color: var(--ink-70);
  margin-top: .8rem;
}
.summary__fallback a { color: var(--crimson-ink); font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }

/* --------------------------------------------------------------------------
   18  HIGH-ANGLE NOTICE
   -------------------------------------------------------------------------- */
.soon { padding-bottom: var(--section); }
.soon__inner {
  border: 1.5px dashed var(--ink-14);
  border-radius: var(--r-lg);
  padding: clamp(1.4rem, 3vw, 2.2rem);
  max-width: 62ch;
}
.soon__title { font-size: var(--fs-h3); font-weight: 800; margin: .7rem 0 .4rem; letter-spacing: -.015em; }
.soon p { font-size: var(--fs-sm); color: var(--ink-55); }
.soon a { color: var(--crimson-ink); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }

/* --------------------------------------------------------------------------
   19  FINALE CTA (dark)
   -------------------------------------------------------------------------- */
.finale {
  position: relative;
  background: linear-gradient(168deg, var(--wine) 0%, #2C0E15 52%, var(--ink) 100%);
  color: var(--warm-white);
  padding-block: clamp(4.5rem, 9vw, 8rem);
  overflow: hidden;
  text-align: center;
}
.finale__glow {
  position: absolute; left: 50%; top: 8%;
  width: min(120vw, 900px); aspect-ratio: 1;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(214,40,53,.34) 0%, rgba(214,40,53,0) 62%);
  filter: blur(28px);
  animation: glowPulse 12s ease-in-out infinite alternate;
}
@keyframes glowPulse {
  0%   { opacity: .68; transform: translateX(-50%) scale(1); }
  100% { opacity: 1;   transform: translateX(-50%) scale(1.14); }
}
.finale__inner { position: relative; display: flex; flex-direction: column; align-items: center; }
.finale__title {
  font-size: var(--fs-h2);
  font-weight: 800; line-height: 1.03;
  letter-spacing: -.025em;
  max-width: 22ch;
  text-wrap: balance;
}
.finale__lede { color: var(--cream-78); font-size: var(--fs-lede); margin-top: 1.1rem; max-width: 46ch; }
.finale .btn { margin-top: 2.1rem; }
.finale .btn--primary { --btn-fill: var(--warm-white); }
.finale .btn--primary:hover, .finale .btn--primary:focus-visible { color: var(--wine); }

/* --------------------------------------------------------------------------
   20  FOOTER
   -------------------------------------------------------------------------- */
.foot { background: var(--ink); color: var(--cream-78); padding-top: clamp(3rem, 6vw, 5rem); }
.foot__inner {
  display: grid;
  gap: clamp(2rem, 4vw, 3rem);
  padding-bottom: clamp(2.4rem, 4vw, 3.4rem);
}
.foot__brand img { width: auto; height: 42px; }
.foot__tag {
  font-family: var(--f-display);
  font-size: 1.02rem;
  color: var(--champagne);
  margin-top: .85rem;
}
.foot__h {
  font-size: var(--fs-eyebrow); font-weight: 700;
  letter-spacing: .19em; text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 1rem;
}
.foot address { font-style: normal; font-size: var(--fs-sm); line-height: 1.75; }
.foot__area { font-size: var(--fs-xs); color: var(--cream-55); margin-top: .8rem; max-width: 30ch; }
.foot__links { display: grid; gap: .55rem; }
.foot__links a {
  font-size: var(--fs-sm);
  color: var(--cream-78);
  transition: color .2s var(--e-out);
  display: inline-block;
  padding: .15rem 0;
}
.foot__links a:hover, .foot__links a:focus-visible { color: var(--champagne); }
.foot__note { font-size: var(--fs-xs); color: var(--cream-55); margin-top: 1rem; max-width: 30ch; }

.foot__base {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: .5rem 1.5rem;
  max-width: var(--wrap); margin-inline: auto;
  padding: 1.3rem var(--gutter);
  border-top: 1px solid rgba(255,253,248,.1);
  font-size: var(--fs-xs);
  color: var(--cream-55);
}

/* Touch devices: guarantee 44px minimum tap targets on stacked link lists.
   Kept off precision-pointer desktops so the footer stays visually compact. */
@media (pointer: coarse), (max-width: 999px) {
  .foot__links a {
    min-height: 44px;
    display: flex;
    align-items: center;
    padding: 0;
  }
}

/* --------------------------------------------------------------------------
   21  STICKY MOBILE CTA
   -------------------------------------------------------------------------- */
.mobicta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: none;
  align-items: center; gap: .6rem;
  padding: .6rem clamp(.7rem, 3vw, 1rem);
  padding-bottom: calc(.6rem + env(safe-area-inset-bottom, 0px));
  background: rgba(248, 242, 233, .93);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--ink-08);
  transform: translateY(110%);
  transition: transform .34s var(--e-out);
}
.mobicta.is-in { transform: translateY(0); }
.mobicta.is-hidden { transform: translateY(110%); }
.mobicta__msg {
  display: grid; place-items: center; flex: none;
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--ink-14);
  color: var(--ink);
}
.mobicta__msg svg { width: 22px; height: 22px; }

/* --------------------------------------------------------------------------
   22  MOTION SYSTEM
   -------------------------------------------------------------------------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .72s var(--e-out), transform .72s var(--e-out);
  transition-delay: calc(var(--d, 0) * 90ms);
}
[data-reveal].is-in { opacity: 1; transform: none; }

/* Line-mask reveal for the hero headline */
.hero__title .line > span {
  transform: translateY(105%);
  transition: transform .95s var(--e-soft);
  transition-delay: calc(var(--d, 0) * 90ms);
}
[data-reveal].is-in .line > span { transform: translateY(0); }
.hero__title .line:nth-child(2) > span { transition-delay: calc(var(--d, 0) * 90ms + 110ms); }

[data-reveal-item] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .68s var(--e-out), transform .68s var(--e-out);
}
[data-reveal-group].is-in [data-reveal-item] { opacity: 1; transform: none; }
[data-reveal-group].is-in [data-reveal-item]:nth-child(1)  { transition-delay: .04s; }
[data-reveal-group].is-in [data-reveal-item]:nth-child(2)  { transition-delay: .11s; }
[data-reveal-group].is-in [data-reveal-item]:nth-child(3)  { transition-delay: .18s; }
[data-reveal-group].is-in [data-reveal-item]:nth-child(4)  { transition-delay: .25s; }
[data-reveal-group].is-in [data-reveal-item]:nth-child(5)  { transition-delay: .32s; }
[data-reveal-group].is-in [data-reveal-item]:nth-child(6)  { transition-delay: .39s; }
[data-reveal-group].is-in [data-reveal-item]:nth-child(7)  { transition-delay: .46s; }
[data-reveal-group].is-in [data-reveal-item]:nth-child(8)  { transition-delay: .50s; }
[data-reveal-group].is-in [data-reveal-item]:nth-child(9)  { transition-delay: .54s; }
[data-reveal-group].is-in [data-reveal-item]:nth-child(10) { transition-delay: .58s; }
[data-reveal-group].is-in [data-reveal-item]:nth-child(n+11) { transition-delay: .62s; }

/* --------------------------------------------------------------------------
   23  RESPONSIVE
   -------------------------------------------------------------------------- */

/* ---- Mobile nav: sheet menu (below 1000px) ---- */
@media (max-width: 999px) {
  .nav-toggle { display: inline-flex; }

  .nav {
    position: fixed; inset: 0;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    padding: calc(var(--nav-h) + 2rem) var(--gutter) 2rem;
    background: var(--porcelain);
    background-image:
      radial-gradient(80% 50% at 90% 4%, rgba(214,40,53,.13) 0%, transparent 60%),
      radial-gradient(60% 40% at 0% 100%, rgba(198,166,106,.16) 0%, transparent 60%);
    opacity: 0; visibility: hidden;
    transform: translateY(-1.2rem);
    transition: opacity .3s var(--e-out), transform .34s var(--e-out), visibility .3s;
    overflow-y: auto;
  }
  .nav.is-open { opacity: 1; visibility: visible; transform: none; }

  .nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav__list li { border-bottom: var(--hair); }
  .nav__list a {
    display: block;
    padding: 1.05rem .2rem;
    font-size: 1.22rem;
    font-weight: 700;
    letter-spacing: -.015em;
    color: var(--ink);
    min-height: 48px;
  }
  .nav__list a::after { display: none; }
  .nav__cta { margin-top: 1.8rem; width: 100%; min-height: 52px; font-size: var(--fs-sm); }

  .mobicta { display: flex; }
  body { padding-bottom: 0; }
}

/* ---- Narrow screens: keep the print stack fully inside the viewport ----
   The planes are rotated, so their bounding boxes grow past their declared
   width. body{overflow-x:hidden} would silently crop the artwork, so the
   stack is inset and tightened instead of relying on clipping. */
@media (max-width: 700px) {
  .print-stack { aspect-ratio: 1 / 1; max-width: 460px; }
  .plane--front { width: 78%; left: 0; top: 15%; }
  .plane--back  { width: 56%; right: 3%; top: 1%; transform: rotate(4.5deg) rotateX(var(--rx)) rotateY(var(--ry)) translateZ(10px); }
  .plane--strip { width: 23%; right: 7%; bottom: 6%; transform: rotate(-5deg) rotateX(var(--rx)) rotateY(var(--ry)) translateZ(60px); }
  .plane__meta { font-size: .52rem; bottom: -1.3rem; }
  .plane--strip .plane__meta { right: 0; }
  .experience__stat { right: 0; bottom: -1.1rem; max-width: 13.5rem; padding: .85rem 1rem; }
  .experience__stat-k { font-size: 2rem; }
}

/* ---- Small phones ---- */
@media (max-width: 480px) {
  /* keep the aligned summary from wrapping mid-value on narrow screens */
  .summary__box { font-size: .71rem; padding: .9rem 1rem; }
}

@media (max-width: 420px) {
  .pass { grid-template-columns: 82px auto 1fr; }
  .pass__body { padding: 1.1rem; }
  .prog__t { display: none; }
  .prog__i { gap: 0; }
  .lb { grid-template-columns: 1fr; padding-inline: .6rem; }
  .lb__nav { position: absolute; bottom: 1.1rem; }
  .lb__nav--prev { left: 25%; }
  .lb__nav--next { right: 25%; }
  .brand__mark { height: 26px; }
}

/* ---- Tablet ---- */
@media (min-width: 640px) {
  .grid2 { grid-template-columns: 1fr 1fr; }
  .bento { columns: 3; }
  .foot__inner { grid-template-columns: repeat(2, 1fr); }
  .vs__grid { grid-template-columns: repeat(2, 1fr); }
  .vcard--wide { grid-column: 1 / -1; }
}

/* ---- Laptop ---- */
@media (min-width: 1000px) {
  .hero__inner { grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 4vw, 4rem); }
  .experience__inner { grid-template-columns: .92fr 1.08fr; }
  .passes { grid-template-columns: repeat(3, 1fr); }
  .pass { grid-template-columns: 1fr; grid-template-rows: auto auto 1fr; }
  .pass__stub { flex-direction: row; align-items: baseline; justify-content: center; gap: .5rem; padding: 1.4rem 1rem; }
  .pass__perf { width: auto; height: 1px; }
  .pass__perf::before { border-left: 0; border-top: 1.5px dashed var(--ink-14); }
  .pass__perf::after {
    top: 50%; left: -7px;
    transform: translateY(-50%);
    box-shadow: calc(100% + 7px) 0 0 var(--porcelain);
  }
  .process__inner { grid-template-columns: .8fr 1.2fr; }
  .process__aside { position: sticky; top: calc(var(--nav-h) + 2rem); }
  .faq__inner { grid-template-columns: .78fr 1.22fr; }
  .faq__head { position: sticky; top: calc(var(--nav-h) + 2rem); }
  .foot__inner { grid-template-columns: 1.25fr .95fr 1fr .8fr; }
  .bento { columns: 4; }
  /* 5 reels across the top row, testimonial spanning underneath */
  .vs__grid { grid-template-columns: repeat(5, 1fr); }
  .vcard--wide { grid-column: 2 / 5; }
}

/* ---- Desktop ---- */
@media (min-width: 1280px) {
  .print-stack { max-width: 620px; }
  .voices__grid { grid-template-columns: repeat(4, 1fr); }
}

/* --------------------------------------------------------------------------
   24  REDUCED MOTION & PRINT
   Every animation collapses to its finished state — nothing is hidden or
   made unreachable, and the design still reads as intended.
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    transition-delay: 0ms !important;
    scroll-behavior: auto !important;
  }

  /* reveals: show final state immediately */
  [data-reveal], [data-reveal-item] { opacity: 1 !important; transform: none !important; }
  .hero__title .line > span { transform: none !important; }

  /* ambient field: hold still, keep the composition */
  .mf-wash, .mf-curves, .mf-frames, .mf-reg, .mf-grain, .finale__glow { animation: none !important; }
  .mf-grain { opacity: .03; }

  /* ribbon: stop scrolling and wrap so every item stays visible */
  .ribbon__viewport { width: 100%; }
  .ribbon__track { animation: none !important; flex-wrap: wrap; justify-content: center; width: 100%; }
  .ribbon__track--clone { display: none; }

  .showcase__hint svg { animation: none !important; }

  /* hero print stack: no pointer tilt */
  .print-stack { --rx: 0deg !important; --ry: 0deg !important; }

  /* Video showcase: no autoplay (JS also skips it). The poster stays put and
     the play button remains the way in, so nothing becomes unreachable. */
  .vcard__spinner { animation: none !important; }
  .vcard__stage:hover { transform: none !important; }
  .vcard.is-playing .vcard__play { opacity: 1 !important; pointer-events: auto !important; transform: translate(-50%, -50%) !important; }
}

@media print {
  .masthead, .mobicta, .memory-field, .lb, .showcase__hint, .inquiry__nav,
  .vs__sound, .vcard__play, .vcard__spinner { display: none !important; }
  body { background: #fff; color: #000; }
  .ac__a { max-height: none !important; }
  .showcase, .finale, .foot, .ribbon { background: #fff !important; color: #000 !important; }
}
