/* ===== Design tokens ===== */
:root {
  --ink:        oklch(15% 0.012 40);
  --ink-soft:   oklch(22% 0.014 40);
  --ink-line:   oklch(30% 0.012 40);
  --paper:      oklch(97% 0.012 75);
  --paper-alt:  oklch(94% 0.016 70);
  --paper-line: oklch(88% 0.014 65);
  --signal:     oklch(68% 0.19 38);
  --signal-ink: oklch(20% 0.03 38);
  --signal-soft:oklch(93% 0.045 45);
  --text-dark:  oklch(20% 0.012 40);
  --text-muted-dark: oklch(42% 0.014 40);
  --text-light: oklch(97% 0.01 70);
  --text-muted-light: oklch(74% 0.012 60);

  --font-display: 'Unbounded', system-ui, sans-serif;
  --font-body: 'Inter Tight', system-ui, sans-serif;

  --fs-sm: 0.9375rem;
  --fs-base: 1.125rem;
  --fs-md: 1.3rem;
  --fs-lg: 1.7rem;
  --fs-xl: clamp(1.9rem, 3vw, 2.6rem);
  --fs-hero: clamp(2.4rem, 6vw, 4.4rem);

  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2.5rem;
  --space-5: 4rem;
  --space-6: 6rem;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;

  --ease-out-q: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-out-e: cubic-bezier(0.16, 1, 0.3, 1);

  color-scheme: light;
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--text-dark);
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
h1, h2, h3 { font-family: var(--font-display); margin: 0; color: inherit; letter-spacing: -0.01em; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font: inherit; background: none; border: none; padding: 0; color: inherit; }
.icon { width: 20px; height: 20px; flex-shrink: 0; }
.icon-lg { width: 30px; height: 30px; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 999;
  background: var(--signal); color: var(--signal-ink); padding: 12px 20px; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

:focus-visible { outline: 3px solid var(--signal); outline-offset: 2px; }

.section-inner { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

.eyebrow {
  font-family: var(--font-body); font-weight: 700; font-size: 0.8rem;
  text-transform: uppercase; letter-spacing: 0.14em; margin: 0 0 14px;
}
.eyebrow-dark { color: oklch(53% 0.19 40); }   /* burnt-orange — reads clearly on the light paper */
.eyebrow-light { color: var(--signal); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 24px; border-radius: 999px;
  font-family: var(--font-body); font-weight: 600; font-size: 0.95rem;
  cursor: pointer; white-space: nowrap; min-height: 44px;
  transition: transform 200ms var(--ease-out-q), background 200ms var(--ease-out-q), box-shadow 200ms var(--ease-out-q);
}
.btn:hover { transform: translateY(-2px); }
/* Every CTA is the same outline pill that links to WhatsApp — no green fill, no glyph.
   Light-section default: transparent -> ink fill on hover. */
.btn-whatsapp { background: transparent; border: 1.6px solid var(--ink); color: var(--ink); }
.btn-whatsapp:hover { background: var(--ink); border-color: var(--ink); color: var(--paper); }
/* Dark-section variant: transparent -> light fill on hover. */
.party-reel-section .btn-whatsapp,
.why-us .btn-whatsapp,
.site-footer .btn-whatsapp,
.mobile-menu .btn-whatsapp { border-color: var(--text-light); color: var(--text-light); }
.party-reel-section .btn-whatsapp:hover,
.why-us .btn-whatsapp:hover,
.site-footer .btn-whatsapp:hover,
.mobile-menu .btn-whatsapp:hover { background: var(--text-light); border-color: var(--text-light); color: var(--ink); }
.btn-primary { background: var(--signal); color: var(--signal-ink); }
.btn-primary:hover { box-shadow: 0 8px 22px oklch(68% 0.19 38 / 0.35); }
.btn-lg { padding: 16px 30px; font-size: 1.05rem; }

/* ===== Nav ===== */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: oklch(97% 0.012 75 / 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--paper-line);
}
.nav-inner {
  max-width: 1180px; margin: 0 auto; padding: 16px 24px;
  display: flex; align-items: center; gap: 28px;
}
.nav-brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-logo { width: 54px; height: 54px; flex-shrink: 0; }
.wordmark {
  font-family: var(--font-display); font-weight: 700; font-size: 1.2rem;
  color: var(--ink); letter-spacing: 0.03em; text-transform: uppercase;
}
.wordmark span { color: var(--signal); }
.footer-wordmark { font-size: 1.3rem; color: var(--text-light); }
.footer-brand-link { display: inline-flex; align-items: center; gap: 12px; }
.footer-brand-link .brand-logo { width: 64px; height: 64px; }
.nav-links { display: flex; gap: 26px; margin-left: auto; }
.nav-links a { font-weight: 600; font-size: 0.95rem; color: var(--text-muted-dark); transition: color 180ms; }
.nav-links a:hover { color: var(--ink); }
.nav-links a.active { color: var(--ink); position: relative; }
.nav-links a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px;
  height: 2px; background: var(--signal); border-radius: 2px;
}
.nav-cta { display: none; }   /* mockup nav ends at Contact — no header CTA */
.menu-toggle { display: none; width: 44px; height: 44px; flex-direction: column; justify-content: center; align-items: center; gap: 5px; cursor: pointer; }
.menu-toggle span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform 220ms var(--ease-out-q), opacity 220ms; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 99; background: var(--ink);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 28px;
  transform: translateY(-100%); transition: transform 320ms var(--ease-out-e);
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a { color: var(--text-light); font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; }
.mobile-menu .btn { margin-top: 12px; }

/* ===== Hero — orange card + photo stickers (Billy's mockup) ===== */
.hero {
  position: relative; min-height: calc(100svh - 76px);
  display: grid; place-items: start center;
  padding: 40px 40px 40px;
  background: var(--paper);
  background-image: radial-gradient(oklch(79% 0.022 72) 1.5px, transparent 1.8px);
  background-size: 28px 28px;
  overflow: hidden;
}
.sheet {
  position: relative; width: 100%; max-width: 1180px;
  height: min(600px, calc(100svh - 160px));
}

/* photos — two stacked left, two stacked right */
.photos { display: contents; }
.stk {
  position: absolute; z-index: 2;
  border-radius: 18px; overflow: hidden; aspect-ratio: 5 / 6;
  box-shadow: 0 0 0 8px #fff, 0 26px 50px -20px oklch(20% 0.02 40 / 0.42);
}
.stk img { width: 100%; height: 100%; object-fit: cover; }
.stk { border: 9px solid #fff; aspect-ratio: 4 / 5; box-shadow: 0 26px 52px -20px oklch(20% 0.02 40 / 0.42); }
.p1 { left: 3%;  top: 50%;   width: min(322px, 26%);   aspect-ratio: 68 / 108; transform: translateY(-50%) rotate(-3deg); z-index: 2; }
.p4 { display: none; }
.p2 { right: 2%; top: -6%;   width: min(238px, 19.5%); transform: rotate(3deg);  z-index: 3; }
.p3 { right: 1%; top: 44%;   width: min(272px, 22.5%); aspect-ratio: 4 / 4.5; transform: rotate(-3deg); z-index: 2; }
.p3 img { object-position: center 12%; }
.p5 { display: none; }   /* mobile-only right photo */

/* the orange card — a rounded slab, tilted, with the LEFT side cut ~26px shorter
   (angled top-left + bottom-left corners; right side stays fully rounded) */
.word-card {
  position: absolute; z-index: 4;
  left: 51.5%; top: 45%; transform: translate(-50%, -50%) rotate(-3deg);
  width: min(560px, 45%); min-width: 440px;
  color: var(--signal-ink);
  padding: 44px 46px 56px 32px;
}
/* white die-cut outline (matches the photo stickers) — left corners rounded, left side shorter */
.word-card::before {
  content: ""; position: absolute; inset: -15px -44px -15px -20px; z-index: -2;
  background: #fff;
  border-radius: 34px;
  box-shadow: 0 44px 84px -34px oklch(20% 0.02 40 / 0.5);
  clip-path: polygon(
    0 32px, 4px 20px, 13px 14px, 23px 12px,
    100% 0, 100% 100%,
    23px calc(100% - 12px), 13px calc(100% - 14px), 4px calc(100% - 20px), 0 calc(100% - 32px)
  );
}
/* the orange slab */
.word-card::after {
  content: ""; position: absolute; inset: -6px -36px -6px -12px; z-index: -1;
  background: var(--signal);
  border-radius: 30px;
  clip-path: polygon(
    0 28px, 4px 18px, 11px 13px, 20px 11px,
    100% 0, 100% 100%,
    20px calc(100% - 11px), 11px calc(100% - 13px), 4px calc(100% - 18px), 0 calc(100% - 28px)
  );
}
.word {
  margin: 0; font-family: var(--font-display); font-weight: 800;
  font-size: clamp(1.75rem, 2.8vw, 2.68rem); line-height: 1.03; letter-spacing: -0.035em;
}
.lede {
  color: oklch(28% 0.03 55); opacity: 0.72; margin: 16px 0 0; max-width: 46ch;
  font-size: clamp(0.98rem, 1.1vw, 1.14rem); line-height: 1.35;
}
.cta.btn {
  position: absolute; z-index: 6; left: 50%; bottom: 0;
  transform: translate(-50%, 50%);
  display: inline-flex; align-items: center; gap: 14px;
  background: #fff; border: 1.5px solid var(--ink); color: var(--ink);
  font-weight: 600; font-size: 1.05rem; padding: 17px 34px; border-radius: 999px;
  box-shadow: 0 22px 44px -16px oklch(20% 0.02 40 / 0.4);
  transition: background 180ms, color 180ms, transform 180ms;
}
.cta.btn:hover { background: var(--ink); color: #fff; transform: translate(-50%, 50%) translateY(-3px); }
.cta svg { width: 20px; height: 20px; }
.price-line { display: none; }

/* the @handle pill (over the left photos) + the black FROM/R950 tag (over the right) */
.handle {
  position: absolute; z-index: 5; left: 13%; top: 42%;
  display: inline-flex; align-items: center; gap: 9px;
  background: #fff; color: var(--ink);
  box-shadow: 0 0 0 7px #fff, 0 16px 34px -14px oklch(20% 0.02 40 / 0.34);
  font-family: var(--font-body); font-weight: 700; font-size: 0.92rem;
  padding: 12px 20px; border-radius: 999px; transform: rotate(-4deg);
}
.handle svg { width: 18px; height: 18px; }
.price { display: none; }   /* the black FROM/R950 tag — removed per Billy; "From R950" stays under the button */

/* Pretoria pin — mobile only */
.tab {
  display: none;
  align-items: center; gap: 6px;
  background: #fff; color: var(--ink);
  font-family: var(--font-body); font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; border-radius: 999px;
}
.tab svg { width: 14px; height: 14px; color: var(--signal); }

.scroll-cue {
  position: absolute; left: 50%; bottom: 14px; transform: translateX(-50%);
  z-index: 8; color: var(--ink-soft); display: flex; padding: 6px;
  animation: cue 1.9s ease-in-out infinite;
}
.scroll-cue:hover { color: var(--ink); }
.scroll-cue svg { width: 26px; height: 26px; }
@keyframes cue { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(5px); } }
@media (prefers-reduced-motion: reduce) { .scroll-cue { animation: none; } }

/* section jumps land clear of the sticky nav */
#services, #party-reel, #gallery, #why-us, #how-it-works, #book { scroll-margin-top: 88px; }

/* ===== Services ===== */
.services { padding: var(--space-6) 0; background: var(--paper); }
.services h2, .party-reel-section h2, .gallery-section h2, .find-us h2 { font-size: var(--fs-xl); font-weight: 700; max-width: none; margin-bottom: var(--space-4); }
@media (min-width: 901px) {
  .services h2, .party-reel-section h2, .gallery-section h2, .find-us h2,
  .why-us h2.light, .how-it-works h2 { white-space: nowrap; }
}
.service-card p, .why-item p, .how-steps p {
  display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 2; overflow: hidden;
}
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-3); }
.service-card {
  background: var(--paper-alt); border: 1px solid var(--paper-line); border-radius: var(--radius-lg);
  padding: var(--space-3); position: relative; overflow: hidden;
}
.service-num {
  font-family: var(--font-display); font-weight: 800; font-size: 3.5rem; color: var(--signal);
  display: block; line-height: 1; margin-bottom: var(--space-2);
}
.service-card h3 { font-size: 1.3rem; margin-bottom: 10px; }
.service-card p { color: var(--text-muted-dark); line-height: 1.55; }

/* ===== Party Reel ===== */
.party-reel-section { padding: var(--space-6) 0; background: var(--ink); color: var(--text-light); }
.party-reel-section .eyebrow-dark { color: var(--signal); }
.party-reel-section h2 { color: var(--text-light); }
.section-lede { color: var(--text-muted-light); max-width: 60ch; margin-bottom: var(--space-4); font-size: 1.05rem; }

.reel-stack { display: flex; flex-direction: column; align-items: stretch; gap: var(--space-4); }
.reel-card {
  width: 100%; max-width: 940px;
  background: var(--ink-soft); border: 1px solid var(--ink-line); border-radius: var(--radius-lg);
  padding: var(--space-4); display: grid; grid-template-columns: 1fr auto; gap: var(--space-4); align-items: center;
}
.reel-info { max-width: 42ch; }
.reel-sub {
  font-family: var(--font-body); font-weight: 700; font-size: 0.72rem; text-transform: uppercase;
  letter-spacing: 0.14em; color: var(--signal); margin-bottom: 10px;
}
.reel-label { font-family: var(--font-display); font-weight: 600; font-size: 1.35rem; line-height: 1.2; margin-bottom: 10px; }
.reel-note { color: var(--text-muted-light); font-size: 0.98rem; line-height: 1.55; margin-bottom: var(--space-3); }
.reel-frame-count { font-family: var(--font-body); font-weight: 600; font-size: 0.85rem; color: var(--text-muted-light); letter-spacing: 0.04em; }

/* Cap each session so the whole card — photo + scrubber — sits inside one viewport. */
.reel-stage-wrap { position: relative; max-width: min(44vh, 400px); margin: 0 auto; }
.reel-stage {
  position: relative; aspect-ratio: 4 / 5; width: 100%; border-radius: var(--radius-md); overflow: hidden;
  background: var(--ink); touch-action: pan-y;
  perspective: 900px;
}
.reel-stage img {
  width: 100%; height: 100%; object-fit: cover; user-select: none; -webkit-user-drag: none;
  transform: rotateY(var(--tilt, 0deg)); transition: transform 260ms var(--ease-out-q);
}
@media (prefers-reduced-motion: reduce) { .reel-stage img { transform: none !important; } }

.reel-controls { display: flex; align-items: center; gap: 12px; margin-top: var(--space-2); }
.reel-arrow {
  width: 44px; height: 44px; border-radius: 50%; background: var(--ink);
  border: 1px solid var(--ink-line); display: flex; align-items: center; justify-content: center;
  cursor: pointer; flex-shrink: 0; transition: background 180ms, border-color 180ms;
}
.reel-arrow:hover { background: var(--signal); border-color: var(--signal); color: var(--signal-ink); }
.reel-arrow svg { width: 18px; height: 18px; }

.reel-track {
  position: relative; flex: 1; height: 44px; display: flex; align-items: center; cursor: pointer;
  touch-action: none;
}
.reel-track-bg { position: absolute; left: 0; right: 0; height: 6px; border-radius: 4px; background: var(--ink-line); }
.reel-track-fill { position: absolute; left: 0; height: 6px; border-radius: 4px; background: var(--signal); }
.reel-handle {
  position: absolute; width: 22px; height: 22px; border-radius: 50%; background: var(--signal);
  border: 3px solid var(--ink); box-shadow: 0 2px 8px oklch(0% 0 0 / 0.4);
  transform: translateX(-50%); cursor: grab;
}
.reel-handle:active { cursor: grabbing; }

/* ===== Gallery ===== */
.gallery-section { padding: var(--space-6) 0; background: var(--paper-alt); }
/* 4 / 2 / 2 columns — image count (8) divides all three so every row is full */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
.gallery-grid button {
  display: block; border-radius: var(--radius-sm); overflow: hidden; cursor: pointer;
  aspect-ratio: 4/5; background: var(--paper-line);
}
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 320ms var(--ease-out-q); }
.gallery-grid button:hover img { transform: scale(1.05); }

/* ===== Why us ===== */
.why-us { padding: var(--space-6) 0; background: var(--ink); color: var(--text-light); }
.why-us h2.light { color: var(--text-light); font-size: var(--fs-xl); font-weight: 700; max-width: 20ch; margin-bottom: var(--space-4); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-3); }
.why-item {
  background: var(--ink-soft); border: 1px solid var(--ink-line);
  border-radius: var(--radius-lg); padding: var(--space-3);
}
.why-item svg { color: var(--signal); margin-bottom: 14px; }
.why-item h3 { font-size: 1.1rem; margin-bottom: 8px; }
.why-item p { color: var(--text-muted-light); font-size: 0.95rem; line-height: 1.5; }

/* ===== How it works ===== */
.how-it-works { padding: var(--space-6) 0; background: var(--paper); }
.how-it-works h2 { font-size: var(--fs-xl); font-weight: 700; max-width: 16ch; margin-bottom: var(--space-4); }
.how-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-3); margin-bottom: var(--space-4); }
.how-steps li { background: var(--paper-alt); border: 1px solid var(--paper-line); border-radius: var(--radius-lg); padding: var(--space-3); }
.how-num {
  display: flex; align-items: center; justify-content: center; width: 40px; height: 40px;
  border-radius: 50%; background: var(--signal); color: var(--signal-ink);
  font-family: var(--font-display); font-weight: 700; margin-bottom: var(--space-2);
}
.how-steps h3 { font-size: 1.15rem; margin-bottom: 8px; }
.how-steps p { color: var(--text-muted-dark); line-height: 1.5; }
.how-cta { margin: 0 auto; display: flex; width: fit-content; }

/* ===== Find us ===== */
.find-us { padding: var(--space-6) 0; background: var(--paper-alt); }
.find-us-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); align-items: center; }
.find-us h2 { margin-bottom: var(--space-3); }
.find-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: var(--space-3); }
.find-list li { display: flex; align-items: flex-start; gap: 12px; color: var(--text-muted-dark); }
.find-list svg { color: var(--signal-ink); margin-top: 2px; flex-shrink: 0; }
.map-wrap { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; border: 1px solid var(--paper-line); }
.map-wrap iframe { width: 100%; height: 100%; border: 0; }
.book-photo {
  border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/5;
  border: 1px solid var(--paper-line);
  max-width: min(38vh, 360px); margin-left: auto;   /* contained, doesn't tower over the copy */
}
.book-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
@media (max-width: 900px) {
  .book-photo { aspect-ratio: auto; max-width: none; margin: 0; }
  .book-photo img { height: auto; }
}

/* ===== Footer ===== */
.site-footer { background: var(--ink); color: var(--text-muted-light); padding: var(--space-5) 0 var(--space-4); }
.footer-inner { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 16px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--ink-line);
  color: var(--text-muted-light); display: flex; align-items: center; justify-content: center;
  transition: background 180ms, color 180ms, border-color 180ms;
}
.footer-social a:hover { background: var(--signal); border-color: var(--signal); color: var(--signal-ink); }
.footer-social svg { width: 20px; height: 20px; }
.footer-credit { font-size: 0.85rem; margin-top: 10px; }
.footer-credit a { color: var(--signal); font-weight: 600; }
.footer-credit a:hover { text-decoration: underline; }

/* ===== Lightbox ===== */
.lightbox {
  position: fixed; inset: 0; z-index: 200; background: oklch(10% 0.01 40 / 0.94);
  display: flex; align-items: center; justify-content: center;
}
.lightbox[hidden] { display: none; }
.lightbox img { max-width: 88vw; max-height: 84vh; border-radius: var(--radius-sm); }
.lightbox-close, .lightbox-nav {
  position: absolute; width: 48px; height: 48px; border-radius: 50%;
  background: oklch(97% 0.01 70 / 0.12); color: var(--text-light);
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  transition: background 180ms;
}
.lightbox-close:hover, .lightbox-nav:hover { background: var(--signal); color: var(--signal-ink); }
.lightbox-close { top: 22px; right: 22px; }
.lightbox-nav svg, .lightbox-close svg { width: 22px; height: 22px; }
.lightbox-prev { left: 22px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 22px; top: 50%; transform: translateY(-50%); }

/* ===== Responsive ===== */
/* ===== Hero — mobile: plain headline, full-width button, 2 photos bleeding off ===== */
@media (max-width: 780px) {
  .hero {
    display: block; min-height: calc(100svh - 68px);
    padding: 20px 22px calc(56px + env(safe-area-inset-bottom));
    background-image: none;
    overflow: hidden;
  }
  .sheet {
    position: static; width: 100%; height: auto; max-width: none;
    display: flex; flex-direction: column; align-items: flex-start;
  }
  .sheet > * { position: static; inset: auto; transform: none; box-shadow: none; }

  .tab { display: none; }

  .word-card {
    order: 2; position: static; width: 100%; max-width: 100%;
    background: none; padding: 0; border-radius: 0; box-shadow: none;
    transform: none; margin-bottom: 6px;
  }
  .word-card::before, .word-card::after { display: none; }
  .word {
    color: var(--ink); margin: 0 0 14px;
    font-size: clamp(1.9rem, 8.4vw, 2.5rem); line-height: 1.03; letter-spacing: -0.03em;
  }
  .lede {
    color: var(--text-muted-dark); opacity: 1;
    font-size: 1.1rem; line-height: 1.38; max-width: 24ch; margin: 0;
  }
  .cta.btn {
    position: static; transform: none;
    display: inline-flex; width: auto; align-self: flex-start; gap: 16px;
    background: var(--signal); color: #fff; border: 0;
    font-size: 1.08rem; font-weight: 700; padding: 19px 40px; border-radius: 999px;
    box-shadow: 0 18px 36px -14px oklch(68% 0.19 38 / 0.55);
    margin: 24px 0 16px;
  }
  .cta.btn:hover { background: var(--signal); color: #fff; transform: none; }
  .cta svg { width: 22px; height: 22px; }
  .price-line {
    display: block; position: static; transform: none; align-self: flex-start;
    font-size: 1.1rem;
  }

  .handle, .price { display: none; }

  .photos {
    order: 0; display: block; align-self: stretch; position: relative;
    height: 360px; margin: 2px 0 40px;
  }
  .photos .stk {
    position: absolute; border-radius: 16px;
    box-shadow: 0 0 0 7px #fff, 0 22px 40px -18px oklch(20% 0.02 40 / 0.42);
  }
  .photos .p1 { display: block; left: 0;  top: 0;    width: 58%; aspect-ratio: 68 / 108; transform: rotate(-3deg); z-index: 2; }
  .photos .p5 { display: block; right: 0; top: 44px; width: 50%; aspect-ratio: 4 / 4.5;  transform: rotate(4deg);  z-index: 1; }
  .photos .p5 img { object-position: center 12%; }
  .photos .p2, .photos .p3, .photos .p4 { display: none; }

  .scroll-cue {
    align-items: center; justify-content: center;
    bottom: calc(20px + env(safe-area-inset-bottom)); z-index: 6; color: var(--ink); padding: 6px;
  }
  .scroll-cue svg { width: 26px; height: 26px; }
}
@media (max-width: 780px) and (max-height: 700px) {
  .hero { padding-top: 14px; }
  .word { font-size: clamp(1.62rem, 7.2vw, 2.05rem); }
  .cta.btn { padding: 16px 34px; margin: 16px 0 12px; }
  .photos { height: 250px; margin: 0 0 24px; }
  .photos .p1 { width: 46%; }
  .photos .p5 { width: 40%; top: 26px; }
}
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .nav-inner { padding: 11px 22px; }
  .brand-logo { width: 46px; height: 46px; }
  .menu-toggle { display: flex; margin-left: auto; }   /* hamburger hard right; logo keeps its 24px edge padding */
  .service-grid, .why-grid, .how-steps { grid-template-columns: 1fr; }
  .reel-card { grid-template-columns: 1fr; }
  .reel-stage-wrap { order: -1; }
  .find-us-grid { grid-template-columns: 1fr; }
  .map-wrap { aspect-ratio: 4/3; }
}
@media (max-width: 640px) {
  .section-inner { padding: 0 18px; }
  .services, .party-reel-section, .gallery-section, .why-us, .how-it-works, .find-us { padding: var(--space-5) 0; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }
}
