/* ==========================================================================
   SUNDAY HOLIDAY LIGHTING — sundayholidayco.com
   Design system. PINK + LIGHT.
   Brand pink #EC3A80 sampled directly from the supplied Sunday logo asset.
   Note: this is a light-only brand experience by art direction (the brief
   forbids a fully dark site), so no dark-mode inversion is applied. Nighttime
   photography sections carry the dark contrast instead.
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  /* Type scale */
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl: clamp(2rem, 1.2rem + 2.5vw, 3.5rem);
  --text-3xl: clamp(2.4rem, 1rem + 4vw, 4.75rem);
  --text-hero: clamp(2.75rem, 0.5rem + 6.6vw, 7rem);

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Sunday palette */
  --pink: #ec3a80;
  --pink-deep: #c4165e;
  --pink-press: #a30f4c;
  --pink-bright: #ff5296;
  --pink-tint: #fdeaf2;
  --pink-wash: #fff6fa;

  --white: #ffffff;
  --off-white: #faf9f9;
  --grey-100: #f2f2f4;
  --grey-200: #e6e6ea;
  --grey-300: #d7d7dd;
  --sunday-grey: #6c6c76;
  --grey-faint: #a3a3ad;
  --charcoal: #17161c;
  --ink: #0a090d;

  /* Warm christmas light */
  --warm: #ffd79b;
  --warm-core: #fff6e6;
  --warm-deep: #f0ab4d;

  --radius-xs: 3px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-pill: 999px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-io: cubic-bezier(0.65, 0, 0.35, 1);
  --t-fast: 180ms var(--ease);
  --t-mid: 380ms var(--ease);
  --t-slow: 800ms var(--ease);

  --gutter: clamp(1.25rem, 5vw, 5rem);
  --content: 1320px;
  --measure: 62ch;

  --nav-h: 74px;

  /* Global "how much Christmas is switched on" — 0 at page top, 1 deep down.
     Drives photography richness + pink presence across the whole page. */
  --illum: 0;

  --font-display: 'Satoshi', 'Helvetica Neue', Arial, sans-serif;
  --font-body: 'General Sans', 'Helvetica Neue', Arial, sans-serif;
}

/* ---------- Base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 12px);
}

body {
  min-height: 100dvh;
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--charcoal);
  background: var(--white);
  overflow-x: hidden;
}

img,
video,
svg {
  display: block;
  max-width: 100%;
}
/* <picture> is a wrapper only — let the inner <img> be the real layout box so
   grid/absolute placement on image layers behaves predictably. */
picture {
  display: contents;
}
img {
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

:focus-visible {
  outline: 3px solid var(--pink);
  outline-offset: 3px;
  border-radius: var(--radius-xs);
}
.on-dark :focus-visible,
.sec--night :focus-visible {
  outline-color: var(--warm-core);
}

::selection {
  background: var(--pink);
  color: #fff;
}

.skip-link {
  position: absolute;
  left: var(--space-4);
  top: -100px;
  z-index: 200;
  background: var(--pink);
  color: #fff;
  padding: var(--space-3) var(--space-5);
  font-weight: 700;
  border-radius: var(--radius-sm);
  transition: top var(--t-fast);
}
.skip-link:focus {
  top: var(--space-4);
}

.vh {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

/* ---------- Layout primitives ---------- */
.wrap {
  width: 100%;
  max-width: var(--content);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.wrap--wide {
  max-width: 1680px;
}

.sec {
  position: relative;
  padding-block: clamp(4rem, 9vw, 9rem);
}
.sec--tight {
  padding-block: clamp(3rem, 6vw, 6rem);
}
.sec--white {
  background: var(--white);
}
.sec--offwhite {
  background: var(--off-white);
}
.sec--grey {
  background: var(--grey-100);
}
.sec--wash {
  background: var(--pink-wash);
}
.sec--pink {
  background: var(--pink);
  color: #fff;
}
.sec--night {
  background: var(--ink);
  color: #fff;
}

.eyebrow {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pink);
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.eyebrow::before {
  content: '';
  width: 26px;
  height: 1px;
  background: currentColor;
  flex: none;
}
.sec--night .eyebrow,
.sec--pink .eyebrow {
  color: var(--warm);
}
.sec--pink .eyebrow {
  color: rgba(255, 255, 255, 0.82);
}

.h-display {
  font-size: var(--text-3xl);
  text-transform: uppercase;
}
.h-section {
  font-size: var(--text-2xl);
  text-transform: uppercase;
}
.lead {
  font-size: var(--text-lg);
  line-height: 1.4;
  max-width: 34ch;
  color: var(--sunday-grey);
  font-weight: 400;
}
.sec--night .lead,
.sec--pink .lead {
  color: rgba(255, 255, 255, 0.78);
}
.body-copy {
  max-width: var(--measure);
  color: var(--sunday-grey);
}
.sec--night .body-copy {
  color: rgba(255, 255, 255, 0.72);
}

/* pink light underline for inline links */
.tlink {
  position: relative;
  font-weight: 600;
  color: var(--pink-deep);
  white-space: nowrap;
}
.tlink::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 1px;
  background: var(--pink);
  transform-origin: left;
  transition: box-shadow var(--t-fast), height var(--t-fast);
}
.tlink:hover::after {
  height: 2px;
  box-shadow: 0 0 10px 1px rgba(236, 58, 128, 0.65);
}
.sec--night .tlink {
  color: var(--warm);
}
.sec--night .tlink::after {
  background: var(--warm);
}

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--pink);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  min-height: 52px;
  padding: 0 var(--space-8);
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 0;
  border-radius: var(--radius-pill);
  cursor: pointer;
  position: relative;
  isolation: isolate;
  transition: transform var(--t-fast), box-shadow var(--t-mid), background var(--t-fast),
    color var(--t-fast);
  box-shadow: 0 1px 2px rgba(10, 9, 13, 0.14);
}
.btn::after {
  /* the illuminate-on-hover glow */
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  z-index: -1;
  opacity: 0;
  transition: opacity var(--t-mid);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.25) inset, 0 6px 26px -4px rgba(236, 58, 128, 0.75),
    0 0 40px -6px rgba(236, 58, 128, 0.55);
}
.btn:hover {
  transform: translateY(-2px);
  background: var(--pink-bright);
}
.btn:hover::after {
  opacity: 1;
}
.btn:active {
  transform: translateY(0);
  background: var(--pink-press);
}

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--charcoal);
  box-shadow: inset 0 0 0 1.5px var(--grey-300);
}
.btn--ghost:hover {
  background: transparent;
  --btn-fg: var(--pink-deep);
  box-shadow: inset 0 0 0 1.5px var(--pink);
}
.btn--ghost:hover::after {
  opacity: 0.5;
}

.btn--onnight {
  --btn-bg: rgba(255, 255, 255, 0.08);
  --btn-fg: #fff;
  box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(8px);
}
.btn--onnight:hover {
  background: rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 0 0 1.5px #fff;
}
.btn--onnight:hover::after {
  box-shadow: 0 6px 30px -4px rgba(255, 231, 196, 0.5);
  opacity: 1;
}

.btn--white {
  --btn-bg: #fff;
  --btn-fg: var(--pink-deep);
}
.btn--white:hover {
  background: #fff;
  --btn-fg: var(--pink-press);
}
.btn--white:hover::after {
  box-shadow: 0 8px 34px -4px rgba(255, 255, 255, 0.8);
  opacity: 1;
}

.btn--lg {
  min-height: 62px;
  padding: 0 var(--space-10);
  font-size: var(--text-base);
}
.btn--block {
  width: 100%;
}

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background var(--t-mid), box-shadow var(--t-mid), backdrop-filter var(--t-mid);
}
.nav__inner {
  width: 100%;
  max-width: 1680px;
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  gap: var(--space-6);
}
.nav__logo {
  display: flex;
  align-items: center;
  flex: none;
  color: #fff;
  transition: color var(--t-mid);
}
.nav__logo svg {
  height: 34px;
  width: auto;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 2rem);
  margin-inline: auto;
  list-style: none;
}
.nav__item {
  position: relative;
  display: flex;
  align-items: center;
}
.nav__link {
  position: relative;
  font-size: var(--text-sm);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  padding: var(--space-2) 0;
  transition: color var(--t-fast);
  white-space: nowrap;
}
.nav__link--menu {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.nav__chev {
  transition: transform var(--t-fast);
  opacity: 0.75;
}
.nav__item--menu[data-open='true'] .nav__chev {
  transform: rotate(180deg);
}
.nav__link::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--pink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 260ms var(--ease), box-shadow var(--t-mid);
}
.nav__link:hover::after,
.nav__item--menu[data-open='true'] > .nav__link::after,
.nav__link[aria-current='page']::after {
  transform: scaleX(1);
  box-shadow: 0 0 12px 0 rgba(236, 58, 128, 0.8);
}
.nav__cta {
  flex: none;
  min-height: 44px;
  padding: 0 var(--space-6);
}

/* collaboration row -------------------------------------------------------
   A seasonal campaign sitting in a list of evergreen service links, so it
   carries a small live pink marker instead of shouting. The dot is the only
   decoration; the label still behaves like every other nav link. */
.nav__link--collab {
  display: inline-flex;
  align-items: center;
  gap: 0.44rem;
  white-space: nowrap;
}
.nav__dot {
  width: 6px;
  height: 6px;
  flex: none;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 0 0 rgba(236, 58, 128, 0.55);
  animation: navPulse 2.8s ease-out infinite;
}
@keyframes navPulse {
  0%   { box-shadow: 0 0 0 0 rgba(236, 58, 128, 0.55); }
  60%  { box-shadow: 0 0 0 6px rgba(236, 58, 128, 0); }
  100% { box-shadow: 0 0 0 0 rgba(236, 58, 128, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .nav__dot { animation: none; }
}
.drawer__collab {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}


.nav__burger {
  display: none;
  flex: none;
  width: 46px;
  height: 46px;
  background: none;
  border: 0;
  cursor: pointer;
  position: relative;
}
.nav__burger span {
  position: absolute;
  left: 11px;
  right: 11px;
  height: 2px;
  background: currentColor;
  transition: transform var(--t-mid), opacity var(--t-fast);
}
.nav__burger span:nth-child(1) {
  top: 17px;
}
.nav__burger span:nth-child(2) {
  top: 23px;
}
.nav__burger span:nth-child(3) {
  top: 29px;
}

/* scrolled / frosted state */
.nav.is-solid {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px) saturate(150%);
  box-shadow: 0 1px 0 rgba(10, 9, 13, 0.08), 0 10px 30px -22px rgba(10, 9, 13, 0.4);
}
.nav.is-solid .nav__logo,
.nav.is-solid .nav__burger {
  color: var(--charcoal);
}
.nav.is-solid .nav__link {
  color: var(--charcoal);
}
.nav.is-solid .nav__link:hover {
  color: var(--pink-deep);
}
body.nav-light .nav__logo,
body.nav-light .nav__burger {
  color: var(--charcoal);
}
body.nav-light .nav__link {
  color: var(--charcoal);
}
body.nav-light .nav__link:hover {
  color: var(--pink-deep);
}

/* Areas dropdown.
   The wrapper carries the top padding so the pointer can cross the gap between
   the trigger and the card without the menu closing under it. */
.nav__menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  padding-top: 14px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--t-fast), visibility var(--t-fast), transform var(--t-fast);
}
.nav__item--menu[data-open='true'] > .nav__menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav__menu-card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: 0 1px 0 rgba(10, 9, 13, 0.06), 0 24px 48px -20px rgba(10, 9, 13, 0.34);
  padding: var(--space-5) var(--space-5) var(--space-3);
  min-width: 340px;
}
.nav__menu-head {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sunday-grey);
  padding-inline: var(--space-3);
  margin-bottom: var(--space-3);
}
.nav__menu-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2px var(--space-2);
}
.nav__menu-link {
  display: block;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--charcoal);
  padding: 0.55rem var(--space-3);
  border-radius: var(--radius-sm);
  white-space: nowrap;
  transition: background var(--t-fast), color var(--t-fast);
}
.nav__menu-link:hover,
.nav__menu-link:focus-visible {
  background: var(--pink-wash);
  color: var(--pink-deep);
}
.nav__menu-all {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: var(--space-3);
  padding: var(--space-3) var(--space-3) var(--space-2);
  border-top: 1px solid var(--grey-200);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--pink-deep);
}
.nav__menu-arrow {
  transform: rotate(-90deg);
  transition: transform var(--t-fast);
}
.nav__menu-all:hover .nav__menu-arrow {
  transform: rotate(-90deg) translateY(3px);
}

/* mobile drawer */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--white);
  padding: calc(var(--nav-h) + var(--space-8)) var(--gutter) var(--space-12);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  transform: translateY(-100%);
  transition: transform 420ms var(--ease);
  overflow-y: auto;
}
.drawer[data-open='true'] {
  transform: translateY(0);
}
.drawer a {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  padding: var(--space-4) 0;
  border-bottom: 1px solid var(--grey-200);
}
.drawer a:hover {
  color: var(--pink-deep);
}
.drawer .btn {
  margin-top: var(--space-8);
}
/* Tap-to-call sits below the quote CTA — the drawer only exists on phones,
   so a live phone number is the most useful thing in it after the CTA. */
.drawer__call {
  margin-top: var(--space-4);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  border-bottom: 0 !important;
  font-family: var(--font-body) !important;
  font-size: var(--text-base) !important;
  font-weight: 700 !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  padding: var(--space-3) 0 !important;
  color: var(--pink-deep);
}
.drawer__call svg {
  flex: none;
}
/* Areas accordion in the drawer. The toggle is styled to read as one of the
   drawer's own links, so the menu keeps a single rhythm. */
.drawer__group {
  display: flex;
  flex-direction: column;
}
.drawer__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: 0;
  border-bottom: 1px solid var(--grey-200);
  cursor: pointer;
  text-align: left;
  color: inherit;
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  padding: var(--space-4) 0;
}
.drawer__chev {
  width: 14px;
  height: 9px;
  flex: none;
  transition: transform var(--t-mid);
}
.drawer__group[data-open='true'] .drawer__chev {
  transform: rotate(180deg);
}
.drawer__sub {
  display: flex;
  flex-direction: column;
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-mid);
}
.drawer__group[data-open='true'] .drawer__sub {
  max-height: 40rem;
}
.drawer__sub a {
  font-family: var(--font-body) !important;
  font-size: var(--text-base) !important;
  font-weight: 500 !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  padding: var(--space-3) 0 var(--space-3) var(--space-4) !important;
  border-bottom: 1px solid var(--grey-100) !important;
  color: var(--sunday-grey);
}
.drawer__sub-all {
  font-weight: 700 !important;
  color: var(--pink-deep) !important;
  border-bottom: 1px solid var(--grey-200) !important;
}

/* sticky mobile CTA */
.mobile-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  padding: var(--space-3) var(--space-4) calc(var(--space-3) + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  box-shadow: 0 -1px 0 rgba(10, 9, 13, 0.09);
  display: none;
  transform: translateY(120%);
  transition: transform 420ms var(--ease);
}
.mobile-cta.is-in {
  transform: translateY(0);
}

/* ---------- Reveal utility ---------- */
.rv {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 900ms var(--ease), transform 900ms var(--ease);
  will-change: opacity, transform;
}
.rv.is-in {
  opacity: 1;
  transform: none;
}
.rv-d1 {
  transition-delay: 90ms;
}
.rv-d2 {
  transition-delay: 180ms;
}
.rv-d3 {
  transition-delay: 270ms;
}
.rv-d4 {
  transition-delay: 360ms;
}

/* mask-reveal for photography */
.mask-rv {
  clip-path: inset(0 0 100% 0);
  transition: clip-path 1100ms var(--ease);
}
.mask-rv.is-in {
  clip-path: inset(0 0 0 0);
}

/* ======================================================================
   HERO
   ====================================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  color: #fff;
  background: #05060b;
  overflow: hidden;
  isolation: isolate;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 62%;
}
/* the "lights on" layer, revealed left→right by a soft-edged mask */
.hero__on {
  position: absolute;
  inset: 0;
  --sweep: -30%;
  opacity: 0;
  -webkit-mask-image: linear-gradient(
    100deg,
    #000 0%,
    #000 calc(var(--sweep) - 4%),
    rgba(0, 0, 0, 0.55) calc(var(--sweep) + 3%),
    transparent calc(var(--sweep) + 13%),
    transparent 100%
  );
  mask-image: linear-gradient(
    100deg,
    #000 0%,
    #000 calc(var(--sweep) - 4%),
    rgba(0, 0, 0, 0.55) calc(var(--sweep) + 3%),
    transparent calc(var(--sweep) + 13%),
    transparent 100%
  );
}
.hero.is-sweeping .hero__on {
  opacity: 1;
  transition: --sweep 1150ms cubic-bezier(0.5, 0.05, 0.25, 1);
}
/* warm bloom that arrives with the trees/landscape, after the roofline */
.hero__bloom {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0;
  pointer-events: none;
  transition: opacity 900ms var(--ease);
  background: radial-gradient(46% 55% at 6% 46%, rgba(255, 199, 122, 0.34), transparent 70%),
    radial-gradient(42% 52% at 95% 46%, rgba(255, 199, 122, 0.3), transparent 70%),
    radial-gradient(60% 40% at 50% 58%, rgba(255, 210, 150, 0.18), transparent 72%);
  mix-blend-mode: screen;
}
.hero.is-lit .hero__bloom {
  opacity: 1;
}
.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
      to top,
      rgba(4, 5, 10, 0.92) 0%,
      rgba(4, 5, 10, 0.7) 26%,
      rgba(4, 5, 10, 0.18) 58%,
      rgba(4, 5, 10, 0.34) 100%
    ),
    linear-gradient(105deg, rgba(4, 5, 10, 0.6) 0%, transparent 55%);
}
.hero__inner {
  width: 100%;
  max-width: 1680px;
  margin-inline: auto;
  padding: calc(var(--nav-h) + clamp(1.5rem, 4.5vh, 4rem)) var(--gutter)
    clamp(2rem, 4.5vh, 4rem);
  display: grid;
  gap: var(--space-10);
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  align-items: end;
}
.hero h1 {
  /* sized so the whole hero (headline, copy, CTAs, offer card) clears the
     fold on a 800px-tall laptop viewport */
  font-size: clamp(2.4rem, 0.4rem + 4.55vw, 5.5rem);
  text-transform: uppercase;
  margin-bottom: var(--space-6);
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.45);
}
.hero h1 .ln {
  display: block;
  overflow: hidden;
}
.hero h1 .ln > span {
  display: block;
  transform: translateY(104%);
  transition: transform 1000ms var(--ease);
}
.hero.is-typed h1 .ln > span {
  transform: none;
}
.hero h1 .ln:nth-child(2) > span {
  transition-delay: 110ms;
}
.hero h1 .ln:nth-child(3) > span {
  transition-delay: 220ms;
}
.hero h1 .ln:nth-child(4) > span {
  transition-delay: 330ms;
}
.hero__sub {
  font-size: var(--text-lg);
  line-height: 1.35;
  max-width: 26ch;
  color: rgba(255, 255, 255, 0.86);
  margin-bottom: var(--space-6);
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}
.hero__scroll {
  margin-top: clamp(1rem, 3.5vh, 2.5rem);
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}
.hero__scroll i {
  width: 1px;
  height: 34px;
  background: linear-gradient(to bottom, var(--pink), transparent);
  display: block;
  animation: dropline 2.4s var(--ease-io) infinite;
}
@keyframes dropline {
  0%,
  100% {
    transform: scaleY(0.4);
    transform-origin: top;
    opacity: 0.4;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
    opacity: 1;
  }
}

/* Offer card in the hero */
.offer-card {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(20px) saturate(140%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16),
    0 30px 60px -30px rgba(0, 0, 0, 0.7);
  border-radius: var(--radius-md);
  padding: var(--space-6) var(--space-6) var(--space-5);
  position: relative;
  overflow: hidden;
}
.offer-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--pink), var(--pink-bright), var(--pink));
  box-shadow: 0 0 18px 0 rgba(236, 58, 128, 0.9);
}
.offer-card__pct {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 4.4vw, 4.25rem);
  font-weight: 900;
  line-height: 0.85;
  letter-spacing: -0.045em;
  color: #fff;
  display: block;
}
.offer-card__pct em {
  font-style: normal;
  color: var(--pink-bright);
  text-shadow: 0 0 30px rgba(255, 82, 150, 0.7);
}
.offer-card p {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.82);
  margin-top: var(--space-3);
}
.offer-card__book {
  font-weight: 600;
  color: #fff;
}
.offer-card__scope {
  margin-top: var(--space-5);
  padding-top: var(--space-4);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2) var(--space-3);
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}
.offer-card__scope span {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}
.offer-card__scope span::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--warm);
  box-shadow: 0 0 8px 1px rgba(255, 215, 155, 0.9);
}

/* ======================================================================
   SIGNATURE PINK BULB
   ====================================================================== */
.bulb-sec {
  background: linear-gradient(
    to bottom,
    var(--white) 0%,
    color-mix(in oklab, var(--pink-wash) calc(var(--bp, 0) * 100%), var(--white)) 45%,
    var(--white) 100%
  );
  overflow: clip;
}
.bulb-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.bulb-stage {
  position: relative;
  aspect-ratio: 760 / 1000;
  display: grid;
  place-items: center;
  isolation: isolate;
}
.bulb-stage__glow {
  position: absolute;
  left: 50%;
  top: 47%;
  width: 118%;
  aspect-ratio: 1;
  transform: translate(-50%, -50%) scale(calc(0.55 + var(--bp, 0) * 0.55));
  background: radial-gradient(
    closest-side,
    rgba(255, 120, 175, calc(var(--bp, 0) * 0.55)) 0%,
    rgba(236, 58, 128, calc(var(--bp, 0) * 0.3)) 34%,
    transparent 70%
  );
  filter: blur(14px);
  z-index: -1;
  pointer-events: none;
}
.bulb-stage img {
  grid-area: 1 / 1;
  width: 100%;
  height: auto;
  /* the studio plates are shot on white — feather the edges so no rectangle
     shows against the section's pink wash */
}
.bulb-stage__lit {
  opacity: var(--bulb-lit, 0);
}
/* subtle pink light thrown onto the surrounding "studio floor" */
.bulb-stage__cast {
  position: absolute;
  left: 50%;
  bottom: 2%;
  width: 90%;
  height: 16%;
  transform: translateX(-50%);
  background: radial-gradient(
    closest-side,
    rgba(236, 58, 128, calc(var(--bp, 0) * 0.32)),
    transparent 72%
  );
  filter: blur(10px);
  z-index: -1;
}
.bulb-copy h2 {
  font-size: var(--text-2xl);
  text-transform: uppercase;
  margin: var(--space-5) 0 var(--space-5);
}
.bulb-copy h2 em {
  font-style: normal;
  color: color-mix(in oklab, var(--pink) calc(var(--bp, 0) * 100%), var(--charcoal));
  transition: color 200ms linear;
}
.pillars {
  list-style: none;
  margin-top: var(--space-8);
  display: grid;
  gap: var(--space-4);
}
.pillars li {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: var(--space-4);
  align-items: baseline;
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--grey-200);
}
.pillars b {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--pink);
}
.pillars span {
  font-size: var(--text-sm);
  color: var(--sunday-grey);
}
.pillars strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--charcoal);
  font-size: var(--text-sm);
  margin-bottom: 2px;
}

/* ======================================================================
   LIGHT STRAND (decorative connector)
   ====================================================================== */
.strand {
  display: block;
  width: 100%;
  height: clamp(90px, 12vw, 170px);
  overflow: visible;
}
.strand__wire {
  fill: none;
  stroke: #2a2a30;
  stroke-width: 2;
  opacity: 0.5;
}
.sec--night .strand__wire {
  stroke: rgba(255, 255, 255, 0.35);
}
.strand__b {
  transform-box: fill-box;
  transform-origin: 50% 0%;
  opacity: 0.5;
  transition: opacity 420ms var(--ease), filter 420ms var(--ease);
  fill: #e7e5e2;
  filter: none;
}
.strand__b.is-lit {
  opacity: 1;
  fill: var(--warm-core);
  filter: drop-shadow(0 0 5px rgba(255, 215, 155, 0.95))
    drop-shadow(0 0 14px rgba(255, 190, 110, 0.55));
}
.strand__b--pink {
  fill: #f4c3d8;
}
.strand__b--pink.is-lit {
  fill: var(--pink-bright);
  filter: drop-shadow(0 0 6px rgba(255, 82, 150, 1)) drop-shadow(0 0 18px rgba(236, 58, 128, 0.7));
}
.strand__b:hover {
  opacity: 1;
  filter: drop-shadow(0 0 8px rgba(255, 215, 155, 0.9));
}

/* ======================================================================
   SERVICES
   ====================================================================== */
.svc-head {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-6);
  align-items: end;
  justify-content: space-between;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.75rem, 1.4vw, 1.25rem);
}
@media (max-width: 1080px) {
  .svc-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 560px) {
  .svc-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}
.svc {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: var(--ink);
  aspect-ratio: 4 / 3.2;
  isolation: isolate;
}

.svc img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.78) saturate(0.92);
  transform: scale(1.02);
  transition: filter 620ms var(--ease), transform 900ms var(--ease);
}
.svc::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 6, 10, 0.88) 0%, rgba(6, 6, 10, 0.1) 55%);
  transition: opacity var(--t-mid);
}
.svc:hover img,
.svc:focus-visible img {
  filter: brightness(1.1) saturate(1.12) contrast(1.03);
  transform: scale(1.05);
}
.svc__txt {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 1;
  padding: var(--space-6);
  color: #fff;
}
.svc__txt h3 {
  font-size: var(--text-lg);
  text-transform: uppercase;
  letter-spacing: -0.015em;
}
.svc__txt p {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.76);
  margin-top: var(--space-2);
  max-width: 30ch;
}
.svc__mark {
  position: absolute;
  top: var(--space-5);
  right: var(--space-5);
  z-index: 1;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  transition: background var(--t-mid), box-shadow var(--t-mid);
}
.svc:hover .svc__mark {
  background: var(--pink-bright);
  box-shadow: 0 0 14px 2px rgba(236, 58, 128, 0.9);
}

/* ======================================================================
   BEFORE / AFTER
   ====================================================================== */
.ba-head {
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.ba-head h2 {
  font-size: var(--text-3xl);
  text-transform: uppercase;
}
.ba-head h2 .swap {
  display: block;
  position: relative;
}
.ba-head h2 .swap b {
  display: block;
  font-weight: inherit;
  transition: opacity 420ms var(--ease), transform 520ms var(--ease);
}
.ba-head h2 .swap b + b {
  position: absolute;
  inset: 0;
  color: var(--pink);
  opacity: 0;
  transform: translateY(0.24em);
}
.ba-head[data-state='after'] .swap b:first-child {
  opacity: 0;
  transform: translateY(-0.24em);
}
.ba-head[data-state='after'] .swap b + b {
  opacity: 1;
  transform: none;
}

.ba {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  aspect-ratio: 16 / 10;
  touch-action: pan-y;
  cursor: ew-resize;
  background: var(--ink);
  --x: 50%;
  user-select: none;
}
.ba img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ba__after {
  /* Needs real geometry, not just a clip-path: as a zero-height box the
     lazy-loading heuristic never fired and the "after" image silently never
     downloaded, leaving the comparison showing "before" on both sides. */
  position: absolute;
  inset: 0;
  clip-path: inset(0 0 0 var(--x));
}
.ba__handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--x);
  width: 2px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 22px 2px rgba(255, 220, 180, 0.55);
  transform: translateX(-1px);
  z-index: 2;
}
.ba__grip {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.22), 0 10px 30px -8px rgba(0, 0, 0, 0.6);
  border: 0;
  cursor: grab;
  display: grid;
  place-items: center;
  color: #fff;
  transition: transform var(--t-fast), box-shadow var(--t-mid), background var(--t-fast);
}
.ba__grip:hover {
  background: var(--pink-bright);
  box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.26), 0 0 40px -2px rgba(236, 58, 128, 0.9);
}
.ba__grip:active {
  cursor: grabbing;
}
.ba__grip svg {
  width: 22px;
  height: 22px;
  pointer-events: none;
}
.ba__tag {
  position: absolute;
  bottom: var(--space-5);
  z-index: 2;
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(8, 8, 12, 0.55);
  backdrop-filter: blur(10px);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-pill);
  pointer-events: none;
}
.ba__tag--l {
  left: var(--space-5);
}
.ba__tag--r {
  right: var(--space-5);
  color: var(--warm-core);
}

.ba-foot {
  margin-top: clamp(2rem, 4vw, 3.5rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.8fr);
  gap: var(--space-8);
  align-items: end;
}
.ba-foot h3 {
  font-size: var(--text-xl);
  text-transform: uppercase;
}

/* ======================================================================
   VISUALIZER
   ====================================================================== */
.viz-head {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.viz-head .eyebrow {
  justify-content: center;
}
.viz-head h2 {
  font-size: var(--text-3xl);
  text-transform: uppercase;
  margin-top: var(--space-4);
}
.viz-stage {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  aspect-ratio: 16 / 9.6;
  background: #05060b;
  isolation: isolate;
}
.viz-stage img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 620ms var(--ease-io), filter 620ms var(--ease-io);
  filter: brightness(1);
}
.viz-stage img.is-on {
  opacity: 1;
}
/* the "power cycle" — everything dips for a beat, then the new scheme arrives */
.viz-stage.is-switching img {
  filter: brightness(0.34) saturate(0.5);
}
.viz-stage__flash {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(60% 46% at 50% 45%, rgba(255, 234, 205, 0.55), transparent 72%);
  mix-blend-mode: screen;
  transition: opacity 420ms var(--ease);
}
.viz-stage.is-flash .viz-stage__flash {
  opacity: 1;
}
.viz-controls {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(0.5rem, 1vw, 1rem);
  margin-top: clamp(1rem, 2vw, 1.5rem);
}
.viz-btn {
  position: relative;
  min-height: 96px;
  padding: var(--space-5) var(--space-5);
  text-align: left;
  background: var(--white);
  border: 1.5px solid var(--grey-200);
  border-radius: var(--radius-sm);
  cursor: pointer;
  overflow: hidden;
  transition: border-color var(--t-fast), box-shadow var(--t-mid), transform var(--t-fast),
    background var(--t-fast);
}
.viz-btn b {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.viz-btn span {
  display: block;
  font-size: var(--text-xs);
  color: var(--sunday-grey);
  margin-top: var(--space-1);
}
.viz-btn i {
  position: absolute;
  right: var(--space-5);
  top: var(--space-5);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--grey-300);
  transition: background var(--t-mid), box-shadow var(--t-mid);
}
.viz-btn:hover {
  border-color: var(--pink);
  transform: translateY(-2px);
}
.viz-btn[aria-pressed='true'] {
  border-color: var(--pink);
  background: var(--pink-wash);
  box-shadow: 0 10px 30px -18px rgba(236, 58, 128, 0.9);
}
.viz-btn[aria-pressed='true'] i {
  background: var(--pink);
  box-shadow: 0 0 14px 2px rgba(236, 58, 128, 0.85);
}
/* The swatch on each control previews the LIGHTING scheme, so it never uses brand
   pink — pink is Sunday's identity, not a lighting colour we install. */
.viz-btn[data-style='warm'][aria-pressed='true'] i {
  background: var(--warm);
  box-shadow: 0 0 14px 2px rgba(255, 200, 130, 0.95);
}
.viz-btn[data-style='classic'][aria-pressed='true'] i {
  background: conic-gradient(#e5342f 0 25%, #2f9e4f 0 50%, #2f6ede 0 75%, #f2b134 0);
  box-shadow: 0 0 14px 2px rgba(255, 255, 255, 0.55);
}
.viz-btn[data-style='custom'][aria-pressed='true'] i {
  background: linear-gradient(135deg, #e5342f 0 50%, var(--warm) 0);
  box-shadow: 0 0 14px 2px rgba(255, 200, 130, 0.7);
}

.viz-upload {
  margin-top: clamp(2rem, 4vw, 3rem);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: var(--pink);
  color: #fff;
  border-radius: var(--radius-sm);
  position: relative;
  overflow: hidden;
}
.viz-upload h3 {
  font-size: var(--text-xl);
  text-transform: uppercase;
}
.viz-upload p {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.85);
  margin-top: var(--space-2);
  max-width: 42ch;
}

/* ======================================================================
   GALLERY
   ====================================================================== */
.gal-head {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-6);
  align-items: end;
  justify-content: space-between;
  margin-bottom: var(--space-8);
}
.gal-filters {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}
.chip {
  min-height: 42px;
  padding: 0 var(--space-5);
  background: transparent;
  border: 1.5px solid var(--grey-300);
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--t-fast);
  white-space: nowrap;
}
.chip:hover {
  border-color: var(--pink);
  color: var(--pink-deep);
}
.chip[aria-pressed='true'] {
  background: var(--pink);
  border-color: var(--pink);
  color: #fff;
  box-shadow: 0 6px 22px -10px rgba(236, 58, 128, 0.95);
}
.sec--night .chip {
  border-color: rgba(255, 255, 255, 0.28);
  color: rgba(255, 255, 255, 0.85);
}
.sec--night .chip:hover {
  border-color: var(--pink-bright);
  color: #fff;
}

.masonry {
  columns: 3;
  column-gap: clamp(0.75rem, 1.2vw, 1rem);
}
.gal-item {
  break-inside: avoid;
  margin-bottom: clamp(0.75rem, 1.2vw, 1rem);
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: #0d0d12;
  cursor: zoom-in;
  isolation: isolate;
}
.gal-item img {
  width: 100%;
  height: auto;
  filter: brightness(0.72) saturate(0.9);
  transform: scale(1.01);
  transition: filter 700ms var(--ease), transform 900ms var(--ease);
}
.gal-item.is-in img {
  filter: brightness(0.94) saturate(1);
}
.gal-item:hover img,
.gal-item:focus-visible img {
  filter: brightness(1.12) saturate(1.1);
  transform: scale(1.035);
}
.gal-item figcaption,
.gal-item .cap {
  position: absolute;
  inset: auto 0 0 0;
  padding: var(--space-8) var(--space-4) var(--space-4);
  background: linear-gradient(to top, rgba(6, 6, 10, 0.85), transparent);
  color: #fff;
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: left;
  display: flex;
  justify-content: space-between;
  gap: var(--space-3);
}
.gal-item .cap em {
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.6);
}
.gal-item[hidden] {
  display: none;
}
.gal-note {
  margin-top: var(--space-6);
  font-size: var(--text-xs);
  color: var(--grey-faint);
  letter-spacing: 0.02em;
}

/* Lightbox */
.lb {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(5, 5, 9, 0.96);
  display: grid;
  grid-template-rows: 1fr auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity 320ms var(--ease), visibility 320ms;
}
.lb[data-open='true'] {
  opacity: 1;
  visibility: visible;
}
.lb__stage {
  display: grid;
  place-items: center;
  padding: clamp(3rem, 8vw, 5rem) clamp(1rem, 6vw, 6rem) var(--space-4);
  min-height: 0;
}
.lb__stage img {
  max-width: 100%;
  max-height: 76svh;
  width: auto;
  object-fit: contain;
  border-radius: var(--radius-xs);
}
.lb__bar {
  padding: 0 clamp(1rem, 6vw, 6rem) clamp(1.5rem, 4vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  color: #fff;
}
.lb__cap {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.lb__cap em {
  display: block;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: none;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 2px;
}
.lb__nav {
  display: flex;
  gap: var(--space-2);
}
.icon-btn {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.28);
  background: transparent;
  color: #fff;
  cursor: pointer;
  transition: all var(--t-fast);
}
.icon-btn:hover {
  background: var(--pink);
  border-color: var(--pink);
}
.lb__close {
  position: absolute;
  top: clamp(1rem, 3vw, 2rem);
  right: clamp(1rem, 3vw, 2rem);
  z-index: 2;
}

/* ======================================================================
   FULL-BLEED BREAK
   ====================================================================== */
.bleed {
  position: relative;
  min-height: min(100svh, 860px);
  display: grid;
  place-items: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
  background: #05060b;
  isolation: isolate;
}
.bleed img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  filter: brightness(0.62) saturate(0.9);
  transform: scale(1.04);
  transition: filter 2200ms var(--ease), transform 2600ms var(--ease);
}
.bleed.is-in img {
  filter: brightness(1.03) saturate(1.06);
  transform: scale(1);
}
.bleed::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(70% 60% at 50% 55%, transparent 20%, rgba(4, 5, 10, 0.6) 100%);
}
.bleed__txt {
  padding: var(--gutter);
}
.bleed h2 {
  font-size: var(--text-3xl);
  text-transform: uppercase;
  text-shadow: 0 4px 50px rgba(0, 0, 0, 0.6);
}
.bleed p {
  margin-top: var(--space-5);
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

/* ======================================================================
   PROCESS
   ====================================================================== */
.proc {
  position: relative;
}
.proc-head {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.proc-head h2 {
  font-size: var(--text-3xl);
  text-transform: uppercase;
}
.proc-wrap {
  position: relative;
  --rail-w: 76px;
}
/* the cable runs the full height of the list, centred under the bulbs */
.proc-rail {
  position: absolute;
  left: 0;
  top: 1.6rem;
  bottom: 3.2rem;
  width: var(--rail-w);
  pointer-events: none;
}
.proc-cable {
  width: 100%;
  height: 100%;
}
.proc-cable .strand__wire {
  stroke-width: 2;
}
.proc-steps {
  list-style: none;
  display: grid;
  gap: clamp(2.5rem, 6vw, 5rem);
}
.proc-step {
  display: grid;
  grid-template-columns: var(--rail-w) minmax(0, 1fr);
  align-items: start;
  gap: 0 clamp(1rem, 2.5vw, 2.5rem);
  padding-bottom: clamp(1.5rem, 3vw, 2.5rem);
  border-bottom: 1px solid var(--grey-200);
  opacity: 0.42;
  transition: opacity 620ms var(--ease);
}
.proc-step.is-active {
  opacity: 1;
}
.proc-step:last-child {
  border-bottom: 0;
}
.proc-step__mark {
  display: flex;
  justify-content: center;
  padding-top: 0.15rem;
}
.proc-bulb {
  width: 34px;
  height: auto;
  overflow: visible;
}
.proc-step__body {
  display: grid;
  gap: var(--space-3);
}
.proc-step__n {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.24em;
  color: var(--pink);
}
.proc-step h3 {
  font-size: var(--text-xl);
  text-transform: uppercase;
}
.proc-step p {
  color: var(--sunday-grey);
  max-width: 44ch;
}

/* ======================================================================
   REVIEWS
   ====================================================================== */
.rev-head {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-6);
  justify-content: space-between;
  align-items: end;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.rev-head h2 {
  font-size: var(--text-2xl);
  text-transform: uppercase;
}
.rail {
  display: flex;
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: var(--space-4);
  margin-inline: calc(var(--gutter) * -1);
  padding-inline: var(--gutter);
}
.rail::-webkit-scrollbar {
  display: none;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.75rem, 1.4vw, 1.25rem);
}
@media (max-width: 1080px) {
  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 560px) {
  .trust-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}
.tr {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-sm);
  padding: clamp(1.5rem, 2.4vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.tr__ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  flex: none;
  border-radius: var(--radius-pill);
  background: var(--pink-tint);
  color: var(--pink-deep);
}
.tr__ico svg {
  width: 21px;
  height: 21px;
}
.tr__t {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: var(--ink);
  text-wrap: balance;
}
.tr__b {
  font-size: var(--text-sm);
  line-height: 1.62;
  color: var(--grey-faint);
  margin-top: calc(var(--space-2) * -1);
}

/* ======================================================================
   COUNTDOWN
   ====================================================================== */
.cd {
  position: relative;
  overflow: hidden;
}
.cd__glow {
  position: absolute;
  left: 50%;
  top: -28%;
  width: min(1100px, 130%);
  aspect-ratio: 1;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(236, 58, 128, 0.34) 0%,
              rgba(236, 58, 128, 0.1) 42%, transparent 68%);
  pointer-events: none;
}
.cd > .wrap {
  position: relative;
  z-index: 1;
}
.cd__head h2 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}
.cd__head h2 [data-cd] {
  color: var(--pink-bright);
  font-variant-numeric: tabular-nums;
}
.cd__clock {
  display: flex;
  align-items: flex-start;
  gap: clamp(0.5rem, 2vw, 1.75rem);
  margin-top: clamp(2rem, 4vw, 3rem);
  padding-bottom: clamp(1.75rem, 3.5vw, 2.75rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}
.cd__unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  flex: 1 1 0;
  min-width: 0;
}
.cd__n {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 8.5vw, 6rem);
  font-weight: 600;
  line-height: 0.94;
  letter-spacing: -0.045em;
  color: #fff;
  font-variant-numeric: tabular-nums;
  font-feature-settings: 'tnum' 1;
}
.cd__l {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.52);
}
.cd__sep {
  width: 10px;
  height: 10px;
  flex: none;
  border-radius: 50%;
  margin-top: clamp(1.1rem, 3.4vw, 2.5rem);
  background: var(--pink);
  box-shadow: 0 0 14px 2px rgba(236, 58, 128, 0.75);
}
.cd__done {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--pink-bright);
  margin-top: clamp(2rem, 4vw, 3rem);
}
.cd__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  margin-top: clamp(1.75rem, 3.5vw, 2.5rem);
}
.cd__copy {
  font-size: var(--text-sm);
  line-height: 1.62;
  color: rgba(255, 255, 255, 0.66);
  max-width: 58ch;
}

/* ======================================================================
   OFFER
   ====================================================================== */
.offer {
  background: var(--pink);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.offer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(52% 46% at 22% 24%, rgba(255, 255, 255, 0.24), transparent 70%);
  pointer-events: none;
}
.offer-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}
.offer-bulb {
  position: relative;
  align-self: stretch;
  min-height: 340px;
}
.offer-bulb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  /* A transparent cut-out cropped tight to the bulb, so it is contained
     rather than cover-cropped, and hung from the top of the column. */
  object-fit: contain;
  object-position: 50% 0;
}
.offer .eyebrow {
  color: rgba(255, 255, 255, 0.92);
}
.offer h2 {
  font-size: var(--text-2xl);
  text-transform: uppercase;
  line-height: 0.88;
}
.offer__big {
  display: block;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(5rem, 17vw, 15rem);
  line-height: 0.78;
  letter-spacing: -0.055em;
  margin: clamp(0.75rem, 2vw, 1.5rem) 0;
  color: #fff;
  text-shadow: 0 0 70px rgba(255, 255, 255, 0.28);
}
.offer__sub {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.offer__book {
  margin-top: var(--space-4);
  font-size: var(--text-base);
  color: rgba(255, 255, 255, 0.9);
}
.offer__cta {
  margin-top: var(--space-8);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  align-items: center;
}
.offer__fine {
  margin-top: var(--space-6);
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.72);
  max-width: 46ch;
}

/* ======================================================================
   QUOTE (multi-step)
   ====================================================================== */
.quote {
  background: var(--off-white);
}
.quote-shell {
  max-width: 900px;
  margin-inline: auto;
}
.quote-card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: 0 40px 90px -60px rgba(10, 9, 13, 0.5), 0 0 0 1px var(--grey-200);
  overflow: hidden;
}
.quote-prog {
  display: flex;
  gap: 4px;
  padding: var(--space-5) clamp(1.25rem, 4vw, 2.75rem) 0;
}
.quote-prog span {
  flex: 1;
  height: 3px;
  border-radius: 2px;
  background: var(--grey-200);
  transition: background 420ms var(--ease), box-shadow 420ms var(--ease);
}
.quote-prog span.is-on {
  background: var(--pink);
  box-shadow: 0 0 10px 0 rgba(236, 58, 128, 0.7);
}
.quote-body {
  padding: clamp(1.5rem, 4vw, 2.75rem);
}
.quote-step {
  display: none;
  animation: stepIn 480ms var(--ease);
}
.quote-step.is-on {
  display: block;
}
@keyframes stepIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
}
.quote-step__n {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pink);
}
.quote-step h3 {
  font-size: var(--text-xl);
  text-transform: uppercase;
  margin: var(--space-3) 0 var(--space-6);
}
.field {
  display: block;
  margin-bottom: var(--space-5);
}
.field > span {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--sunday-grey);
  margin-bottom: var(--space-2);
}
.field input {
  width: 100%;
  min-height: 58px;
  padding: 0 var(--space-5);
  background: var(--off-white);
  border: 1.5px solid var(--grey-200);
  border-radius: var(--radius-sm);
  font-size: var(--text-base);
  transition: border-color var(--t-fast), box-shadow var(--t-mid), background var(--t-fast);
}
.field input::placeholder {
  color: var(--grey-faint);
}
.field input:focus {
  outline: 0;
  background: #fff;
  border-color: var(--pink);
  box-shadow: 0 0 0 4px rgba(236, 58, 128, 0.14);
}
.field input[aria-invalid='true'] {
  border-color: #c62828;
}
.err {
  display: block;
  font-size: var(--text-xs);
  color: #c62828;
  margin-top: var(--space-2);
  min-height: 1em;
}
.fields-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
}

.pick-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: var(--space-3);
}
/* Optional colour-preference row inside quote step 2 */
.pick-sub {
  margin: var(--space-5) 0 var(--space-3);
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
}
.pick-sub span {
  display: block;
  margin-top: 0.4rem;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--grey-500);
}
.pick-grid--color {
  grid-template-columns: repeat(auto-fit, minmax(132px, 1fr));
}
.pick-grid--color .pick {
  min-height: 68px;
  padding: var(--space-3) var(--space-4);
}

.pick {
  position: relative;
  min-height: 104px;
  padding: var(--space-4);
  text-align: left;
  background: var(--off-white);
  border: 1.5px solid var(--grey-200);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--t-fast);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: var(--space-3);
}
.pick b {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.1;
}
.pick i {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--grey-300);
  transition: all var(--t-mid);
}
.pick:hover {
  border-color: var(--pink);
  transform: translateY(-2px);
}
.pick[aria-pressed='true'] {
  background: var(--pink);
  border-color: var(--pink);
  color: #fff;
  box-shadow: 0 12px 34px -18px rgba(236, 58, 128, 1);
}
.pick[aria-pressed='true'] i {
  background: #fff;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.3);
}

.drop {
  position: relative;
  border: 2px dashed var(--grey-300);
  border-radius: var(--radius-sm);
  padding: clamp(1.75rem, 5vw, 3rem) var(--space-6);
  text-align: center;
  background: var(--off-white);
  transition: all var(--t-mid);
  cursor: pointer;
  display: block;
}
.drop:hover,
.drop.is-drag {
  border-color: var(--pink);
  background: var(--pink-wash);
}
.drop input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}
.drop svg {
  margin: 0 auto var(--space-4);
  color: var(--pink);
}
.drop b {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  display: block;
}
.drop p {
  font-size: var(--text-sm);
  color: var(--sunday-grey);
  margin-top: var(--space-2);
}
.thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-4);
}
.thumb {
  position: relative;
  width: 92px;
  height: 92px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--grey-100);
}
.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.thumb button {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 0;
  background: rgba(10, 9, 13, 0.75);
  color: #fff;
  cursor: pointer;
  font-size: 14px;
  line-height: 1;
  display: grid;
  place-items: center;
}
.thumb button:hover {
  background: var(--pink);
}

.quote-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  margin-top: var(--space-8);
  padding-top: var(--space-6);
  border-top: 1px solid var(--grey-200);
}
.linkback {
  background: none;
  border: 0;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sunday-grey);
  padding: var(--space-3) 0;
}
.linkback:hover {
  color: var(--pink-deep);
}
.linkback[hidden] {
  visibility: hidden;
  display: block;
}
.offer-flag {
  display: none;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--pink-deep);
  background: var(--pink-tint);
  border-radius: var(--radius-pill);
  padding: var(--space-2) var(--space-4);
  margin-bottom: var(--space-6);
}
.offer-flag.is-on {
  display: inline-flex;
}

/* success */
.quote-done {
  display: none;
  padding: clamp(2rem, 6vw, 4rem) clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3rem);
}
.quote-done.is-on {
  display: flex;
}
.quote-done h3 {
  font-size: var(--text-2xl);
  text-transform: uppercase;
}
.quote-done p {
  color: var(--sunday-grey);
  margin-top: var(--space-4);
  max-width: 34ch;
}
.mini-bulb {
  flex: none;
  width: clamp(84px, 12vw, 120px);
}
.mini-bulb .glass {
  fill: #f6cede;
  transition: fill 900ms var(--ease);
}
.mini-bulb .fil {
  stroke: #b9b9c2;
  transition: stroke 500ms var(--ease), filter 700ms var(--ease);
}
.mini-bulb .halo {
  opacity: 0;
  transition: opacity 1100ms var(--ease);
}
.quote-done.is-on .mini-bulb .fil {
  stroke: #fff6df;
  filter: drop-shadow(0 0 4px rgba(255, 240, 210, 1));
  transition-delay: 400ms;
}
.quote-done.is-on .mini-bulb .glass {
  fill: var(--pink-bright);
  transition-delay: 700ms;
}
.quote-done.is-on .mini-bulb .halo {
  opacity: 1;
  transition-delay: 800ms;
}

/* ======================================================================
   FAQ
   ====================================================================== */
.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.faq-list {
  border-top: 1px solid var(--grey-200);
}
.faq-item {
  border-bottom: 1px solid var(--grey-200);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  gap: var(--space-5);
  justify-content: space-between;
  padding: var(--space-6) 0;
  background: none;
  border: 0;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 700;
  letter-spacing: -0.005em;
  transition: color var(--t-fast);
}
.faq-q:hover {
  color: var(--pink-deep);
}
.faq-q i {
  flex: none;
  position: relative;
  width: 22px;
  height: 22px;
  transition: transform 420ms var(--ease);
}
.faq-q i::before,
.faq-q i::after {
  content: '';
  position: absolute;
  inset: 50% 0 auto 0;
  height: 1.5px;
  background: var(--pink);
  transform: translateY(-50%);
}
.faq-q i::after {
  transform: translateY(-50%) rotate(90deg);
  transition: opacity 320ms var(--ease);
}
.faq-q[aria-expanded='true'] i {
  transform: rotate(180deg);
}
.faq-q[aria-expanded='true'] i::after {
  opacity: 0;
}
.faq-a {
  overflow: hidden;
  height: 0;
  transition: height 420ms var(--ease);
}
.faq-a > div {
  padding-bottom: var(--space-6);
  color: var(--sunday-grey);
  max-width: 62ch;
}
.faq-a p + p {
  margin-top: var(--space-4);
}

/* ======================================================================
   AREAS
   ====================================================================== */
.areas-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.areas-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}
.area {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  min-height: 46px;
  padding: 0 var(--space-5);
  border: 1.5px solid var(--grey-200);
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: all var(--t-fast);
  background: var(--white);
}
.area::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--grey-300);
  transition: all var(--t-mid);
}
.area:hover {
  border-color: var(--pink);
  color: var(--pink-deep);
  transform: translateY(-2px);
}
.area:hover::before {
  background: var(--pink);
  box-shadow: 0 0 10px 1px rgba(236, 58, 128, 0.9);
}
.area--plain {
  cursor: default;
}
.area--plain:hover {
  transform: none;
  border-color: var(--grey-200);
  color: inherit;
}
.area--plain:hover::before {
  background: var(--grey-300);
  box-shadow: none;
}
.areas-note {
  margin-top: var(--space-6);
  font-size: var(--text-xs);
  color: var(--grey-faint);
  max-width: 60ch;
}

/* ======================================================================
   FOOTER
   ====================================================================== */
.foot {
  background: var(--ink);
  color: #fff;
  padding-block: clamp(3rem, 7vw, 6rem) clamp(2rem, 4vw, 3rem);
}
.foot__top {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) repeat(2, minmax(0, 0.6fr));
  gap: clamp(2rem, 5vw, 4rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.foot__logo svg {
  height: 40px;
  width: auto;
  color: #fff;
}
.foot__tag {
  margin-top: var(--space-6);
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.05;
  max-width: 20ch;
}
.foot__tag em {
  font-style: normal;
  color: var(--pink-bright);
}
.foot h4 {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: var(--space-5);
}
.foot ul {
  list-style: none;
  display: grid;
  gap: var(--space-3);
}
.foot a {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.8);
  transition: color var(--t-fast);
}
.foot a:hover {
  color: var(--pink-bright);
}
.foot__contact {
  font-variant-numeric: tabular-nums;
  overflow-wrap: anywhere;
}
/* Parent-brand endorsement lockup. The supplied mark is white artwork, so it
   sits on the dark footer unmodified and is sized by width alone. */
.foot__parent {
  margin-top: var(--space-8);
  padding-top: var(--space-6);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-2);
}
.foot__parent-label {
  font-size: var(--text-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}
.foot__parent-link {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-2);
  opacity: 0.88;
  transition: opacity var(--t-fast), transform var(--t-fast);
}
.foot__parent-link:hover {
  opacity: 1;
  transform: translateY(-1px);
}
.foot__parent-link img {
  width: 150px;
  height: auto;
  display: block;
}
.foot__parent-url {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.45);
  transition: color var(--t-fast);
}
.foot__parent-link:hover .foot__parent-url {
  color: var(--pink-bright);
}
.foot__bot {
  padding-top: var(--space-6);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4) var(--space-8);
  align-items: center;
  justify-content: space-between;
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.45);
}
.foot__bot nav {
  display: flex;
  gap: var(--space-6);
}
.foot__socials {
  display: flex;
  gap: var(--space-3);
}
.foot__socials a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.7);
}
.foot__socials a:hover {
  border-color: var(--pink);
  color: #fff;
  background: var(--pink);
}

/* ======================================================================
   INTERIOR / CITY PAGES
   ====================================================================== */
.crumbs {
  font-size: var(--text-xs);
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  align-items: center;
  margin-bottom: var(--space-6);
}
.crumbs a:hover {
  color: #fff;
}
.crumbs span[aria-current] {
  color: #fff;
}
.crumbs li {
  display: inline-flex;
  gap: var(--space-2);
  align-items: center;
  list-style: none;
}
.crumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  align-items: center;
  padding: 0;
  margin: 0;
}

.phero {
  position: relative;
  min-height: min(78svh, 760px);
  display: flex;
  align-items: flex-end;
  color: #fff;
  background: #05060b;
  overflow: hidden;
  isolation: isolate;
}
.phero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  filter: brightness(0.8);
}
.phero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    to top,
    rgba(4, 5, 10, 0.94) 0%,
    rgba(4, 5, 10, 0.6) 40%,
    rgba(4, 5, 10, 0.25) 100%
  );
}
.phero__inner {
  width: 100%;
  max-width: var(--content);
  margin-inline: auto;
  padding: calc(var(--nav-h) + var(--space-16)) var(--gutter) clamp(2.5rem, 5vw, 4rem);
}
.phero h1 {
  font-size: var(--text-3xl);
  text-transform: uppercase;
  max-width: 20ch;
}
.phero__sub {
  margin-top: var(--space-5);
  font-size: var(--text-lg);
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.82);
  max-width: 48ch;
}
.phero__ctas {
  margin-top: var(--space-8);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}
.pill-offer {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  background: var(--pink);
  color: #fff;
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: var(--space-2) var(--space-5);
  border-radius: var(--radius-pill);
  margin-bottom: var(--space-6);
  box-shadow: 0 0 30px -6px rgba(236, 58, 128, 0.9);
}

.prose {
  max-width: 68ch;
}
.prose h2 {
  font-size: var(--text-xl);
  text-transform: uppercase;
  margin-bottom: var(--space-5);
}
.prose h3 {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: var(--space-8) 0 var(--space-3);
}
.prose p {
  color: var(--sunday-grey);
}
.prose p + p {
  margin-top: var(--space-4);
}
.prose ul {
  margin: var(--space-4) 0 0 0;
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: var(--space-3);
}
.prose ul li {
  position: relative;
  padding-left: var(--space-6);
  color: var(--sunday-grey);
}
.prose ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 8px 0 rgba(236, 58, 128, 0.55);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.stat-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-sm);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  position: sticky;
  top: calc(var(--nav-h) + 1.5rem);
}
.stat-card h3 {
  font-size: var(--text-lg);
  text-transform: uppercase;
  margin-bottom: var(--space-5);
}
.stat-card dl {
  display: grid;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}
.stat-card dt {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey-faint);
}
.stat-card dd {
  font-size: var(--text-sm);
  color: var(--charcoal);
  margin-top: 2px;
}

.mini-gal {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(0.75rem, 1.2vw, 1rem);
}
.mini-gal figure {
  margin: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
  background: #0d0d12;
}
.mini-gal img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  filter: brightness(0.9);
  transition: filter 600ms var(--ease), transform 800ms var(--ease);
}
.mini-gal figure:hover img {
  filter: brightness(1.1);
  transform: scale(1.03);
}
.mini-gal figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: var(--space-8) var(--space-4) var(--space-4);
  background: linear-gradient(to top, rgba(6, 6, 10, 0.85), transparent);
  color: #fff;
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.nearby {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-6);
}

.cta-band {
  background: var(--charcoal);
  color: #fff;
  text-align: center;
}
.cta-band h2 {
  font-size: var(--text-2xl);
  text-transform: uppercase;
}
.cta-band p {
  margin: var(--space-5) auto 0;
  color: rgba(255, 255, 255, 0.72);
  max-width: 48ch;
}
.cta-band .btn {
  margin-top: var(--space-8);
}

.legal {
  padding-top: calc(var(--nav-h) + clamp(3rem, 8vw, 6rem));
}
.legal .prose h1 {
  font-size: var(--text-2xl);
  text-transform: uppercase;
  margin-bottom: var(--space-6);
}
.legal .prose h2 {
  margin-top: var(--space-10);
}

/* ======================================================================
   RESPONSIVE
   ====================================================================== */
@media (max-width: 1080px) {
  .hero__inner {
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-8);
  }
  .offer-card {
    max-width: 460px;
  }
  .bulb-grid,
  .faq-grid,
  .areas-grid,
  .split,
  .offer-grid,
  .ba-foot {
    grid-template-columns: minmax(0, 1fr);
  }
  .bulb-stage {
    max-width: 380px;
    margin-inline: auto;
    aspect-ratio: 760/1040;
  }
  .masonry {
    columns: 2;
  }
  .foot__top {
    grid-template-columns: 1fr 1fr;
  }
  .stat-card {
    position: static;
  }
  .offer-bulb {
    min-height: 260px;
    order: -1;
  }
}

@media (max-width: 860px) {
  .cd__sep {
    display: none;
  }
  .cd__clock {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(1.25rem, 4vw, 2rem);
  }
  .cd__foot .btn {
    width: 100%;
  }
  :root {
    --nav-h: 64px;
  }
  .nav__links {
    display: none;
  }
  .nav__cta {
    display: none;
  }
  .nav__burger {
    display: block;
    margin-left: auto;
  }
  .mobile-cta {
    display: block;
  }
  body {
    padding-bottom: 76px;
  }
  .hero {
    min-height: 92svh;
  }
  .viz-controls {
    grid-template-columns: 1fr;
  }
  .viz-btn {
    min-height: 74px;
  }
  .proc-wrap {
    --rail-w: 46px;
  }
  .proc-bulb {
    width: 26px;
  }
  .quote-done {
    flex-direction: column;
    text-align: center;
  }
  .fields-2 {
    grid-template-columns: 1fr;
  }
  .ba {
    aspect-ratio: 4/3;
  }
  .lb__bar {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .masonry {
    columns: 1;
  }
  .foot__top {
    grid-template-columns: 1fr;
  }
  .svc {
    aspect-ratio: 4/3.4;
  }
  .offer__big {
    font-size: clamp(4.5rem, 30vw, 8rem);
  }
  .hero__ctas .btn {
    width: 100%;
  }
}

/* ======================================================================
   REDUCED MOTION — swap elaborate scroll work for simple state changes
   ====================================================================== */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 120ms !important;
    scroll-behavior: auto !important;
  }
  .rv {
    opacity: 1;
    transform: none;
  }
  .mask-rv {
    clip-path: none;
  }
  .hero h1 .ln > span {
    transform: none;
  }
  .hero__on {
    -webkit-mask-image: none;
    mask-image: none;
  }
  .bleed img {
    filter: brightness(1) saturate(1.04);
    transform: none;
  }
  .gal-item img {
    filter: brightness(0.94);
  }
  .proc-step {
    opacity: 1;
  }
  .hero__scroll i {
    animation: none;
  }
}

/* Registered so the hero mask sweep can be transitioned smoothly */
@property --sweep {
  syntax: '<percentage>';
  inherits: false;
  initial-value: -30%;
}

/* ==========================================================================
   SUNDAY x CRUMBL — collaboration sequence
   --------------------------------------------------------------------------
   Built as real geometry rather than a video or a stack of flat PNGs: the
   tray floor, four walls, the lid and the lid's underside are separate
   surfaces in a preserve-3d space, so the lid genuinely rotates on its back
   edge and the light and shadow inside the box change as it opens.
   Everything is scrubbed from one custom property, --p (0 -> 1), that
   main.js writes from scroll position. No library, no autoplay video.
   ========================================================================== */
.collab {
  --p: 0;                     /* master scroll progress, written by JS       */
  --open: 0;                  /* lid progress 0 -> 1                         */
  --lift: 0;                  /* box entry 0 -> 1                            */
  --bw: clamp(300px, 48vw, 720px);
  --bd: calc(var(--bw) * 0.42);
  --bh: calc(var(--bw) * 0.16);
  --tilt: 56deg;
  --lid-open: 80deg;
  --recede: 0;
  --paper:
    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='0.85' numOctaves='3'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
  position: relative;
  background: var(--white);
  color: var(--ink);
  isolation: isolate;
}
.lockup {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.85rem, 2vw, 1.6rem);
  opacity: 0;
  filter: blur(6px);
  transform: translateY(14px);
  transition: opacity 700ms var(--ease), filter 700ms var(--ease), transform 700ms var(--ease);
}
.lockup.is-in {
  opacity: 1;
  filter: blur(0);
  transform: none;
}
.lockup__sunday {
  width: clamp(124px, 15vw, 210px);
  height: auto;
  color: var(--pink);
  display: block;
}
.lockup__x {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.7vw, 1.5rem);
  font-weight: 500;
  color: var(--grey-faint);
  line-height: 1;
  transform: translateY(-0.06em);
}
.lockup__crumbl,
.lockup__crumbl picture {
  display: block;
}
.lockup__crumbl img {
  width: clamp(122px, 15vw, 200px);
  height: auto;
  display: block;
}
.br-m { display: none; }

/* ===================== the box ===================== */
.cbox {
  position: relative;
  width: var(--bw);
  height: calc(var(--bd) * 0.78);
  perspective: 1500px;
  perspective-origin: 50% 30%;
}
.cbox__stage {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: var(--bw);
  height: var(--bd);
  margin-left: calc(var(--bw) / -2);
  transform-style: preserve-3d;
  transform: rotateX(var(--tilt)) translateZ(0);
}

/* Contact shadow, on the ground plane inside the 3D space so it foreshortens
   with the box. A soft gradient rather than filter:blur — a filter would
   flatten the preserve-3d context it lives in. */
.cbox__shadow {
  position: absolute;
  inset: -9% -8% -12%;
  transform: translateZ(-2px);
  background: radial-gradient(52% 46% at 50% 56%,
    rgba(58, 30, 46, 0.42) 0%,
    rgba(58, 30, 46, 0.3) 34%,
    rgba(58, 30, 46, 0.14) 56%,
    rgba(58, 30, 46, 0.05) 72%,
    rgba(58, 30, 46, 0) 85%);
  opacity: calc(0.35 + var(--lift) * 0.65);
  pointer-events: none;
}

.cbox__tray { position: absolute; inset: 0; transform-style: preserve-3d; }

.cbox__floor {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  background:
    radial-gradient(70% 60% at 50% 34%, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 72%),
    linear-gradient(180deg, #edc4d7 0%, #f6dce8 44%, #e7b8ce 100%),
    var(--paper);
  background-blend-mode: normal, multiply, normal;
  border-radius: 3px;
  box-shadow: inset 0 0 calc(var(--bw) * 0.1) rgba(126, 52, 84, 0.34);
}

/* four walls, each hinged along its own floor edge and folded up */
.cbox__wall {
  position: absolute;
  background:
    linear-gradient(180deg, #dda8c3 0%, #c88aa8 100%),
    var(--paper);
  background-blend-mode: multiply, normal;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    inset 0 0 calc(var(--bw) * 0.05) rgba(112, 44, 74, 0.32);
}
.cbox__wall--back {
  left: 0; top: 0; width: 100%; height: var(--bh);
  transform-origin: top center;
  transform: rotateX(90deg);
  background:
    linear-gradient(180deg, #b87a9a 0%, #d49ab6 100%),
    var(--paper);
  background-blend-mode: multiply, normal;
  box-shadow:
    inset 0 2px 5px rgba(96, 36, 63, 0.4),
    inset 0 -1px 0 rgba(255, 255, 255, 0.28);
}
.cbox__wall--front {
  left: 0; bottom: 0; width: 100%; height: var(--bh);
  transform-origin: bottom center;
  transform: rotateX(-90deg);
  background:
    linear-gradient(180deg, #fbe4ee 0%, #eec3d7 100%),
    var(--paper);
  background-blend-mode: multiply, normal;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    inset 0 -6px 12px -6px rgba(126, 52, 84, 0.3);
}
.cbox__wall--left {
  left: 0; top: 0; width: var(--bh); height: 100%;
  transform-origin: left center;
  transform: rotateY(-90deg);
}
.cbox__wall--right {
  right: 0; top: 0; width: var(--bh); height: 100%;
  transform-origin: right center;
  transform: rotateY(90deg);
}

/* light spilling in once the lid clears — plus the lid's own shadow receding */
.cbox__inner-light {
  position: absolute;
  inset: 0;
  transform: translateZ(1px);
  border-radius: 3px;
  pointer-events: none;
  background:
    radial-gradient(70% 58% at 50% 26%, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0) 70%),
    linear-gradient(180deg, rgba(58, 30, 44, 0.5) 0%, rgba(58, 30, 44, 0.12) 46%, rgba(58, 30, 44, 0) 72%);
  opacity: calc(1 - var(--open));
  mix-blend-mode: multiply;
}

/* ---------------------------------------------------------------- cookies */
.cbox__cookies {
  position: absolute;
  inset: 8% 4%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5%;
  place-items: center;
  transform-style: preserve-3d;
}
.cbox__cookie {
  transform: translateZ(calc(var(--bh) * 0.34)) scale(var(--ck, 0));
  opacity: var(--ck, 0);
  transition: none;
  filter: drop-shadow(0 calc(var(--bw) * 0.012) calc(var(--bw) * 0.016) rgba(110, 50, 78, 0.34));
}
.cbox__cookie:nth-child(1) { --ck: var(--c1, 0); }
.cbox__cookie:nth-child(2) { --ck: var(--c2, 0); }
.cbox__cookie:nth-child(3) { --ck: var(--c3, 0); }
.cbox__cookie:nth-child(4) { --ck: var(--c4, 0); }
.cbox__cookie-img {
  display: block;
  width: 100%;
  height: auto;
}

/* a few crumbs that settle when the lid lifts — deliberately barely there */
.cbox__crumbs { position: absolute; inset: 0; pointer-events: none; }
.cbox__crumbs i {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #8a5a3c;
  opacity: 0;
  transition: transform 900ms var(--ease), opacity 700ms var(--ease);
}
.cbox__crumbs i:nth-child(1) { left: 14%; top: 78%; }
.cbox__crumbs i:nth-child(2) { left: 28%; top: 88%; width: 2px; height: 2px; }
.cbox__crumbs i:nth-child(3) { left: 52%; top: 83%; }
.cbox__crumbs i:nth-child(4) { left: 71%; top: 90%; width: 2px; height: 2px; }
.cbox__crumbs i:nth-child(5) { left: 84%; top: 74%; }
.cbox__crumbs i:nth-child(6) { left: 43%; top: 93%; width: 4px; height: 4px; }
.cbox.is-open .cbox__crumbs i { opacity: 0.6; }
.cbox.is-open .cbox__crumbs i:nth-child(1) { transform: translate(-4px, 5px); }
.cbox.is-open .cbox__crumbs i:nth-child(2) { transform: translate(3px, 7px); }
.cbox.is-open .cbox__crumbs i:nth-child(3) { transform: translate(-2px, 9px); }
.cbox.is-open .cbox__crumbs i:nth-child(4) { transform: translate(5px, 4px); }
.cbox.is-open .cbox__crumbs i:nth-child(5) { transform: translate(-6px, 6px); }
.cbox.is-open .cbox__crumbs i:nth-child(6) { transform: translate(2px, 8px); }

/* -------------------------------------------------------------------- lid */
.cbox__lid {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transform-origin: top center;
  transform:
    translateZ(calc(var(--bh) + 1px))
    rotateX(calc(var(--open) * var(--lid-open)));
  will-change: transform;
}
.cbox__lid-top,
.cbox__lid-under {
  position: absolute;
  inset: 0;
  border-radius: 3px;
  backface-visibility: hidden;
}
.cbox__lid-top {
  transform: translateZ(1px);
  display: grid;
  place-items: center;
  background:
    radial-gradient(120% 90% at 26% 18%, rgba(255, 255, 255, 0.34) 0%, rgba(255, 255, 255, 0) 55%),
    linear-gradient(152deg, #fb9dc0 0%, var(--pink) 46%, #d92670 100%),
    var(--paper);
  background-blend-mode: normal, multiply, normal;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.18),
    inset 0 calc(var(--bw) * 0.01) calc(var(--bw) * 0.03) rgba(255, 255, 255, 0.28);
}
.cbox__lid-under {
  transform: translateZ(-1px) rotateY(180deg);
  background:
    linear-gradient(160deg, #f4d4e2 0%, #dca3bf 100%),
    var(--paper);
  background-blend-mode: multiply, normal;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.3),
    inset 0 0 calc(var(--bw) * 0.13) rgba(126, 52, 84, 0.42);
}
/* the moulded inner panel of the lid, so the underside is not a flat sheet */
.cbox__lid-under::after {
  content: "";
  position: absolute;
  inset: 7% 5%;
  border-radius: 2px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.22), rgba(150, 70, 104, 0.1));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    0 1px 2px rgba(126, 52, 84, 0.25);
}
/* the lid's skirt — the vertical lip that makes it read as a real lid */
.cbox__lid-lip {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: calc(var(--bh) * 0.34);
  transform-origin: bottom center;
  transform: rotateX(-90deg);
  background: linear-gradient(180deg, #d92670 0%, #b8175c 100%);
}

/* ==========================================================================
   THE CARE PACKAGE
   ========================================================================== */
/* The care package reuses the collaboration box component, so it needs the
   same token set the pinned section defines. */
.care {
  --p: 0;                     /* master scroll progress, written by JS       */
  --open: 0;                  /* lid progress 0 -> 1                         */
  --lift: 0;                  /* box entry 0 -> 1                            */
  --bw: clamp(300px, 48vw, 720px);
  --bd: calc(var(--bw) * 0.42);
  --bh: calc(var(--bw) * 0.16);
  --tilt: 56deg;
  --lid-open: 80deg;
  --recede: 0;
  --paper:
    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='0.85' numOctaves='3'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
  position: relative;
  background: var(--white);
  padding: clamp(4rem, 10vh, 7.5rem) 0 clamp(3rem, 7vh, 5rem);
}
.care__intro { text-align: center; }
.care__intro .eyebrow { justify-content: center; }
.care__h {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 0.7rem + 2.3vw, 3.1rem);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0.8rem 0 0;
}
.care__scene {
  position: relative;
  margin: clamp(2rem, 5vh, 3.5rem) auto 0;
  max-width: 62rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 30px 70px -40px rgba(23, 22, 28, 0.45);
}
.care__surface {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: 50% 58%;
}
.care__items {
  position: absolute;
  inset: 0;
  transform: translateY(4%);
  display: grid;
  grid-template-columns: 1.05fr 0.85fr;
  align-items: center;
  gap: 4%;
  padding: 0 7%;
}
.care__pack {
  position: relative;
  justify-self: center;
  width: 100%;
  display: block;
}
.care__ph {
  display: block;
  height: auto;
}
.care__ph--open {
  width: 100%;
  filter: drop-shadow(0 26px 30px rgba(23, 22, 28, 0.16));
}
.care__aside {
  display: grid;
  justify-items: center;
  align-content: center;
  gap: clamp(0.5rem, 1.6vw, 1.2rem);
}
.care__pack picture,
.care__closed picture { display: block; }
.care__closed {
  width: clamp(120px, 17vw, 210px);
  margin-left: 8%;
  filter: drop-shadow(0 16px 20px rgba(23, 22, 28, 0.18));
}
.care__ph--closed { width: 100%; }
.care__card {
  background: var(--white);
  border-radius: 2px;
  padding: clamp(1rem, 2.4vw, 1.9rem) clamp(1rem, 2.6vw, 2rem);
  transform: rotate(-2.4deg);
  box-shadow:
    0 1px 2px rgba(23, 22, 28, 0.14),
    0 18px 34px -20px rgba(23, 22, 28, 0.5);
  background-image: var(--paper);
  background-blend-mode: multiply;
}
.care__card-mark {
  width: clamp(72px, 9vw, 116px);
  height: auto;
  color: var(--pink);
  display: block;
}
.care__list {
  list-style: none;
  margin: clamp(0.7rem, 1.6vw, 1.1rem) 0 0;
  padding: 0;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  font-size: clamp(0.62rem, 1.22vw, 1rem);
  line-height: 1.5;
}
.care__list b { color: var(--pink); }
.care__sign {
  margin: clamp(0.6rem, 1.4vw, 1rem) 0 0;
  font-size: clamp(0.56rem, 1.02vw, 0.82rem);
  color: var(--sunday-grey);
  line-height: 1.45;
}
.care__sign span { color: var(--ink); font-weight: 500; }
.care__note {
  text-align: center;
  margin: clamp(1.6rem, 4vh, 2.6rem) 0 0;
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pink);
}

/* ==========================================================================
   STAGE 5 — conversion
   ========================================================================== */
.collab-cta {
  background: var(--pink-wash);
  padding: clamp(3.5rem, 9vh, 6.5rem) 0 clamp(4rem, 10vh, 7rem);
  text-align: center;
}
.collab-cta__wrap { display: grid; justify-items: center; }
.collab-cta .lockup { opacity: 1; filter: none; transform: none; }
.collab-cta__h {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 0.7rem + 2.6vw, 3.4rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.022em;
  text-transform: uppercase;
  margin: clamp(1.2rem, 3vh, 2rem) 0 clamp(1.6rem, 3.6vh, 2.4rem);
}
.collab-cta .btn--lg { box-shadow: 0 10px 30px -14px rgba(236, 58, 128, 0.85); }
.collab-cta .btn--lg:hover {
  box-shadow: 0 14px 40px -12px rgba(236, 58, 128, 0.95);
}
.collab-cta__fine {
  margin: clamp(1.2rem, 3vh, 1.9rem) auto 0;
  max-width: 38rem;
  font-size: 0.74rem;
  line-height: 1.6;
  color: var(--sunday-grey);
}

/* the lead-source confirmation inside the quote card */
.source-flag {
  display: none;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1.2rem;
  padding: 0.7rem 0.9rem;
  border-radius: var(--radius-sm);
  background: var(--pink-wash);
  color: var(--pink-deep);
  font-size: 0.82rem;
  font-weight: 500;
}
.source-flag.is-on { display: flex; }

/* ==========================================================================
   MOBILE — a purpose-built version of the sequence, not a shrunken desktop.
   The box takes ~88vw, the lid swings less far so it never leaves the frame,
   and the copy stacks to the line breaks specified in the brief.
   ========================================================================== */
@media (max-width: 860px) {
  .care__scene { display: grid; }
  .care__surface {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
  }
  .care__items {
    position: static;
    grid-template-columns: 1fr;
    gap: clamp(1rem, 3vw, 1.8rem);
    padding: clamp(1.6rem, 5vw, 2.6rem) 6%;
    align-content: center;
    transform: none;
  }
  .care__aside {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    justify-items: start;
    gap: clamp(0.8rem, 3vw, 1.6rem);
  }
  /* vw units, not percentages: --bd/--bh are derived from --bw, and a
     percentage there cannot resolve into a length. */
  .care__pack { width: min(100%, 420px); }
  .care__closed { width: clamp(110px, 22vw, 170px); margin-left: 0; }
  .care__card { width: min(100%, 300px); }
}

@media (max-width: 560px) {
  .collab {
    --bw: 80vw;
    --bd: calc(var(--bw) * 0.7);
    --bh: calc(var(--bw) * 0.15);
    --tilt: 54deg;
    --lid-open: 72deg;
  }
  .cbox__cookies { grid-template-columns: 1fr 1fr; inset: 7%; gap: 3%; }
  /* The sequence tray keeps its single row of four — that 2x2 fold is for the
     small care-package still life, not for the box the cookies fly into. */
  .cbox--nolid .cbox__cookies {
    grid-template-columns: repeat(4, 1fr);
    inset: 20% 11% 49%;
    gap: 1.4%;
  }
  .lockup { flex-direction: row; gap: 0.7rem; }
  .lockup__sunday { width: 104px; }
  .lockup__crumbl img { width: 104px; }
  .br-m { display: inline; }

  .care__scene { border-radius: var(--radius-sm); }
  .care__items {
    grid-template-rows: auto auto;
    padding: clamp(1.4rem, 6vw, 2rem) 6%;
    gap: clamp(0.9rem, 4vw, 1.4rem);
  }
  .care__pack { width: min(100%, 330px); }
  .care__aside { grid-template-columns: 1fr; justify-items: center; }
  .care__closed { width: clamp(104px, 30vw, 148px); margin-left: 14%; }
  .care__card { width: min(100%, 260px); transform: rotate(-2deg); }

}

/* Very short viewports: give the box less room rather than overflowing. */
@media (max-height: 700px) and (min-width: 561px) {
  .collab { --bw: clamp(220px, 24vw, 330px); }
}



/* ==========================================================================
   The cookie sequence — a scroll-scrubbed 3D composition

   Five cookie cutouts live on separate Z-planes inside one perspective
   container. JS writes a full transform onto each .cx__cookie every frame
   (translate3d + rotate + scale only, so the compositor does all the work)
   and toggles one copy panel at a time. Nothing here animates on its own
   except the idle float, which is a tiny time-based drift on an inner
   element so it composes cleanly with the scroll transform on the parent.
   ========================================================================== */
.cx__track {
  height: 420vh;
  position: relative;
}
.cx__stage {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
  display: grid;
  grid-template-rows: 1fr auto;
  place-items: center;
  background:
    radial-gradient(120% 90% at 50% 12%, #fff 0%, var(--pink-wash) 62%, #fbeef4 100%);
}

/* ------------------------------------------------ the perspective space */
.cx__scene {
  position: absolute;
  inset: 0;
  perspective: 1400px;
  perspective-origin: 50% 46%;
  pointer-events: none;
  z-index: 1;
}
.cx__space {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
}
.cx__cookie {
  position: absolute;
  left: 50%;
  top: 46%;
  width: var(--cw);
  margin: calc(var(--cw) / -2) 0 0 calc(var(--cw) / -2);
  will-change: transform, opacity;
  transform: translate3d(0, 60vh, -600px);
  opacity: 0;
}
/* Widths are pre-perspective. A near cookie sits at +150px of Z, which
   magnifies it by roughly 1.2x, landing it inside the 15-30vw brief. */
.cx__cookie--near { --cw: clamp(172px, 20vw, 340px); }
.cx__cookie--mid  { --cw: clamp(132px, 16vw, 265px); }
.cx__cookie--far  { --cw: clamp(100px, 13vw, 205px); }

/* The idle float lives on the inner element so the scroll transform on the
   parent is never fought over. Amplitude is deliberately tiny — suspended,
   not bouncing. */
.cx__cookie-in {
  display: block;
  transform-style: preserve-3d;
  animation: cx-float var(--fdur, 13s) ease-in-out infinite;
  animation-delay: var(--fdelay, 0s);
}
@keyframes cx-float {
  0%, 100% { transform: translate3d(0, -0.6%, 0) rotate(-1.1deg); }
  50%      { transform: translate3d(0, 0.9%, 0) rotate(1.4deg); }
}
.cx__cookie--1 .cx__cookie-in { --fdur: 14s; --fdelay: -2s; }
.cx__cookie--2 .cx__cookie-in { --fdur: 11.5s; --fdelay: -6s; }
.cx__cookie--3 .cx__cookie-in { --fdur: 16s; --fdelay: -9s; }
.cx__cookie--4 .cx__cookie-in { --fdur: 12.5s; --fdelay: -4s; }
.cx__cookie--5 .cx__cookie-in { --fdur: 15s; --fdelay: -11s; }

.cx__cookie-img {
  display: block;
  width: 100%;
  height: auto;
  /* A soft pink-tinted contact shadow sells the cookie as a solid object in
     a lit room rather than a sticker. Two drop-shadows: tight + ambient. */
  filter:
    drop-shadow(0 calc(var(--cw) * 0.045) calc(var(--cw) * 0.055) rgba(122, 44, 78, 0.20))
    drop-shadow(0 calc(var(--cw) * 0.14) calc(var(--cw) * 0.16) rgba(122, 44, 78, 0.13));
}
/* Depth of field: only the nearest plane softens, and only slightly. */
.cx__cookie--near .cx__cookie-img { filter:
    drop-shadow(0 calc(var(--cw) * 0.05) calc(var(--cw) * 0.06) rgba(122, 44, 78, 0.22))
    drop-shadow(0 calc(var(--cw) * 0.15) calc(var(--cw) * 0.18) rgba(122, 44, 78, 0.15)); }
.cx__cookie--far .cx__cookie-img { opacity: 0.93; }

/* ---------------------------------------------------------- the box */
.cx__boxwrap {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: max-content;
  z-index: 2;
  opacity: 0;
  will-change: transform, opacity;
  transform: translate3d(-50%, 60vh, 0);
  pointer-events: none;
}
.cx__boxwrap .cbox { --bw: clamp(240px, 30vw, 430px); }
/* The sequence box has no lid: the opening has to stay completely
   unobstructed for the whole fly-in, and a lid standing open at this scale
   would tower into the copy. The lidded box still appears further down the
   page in the care-package still life. */
.cbox--nolid {
  height: var(--bd);
  /* Taller walls and a shallower tilt than the lidded box, so the front wall
     is clearly visible and it reads as a container the cookies drop into. */
  --bh: calc(var(--bw) * 0.24);
  --tilt: 44deg;
}
/* --- painted 2.5D construction (sequence box only) ---------------------
   The lidded box builds real CSS-3D planes, which reads well at its shallow
   tilt with a lid for scale. Lidless and viewed from above, the folded walls
   project into the same screen region as the floor and Chrome sorts the
   coincident planes unpredictably — the box collapses to a flat mat. So this
   box is drawn instead of folded: four clip-path quads (rim opening, inside
   walls, recessed floor, front face) painted in perspective. It is stable in
   every browser, costs no 3D compositing, and the cookies still sit inside a
   clipped tray, so they genuinely disappear over the rim. */
.cbox--nolid .cbox__stage {
  transform: none;
  transform-style: flat;
}
.cbox--nolid .cbox__tray { transform-style: flat; }

/* inside of the back and side walls: the whole opening, dark, floor over it */
.cbox--nolid .cbox__wall--back {
  inset: 0;
  left: 0; top: 0; width: 100%; height: 100%;
  transform: none;
  z-index: 1;
  clip-path: polygon(19% 4%, 81% 4%, 100% 56%, 0% 56%);
  background:
    linear-gradient(180deg, #c07b9d 0%, #cf8dad 42%, #b4688d 100%),
    var(--paper);
  background-blend-mode: multiply, normal;
  box-shadow: none;
}
/* recessed floor, sitting inside the walls */
.cbox--nolid .cbox__floor {
  inset: 0;
  transform: none;
  transform-style: flat;
  z-index: 2;
  border-radius: 0;
  clip-path: polygon(25% 17%, 75% 17%, 90% 50%, 10% 50%);
  background:
    radial-gradient(66% 54% at 50% 30%, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 76%),
    linear-gradient(180deg, #dfa9c4 0%, #f2d2e2 46%, #e8bdd2 100%),
    var(--paper);
  background-blend-mode: normal, multiply, normal;
  box-shadow: none;
}
/* front face of the box, catching the most light */
.cbox--nolid .cbox__wall--front {
  inset: 0;
  left: 0; bottom: 0; width: 100%; height: 100%;
  transform: none;
  z-index: 4;
  clip-path: polygon(0% 56%, 100% 56%, 95.5% 88%, 4.5% 88%);
  background:
    linear-gradient(180deg, #fdf1f6 0%, #f4d6e5 38%, #e2aec8 100%),
    var(--paper);
  background-blend-mode: multiply, normal;
  box-shadow: none;
}
/* the lit paper rim along the front edge — the single line that makes the eye
   read an opening rather than a printed shape */
.cbox--nolid .cbox__wall--left {
  inset: 0;
  left: 0; top: 0; width: 100%; height: 100%;
  transform: none;
  z-index: 5;
  clip-path: polygon(0% 54.7%, 100% 54.7%, 100% 57.3%, 0% 57.3%);
  background: linear-gradient(180deg, #fffdfe 0%, #f8e3ee 100%);
  box-shadow: none;
}
.cbox--nolid .cbox__wall--right { display: none; }
/* Cookies lie in the recessed floor rather than standing in the opening, so
   they are squashed to the floor's viewing angle and sit inside the clip —
   the tray edge crops them exactly as a real box lip would. */
.cbox--nolid .cbox__cookies {
  inset: 21% 13% 48%;
  gap: 1.4%;
  transform-style: flat;
}
.cbox--nolid .cbox__cookie {
  width: 100%;
  transform: scale(var(--ck, 0)) scaleY(0.56);
  filter: drop-shadow(0 calc(var(--bw) * 0.02) calc(var(--bw) * 0.014) rgba(104, 44, 72, 0.42));
}
.cbox--nolid .cbox__cookie:nth-child(1) { rotate: -3deg; }
.cbox--nolid .cbox__cookie:nth-child(2) { rotate: 2deg; }
.cbox--nolid .cbox__cookie:nth-child(3) { rotate: -1.5deg; }
.cbox--nolid .cbox__cookie:nth-child(4) { rotate: 3deg; }
.cbox--nolid .cbox__inner-light { display: none; }
.cbox--nolid .cbox__shadow { opacity: calc(0.5 + var(--lift) * 0.5); }

/* ---------------------------------------------------------- the copy */
/* As the box fills, the copy lifts clear of it rather than landing on top —
   driven by scroll like everything else, so it reverses cleanly. */
.cx__copy {
  transform: translate3d(0, calc(var(--endshift, 0) * -11vh), 0);
  position: relative;
  z-index: 3;
  grid-row: 1;
  width: min(100%, 60rem);
  padding: 0 var(--space-5);
  display: grid;
  place-items: center;
  align-self: center;
}
/* Every panel shares one cell and cross-fades. */
.cx__panel {
  grid-area: 1 / 1;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transform: translate3d(0, 1.1rem, 0);
  transition: opacity 420ms var(--ease), transform 520ms var(--ease),
              visibility 0s linear 420ms;
  pointer-events: none;
}
.cx__panel.is-in {
  opacity: 1;
  visibility: visible;
  transform: none;
  transition: opacity 420ms var(--ease), transform 520ms var(--ease),
              visibility 0s linear 0s;
}
.cx__panel--end.is-in { pointer-events: auto; }

.cx__panel .lockup { margin-bottom: clamp(1.4rem, 3.4vh, 2.2rem); }

.cx__h {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 5.4vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin: 0;
  text-wrap: balance;
}
.cx__l { display: block; }
.cx__nb { color: var(--pink); }
.cx__sub {
  margin: clamp(1rem, 2.4vh, 1.5rem) auto 0;
  max-width: 34rem;
  color: var(--sunday-grey);
  font-size: clamp(0.9rem, 1.15vw, 1.05rem);
  line-height: 1.6;
}

/* The three build-up lines. Large, quiet, one at a time. */
.cx__line {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.6rem, 4.4vw, 3.4rem);
  line-height: 1.04;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  margin: 0;
  text-wrap: balance;
}
.cx__line--soft {
  text-transform: none;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--pink);
}

/* The midpoint hero — the frame that should work as a standalone ad. */
.cx__hero-h {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.4rem, 7vw, 5.8rem);
  line-height: 0.92;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  margin: 0;
  display: flex;
  flex-direction: column;
}
.cx__hero-h span:nth-child(2) { color: var(--pink); }
.cx__hero-mark {
  margin: clamp(1rem, 2.6vh, 1.6rem) 0 0;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--grey-faint);
}

.cx__h--end { font-size: clamp(1.8rem, 4.4vw, 3.4rem); }
.cx__end-punch {
  margin: clamp(1rem, 2.4vh, 1.4rem) auto 0;
  max-width: 32rem;
  font-size: clamp(0.92rem, 1.2vw, 1.08rem);
  line-height: 1.7;
  color: var(--sunday-grey);
}
.cx__end-punch b { color: var(--pink); font-weight: 600; }
.cx__cta { margin-top: clamp(1.3rem, 3vh, 2rem); }

.cx__local {
  grid-row: 2;
  z-index: 3;
  margin: 0;
  padding: 0 var(--space-5) clamp(1rem, 2.6vh, 1.8rem);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey-faint);
  text-align: center;
}

/* ------------------------------------------------------------ phone */
@media (max-width: 560px) {
  .cx__track { height: 400vh; }
  .cx__scene { perspective: 900px; perspective-origin: 50% 44%; }
  .cx__cookie--near { --cw: clamp(132px, 39vw, 200px); }
  .cx__cookie--mid  { --cw: clamp(112px, 32vw, 168px); }
  .cx__cookie--far  { --cw: clamp(94px, 25vw, 134px); }
  /* Four cookies carry the phone composition; the fifth would crowd the
     centre column where all the type lives. */
  .cx__cookie--5 { display: none; }
  .cx__boxwrap .cbox { --bw: min(72vw, 320px); }
  .cx__copy { transform: translate3d(0, calc(var(--endshift, 0) * -13vh), 0); }
  .cx__copy { padding: 0 var(--space-4); }
  .cx__h { font-size: clamp(1.8rem, 9vw, 2.6rem); }
  .cx__line { font-size: clamp(1.45rem, 7.6vw, 2.2rem); }
  .cx__hero-h { font-size: clamp(2.1rem, 12vw, 3.4rem); }
  .cx__sub { font-size: 0.85rem; max-width: 22rem; }
  .cx__end-punch { font-size: 0.85rem; }
  .cx__cta { width: 100%; }
  .cx__local { font-size: 0.58rem; letter-spacing: 0.1em; }
}

/* Short viewports: the box would otherwise crowd the type. */
@media (max-height: 700px) and (min-width: 561px) {
  .cx__boxwrap .cbox { --bw: clamp(200px, 23vw, 300px); }
  .cx__sub { display: none; }
}

/* ==========================================================================
   Reduced motion — no pin and no scrub at all. The track collapses to its
   natural height and the stage becomes an ordinary stacked composition: the
   lockup, the headline, a still arrangement of cookies, the open box and the
   CTA. Every piece of information stays reachable without any animation.
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  .cx__track { height: auto; }
  .cx__stage {
    position: static;
    height: auto;
    min-height: 0;
    overflow: visible;
    /* Copy first, then the still life — the offer has to be readable before
       any decoration, and the pinned source order puts the scene first. */
    display: flex;
    flex-direction: column;
    padding: clamp(3.5rem, 9vh, 6rem) var(--space-5) clamp(2.5rem, 6vh, 4rem);
  }
  .cx__copy { order: 1; }
  .cx__scene { order: 2; }
  .cx__boxwrap { order: 3; }
  .cx__local { order: 4; }
  .cx__scene {
    position: relative;
    inset: auto;
    height: clamp(210px, 34vw, 340px);
    margin: clamp(1.8rem, 4vh, 3rem) auto 0;
    /* Auto side margins in a flex column cancel the default stretch, which
       collapsed this panel to zero width and clipped the whole still life. */
    width: 100%;
    max-width: 62rem;
    perspective: none;
    overflow: hidden;
  }
  .cx__space { position: absolute; inset: 0; transform-style: flat; }
  /* A still, readable arrangement rather than a frozen mid-animation frame. */
  .cx__cookie {
    top: 50%;
    opacity: 1;
    animation: none;
  }
  .cx__cookie-in { animation: none; }
  /* Smaller than the scrubbed composition: with no depth cues left, cookies at
     animation scale just crop against the edges of the still panel. */
  .cx__cookie--near { --cw: clamp(124px, 16vw, 196px); }
  .cx__cookie--mid  { --cw: clamp(104px, 13vw, 158px); }
  .cx__cookie--far  { --cw: clamp(88px, 11vw, 132px); }
  .cx__cookie--1 { transform: translate3d(-178%, -22%, 0) rotate(-6deg); }
  .cx__cookie--2 { transform: translate3d(-84%, -38%, 0) rotate(5deg); }
  .cx__cookie--3 { transform: translate3d(34%, -14%, 0) rotate(-3deg); }
  .cx__cookie--4 { transform: translate3d(140%, -36%, 0) rotate(7deg); }
  .cx__cookie--5 { display: none; }

  .cx__boxwrap {
    position: relative;
    left: auto;
    bottom: auto;
    opacity: 1;
    transform: none;
    margin: clamp(1.5rem, 4vh, 2.5rem) auto 0;
    display: flex;
    justify-content: center;
  }

  .cx__copy {
    position: static;
    display: block;
    width: 100%;
    max-width: 62rem;
    margin: 0 auto;
    padding: 0;
    transform: none;
    text-align: center;
  }
  /* Unstack the cross-fading panels: show the two that carry the offer. */
  .cx__panel {
    grid-area: auto;
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: none;
    pointer-events: auto;
  }
  /* The scroll instructions are meaningless without the scrub, so the static
     version leads with the final frame's offer instead. */
  .cx__panel--line,
  .cx__panel--hero,
  .cx__panel--open { display: none; }
  .cx__panel--end { margin-top: 0; }
  .cx__local { padding-top: clamp(1.2rem, 3vh, 2rem); }
  .lockup { opacity: 1; transform: none; filter: none; transition: none; }
  .cbox__crumbs i { transition: none; }
}

/* ========================================================================== */
/* SUNDAY x CRUMBL — PROMOTIONAL POPUP                                        */
/*                                                                            */
/* Corner-anchored campaign creative, not a modal takeover: no scrim, the page */
/* behind stays visible and usable. Fixed width band of 430–480px on desktop.  */
/* ========================================================================== */
.cpop {
  position: fixed;
  z-index: 120;
  right: clamp(1rem, 2.4vw, 2rem);
  bottom: clamp(1rem, 2.4vw, 2rem);
  width: min(466px, calc(100vw - 2rem));
  pointer-events: none;          /* only the card itself is interactive */
}
.cpop[hidden] { display: none; }

.cpop__card {
  position: relative;
  pointer-events: auto;
  background: var(--white);
  border: 1px solid rgba(23, 22, 28, 0.07);
  border-radius: 26px;
  padding: clamp(1.4rem, 2.8vw, 1.75rem) clamp(1.4rem, 2.8vw, 1.8rem) clamp(1.15rem, 2.2vw, 1.4rem);
  box-shadow:
    0 1px 2px rgba(10, 9, 13, 0.05),
    0 8px 18px -8px rgba(10, 9, 13, 0.12),
    0 34px 70px -26px rgba(10, 9, 13, 0.32);
  /* entrance: rises and fades, driven by .is-in */
  opacity: 0;
  transform: translate3d(0, 26px, 0);
  transition: opacity 340ms ease, transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
  overflow: visible;
}
.cpop__card::before {
  /* a soft pink bloom in the corner behind the cookie, for dimension */
  content: "";
  position: absolute;
  inset: auto -6% -14% 40%;
  height: 62%;
  background: radial-gradient(60% 70% at 70% 80%, rgba(236, 58, 128, 0.14), transparent 72%);
  border-radius: inherit;
  z-index: 0;
  pointer-events: none;
}
.cpop.is-in .cpop__card {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.cpop.is-out .cpop__card {
  opacity: 0;
  transform: translate3d(0, 14px, 0);
  transition: opacity 200ms ease, transform 200ms ease;
}
.cpop__card:focus-visible {
  outline: 2px solid var(--pink);
  outline-offset: 4px;
}

.cpop__body { position: relative; z-index: 2; }

/* close ------------------------------------------------------------------- */
.cpop__x {
  position: absolute;
  top: 0.55rem;
  right: 0.55rem;
  z-index: 4;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--grey-100);
  color: var(--charcoal);
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}
.cpop__x svg { width: 17px; height: 17px; }
.cpop__x:hover { background: var(--charcoal); color: #fff; }
.cpop__x:active { transform: scale(0.94); }
.cpop__x:focus-visible {
  outline: 2px solid var(--pink);
  outline-offset: 2px;
}

/* lockup ------------------------------------------------------------------ */
.cpop__lockup {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding-right: 2.6rem;   /* clear of the close button */
}
.cpop__sunday { display: block; width: 118px; flex: none; }
.cpop__sunday svg {
  display: block;
  width: 100%;
  height: auto;
  fill: var(--ink);
}
.cpop__times {
  font-family: var(--font-display);
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--grey-faint);
  line-height: 1;
  transform: translateY(-1px);
}
.cpop__crumbl { display: block; width: 120px; flex: none; }
.cpop__crumbl picture { display: block; }
.cpop__crumbl img { display: block; width: 100%; height: auto; }

/* copy -------------------------------------------------------------------- */
.cpop__h {
  font-family: var(--font-display);
  font-size: clamp(1.36rem, 1rem + 0.95vw, 1.58rem);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.034em;
  text-transform: uppercase;
  color: var(--ink);
  margin: clamp(0.9rem, 2.2vw, 1.2rem) 0 0;
}
.cpop__h span { display: block; }
.cpop__h span + span { color: var(--pink); }

.cpop__d {
  margin: 0.75rem 0 0;
  max-width: 33ch;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--sunday-grey);
}
.cpop__punch {
  margin: 0.6rem 0 0;
  max-width: 31ch;
  font-size: 0.8rem;
  line-height: 1.55;
  color: var(--grey-faint);
}
.cpop__punch b { color: var(--charcoal); font-weight: 600; }
.cpop__punch { color: var(--sunday-grey); }

/* actions ----------------------------------------------------------------- */
.cpop__acts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: clamp(1.05rem, 2.4vw, 1.35rem) 0 0;
  max-width: 17.5rem;
}
.cpop__cta {
  min-height: 48px;
  padding: 0 1.25rem;
  font-size: 0.78rem;
}
.cpop__cta:not(.cpop__cta--2) {
  box-shadow: 0 8px 24px -12px rgba(236, 58, 128, 0.9);
}
.cpop__fine {
  margin: 0.95rem 0 0;
  max-width: 30ch;
  font-size: 0.7rem;
  line-height: 1.55;
  color: var(--sunday-grey);
}

/* the cookie -------------------------------------------------------------- */
.cpop__cookie {
  position: absolute;
  z-index: 3;
  right: -24px;
  bottom: -30px;
  width: 178px;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(0, 34px, 0) rotate(-9deg) scale(0.94);
  transition: opacity 420ms ease, transform 620ms cubic-bezier(0.2, 1.02, 0.32, 1);
  filter: drop-shadow(0 20px 26px rgba(10, 9, 13, 0.3));
}
.cpop.is-in .cpop__cookie {
  opacity: 1;
  transform: translate3d(0, 0, 0) rotate(-3deg) scale(1);
}
.cpop__cookie-img { display: block; width: 100%; height: auto; }

/* staggered reveal of the interior, per the 600–900ms entrance ------------- */
.cpop [data-cpop-el] {
  opacity: 0;
  transform: translate3d(0, 9px, 0);
  transition: opacity 300ms ease, transform 380ms cubic-bezier(0.22, 1, 0.36, 1);
}
.cpop.is-in [data-cpop-el] { opacity: 1; transform: none; }
.cpop.is-in [data-cpop-el="1"] { transition-delay: 90ms; }
.cpop.is-in [data-cpop-el="2"] { transition-delay: 200ms; }
.cpop.is-in [data-cpop-el="3"] { transition-delay: 300ms; }
.cpop.is-in [data-cpop-el="4"] { transition-delay: 360ms; }
.cpop.is-in [data-cpop-el="5"] { transition-delay: 470ms; }
.cpop__cookie[data-cpop-el] { transform: translate3d(0, 34px, 0) rotate(-9deg) scale(0.94); }

/* mobile: designed for the bottom of the thumb zone, not a shrunk desktop
   card. Full-bleed within 16px margins, stacked buttons, cookie kept large. */
@media (max-width: 560px) {
  .cpop {
    left: 16px;
    right: 16px;
    bottom: 16px;
    width: auto;
  }
  .cpop__card {
    border-radius: 22px;
    padding: 1.35rem 1.25rem 1.15rem;
  }
  .cpop__sunday { width: 100px; }
  .cpop__crumbl { width: 104px; }
  .cpop__h { font-size: 1.42rem; }
  .cpop__d { max-width: 24ch; font-size: 0.84rem; }
  .cpop__punch { max-width: 22ch; }
  .cpop__acts {
    max-width: none;
    flex-direction: column;
    align-items: stretch;
  }
  .cpop__cta { width: 100%; }
  .cpop__fine { max-width: none; }
  .cpop__cookie {
    width: 148px;
    right: -14px;
    bottom: auto;
    top: 74px;
  }
}
/* very short viewports: drop the decorative cookie rather than crowd the copy */
@media (max-height: 620px) and (max-width: 560px) {
  .cpop__cookie { display: none; }
  .cpop__punch { display: none; }
}

/* the sticky mobile quote bar steps aside while the popup is open */
body.cpop-open .mobile-cta.is-in { transform: translateY(120%); }

@media (prefers-reduced-motion: reduce) {
  .cpop__card,
  .cpop__cookie,
  .cpop [data-cpop-el] {
    transition: opacity 160ms linear;
    transform: none !important;
  }
}

/* ========================================================================== */
/* SUNDAY x CRUMBL PAGE — HERO                                                */
/* ========================================================================== */
.cxh {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(120% 90% at 50% -20%, rgba(236, 58, 128, 0.09), transparent 62%),
    var(--off-white);
  padding: clamp(6rem, 13vh, 8rem) 0 clamp(3.5rem, 8vh, 5.5rem);
  text-align: center;
}
.cxh__wrap { position: relative; z-index: 3; }

.cxh__crumbs {
  display: flex;
  justify-content: center;
  gap: 0.55rem;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey-faint);
  margin-bottom: clamp(1.8rem, 4vh, 2.6rem);
}
.cxh__crumbs a { color: var(--sunday-grey); text-decoration: none; }
.cxh__crumbs a:hover { color: var(--pink); }

.cxh__lockup { justify-content: center; }

.cxh__kicker {
  margin: clamp(1.4rem, 3.4vh, 2.1rem) 0 0;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pink);
}
.cxh__h {
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 1rem + 5.2vw, 5.1rem);
  font-weight: 900;
  line-height: 0.94;
  letter-spacing: -0.038em;
  text-transform: uppercase;
  color: var(--ink);
  margin: clamp(0.9rem, 2.2vh, 1.4rem) 0 0;
}
.cxh__l { display: block; }
.cxh__l + .cxh__l { color: var(--pink); }

.cxh__sub {
  margin: clamp(1.3rem, 3vh, 1.9rem) auto 0;
  max-width: 46rem;
  font-size: var(--text-lg);
  line-height: 1.6;
  color: var(--sunday-grey);
}
.cxh__stagger {
  display: grid;
  justify-items: center;
  gap: 0.28rem;
  margin: clamp(1.5rem, 3.4vh, 2.2rem) 0 0;
  font-family: var(--font-display);
  font-size: clamp(1rem, 0.7rem + 0.85vw, 1.4rem);
  font-weight: 700;
  letter-spacing: -0.014em;
  color: var(--charcoal);
}
.cxh__stagger span:nth-child(2) { color: var(--sunday-grey); }
.cxh__stagger b {
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.022em;
  color: var(--pink);
  font-size: 1.12em;
  margin-top: 0.18rem;
}
.cxh__cta {
  margin-top: clamp(1.8rem, 4vh, 2.6rem);
  box-shadow: 0 12px 34px -14px rgba(236, 58, 128, 0.9);
}
.cxh__cta:hover { box-shadow: 0 16px 44px -12px rgba(236, 58, 128, 1); }
.cxh__local {
  margin: clamp(1.2rem, 2.6vh, 1.7rem) auto 0;
  font-size: 0.72rem;
  letter-spacing: 0.02em;
  color: var(--grey-faint);
}
.cxh__scroll {
  position: absolute;
  left: 50%;
  bottom: 1.1rem;
  transform: translateX(-50%);
  display: grid;
  justify-items: center;
  gap: 0.4rem;
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--grey-faint);
  z-index: 3;
}
.cxh__scroll i {
  width: 1px;
  height: 26px;
  background: linear-gradient(var(--grey-200), transparent);
}

/* the pointer-reactive cookies. JS writes --hx/--hy in the -1..1 range; the
   translation is deliberately tiny so they drift rather than chase. */
.cxh__cookies {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  perspective: 1100px;
}
.cxh__cookie {
  --hx: 0;
  --hy: 0;
  position: absolute;
  transform:
    translate3d(calc(var(--hx) * var(--amp, 14px)), calc(var(--hy) * var(--amp, 14px)), 0)
    rotate(calc(var(--hx) * var(--rot, 2deg)));
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
.cxh__cookie-in { display: block; transform: rotate(var(--base, 0deg)); }
.cxh__cookie-img { display: block; width: 100%; height: auto; }

.cxh__cookie--tl {
  width: 320px; top: 74px; left: -108px;
  --amp: 18px; --rot: 2.4deg; --base: -12deg;
  filter: drop-shadow(0 26px 34px rgba(10, 9, 13, 0.18));
}
.cxh__cookie--tr {
  width: 240px; top: 16%; right: -78px;
  --amp: 13px; --rot: 1.8deg; --base: 15deg;
  filter: drop-shadow(0 22px 30px rgba(10, 9, 13, 0.15));
}
.cxh__cookie--bl {
  width: 290px; bottom: -104px; left: 2%;
  --amp: 22px; --rot: 2.8deg; --base: 8deg;
  filter: drop-shadow(0 28px 36px rgba(10, 9, 13, 0.2));
}
.cxh__cookie--br {
  width: 215px; bottom: 4%; right: 4%;
  --amp: 10px; --rot: 1.4deg; --base: -18deg;
  filter: drop-shadow(0 18px 26px rgba(10, 9, 13, 0.14));
  opacity: 0.94;
}

@media (max-width: 1080px) {
  .cxh__cookie--tl { width: 250px; top: 70px; left: -96px; }
  .cxh__cookie--tr { width: 190px; right: -60px; }
  .cxh__cookie--bl { width: 220px; bottom: -80px; left: -40px; }
  .cxh__cookie--br { width: 160px; right: -30px; }
}
@media (max-width: 860px) {
  /* Kept large on purpose, pushed further out so no critical copy is covered. */
  .cxh { padding-top: clamp(5rem, 12vh, 7rem); }
  .cxh__cookie--tl { width: 210px; top: 66px; left: -104px; }
  .cxh__cookie--tr { width: 150px; top: 14%; right: -68px; }
  .cxh__cookie--bl { width: 190px; bottom: -78px; left: -78px; }
  .cxh__cookie--br { display: none; }
}
@media (max-width: 560px) {
  .cxh__cookie--tl { width: 172px; top: 60px; left: -86px; }
  .cxh__cookie--tr { width: 124px; right: -50px; }
  .cxh__cookie--bl { width: 158px; bottom: -104px; left: -66px; }
  /* Fourth cookie returns at the smallest width, anchored into the corner so
     it frames the CTA without ever crossing the copy. */
  .cxh__cookie--br { display: block; width: 132px; bottom: -96px; right: -58px; top: auto; }
  .cxh__scroll { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .cxh__cookie { transition: none; transform: rotate(var(--base, 0deg)); }
}

/* ========================================================================== */
/* SUNDAY x CRUMBL PAGE — HOW IT WORKS                                        */
/* ========================================================================== */
.chow { background: var(--white); }
.chow__head { text-align: center; }
.chow__head .eyebrow { justify-content: center; }
.chow__grid {
  list-style: none;
  margin: clamp(2.4rem, 6vh, 4rem) 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.4rem, 3vw, 2.6rem);
  counter-reset: none;
}
.cstep {
  position: relative;
  padding-top: 1.5rem;
  border-top: 1px solid var(--grey-200);
}
.cstep__n {
  display: block;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--pink);
}
.cstep__h {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 0.8rem + 1vw, 1.6rem);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0.7rem 0 0;
}
.cstep__p {
  margin: 0.6rem 0 0;
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--sunday-grey);
}
.chow__note {
  margin: clamp(2.2rem, 5vh, 3.2rem) 0 0;
  text-align: center;
  font-family: var(--font-display);
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--grey-faint);
}
@media (max-width: 860px) {
  .chow__grid { grid-template-columns: 1fr; gap: 1.6rem; }
}

/* ========================================================================== */
/* SUNDAY x CRUMBL PAGE — FINAL CONVERSION                                    */
/* ========================================================================== */
.ccta {
  background:
    radial-gradient(110% 80% at 50% 0%, var(--pink) 0%, var(--pink-deep) 100%);
  color: #fff;
  padding: clamp(4rem, 10vh, 7rem) 0 clamp(4.5rem, 11vh, 7.5rem);
  text-align: center;
}
.ccta__wrap { display: grid; justify-items: center; }
.ccta__mark {
  font-family: var(--font-display);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}
.ccta__h {
  font-family: var(--font-display);
  font-size: clamp(2rem, 0.9rem + 3.4vw, 4.2rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.032em;
  text-transform: uppercase;
  margin: clamp(1rem, 2.6vh, 1.6rem) 0 0;
}
.ccta__sub {
  margin: clamp(1rem, 2.4vh, 1.5rem) auto 0;
  max-width: 34rem;
  font-size: var(--text-lg);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.9);
}
.ccta .btn--lg { margin-top: clamp(1.6rem, 3.6vh, 2.4rem); }
.ccta__offer {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-wrap: wrap;
  justify-content: center;
  margin: clamp(1.3rem, 3vh, 1.9rem) 0 0;
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
}
.ccta__offer i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
}
.ccta__fine {
  margin: clamp(1.1rem, 2.6vh, 1.6rem) auto 0;
  max-width: 40rem;
  font-size: 0.7rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 560px) {
  /* Stack the two promotions instead of leaving the separator dot orphaned at
     the end of the first line. */
  .ccta__offer { flex-direction: column; gap: 0.45rem; }
  .ccta__offer i { display: none; }
}
