/* ============================================================
   IZH COFFEE — Homepage styles
   hero · marquee · featured · bento · story · film · reviews ·
   gallery · faq · cta
   ============================================================ */

/* ---------------- 1 · HERO — light, airy, premium ---------------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background:
    radial-gradient(920px 560px at 80% 14%, rgba(201, 168, 118, .26), transparent 62%),
    radial-gradient(720px 520px at 6% 94%, rgba(201, 168, 118, .14), transparent 66%),
    linear-gradient(180deg, #FFFEFB, var(--cream) 55%, var(--cream-200));
  color: var(--ink);
  overflow: hidden;
}
.hero-glow {
  position: absolute; top: -22%; right: -8%;
  width: clamp(380px, 48vw, 760px); aspect-ratio: 1;
  background: radial-gradient(circle, rgba(201, 168, 118, .22), transparent 64%);
  pointer-events: none;
}
.hero-grain {
  position: absolute; inset: 0; opacity: .035; pointer-events: none;
  background-image: radial-gradient(rgba(92, 42, 26, .9) .5px, transparent .6px);
  background-size: 22px 22px;
}
/* drifting aurora blobs — soft warm light, GPU transform only */
.hero-aurora { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.hero-aurora i {
  position: absolute; border-radius: 50%;
  filter: blur(70px); will-change: transform;
  opacity: .55;
}
.hero-aurora i:nth-child(1) {
  width: 44vw; height: 44vw; left: -12%; top: -18%;
  background: radial-gradient(circle, rgba(240, 226, 197, .9), transparent 65%);
  animation: auroraA 16s ease-in-out infinite alternate;
}
.hero-aurora i:nth-child(2) {
  width: 36vw; height: 36vw; right: -10%; bottom: -22%;
  background: radial-gradient(circle, rgba(201, 168, 118, .5), transparent 65%);
  animation: auroraB 19s ease-in-out infinite alternate;
}
.hero-aurora i:nth-child(3) {
  width: 26vw; height: 26vw; left: 38%; top: 52%;
  background: radial-gradient(circle, rgba(226, 201, 154, .42), transparent 65%);
  animation: auroraC 22s ease-in-out infinite alternate;
}
@keyframes auroraA { to { transform: translate3d(9vw, 6vh, 0) scale(1.12); } }
@keyframes auroraB { to { transform: translate3d(-7vw, -7vh, 0) scale(1.18); } }
@keyframes auroraC { to { transform: translate3d(-6vw, 5vh, 0) scale(.92); } }
.hero-inner {
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  align-items: center;
  gap: clamp(20px, 4vw, 56px);
  padding-top: calc(var(--nav-h) + clamp(8px, 2vh, 26px));
  padding-bottom: clamp(40px, 7vh, 72px);
}
/* oversized 3D canvas bleeds into the copy column — text always paints above */
.hero-copy { position: relative; z-index: 2; }
.hero-kicker {
  font-size: clamp(11px, 1.1vw, 13px);
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold-600);
  font-weight: 600;
  margin-bottom: clamp(12px, 2vh, 22px);
}
.hero-title {
  font-size: clamp(34px, 5.8vw, 74px);
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--ink);
  margin-bottom: clamp(12px, 2.2vh, 22px);
}
.hero-title .line { display: block; overflow: hidden; }
.hero-title .w { display: inline-block; will-change: transform; }
.hero-title em {
  font-style: normal;
  font-weight: 800;
  background: linear-gradient(110deg, var(--gold-600) 20%, #8A6234 40%, #D9B97F 50%, #8A6234 60%, var(--gold-600) 80%);
  background-size: 220% 100%;
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  animation: heroShimmer 5.5s ease-in-out infinite;
}
@keyframes heroShimmer { 0% { background-position: 110% 0; } 55%, 100% { background-position: -110% 0; } }
.hero-sub {
  max-width: 470px;
  color: var(--muted);
  font-size: clamp(14px, 1.4vw, 16.5px);
  line-height: 1.7;
  margin-bottom: clamp(18px, 3vh, 30px);
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: clamp(20px, 3.4vh, 38px); }
/* magnetic buttons: Motion owns transform — CSS must not transition it */
.hero-cta .btn { transition-property: box-shadow, background, color, border-color; }
.hero-stats {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: clamp(12px, 1.6vw, 22px);
  font-size: clamp(11.5px, 1.1vw, 13px);
  color: var(--muted);
  font-weight: 600;
  letter-spacing: .04em;
}
.hero-stats span { display: flex; align-items: center; gap: clamp(12px, 1.6vw, 22px); }
.hero-stats span + span::before {
  content: ""; width: 1px; height: 14px; background: rgba(201, 168, 118, .4); display: inline-block;
}
.hero-stage { position: relative; aspect-ratio: 1; max-height: 72svh; }
.hero-stage::before {
  content: ""; position: absolute; inset: 8%;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 42%, rgba(201, 168, 118, .22), rgba(201, 168, 118, .05) 58%, transparent 70%);
  pointer-events: none;
}
/* oversized brand word — typographic depth behind the cup */
.hero-word {
  position: absolute; left: 50%; top: 46%;
  transform: translate(-50%, -50%);
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(150px, 24vw, 340px);
  letter-spacing: .02em;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(169, 136, 91, .3);
  pointer-events: none; user-select: none;
  z-index: 0;
}
/* soft elliptical floor shadow — breathes with the cup's float */
.hero-floor {
  position: absolute; left: 50%; bottom: 7%;
  width: 52%; height: 7%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(74, 35, 23, .22), rgba(74, 35, 23, .08) 55%, transparent 72%);
  filter: blur(6px);
  pointer-events: none;
  z-index: 0;
  animation: heroFloor 5.7s ease-in-out infinite;
}
@keyframes heroFloor {
  0%, 100% { transform: translateX(-50%) scale(1); opacity: .9; }
  50% { transform: translateX(-50%) scale(.86); opacity: .65; }
}
/* safe-frame: canvas is 48% larger than the stage (camera.zoom compensates in
   three-scenes.js) so the cup/beans always have transparent margin — they can
   bob, tilt and orbit without ever hard-cutting at the canvas edge. A soft
   radial mask fades the last few % so even extreme drift dissolves gracefully. */
#heroCup {
  position: absolute; inset: -24%; width: 148%; height: 148%; z-index: 1;
  max-width: none; /* shared.css clamps canvas to 100% — must not clamp the safe-frame */
  pointer-events: none;
  opacity: 0; transition: opacity 1.1s var(--ease-out);
  -webkit-mask-image: radial-gradient(ellipse 50% 50% at 50% 50%, #000 80%, transparent 99%);
  mask-image: radial-gradient(ellipse 50% 50% at 50% 50%, #000 80%, transparent 99%);
}
#heroCup.ready { opacity: 1; }
/* static fallback photo — hidden by default; shown ONLY when WebGL/3D fails,
   so the image never flashes before the 3D cup loads */
.hero-fallback {
  position: absolute; inset: 12%; width: 76%; height: 76%; object-fit: cover; z-index: 1;
  border-radius: var(--radius-lg);
  opacity: 0; visibility: hidden; transition: opacity .8s;
  box-shadow: var(--shadow-lg);
}
.hero-fallback.show { opacity: .95; visibility: visible; }
.hero-scroll {
  position: absolute; left: 50%; bottom: 18px; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--gold-600);
}
.hero-scroll .hs-text { font-size: 10.5px; letter-spacing: .3em; text-transform: uppercase; }
.hero-scroll .hs-line {
  width: 1.5px; height: 44px; border-radius: 2px; overflow: hidden; position: relative;
  background: rgba(201, 168, 118, .22);
}
.hero-scroll .hs-line::after {
  content: ""; position: absolute; left: 0; top: -50%; width: 100%; height: 50%;
  background: var(--gold); animation: scrollHint 1.9s var(--ease-out) infinite;
}
@keyframes scrollHint { 0% { top: -50%; } 70%, 100% { top: 110%; } }

/* ---------------- 2 · MARQUEE — soft gold ribbon ---------------- */
.marquee-band {
  background: linear-gradient(100deg, var(--gold-200), #EBD8B2 50%, var(--gold-200));
  border-block: 1px solid var(--line-gold);
  padding: clamp(16px, 2.4vh, 28px) 0;
  transform: rotate(-1.6deg) scale(1.02);
  margin-block: clamp(-8px, -1vh, -4px) clamp(10px, 2vh, 20px);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.marquee { overflow: hidden; white-space: nowrap; }
.marquee + .marquee { margin-top: 10px; opacity: .5; }
/* no gap on the track: each .m-item carries its own trailing space (padding-right)
   so the two copies tile with uniform spacing — required for a seamless -50% loop */
.m-track { display: inline-flex; align-items: center; will-change: transform; }
.m-item {
  display: inline-flex; align-items: center; gap: 28px; padding-right: 28px;
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(16px, 2vw, 24px);
  letter-spacing: .12em;
  color: var(--maroon);
}
.m-item .dot { width: 7px; height: 11px; border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%; background: var(--gold-600); flex: 0 0 auto; }

/* ---------------- 3 · FEATURED ---------------- */
.center-cta { text-align: center; margin-top: clamp(22px, 3.4vh, 36px); }

/* ---------------- 4 · CATEGORY BENTO ---------------- */
.cat-band { background: var(--cream-200); }
.cat-bento {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr 1.25fr;
  gap: clamp(12px, 1.6vw, 20px);
}
.cat-tile {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--cream-300);
  border: 1px solid var(--line);
  aspect-ratio: 3 / 3.6;
  display: block;
  transition: box-shadow .5s var(--ease-out), transform .5s var(--ease-out);
}
.cat-tile:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.cat-tile img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease-out);
}
.cat-tile:hover img { transform: scale(1.07); }
/* gentle base scrim only — keeps the photo visible, makes the label read */
.cat-tile::after {
  content: ""; position: absolute; inset: 52% 0 0 0; pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(46, 22, 16, .52));
}
.ct-info {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 14px 18px 16px;
  display: grid; grid-template-columns: 1fr auto; align-items: center; column-gap: 8px;
}
.ct-info h3 { font-size: clamp(16px, 1.6vw, 21px); color: #FFF8EC; grid-column: 1; text-shadow: 0 1px 8px rgba(46, 22, 16, .4); }
.ct-info p { font-size: 12.5px; color: rgba(240, 226, 197, .9); grid-column: 1; }
.ct-arrow {
  grid-column: 2; grid-row: 1 / 3;
  width: 36px; height: 36px; border-radius: 50%;
  border: 1.5px solid rgba(240, 226, 197, .55);
  position: relative;
  transition: background .3s, transform .45s var(--ease-spring);
}
.ct-arrow::after {
  content: ""; position: absolute; inset: 0; margin: auto; width: 10px; height: 10px;
  border-top: 1.8px solid var(--gold-200); border-right: 1.8px solid var(--gold-200);
  transform: rotate(45deg) translate(-1px, 1px);
}
.cat-tile:hover .ct-arrow { background: rgba(201, 168, 118, .35); transform: translateX(4px); }

/* ---------------- 5 · STORY — bright studio ---------------- */
.story-band {
  background:
    radial-gradient(720px 420px at 86% 10%, rgba(201, 168, 118, .16), transparent 60%),
    #fff;
  border-block: 1px solid var(--line);
  padding-block: clamp(56px, 8vh, 96px);
  overflow: hidden;
}
.story-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: clamp(26px, 4.5vw, 72px);
  align-items: center;
}
.story-stage { position: relative; aspect-ratio: 1; max-height: 64svh; }
/* safe-frame: oversized canvas + camera.zoom (three-scenes.js) — the paper cup
   tilts/bobs with generous margin, never cut at the stage edge */
#paperCanvas {
  position: absolute; inset: -22%; width: 144%; height: 144%;
  max-width: none; /* shared.css clamps canvas to 100% — must not clamp the safe-frame */
  pointer-events: none;
  opacity: 0; transition: opacity 1s var(--ease-out);
  -webkit-mask-image: radial-gradient(ellipse 50% 50% at 50% 50%, #000 82%, transparent 99%);
  mask-image: radial-gradient(ellipse 50% 50% at 50% 50%, #000 82%, transparent 99%);
}
#paperCanvas.ready { opacity: 1; }
/* oversized paper-cup canvas bleeds into the copy column — text stays above */
.story-copy { position: relative; z-index: 2; }
.story-copy .section-head { margin-bottom: clamp(22px, 3vh, 34px); }
.story-copy .section-head p + p { margin-top: 10px; }
.story-stats {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: clamp(12px, 1.8vw, 20px);
}
.stat {
  border: 1px solid var(--line-gold);
  border-radius: var(--radius);
  padding: clamp(14px, 2vh, 20px) clamp(14px, 1.6vw, 22px);
  background: var(--cream);
}
.st-num {
  display: block;
  font-family: var(--f-display);
  font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 800;
  color: var(--maroon);
  font-variant-numeric: tabular-nums;
}
.st-label { font-size: 12.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); font-weight: 600; }

/* ---------------- 6 · BREW FILM — warm light stage ---------------- */
.film-band {
  position: relative;
  background:
    radial-gradient(800px 480px at 14% 18%, rgba(201, 168, 118, .2), transparent 60%),
    var(--cream-200);
  padding-block: clamp(48px, 7vh, 84px);
  overflow: hidden;
}
#beansCanvas {
  position: absolute; inset: 0; width: 100%; height: 100%;
  pointer-events: none;
  opacity: 0; transition: opacity 1.2s var(--ease-out);
  /* beans fade out near the section edges instead of hard-cutting */
  -webkit-mask-image: linear-gradient(180deg, transparent 0, #000 14%, #000 86%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0, #000 14%, #000 86%, transparent 100%);
}
#beansCanvas.ready { opacity: .9; }
.film-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(24px, 4vw, 64px);
  align-items: center;
}
.film-copy .btn { margin-top: 4px; }
.film-frame {
  justify-self: center;
  width: min(100%, clamp(240px, 30vw, 330px));
  border-radius: clamp(22px, 3vw, 34px);
  padding: 9px;
  background: linear-gradient(160deg, rgba(201, 168, 118, .7), rgba(201, 168, 118, .22) 45%, rgba(201, 168, 118, .55));
  box-shadow: 0 30px 70px -28px rgba(92, 42, 26, .35), var(--shadow-gold);
}
.film-frame { position: relative; }
.film-frame video {
  width: 100%;
  aspect-ratio: 720 / 1272;
  max-height: 70svh;
  object-fit: cover;
  border-radius: clamp(15px, 2.2vw, 26px);
  background: var(--cream-300);
  display: block;
}
/* play/pause control — always reachable, fades away while playing */
.film-play {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 64px; height: 64px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(253, 251, 246, .92);
  border: 1px solid var(--line-gold);
  color: var(--maroon);
  box-shadow: 0 14px 36px -10px rgba(92, 42, 26, .45), var(--shadow-gold);
  transition: opacity .35s var(--ease-out), transform .35s var(--ease-spring), background .3s;
  z-index: 2;
}
.film-play svg { width: 24px; height: 24px; flex: 0 0 auto; }
.film-play:hover { background: #fff; transform: translate(-50%, -50%) scale(1.07); }
.film-frame.playing .film-play { opacity: 0; pointer-events: none; }
.film-frame.playing:hover .film-play { opacity: .92; pointer-events: auto; }

/* ---------------- 7 · REVIEWS WALL ---------------- */
.rw-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(12px, 1.8vw, 22px);
}
.rw-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(18px, 2.2vw, 26px);
  display: flex; flex-direction: column; gap: 12px;
  min-width: 0; /* let grid tracks shrink — stops cards overflowing past 100vw */
  transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out);
}
.rw-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
/* allow the "Verified" chip to drop under the stars instead of forcing the card
   wider than its track (that nowrap chip was a hidden source of overflow) */
.rw-top { display: flex; align-items: center; justify-content: space-between; gap: 10px; flex-wrap: wrap; row-gap: 8px; }
.rw-text { color: var(--ink-soft); font-size: 14.5px; line-height: 1.7; flex: 1; }
.rw-photo { display: flex; gap: 8px; }
.rw-photo button { border-radius: var(--radius-sm); overflow: hidden; width: 64px; height: 64px; }
.rw-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--ease-out); }
.rw-photo button:hover img { transform: scale(1.1); }
.rw-who { display: flex; align-items: center; gap: 11px; border-top: 1px solid var(--line); padding-top: 13px; }
.rw-ava {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-300), var(--gold-600)); color: var(--espresso-900);
  display: grid; place-items: center;
  font-weight: 800; font-size: 14px; letter-spacing: .04em;
}
.rw-who .n { font-weight: 600; font-size: 14px; }
.rw-who .p { font-size: 12px; color: var(--muted); }
.rw-who .p a { color: var(--gold-600); font-weight: 600; }
.rw-who .p a:hover { text-decoration: underline; }

/* ---------------- 8 · GALLERY ---------------- */
.gal-band { background: var(--cream-200); }
.gal-bento {
  display: grid;
  grid-template-columns: 1.1fr .9fr 1.1fr;
  grid-template-rows: repeat(2, clamp(130px, 21vw, 250px));
  gap: clamp(10px, 1.4vw, 18px);
}
.gal-tile {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--line);
  display: block;
}
.gal-tile.tall { grid-row: span 2; }
.gal-tile img:not(.gt-logo) {
  width: 100%; height: 112%; object-fit: cover; will-change: transform;
}
.gal-tile.brand {
  background: linear-gradient(135deg, var(--gold-200), var(--gold-300));
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
  color: var(--maroon); font-weight: 700; letter-spacing: .06em; font-size: clamp(12px, 1.3vw, 14.5px);
  transition: background .35s, transform .4s var(--ease-out);
}
.gal-tile.brand:hover { transform: translateY(-4px); }
.gal-tile.brand .gt-logo { height: clamp(44px, 6vw, 72px); width: auto; }

/* ---------------- 9 · FAQ ---------------- */
.faq-wrap { max-width: 760px; }
.faq-list {
  display: grid; gap: 10px;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .3s, box-shadow .3s;
}
.faq-item.open { border-color: var(--line-gold); box-shadow: var(--shadow-sm); }
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  text-align: left;
  font-weight: 600; font-size: clamp(14.5px, 1.4vw, 16.5px);
  padding: clamp(15px, 2vh, 19px) clamp(16px, 2vw, 22px);
}
.fq-ic {
  position: relative; width: 30px; height: 30px; border-radius: 50%;
  border: 1.5px solid var(--line-gold); flex: 0 0 auto;
  transition: transform .45s var(--ease-out), background .3s;
}
.fq-ic::before, .fq-ic::after {
  content: ""; position: absolute; inset: 0; margin: auto;
  background: var(--gold-600); border-radius: 2px;
}
.fq-ic::before { width: 12px; height: 1.6px; }
.fq-ic::after { width: 1.6px; height: 12px; transition: transform .4s var(--ease-out); }
.faq-item.open .fq-ic { transform: rotate(180deg); background: rgba(201, 168, 118, .14); }
.faq-item.open .fq-ic::after { transform: scaleY(0); }
.faq-a { height: 0; overflow: hidden; }
.faq-a p {
  padding: 0 clamp(16px, 2vw, 22px) clamp(16px, 2vh, 20px);
  color: var(--muted); font-size: 14.5px; line-height: 1.75;
  max-width: 62ch;
}

/* ---------------- 10 · CTA BAND ---------------- */
.cta-band {
  position: relative;
  background: linear-gradient(120deg, var(--gold-200), var(--gold) 55%, var(--gold-600));
  overflow: hidden;
  padding-block: clamp(48px, 7vh, 84px);
}
.cta-mark {
  position: absolute; right: -4%; top: 50%; transform: translateY(-50%) rotate(-8deg);
  height: 150%; opacity: .08; pointer-events: none;
}
.cta-inner { position: relative; text-align: center; display: grid; justify-items: center; gap: 18px; }
.cta-inner h2 {
  font-size: clamp(26px, 4vw, 46px);
  color: var(--espresso-900);
  max-width: 16ch;
}
.cta-inner p { font-size: 13.5px; color: rgba(42, 18, 13, .75); font-weight: 500; }

/* ---------------- RESPONSIVE ---------------- */
@media (max-width: 1080px) {
  .cat-bento { grid-template-columns: repeat(2, 1fr); }
  .rw-grid { grid-template-columns: repeat(2, 1fr); }
  .rw-card:last-child { grid-column: 1 / -1; }
}
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: calc(var(--nav-h) + 6px);
    padding-bottom: clamp(20px, 4svh, 34px);
    align-content: center;
  }
  .hero-stage {
    order: -1;
    max-height: 30svh;
    aspect-ratio: auto;
    height: 30svh;
    /* clearance for the oversized canvas bleed so the cup/beans never paint over
       the "Premium Coffee · Made in Bangladesh" kicker right below the stage */
    margin-bottom: clamp(16px, 4.5svh, 44px);
  }
  /* fade the canvas edges (esp. the bottom) earlier on phones — this is purely
     visual (mask only, camera.zoom untouched) so the model size is unchanged but
     the faint bottom bleed over the copy disappears */
  #heroCup {
    -webkit-mask-image: radial-gradient(ellipse 48% 47% at 50% 45%, #000 66%, transparent 90%);
    mask-image: radial-gradient(ellipse 48% 47% at 50% 45%, #000 66%, transparent 90%);
  }
  .story-grid { grid-template-columns: 1fr; }
  .story-stage { max-height: 38svh; aspect-ratio: auto; height: 38svh; }
  .film-grid { grid-template-columns: 1fr; }
  .film-copy { text-align: center; }
  .film-copy .section-head { margin-inline: auto; }
  .film-copy .kicker::before { display: none; }
  .film-frame { width: min(78%, 300px); }
  .film-frame video { max-height: 58svh; }
}
/* review testimonials are long + photo-rich cards — they stack to one column on
   narrow tablets/phones (2-up was overflowing the viewport on mobile) */
@media (max-width: 860px) {
  .rw-grid { grid-template-columns: 1fr; gap: 14px; }
  .rw-card:last-child { grid-column: auto; }
}
@media (max-width: 640px) {
  .hero-title { font-size: clamp(31px, 9.4vw, 42px); }
  .hero-sub { font-size: 13.5px; margin-bottom: 16px; }
  .hero-cta .btn { padding: 12px 18px; font-size: 13.5px; }
  .hero-stats { font-size: 10.5px; gap: 10px; }
  .hero-stats span { gap: 10px; }
  .hero-scroll { display: none; }
  .cat-bento { gap: 10px; }
  .cat-tile { aspect-ratio: 3 / 3.3; }
  .rw-grid { grid-template-columns: 1fr; gap: 12px; }
  .rw-card { padding: 16px; }
  .rw-text { font-size: 13.5px; }
  .rw-card:last-child { grid-column: auto; }
  .gal-bento {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, clamp(120px, 26vw, 180px));
  }
  .gal-tile.tall { grid-row: span 1; }
  .story-stats { gap: 10px; }
  .cta-inner h2 { max-width: 20ch; }
}
