/* Fitnesse, Tammi Brown personal brand mockup
   Brand: warm coastal-NZ editorial. Browns + sand + cornflower.
   Type: Fraunces (display, editorial serif) + Inter (body sans).
*/

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { line-height: 1.5; -webkit-font-smoothing: antialiased; }
img, picture, svg, video { display: block; max-width: 100%; }
input, button, textarea, select { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---------- Tokens ---------- */
:root {
  /* Palette */
  --cream: #FAF6EF;
  --cream-deep: #F3ECDF;
  --sand: #E4D7C2;
  --sand-deep: #D7C7B0;
  --cocoa: #7B5C3F;
  --cocoa-deep: #5C4129;
  --ink: #1F1B16;
  --ink-soft: #4A4239;
  --ink-mute: #7B7269;
  --hairline: #E8E0D4;
  --cornflower: #A8B5C9;
  --cornflower-deep: #7B8DA8;
  --pearl: #FFFFFF;

  /* Type scale (modular ~1.25) */
  --fs-hero: clamp(2.75rem, 7vw, 5.5rem);
  --fs-h1: clamp(2.25rem, 5vw, 3.75rem);
  --fs-h2: clamp(1.75rem, 3.5vw, 2.625rem);
  --fs-h3: clamp(1.25rem, 2.2vw, 1.625rem);
  --fs-eyebrow: 0.75rem;
  --fs-body: 1.0625rem;
  --fs-sm: 0.9375rem;
  --fs-xs: 0.8125rem;

  /* Display number (the receipt) */
  --fs-receipt: clamp(4rem, 14vw, 9rem);

  /* Spacing */
  --sp-section: clamp(4rem, 9vw, 7.5rem);
  --sp-section-lg: clamp(5rem, 12vw, 10rem);
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --content-max: 1240px;
  --content-narrow: 880px;
  --content-prose: 640px;

  /* Effects */
  --shadow-sm: 0 1px 2px rgba(31, 27, 22, 0.04), 0 2px 8px rgba(31, 27, 22, 0.05);
  --shadow-md: 0 4px 16px rgba(31, 27, 22, 0.08), 0 12px 40px rgba(31, 27, 22, 0.06);
  --shadow-lg: 0 12px 48px rgba(31, 27, 22, 0.16);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Base ---------- */
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: var(--fs-body);
  color: var(--ink);
  background: var(--cream);
  font-feature-settings: "ss01", "cv11";
}

h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-variation-settings: "SOFT" 30, "WONK" 0, "opsz" 144;
}
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); letter-spacing: -0.01em; }

p { color: var(--ink-soft); }
p + p { margin-top: 1em; }

.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: var(--fs-eyebrow);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cocoa);
}

.lede {
  font-size: clamp(1.125rem, 1.6vw, 1.3125rem);
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 38ch;
}

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--content-max); margin-inline: auto; padding-inline: var(--gutter); }
.wrap--narrow { max-width: var(--content-narrow); }
.wrap--prose { max-width: var(--content-prose); }
.section { padding-block: var(--sp-section); }
.section--lg { padding-block: var(--sp-section-lg); }
.section--cream-deep { background: var(--cream-deep); }
.section--sand { background: var(--sand); color: var(--ink); }
.section--ink { background: var(--ink); color: var(--cream); }
.section--ink h1, .section--ink h2, .section--ink h3 { color: var(--cream); }
.section--ink p { color: var(--sand); }

.divider { height: 1px; background: var(--hairline); border: 0; }

/* ---------- Navigation ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem var(--gutter);
  background: rgba(250, 246, 239, 0.0);
  border-bottom: 1px solid transparent;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), padding 0.3s var(--ease);
}
.nav.is-scrolled,
.nav.is-solid {
  background: rgba(250, 246, 239, 0.92);
  border-bottom-color: var(--hairline);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  padding-block: 0.625rem;
}
.nav__brand {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  font-size: 1.3125rem;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.nav__brand em { font-style: italic; color: var(--cocoa); }
.nav__links { display: none; gap: 2rem; align-items: center; }
.nav__links a {
  font-size: var(--fs-sm);
  color: var(--ink-soft);
  transition: color 0.2s var(--ease);
  position: relative;
}
.nav__links a:hover { color: var(--ink); }
.nav__links a.is-current { color: var(--ink); }
.nav__links a.is-current::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -6px; height: 1px; background: var(--cocoa);
}
.nav__cta {
  display: none; align-items: center; gap: 0.4rem;
  padding: 0.625rem 1.125rem;
  background: var(--ink); color: var(--cream);
  border-radius: 999px;
  font-size: var(--fs-sm); font-weight: 500;
  white-space: nowrap;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease);
}
.nav__cta:hover { background: var(--cocoa-deep); transform: translateY(-1px); }

.nav__menu-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: var(--fs-sm); color: var(--ink);
  padding: 0.5rem 0.75rem;
}
.nav__menu-btn svg { width: 18px; height: 18px; }

@media (min-width: 880px) {
  .nav__links { display: flex; }
  .nav__cta { display: inline-flex; }
  .nav__menu-btn { display: none; }
}

/* Mobile menu */
.menu {
  position: fixed; inset: 0; z-index: 200;
  background: var(--cream);
  display: none; flex-direction: column;
  padding: 4.5rem var(--gutter) calc(2rem + env(safe-area-inset-bottom));
  overflow-y: auto;
}
.menu.is-open { display: flex; }
.menu__close {
  position: absolute; top: 0.875rem; right: var(--gutter);
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ink);
}
.menu__close svg { width: 20px; height: 20px; flex-shrink: 0; }
.menu__eyebrow {
  display: block;
  font-size: 0.65rem; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--ink-mute); font-weight: 500;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--hairline);
  margin-bottom: 0.5rem;
}
.menu__list { display: flex; flex-direction: column; gap: 0; margin: 0; }
.menu__list li { display: block; }
.menu__list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: 'Fraunces', serif;
  font-size: clamp(2.25rem, 9vw, 3rem);
  line-height: 1; letter-spacing: -0.03em;
  font-weight: 300;
  color: var(--ink);
  padding: 1rem 0;
  border-bottom: 1px solid var(--hairline);
  transition: color 0.2s ease, padding 0.2s ease;
}
.menu__list a::after {
  content: '→';
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: var(--ink-mute);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease, color 0.2s ease;
}
.menu__list a:hover, .menu__list a.is-current {
  color: var(--cocoa);
}
.menu__list a:hover::after, .menu__list a.is-current::after {
  opacity: 1; transform: translateX(0); color: var(--cocoa);
}
.menu__cta {
  margin-top: auto;
  padding-top: 2rem;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.625rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0;
}
.menu__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.875rem 1.25rem;
  background: var(--ink);
  color: var(--cream);
  border-radius: 4px;
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
  transition: transform 0.2s ease, background 0.2s ease;
}
.menu__cta-btn:hover { transform: translateY(-1px); background: var(--cocoa-deep); }
.menu__cta-btn svg { width: 14px; height: 14px; flex-shrink: 0; }
.menu__social {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--ink-mute);
}
.menu__social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px;
  color: var(--ink-soft);
  transition: color 0.2s ease, transform 0.2s ease;
}
.menu__social a:hover { color: var(--ink); transform: translateY(-1px); }
.menu__social svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.875rem 1.375rem;
  border-radius: 999px;
  font-size: var(--fs-sm); font-weight: 500;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; transition: transform 0.25s var(--ease); }
.btn:hover svg { transform: translateX(3px); }

.btn--ink { background: var(--ink); color: var(--cream); }
.btn--ink:hover { background: var(--cocoa-deep); transform: translateY(-1px); }

.btn--cocoa { background: var(--cocoa); color: var(--cream); }
.btn--cocoa:hover { background: var(--cocoa-deep); transform: translateY(-1px); }

.btn--cream { background: var(--cream); color: var(--ink); }
.btn--cream:hover { background: var(--pearl); }

.btn--ghost {
  background: transparent; color: var(--ink);
  border: 1px solid currentColor;
}
.btn--ghost:hover { background: var(--ink); color: var(--cream); }
.section--ink .btn--ghost { color: var(--cream); }
.section--ink .btn--ghost:hover { background: var(--cream); color: var(--ink); }

.btn--lg { padding: 1.0625rem 1.75rem; font-size: 1rem; }

/* Inline link with arrow */
.link-arrow {
  display: inline-flex; align-items: center; gap: 0.375rem;
  font-size: var(--fs-sm); font-weight: 500;
  color: var(--cocoa);
  border-bottom: 1px solid currentColor; padding-bottom: 2px;
  transition: color 0.2s var(--ease);
}
.link-arrow svg { width: 14px; height: 14px; transition: transform 0.25s var(--ease); }
.link-arrow:hover { color: var(--ink); }
.link-arrow:hover svg { transform: translateX(3px); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: flex-end;
  overflow: hidden;
  padding: 8rem var(--gutter) clamp(2.5rem, 6vw, 5rem);
  color: var(--cream);
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: var(--hero-img, none);
  background-size: cover; background-position: center;
  z-index: 0;
}
.hero::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(31, 27, 22, 0.35) 0%,
    rgba(31, 27, 22, 0.1) 40%,
    rgba(31, 27, 22, 0.7) 100%);
  z-index: 1;
}
.hero__inner { position: relative; z-index: 2; width: 100%; max-width: var(--content-max); margin-inline: auto; }
.hero__eyebrow { color: var(--sand); margin-bottom: 1.5rem; }
.hero__title {
  font-size: var(--fs-hero);
  color: var(--cream);
  font-weight: 300;
  letter-spacing: -0.025em;
  max-width: 14ch;
}
.hero__title em { font-style: italic; font-weight: 400; }
.hero__sub {
  margin-top: 1.5rem;
  font-size: clamp(1.0625rem, 1.6vw, 1.25rem);
  color: var(--sand);
  max-width: 42ch;
  line-height: 1.5;
}
.hero__ctas { margin-top: 2.5rem; display: flex; flex-wrap: wrap; gap: 0.75rem; }
.hero__ctas .btn--ghost { color: var(--cream); border-color: var(--cream); }
.hero__ctas .btn--ghost:hover { background: var(--cream); color: var(--ink); }
.hero__scroll {
  position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
  color: var(--cream); font-size: var(--fs-xs);
  letter-spacing: 0.2em; text-transform: uppercase;
  opacity: 0.7;
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  z-index: 2;
  animation: bob 2.4s var(--ease) infinite;
}
@keyframes bob { 0%, 100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 6px); } }

/* Sub-hero (interior pages) */
.subhero {
  position: relative;
  padding: 8.5rem var(--gutter) clamp(3rem, 6vw, 5rem);
  background: var(--cream-deep);
  overflow: hidden;
}
.subhero__inner {
  max-width: var(--content-max); margin-inline: auto;
  display: grid; gap: 2.5rem;
  align-items: center;
}
@media (min-width: 880px) {
  .subhero__inner { grid-template-columns: 1.1fr 1fr; gap: 4rem; }
}
.subhero__copy .eyebrow { margin-bottom: 1rem; }
.subhero__title { font-size: var(--fs-h1); max-width: 16ch; }
.subhero__title em { font-style: italic; color: var(--cocoa); }
.subhero__lede { margin-top: 1.25rem; max-width: 44ch; }
.subhero__img {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-md);
  background-size: cover; background-position: center;
  box-shadow: var(--shadow-md);
}

/* ---------- Receipt panel ---------- */
.receipt {
  background: var(--ink); color: var(--cream);
  padding-block: var(--sp-section-lg);
}
.receipt__grid {
  display: grid; gap: 3rem;
  max-width: var(--content-max); margin-inline: auto; padding-inline: var(--gutter);
}
@media (min-width: 720px) { .receipt__grid { grid-template-columns: 1fr 1fr; align-items: center; gap: 4.5rem; } }
.receipt__big {
  font-family: 'Fraunces', serif;
  font-size: var(--fs-receipt);
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--cream);
  font-weight: 300;
}
.receipt__big sup { font-size: 0.35em; vertical-align: top; margin-left: 0.5rem; letter-spacing: 0; color: var(--sand); font-weight: 400; }
.receipt__caption { color: var(--sand); margin-top: 1rem; max-width: 32ch; font-size: 1.0625rem; }
.receipt__sub { margin-top: 1.5rem; font-size: var(--fs-sm); color: var(--cornflower); }
.receipt__list { display: flex; flex-direction: column; gap: 2rem; }
.receipt__row { border-top: 1px solid rgba(228, 215, 194, 0.18); padding-top: 1.5rem; }
.receipt__row:first-child { border-top: 0; padding-top: 0; }
.receipt__row .number {
  font-family: 'Fraunces', serif; font-size: clamp(2.5rem, 5vw, 3.5rem);
  line-height: 1; letter-spacing: -0.03em; font-weight: 300;
}
.receipt__row .label {
  margin-top: 0.5rem;
  font-size: var(--fs-sm); color: var(--sand);
  max-width: 36ch;
}
.receipt__row .meta {
  margin-top: 0.5rem;
  font-size: var(--fs-xs); color: var(--cornflower);
  text-transform: uppercase; letter-spacing: 0.15em;
}
.receipt__bottom {
  margin-top: 3rem; padding-top: 1.5rem;
  border-top: 1px solid rgba(228, 215, 194, 0.18);
  font-size: var(--fs-sm); color: var(--sand);
  text-align: center;
  max-width: var(--content-max); margin-inline: auto; padding-inline: var(--gutter);
}

/* ---------- Cards ---------- */
.cards { display: grid; gap: 1.5rem; }
.cards--3 { grid-template-columns: 1fr; }
@media (min-width: 720px) { .cards--3 { grid-template-columns: repeat(3, 1fr); } }

.card {
  background: var(--pearl);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  border: 1px solid var(--hairline);
  display: flex; flex-direction: column; gap: 1rem;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--sand); }
.card__icon {
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 12px;
  background: var(--cream-deep);
  color: var(--cocoa);
}
.card__icon svg { width: 22px; height: 22px; }
.card__title { font-size: var(--fs-h3); }
.card__body { color: var(--ink-soft); font-size: var(--fs-sm); flex-grow: 1; }
.card__link { margin-top: 0.5rem; }

/* Service card (Train) */
.service {
  display: grid; gap: 1.25rem;
  padding: 2.25rem 2rem;
  background: var(--pearl);
  border-radius: var(--radius-md);
  border: 1px solid var(--hairline);
}
.service__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; }
.service__price { font-size: var(--fs-sm); color: var(--ink-mute); text-align: right; }
.service__price strong { display: block; font-family: 'Fraunces', serif; font-size: 1.5rem; color: var(--ink); font-weight: 400; }
.service__title { font-size: var(--fs-h3); }
.service__list { display: flex; flex-direction: column; gap: 0.5rem; }
.service__list li { display: flex; gap: 0.625rem; align-items: flex-start; font-size: var(--fs-sm); color: var(--ink-soft); }
.service__list li svg { flex: 0 0 18px; height: 18px; margin-top: 2px; color: var(--cocoa); }

/* ---------- Logo wall ---------- */
.logo-wall {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 1rem;
  align-items: center;
  padding-block: 1rem;
}
@media (min-width: 540px) { .logo-wall { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 880px) { .logo-wall { grid-template-columns: repeat(7, 1fr); gap: 2.5rem 1.5rem; } }
.logo {
  display: flex; align-items: center; justify-content: center;
  height: 36px;
  font-family: 'Fraunces', serif;
  font-size: 1.0625rem;
  letter-spacing: 0.02em;
  color: var(--ink);
  opacity: 0.55;
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease);
  white-space: nowrap;
  text-align: center;
}
.logo:hover { opacity: 1; transform: translateY(-1px); }
.logo--small { font-size: 0.95rem; }
.logo--sans { font-family: 'Inter', sans-serif; font-weight: 600; letter-spacing: 0.05em; }
.logo--upper { text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.9rem; }

/* ---------- Grid gallery ---------- */
.grid-gallery {
  display: grid; gap: 0.75rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 720px) { .grid-gallery { grid-template-columns: repeat(3, 1fr); gap: 1rem; } }
@media (min-width: 1024px) { .grid-gallery { grid-template-columns: repeat(6, 1fr); } }

.tile {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background-color: var(--cream-deep);
  background-size: cover; background-position: center;
  transition: transform 0.4s var(--ease);
}
.tile:hover { transform: translateY(-3px) scale(1.01); }
.tile--portrait { aspect-ratio: 4 / 5; }
.tile--reel { aspect-ratio: 9 / 16; }
.tile--wide { grid-column: span 2; aspect-ratio: 2 / 1; }
.tile__caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 0.75rem 0.875rem;
  background: linear-gradient(180deg, transparent 0%, rgba(31, 27, 22, 0.65) 100%);
  color: var(--cream);
  font-size: var(--fs-xs);
  letter-spacing: 0.05em;
  opacity: 0; transition: opacity 0.25s var(--ease);
}
.tile:hover .tile__caption { opacity: 1; }

/* ---------- Quote panel ---------- */
.quote {
  background: var(--cream-deep);
  padding-block: var(--sp-section-lg);
  text-align: center;
}
.quote__mark {
  font-family: 'Fraunces', serif;
  font-size: 5rem; line-height: 0.8;
  color: var(--cocoa);
  font-style: italic;
}
.quote__text {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(1.625rem, 3.8vw, 2.75rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  max-width: 22ch;
  margin: 1.25rem auto 1.5rem;
}
.quote__text em { font-style: italic; color: var(--cocoa); }
.quote__attr { font-size: var(--fs-xs); letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-mute); }

/* ---------- Dual CTA band ---------- */
.dual-cta {
  display: grid; gap: 1px;
  background: var(--hairline);
  border-block: 1px solid var(--hairline);
}
@media (min-width: 720px) { .dual-cta { grid-template-columns: 1fr 1fr; } }
.dual-cta__cell {
  background: var(--cream);
  padding: clamp(2.5rem, 6vw, 4.5rem) clamp(1.5rem, 4vw, 3rem);
  display: flex; flex-direction: column; gap: 1rem;
  transition: background 0.2s var(--ease);
}
.dual-cta__cell:hover { background: var(--cream-deep); }
.dual-cta__cell .eyebrow { color: var(--cocoa); }
.dual-cta__title { font-size: var(--fs-h2); max-width: 16ch; }
.dual-cta__lede { color: var(--ink-soft); max-width: 36ch; font-size: 1.0625rem; }
.dual-cta__arrow { margin-top: 1rem; }

/* ---------- Two-column generic ---------- */
.two-col { display: grid; gap: 2.5rem; align-items: center; }
@media (min-width: 880px) { .two-col { grid-template-columns: 1fr 1fr; gap: 5rem; } }
.two-col__img { aspect-ratio: 4 / 5; background-size: cover; background-position: center; border-radius: var(--radius-md); box-shadow: var(--shadow-md); }
.two-col__title { font-size: var(--fs-h1); }
.two-col__title em { font-style: italic; color: var(--cocoa); }

/* ---------- FAQ ---------- */
.faq { display: flex; flex-direction: column; gap: 0; }
.faq__item { border-bottom: 1px solid var(--hairline); }
.faq__item:first-child { border-top: 1px solid var(--hairline); }
.faq__q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 0;
  font-family: 'Fraunces', serif;
  font-size: 1.25rem; line-height: 1.3;
  text-align: left;
  color: var(--ink);
}
.faq__q svg { flex: 0 0 22px; height: 22px; color: var(--cocoa); transition: transform 0.25s var(--ease); }
.faq__item.is-open .faq__q svg { transform: rotate(45deg); }
.faq__a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s var(--ease);
}
.faq__a-inner { padding: 0 0 1.5rem; color: var(--ink-soft); max-width: 56ch; }

/* ---------- Case study card ---------- */
.case {
  display: grid; gap: 2rem;
  padding: clamp(2rem, 4vw, 3rem);
  background: var(--pearl);
  border-radius: var(--radius-lg);
  border: 1px solid var(--hairline);
}
@media (min-width: 720px) { .case { grid-template-columns: 1fr 1.4fr; gap: 3rem; align-items: center; } }
.case__visual {
  aspect-ratio: 9 / 16;
  border-radius: var(--radius-md);
  background-color: var(--ink);
  background-size: cover; background-position: center;
  position: relative;
  overflow: hidden;
}
.case__badge {
  position: absolute; top: 1rem; left: 1rem;
  padding: 0.4rem 0.75rem; border-radius: 999px;
  background: rgba(250, 246, 239, 0.9);
  color: var(--ink);
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.05em;
}
.case__views {
  position: absolute; bottom: 1rem; left: 1rem;
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1; color: var(--cream);
  letter-spacing: -0.03em;
  font-weight: 300;
}
.case__views small { display: block; font-family: 'Inter', sans-serif; font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; margin-top: 0.25rem; opacity: 0.7; font-weight: 500; }
.case__eyebrow { color: var(--cocoa); font-family: 'Inter', sans-serif; font-size: var(--fs-eyebrow); letter-spacing: 0.18em; text-transform: uppercase; font-weight: 500; }
.case__title { font-size: var(--fs-h2); margin-top: 0.5rem; }
.case__bullets { margin-top: 1.25rem; display: flex; flex-direction: column; gap: 0.625rem; }
.case__bullets li { display: flex; gap: 0.625rem; font-size: var(--fs-sm); color: var(--ink-soft); }
.case__bullets li strong { color: var(--ink); font-weight: 600; min-width: 88px; }
.case__meta { margin-top: 1.5rem; font-size: var(--fs-xs); letter-spacing: 0.15em; text-transform: uppercase; color: var(--ink-mute); }

/* ---------- Form ---------- */
.form { display: flex; flex-direction: column; gap: 1.25rem; }
.form__row { display: grid; gap: 1.25rem; }
@media (min-width: 720px) { .form__row--2 { grid-template-columns: 1fr 1fr; } }
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field label { font-size: var(--fs-xs); letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-soft); font-weight: 500; }
.field input, .field textarea, .field select {
  border: 1px solid var(--hairline);
  background: var(--pearl);
  border-radius: var(--radius-sm);
  padding: 0.875rem 1rem;
  font-size: var(--fs-body);
  color: var(--ink);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: 0;
  border-color: var(--cocoa);
  box-shadow: 0 0 0 3px rgba(123, 92, 63, 0.12);
}
.field textarea { resize: vertical; min-height: 140px; }

.contact-tiles { display: grid; gap: 0.75rem; }
@media (min-width: 720px) { .contact-tiles { grid-template-columns: repeat(3, 1fr); } }
.contact-tile {
  padding: 1.5rem; border: 1px solid var(--hairline); border-radius: var(--radius-md);
  background: var(--pearl); cursor: pointer; text-align: left;
  display: flex; flex-direction: column; gap: 0.5rem;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease), transform 0.2s var(--ease);
}
.contact-tile:hover { border-color: var(--cocoa); transform: translateY(-2px); }
.contact-tile.is-selected { border-color: var(--cocoa); background: var(--cream-deep); }
.contact-tile__title { font-family: 'Fraunces', serif; font-size: 1.25rem; }
.contact-tile__body { font-size: var(--fs-sm); color: var(--ink-soft); }

/* ---------- Footer ---------- */
.footer {
  background: var(--ink); color: var(--sand);
  padding: var(--sp-section) var(--gutter) 2rem;
}
.footer__grid {
  max-width: var(--content-max); margin-inline: auto;
  display: grid; gap: 3rem;
}
@media (min-width: 720px) { .footer__grid { grid-template-columns: 2fr 1fr 1fr; } }
.footer__brand { font-family: 'Fraunces', serif; font-size: 2rem; letter-spacing: -0.02em; color: var(--cream); font-weight: 300; }
.footer__brand em { font-style: italic; color: var(--sand-deep); }
.footer__tag { margin-top: 0.75rem; max-width: 32ch; color: var(--sand); }
.footer__col h4 { color: var(--cream); font-family: 'Inter', sans-serif; font-size: var(--fs-eyebrow); letter-spacing: 0.18em; text-transform: uppercase; font-weight: 500; margin-bottom: 1rem; }
.footer__col ul { display: flex; flex-direction: column; gap: 0.625rem; }
.footer__col a { color: var(--sand); font-size: var(--fs-sm); transition: color 0.2s var(--ease); }
.footer__col a:hover { color: var(--cream); }
.footer__bottom {
  max-width: var(--content-max); margin: 3rem auto 0;
  padding-top: 1.5rem; border-top: 1px solid rgba(228, 215, 194, 0.15);
  display: flex; flex-wrap: wrap; gap: 1rem;
  justify-content: space-between;
  font-size: var(--fs-xs);
  color: var(--sand-deep);
  letter-spacing: 0.05em;
}
.footer__social { display: flex; gap: 0.75rem; }
.footer__social a {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(228, 215, 194, 0.25);
  border-radius: 999px;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease);
}
.footer__social a:hover { background: var(--cocoa); border-color: var(--cocoa); }
.footer__social svg { width: 16px; height: 16px; color: var(--sand); }

/* PB watermark, icon-only, pulsing, tinted to cocoa accent */
.pb-mark-link {
  display: inline-flex; align-items: center;
  text-decoration: none;
  outline: none;
  margin-left: 0.75rem;
}
.pb-mark-link:focus-visible .pb-mark {
  outline: 2px solid var(--cocoa);
  outline-offset: 4px;
  border-radius: 4px;
}
.pb-mark {
  display: inline-block;
  width: 22px; height: 22px;
  background-color: var(--cocoa);
  -webkit-mask: url('../img/pb-mark.svg') center / contain no-repeat;
          mask: url('../img/pb-mark.svg') center / contain no-repeat;
  animation: pb-mark-pulse 3.6s ease-in-out infinite;
}
@keyframes pb-mark-pulse {
  0%, 55%, 100% { opacity: 0.45; transform: scale(1); }
  28%           { opacity: 1;    transform: scale(1.12); }
}

/* ---------- Mobile sticky CTA ---------- */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 50;
  padding: 0.75rem var(--gutter) calc(0.75rem + env(safe-area-inset-bottom));
  background: rgba(250, 246, 239, 0.94);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--hairline);
  display: flex; gap: 0.5rem;
}
.sticky-cta .btn { flex: 1; justify-content: center; }
@media (min-width: 880px) { .sticky-cta { display: none; } }

/* Extra bottom padding so sticky CTA doesn't cover footer */
@media (max-width: 879px) {
  .footer { padding-bottom: 6.5rem; }
}

/* ---------- Animations (scroll reveal) ---------- */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal.delay-1 { transition-delay: 0.08s; }
.reveal.delay-2 { transition-delay: 0.16s; }
.reveal.delay-3 { transition-delay: 0.24s; }
.reveal.delay-4 { transition-delay: 0.32s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Utility ---------- */
.center-text { text-align: center; }
.section-head { max-width: 720px; margin-inline: auto; text-align: center; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head .eyebrow { display: inline-block; margin-bottom: 0.75rem; }
.section-head h2 { max-width: 18ch; margin-inline: auto; }
.section-head p { margin-top: 1rem; max-width: 48ch; margin-inline: auto; color: var(--ink-soft); }

/* ============================================================
   INTERACTIVE LAYER — toys, widgets, animation
   ============================================================ */

/* ---------- Intro loader ---------- */
.loader {
  position: fixed; inset: 0;
  z-index: 9999;
  background: var(--ink);
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
  transition: opacity 0.6s cubic-bezier(0.65, 0, 0.35, 1) 0.6s,
              visibility 0.6s cubic-bezier(0.65, 0, 0.35, 1) 0.6s;
}
.loader.is-done { opacity: 0; visibility: hidden; }
.loader__inner {
  position: relative;
  font-family: 'Fraunces', serif;
  font-size: clamp(2.5rem, 8vw, 6rem);
  line-height: 1; letter-spacing: -0.04em;
  color: var(--cream); font-weight: 300;
  display: inline-flex;
  overflow: hidden;
}
.loader__inner span {
  display: inline-block;
  transform: translateY(110%);
  animation: loaderRise 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.loader__inner span:nth-child(1) { animation-delay: 0.05s; }
.loader__inner span:nth-child(2) { animation-delay: 0.1s; }
.loader__inner span:nth-child(3) { animation-delay: 0.15s; }
.loader__inner span:nth-child(4) { animation-delay: 0.2s; }
.loader__inner span:nth-child(5) { animation-delay: 0.25s; }
.loader__inner span:nth-child(6) { animation-delay: 0.3s; }
.loader__inner span:nth-child(7) { animation-delay: 0.35s; }
.loader__inner span:nth-child(8) { animation-delay: 0.4s; }
.loader__inner span:nth-child(9) { animation-delay: 0.45s; }
.loader__inner em { font-style: italic; color: var(--sand); }
.loader__mark { margin-left: 0.1em; color: var(--cocoa); }
.loader__sub {
  position: absolute;
  bottom: 2rem; left: 50%; transform: translateX(-50%);
  font-size: 0.7rem; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--sand-deep); font-weight: 500;
  opacity: 0; animation: loaderFadeIn 0.5s ease 0.55s forwards;
  white-space: nowrap;
}
@keyframes loaderRise { to { transform: translateY(0); } }
@keyframes loaderFadeIn { to { opacity: 1; } }
body.is-loading { overflow: hidden; }

/* ---------- Custom cursor ---------- */
.cursor-dot, .cursor-ring {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9998;
  border-radius: 50%;
  mix-blend-mode: difference;
  transition: opacity 0.2s ease;
  opacity: 0;
}
.cursor-dot {
  width: 6px; height: 6px;
  background: #FAF6EF;
  transform: translate(-50%, -50%);
  transition: opacity 0.2s ease, transform 0.15s cubic-bezier(0.22, 1, 0.36, 1);
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1px solid #FAF6EF;
  transform: translate(-50%, -50%);
  transition: opacity 0.2s ease, transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), width 0.3s ease, height 0.3s ease, border-color 0.3s ease;
}
body.has-cursor .cursor-dot, body.has-cursor .cursor-ring { opacity: 1; }
body.has-cursor.cursor-hover .cursor-ring {
  width: 60px; height: 60px;
  border-color: rgba(250, 246, 239, 0.7);
}
body.has-cursor.cursor-hover .cursor-dot { transform: translate(-50%, -50%) scale(0); }
body.has-cursor a, body.has-cursor button, body.has-cursor [data-cursor="hover"] { cursor: none; }
@media (hover: none) {
  .cursor-dot, .cursor-ring { display: none !important; }
}

/* ---------- Scroll progress bar ---------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0;
  height: 2px;
  background: transparent;
  z-index: 999;
  pointer-events: none;
}
.scroll-progress__bar {
  height: 100%;
  background: linear-gradient(to right, var(--cocoa), var(--sand));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.1s ease-out;
}

/* ---------- Kinetic word reveal ---------- */
.kinetic { display: inline-block; }
.kinetic__word {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
  /* room for descenders (g, p, y) so they don't get clipped */
  padding-bottom: 0.2em;
  margin-bottom: -0.2em;
}
.kinetic.is-revealed .kinetic__word { overflow: visible; }
.kinetic__word > span {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.kinetic.is-revealed .kinetic__word > span { transform: translateY(0); }
.kinetic__word:nth-child(1) > span { transition-delay: 0.05s; }
.kinetic__word:nth-child(2) > span { transition-delay: 0.15s; }
.kinetic__word:nth-child(3) > span { transition-delay: 0.25s; }
.kinetic__word:nth-child(4) > span { transition-delay: 0.35s; }
.kinetic__word:nth-child(5) > span { transition-delay: 0.45s; }
.kinetic__word:nth-child(6) > span { transition-delay: 0.55s; }

/* Hero parallax */
.hero-cover img.hero-cover__img {
  will-change: transform;
  transition: transform 0.1s linear;
}

/* ---------- 3D tilt on posters ---------- */
.poster {
  transform-style: preserve-3d;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
.poster.has-tilt {
  transition: transform 0.1s linear;
}
.poster__shine {
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%),
    rgba(250, 246, 239, 0.18) 0%,
    rgba(250, 246, 239, 0) 40%);
  opacity: 0; transition: opacity 0.4s ease;
  pointer-events: none;
}
.poster.has-tilt .poster__shine { opacity: 1; }

/* ---------- Behind-the-receipt expanding modal ---------- */
.modal {
  position: fixed; inset: 0; z-index: 500;
  display: flex; align-items: center; justify-content: center;
  padding: clamp(1rem, 4vw, 3rem);
  background: rgba(31, 27, 22, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0; visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.modal.is-open { opacity: 1; visibility: visible; }
.modal__panel {
  position: relative;
  max-width: 980px; width: 100%;
  max-height: 88vh; overflow-y: auto;
  background: var(--cream);
  border-radius: var(--radius-lg);
  display: grid; gap: 0;
  transform: translateY(40px) scale(0.96);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  overflow: hidden;
}
@media (min-width: 720px) {
  .modal__panel { grid-template-columns: 1fr 1.1fr; gap: 0; max-height: 80vh; }
}
.modal.is-open .modal__panel { transform: translateY(0) scale(1); }
.modal__visual {
  background-size: cover; background-position: center;
  min-height: 280px;
  position: relative;
}
@media (min-width: 720px) { .modal__visual { min-height: 480px; } }
.modal__visual::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(31,27,22,0.5) 100%);
}
.modal__visual-meta {
  position: absolute; bottom: 1rem; left: 1rem;
  font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--cream); z-index: 2;
}
.modal__body {
  padding: clamp(1.75rem, 4vw, 3rem);
  display: flex; flex-direction: column; gap: 1.25rem;
  overflow-y: auto;
}
.modal__eyebrow {
  font-size: 0.7rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--cocoa); font-weight: 600;
}
.modal__title {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  line-height: 1.1; letter-spacing: -0.02em;
  font-weight: 400;
}
.modal__title em { font-style: italic; color: var(--cocoa); }
.modal__stat {
  display: flex; align-items: baseline; gap: 0.625rem;
  font-family: 'Fraunces', serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 300; line-height: 1; letter-spacing: -0.03em;
  color: var(--ink);
  padding: 0.75rem 0;
  border-block: 1px solid var(--hairline);
}
.modal__stat small {
  font-family: 'Inter'; font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 500; color: var(--ink-mute); margin-left: auto;
}
.modal__list { display: flex; flex-direction: column; gap: 0.625rem; font-size: 0.9375rem; color: var(--ink-soft); }
.modal__list li { display: flex; gap: 0.625rem; }
.modal__list li strong { color: var(--ink); font-weight: 600; min-width: 100px; flex-shrink: 0; }
.modal__caption {
  background: var(--cream-deep);
  padding: 1.25rem; border-radius: var(--radius-sm);
  font-style: italic; font-family: 'Fraunces', serif; font-size: 1.0625rem; line-height: 1.4; color: var(--ink); font-weight: 400;
}
.modal__close {
  position: absolute; top: 1rem; right: 1rem; z-index: 3;
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(250, 246, 239, 0.95);
  border-radius: 999px;
  transition: background 0.2s ease, transform 0.2s ease;
}
.modal__close:hover { background: var(--pearl); transform: scale(1.06); }
.modal__close svg { width: 18px; height: 18px; color: var(--ink); }

/* ---------- Brand fit widget ---------- */
.brandfit {
  background: var(--pearl);
  border-radius: var(--radius-lg);
  border: 1px solid var(--hairline);
  padding: clamp(2rem, 4vw, 3rem);
  overflow: hidden;
  position: relative;
}
.brandfit__head {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem;
  margin-bottom: 1.5rem;
}
.brandfit__eyebrow {
  font-size: 0.7rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--cocoa); font-weight: 600;
}
.brandfit__live {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-mute); font-weight: 500;
}
.brandfit__live .dot {
  width: 6px; height: 6px; border-radius: 50%; background: #5fb37c;
  box-shadow: 0 0 0 0 rgba(95, 179, 124, 0.6);
  animation: livePulse 2.4s ease-in-out infinite;
}
@keyframes livePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(95, 179, 124, 0.6); }
  50% { box-shadow: 0 0 0 6px rgba(95, 179, 124, 0); }
}
.brandfit__title {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  line-height: 1.05; letter-spacing: -0.025em; font-weight: 300;
  max-width: 22ch;
}
.brandfit__title em { font-style: italic; color: var(--cocoa); }
.brandfit__intro {
  margin-top: 0.75rem;
  font-size: 1rem; color: var(--ink-soft); max-width: 52ch;
}

.brandfit__steps {
  margin-top: 2rem;
  display: flex; flex-direction: column; gap: 1.75rem;
}
.brandfit__step {
  display: grid; gap: 0.75rem;
}
.brandfit__step-label {
  font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-mute); font-weight: 500;
  display: flex; align-items: center; gap: 0.75rem;
}
.brandfit__step-label .num {
  font-family: 'Fraunces', serif; font-style: italic;
  font-size: 1.125rem; color: var(--cocoa);
  font-weight: 400;
}
.brandfit__chips { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.brandfit__chip {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.625rem 1rem;
  border: 1px solid var(--hairline);
  border-radius: 999px;
  background: var(--cream);
  font-size: 0.875rem; font-weight: 500; color: var(--ink-soft);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, transform 0.15s ease;
}
.brandfit__chip:hover { border-color: var(--cocoa); color: var(--ink); transform: translateY(-1px); }
.brandfit__chip.is-active {
  background: var(--ink); color: var(--cream); border-color: var(--ink);
}
.brandfit__result {
  margin-top: 2rem; padding: 1.75rem; border-radius: var(--radius-md);
  background: var(--cream-deep);
  border-left: 3px solid var(--cocoa);
  display: none;
}
.brandfit__result.is-shown { display: block; animation: fitFade 0.5s ease forwards; }
@keyframes fitFade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.brandfit__result-status {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase;
  font-weight: 600;
  padding: 0.4rem 0.75rem; border-radius: 999px;
  background: var(--pearl);
  margin-bottom: 1rem;
}
.brandfit__result-status.is-yes { color: #2b7a4b; }
.brandfit__result-status.is-no { color: var(--cocoa-deep); }
.brandfit__result-status.is-maybe { color: var(--cocoa); }
.brandfit__result-status .dot {
  width: 8px; height: 8px; border-radius: 50%;
}
.brandfit__result-status.is-yes .dot { background: #5fb37c; }
.brandfit__result-status.is-no .dot { background: #c47a55; }
.brandfit__result-status.is-maybe .dot { background: var(--cocoa); }
.brandfit__result-head {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.25rem, 2.4vw, 1.75rem);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.brandfit__result-head em { font-style: italic; color: var(--cocoa); }
.brandfit__result-body {
  margin-top: 0.75rem;
  font-size: 0.9375rem; color: var(--ink-soft); line-height: 1.55;
}
.brandfit__result-cta { margin-top: 1.25rem; }
.brandfit__reset {
  margin-top: 1rem;
  font-size: 0.8125rem;
  color: var(--ink-mute);
  text-decoration: underline; text-underline-offset: 3px;
}
.brandfit__reset:hover { color: var(--ink); }

/* ---------- Hover-photo dual-CTA upgrade ---------- */
.dual-photo__cell {
  transition: filter 0.4s ease;
}
.dual-photo__cell:hover {
  filter: saturate(1.08);
}

/* ---------- Counter wrapper utility ---------- */
.counter { font-variant-numeric: tabular-nums; }

/* ---------- Mini photo marquee ---------- */
.photo-marquee {
  position: relative;
  overflow: hidden;
  padding: 1.5rem 0;
  background: var(--ink);
  mask-image: linear-gradient(to right, transparent, #000 5%, #000 95%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 5%, #000 95%, transparent);
}
.photo-marquee__track {
  display: flex;
  width: max-content;
  gap: 1rem;
  animation: marquee 60s linear infinite;
}
.photo-marquee:hover .photo-marquee__track { animation-play-state: paused; }
.photo-marquee__tile {
  flex-shrink: 0;
  width: clamp(160px, 22vw, 280px);
  aspect-ratio: 4 / 5;
  background-size: cover; background-position: center;
  border-radius: var(--radius-sm);
  position: relative;
  overflow: hidden;
}
.photo-marquee__tile::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 70%, rgba(31,27,22,0.4) 100%);
}
.photo-marquee__cap {
  position: absolute; bottom: 0.5rem; left: 0.625rem;
  color: var(--cream); font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase;
  z-index: 2;
}

/* ---------- Drop cap ---------- */
.dropcap::first-letter {
  font-family: 'Fraunces', serif;
  float: left;
  font-size: 4.5em;
  line-height: 0.82;
  margin: 0.05em 0.1em 0 -0.05em;
  font-weight: 300;
  color: var(--cocoa);
  font-style: italic;
}

/* ---------- Live status (corner clock + status) ---------- */
.live-status {
  position: fixed; bottom: 1.25rem; left: 1.25rem; z-index: 40;
  display: none;
  align-items: center; gap: 0.5rem;
  padding: 0.5rem 0.875rem;
  background: rgba(31, 27, 22, 0.85);
  backdrop-filter: blur(10px);
  border-radius: 999px;
  font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--cream); font-weight: 500;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.live-status.is-visible { opacity: 1; }
.live-status .dot { width: 6px; height: 6px; border-radius: 50%; background: #5fb37c; animation: livePulse 2.4s ease-in-out infinite; }
@media (min-width: 720px) { .live-status { display: inline-flex; } }
@media (max-width: 879px) {
  .live-status { bottom: 5rem; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  .loader { display: none; }
  .kinetic__word > span { transform: none !important; transition: none !important; }
  .photo-marquee__track, .marquee__track { animation: none; }
  .poster.has-tilt { transition: none; }
}

.stack { display: flex; flex-direction: column; }
.gap-sm { gap: 0.5rem; }
.gap-md { gap: 1rem; }
.gap-lg { gap: 2rem; }

/* ============================================================
   GLOW-UP LAYER — editorial / magazine treatment
   ============================================================ */

/* Paper-grain film texture across the whole page (very subtle) */
body::after {
  content: '';
  position: fixed; inset: 0; pointer-events: none; z-index: 99;
  opacity: 0.08;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.45 0 0 0 0 0.35 0 0 0 0 0.25 0 0 0 0.5 0'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.5'/></svg>");
}

/* Display token system */
:root {
  --fs-mega: clamp(3.5rem, 11vw, 9.5rem);
  --fs-display: clamp(2.5rem, 7vw, 6.5rem);
  --fs-headline: clamp(2rem, 4.5vw, 4rem);
}

/* Editorial masthead strip at the very top of every page */
.masthead {
  position: relative;
  z-index: 5;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  padding: 0.5rem var(--gutter);
  background: var(--ink);
  color: var(--sand);
  font-size: 0.6875rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
}
.masthead__group { display: flex; gap: 1rem; align-items: center; }
.masthead__group span + span::before { content: '·'; margin-right: 1rem; color: var(--ink-mute); opacity: 0.7; }
.masthead__group--right { display: none; }
@media (min-width: 720px) {
  .masthead__group--right { display: flex; }
}
.masthead .pulse {
  width: 6px; height: 6px; border-radius: 999px; background: #d68b5a;
  display: inline-block;
  animation: pulse 2.6s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(214, 139, 90, 0.7);
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(214, 139, 90, 0.7); }
  50% { box-shadow: 0 0 0 8px rgba(214, 139, 90, 0); }
}

/* Nav offset when masthead present */
.nav.has-masthead { top: 30px; }
@media (max-width: 540px) {
  .masthead .masthead__group--right { display: none; }
}

/* ---------- Inverse nav (cream text on dark hero, until scrolled) ---------- */
.nav--inverse .nav__brand { color: var(--cream); }
.nav--inverse .nav__brand em { color: var(--sand-deep); }
.nav--inverse .nav__links a { color: rgba(250, 246, 239, 0.88); }
.nav--inverse .nav__links a:hover { color: var(--cream); }
.nav--inverse .nav__menu-btn { color: var(--cream); }
.nav--inverse .nav__cta { background: var(--cream); color: var(--ink); }
.nav--inverse .nav__cta:hover { background: var(--pearl); color: var(--ink); }
.nav--inverse.is-scrolled .nav__brand,
.nav--inverse.is-scrolled .nav__brand em,
.nav--inverse.is-scrolled .nav__links a,
.nav--inverse.is-scrolled .nav__menu-btn { color: var(--ink); }
.nav--inverse.is-scrolled .nav__brand em { color: var(--cocoa); }
.nav--inverse.is-scrolled .nav__links a { color: var(--ink-soft); }
.nav--inverse.is-scrolled .nav__cta { background: var(--ink); color: var(--cream); }

/* ---------- Full-bleed editorial hero (v3, restrained) ---------- */
.hero-cover {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  display: flex; flex-direction: column; justify-content: flex-end;
  color: var(--cream);
  padding: clamp(2rem, 5vw, 4rem) var(--gutter) calc(2.5rem + env(safe-area-inset-bottom));
  isolation: isolate;
}
.hero-cover img.hero-cover__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  z-index: -2;
  display: block;
}
.hero-cover::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(31,27,22,0.55) 0%, rgba(31,27,22,0.0) 30%, rgba(31,27,22,0.0) 55%, rgba(31,27,22,0.92) 100%);
}
.hero-cover__top {
  position: absolute; top: clamp(5rem, 8vw, 7rem); left: var(--gutter); right: var(--gutter);
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.7rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: rgba(250, 246, 239, 0.78);
  font-weight: 500;
  pointer-events: none;
}
.hero-cover__top .rule { flex: 1; height: 1px; background: rgba(250,246,239,0.4); margin: 0 1.25rem; max-width: 80px; }
.hero-cover__inner {
  position: relative; z-index: 1;
  max-width: var(--content-max); margin-inline: auto; width: 100%;
}
.hero-cover__title {
  font-family: 'Fraunces', serif;
  font-size: clamp(3.5rem, 13vw, 11rem);
  line-height: 0.86;
  letter-spacing: -0.045em;
  font-weight: 300;
  color: var(--cream);
  max-width: 14ch;
  font-variation-settings: "SOFT" 50, "WONK" 1, "opsz" 144;
  text-shadow: 0 2px 32px rgba(0,0,0,0.18);
}
.hero-cover__title em { font-style: italic; font-weight: 300; color: var(--sand); }
.hero-cover__sub {
  margin-top: clamp(1.25rem, 2vw, 1.75rem);
  font-size: clamp(1.0625rem, 1.4vw, 1.25rem);
  max-width: 44ch;
  color: rgba(250, 246, 239, 0.88);
  line-height: 1.5;
}
.hero-cover__sub em { font-style: italic; color: var(--sand-deep); }
.hero-cover__ctas {
  margin-top: clamp(2rem, 3.5vw, 3rem);
  display: flex; align-items: center;
  gap: clamp(1rem, 3vw, 2rem);
  flex-wrap: wrap;
}
.hero-cover .btn--primary {
  display: inline-flex; align-items: center; gap: 0.625rem;
  padding: 1rem 1.5rem;
  background: var(--cream); color: var(--ink);
  font-size: 0.9375rem; font-weight: 500;
  letter-spacing: 0;
  border-radius: 2px;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease);
}
.hero-cover .btn--primary:hover { background: var(--pearl); transform: translateY(-1px); }
.hero-cover .btn--primary svg { width: 15px; height: 15px; transition: transform 0.25s var(--ease); }
.hero-cover .btn--primary:hover svg { transform: translateX(3px); }
.hero-cover__link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: var(--cream);
  font-size: 0.9375rem; font-weight: 500;
  border-bottom: 1px solid rgba(250,246,239,0.45);
  padding-bottom: 4px;
  transition: gap 0.25s var(--ease), border-color 0.25s var(--ease);
}
.hero-cover__link:hover { gap: 0.75rem; border-bottom-color: var(--cream); }
.hero-cover__link svg { width: 14px; height: 14px; }
.hero-cover__credit {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(250,246,239,0.18);
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  font-size: 0.65rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(250, 246, 239, 0.6);
  max-width: var(--content-max);
}
.hero-cover__credit-r { text-align: right; }

@media (min-width: 880px) {
  .hero-cover { padding-bottom: clamp(3rem, 5vw, 4.5rem); }
  .hero-cover img.hero-cover__img { object-position: center 25%; }
}

/* ---------- (Legacy) Editorial split hero ---------- */
.hero-edit {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
  padding-top: 5rem;
  background: var(--cream);
  overflow: hidden;
}
@media (min-width: 880px) {
  .hero-edit { grid-template-columns: 1.05fr 1fr; min-height: 110vh; }
}
.hero-edit__copy {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; justify-content: space-between;
  padding: clamp(2rem, 5vw, 4rem) var(--gutter) clamp(2rem, 5vw, 4rem);
}
.hero-edit__top { display: flex; align-items: center; gap: 1rem; }
.hero-edit__issue {
  font-size: 0.7rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--ink-mute); font-weight: 500;
}
.hero-edit__rule { flex: 1; height: 1px; background: var(--ink); opacity: 0.15; }
.hero-edit__title {
  font-family: 'Fraunces', serif;
  font-size: var(--fs-mega);
  line-height: 0.86;
  letter-spacing: -0.045em;
  font-weight: 300;
  color: var(--ink);
  margin-top: clamp(2rem, 5vw, 4rem);
  font-variation-settings: "SOFT" 50, "WONK" 1, "opsz" 144;
}
.hero-edit__title em { font-style: italic; color: var(--cocoa); font-weight: 300; }
.hero-edit__title span { display: block; }
.hero-edit__sub {
  margin-top: clamp(1.25rem, 2.5vw, 2rem);
  font-size: clamp(1.0625rem, 1.5vw, 1.25rem);
  max-width: 36ch;
  line-height: 1.5;
  color: var(--ink-soft);
}
.hero-edit__bottom {
  margin-top: 3rem;
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
}
.hero-edit__sig {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  line-height: 1; color: var(--cocoa);
  font-weight: 300;
  letter-spacing: -0.02em;
  transform: rotate(-4deg);
  transform-origin: left center;
}
.hero-edit__sig::after {
  content: ''; display: block; width: 80%; height: 1px;
  background: var(--cocoa); opacity: 0.4; margin-top: 0.25rem;
}
.hero-edit__stats {
  display: grid; grid-template-columns: repeat(3, auto); gap: 1.5rem;
  font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-mute);
}
.hero-edit__stats strong {
  display: block; font-family: 'Fraunces', serif; font-size: 1.5rem;
  color: var(--ink); letter-spacing: -0.02em; font-weight: 400;
  margin-bottom: 0.25rem; text-transform: none;
}
.hero-edit__ctas { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 0.75rem; }
.hero-edit__img {
  position: relative;
  min-height: 60vh;
  background-size: cover; background-position: center;
  border-radius: 0;
}
@media (min-width: 880px) {
  .hero-edit__img { min-height: 100%; }
}
.hero-edit__img-meta {
  position: absolute; bottom: 1.25rem; left: 1.25rem; right: 1.25rem;
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 1rem;
  color: var(--cream);
  font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase;
  z-index: 2;
}
.hero-edit__img-meta-r { text-align: right; }
.hero-edit__img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 70%, rgba(31,27,22,0.5) 100%);
}

/* ---------- Marquee ---------- */
.marquee {
  position: relative;
  overflow: hidden;
  padding: 1.5rem 0;
  border-block: 1px solid var(--hairline);
  background: var(--cream);
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}
.marquee__track {
  display: flex;
  width: max-content;
  gap: clamp(2rem, 5vw, 4.5rem);
  animation: marquee 48s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes marquee {
  to { transform: translateX(-50%); }
}
.marquee__item {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 300; letter-spacing: -0.01em;
  color: var(--ink); white-space: nowrap;
  display: flex; align-items: center; gap: 1.5rem;
  font-style: italic;
}
.marquee__item::after {
  content: '✻'; color: var(--cocoa); font-size: 0.85em; font-style: normal;
  opacity: 0.6;
}
.marquee__item:last-child::after { content: ''; }

/* ---------- Chapter cards (numbered editorial) ---------- */
.chapters {
  display: grid; gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 880px) { .chapters { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; } }
.chapter {
  position: relative;
  display: flex; flex-direction: column;
  background: var(--pearl);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem 2rem;
  border: 1px solid var(--hairline);
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s var(--ease);
}
.chapter:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  background: var(--cream-deep);
}
.chapter__num {
  font-family: 'Fraunces', serif;
  font-size: 4.5rem; line-height: 0.8;
  font-weight: 200;
  color: var(--cocoa);
  letter-spacing: -0.04em;
  font-style: italic;
  margin-bottom: 1rem;
  opacity: 0.8;
}
.chapter__num span { font-size: 0.4em; vertical-align: super; opacity: 0.5; font-style: normal; }
.chapter__eyebrow {
  font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-mute); margin-bottom: 0.5rem;
}
.chapter__title { font-size: clamp(1.625rem, 2.5vw, 2rem); line-height: 1.05; max-width: 16ch; margin-bottom: 1rem; }
.chapter__title em { font-style: italic; color: var(--cocoa); }
.chapter__body { color: var(--ink-soft); font-size: var(--fs-sm); flex-grow: 1; margin-bottom: 1.5rem; }
.chapter__link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: var(--fs-sm); font-weight: 500;
  color: var(--ink);
  padding-bottom: 4px;
  border-bottom: 1px solid var(--ink);
  align-self: flex-start;
  transition: gap 0.25s var(--ease);
}
.chapter__link:hover { gap: 0.75rem; }
.chapter__link svg { width: 14px; height: 14px; }

/* ---------- Receipt poster cards (rebuilt) ---------- */
.receipt-deck {
  display: grid; gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .receipt-deck { grid-template-columns: 1fr 1fr; gap: 2rem; } }
.poster {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background-size: cover; background-position: center;
  background-color: var(--ink-soft);
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 1.5rem;
  color: var(--cream);
  isolation: isolate;
  transition: transform 0.5s var(--ease);
}
.poster:hover { transform: scale(1.015); }
.poster::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(31,27,22,0.45) 0%, rgba(31,27,22,0.15) 35%, rgba(31,27,22,0.75) 100%);
}
.poster__top { display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; }
.poster__tag {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.4rem 0.75rem; border-radius: 999px;
  background: rgba(250, 246, 239, 0.18);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(250, 246, 239, 0.25);
  font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 500;
}
.poster__tag .dot { width: 6px; height: 6px; border-radius: 999px; background: #d68b5a; }
.poster__index {
  font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase;
  opacity: 0.8;
}
.poster__bottom { display: flex; flex-direction: column; gap: 0.5rem; }
.poster__brand {
  font-size: 0.75rem; letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 500;
  opacity: 0.9;
}
.poster__views {
  font-family: 'Fraunces', serif;
  font-size: clamp(3rem, 7.5vw, 5.5rem);
  line-height: 0.9; letter-spacing: -0.04em;
  font-weight: 300;
  color: var(--cream);
}
.poster__views small {
  display: block; font-family: 'Inter', sans-serif;
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
  margin-top: 0.25rem; opacity: 0.8; font-weight: 500;
}
.poster__caption {
  font-size: 0.875rem;
  max-width: 28ch;
  opacity: 0.9;
}
.poster__meta {
  margin-top: 0.5rem;
  font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
  opacity: 0.7;
}

/* ---------- Asymmetric gallery spread ---------- */
.spread {
  display: grid; gap: 0.75rem;
  grid-template-columns: 1fr 1fr;
}
@media (min-width: 880px) {
  .spread {
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }
  .spread__anchor { grid-column: 1; grid-row: 1 / span 2; }
  .spread__s1 { grid-column: 2; grid-row: 1; }
  .spread__s2 { grid-column: 3; grid-row: 1; }
  .spread__s3 { grid-column: 2; grid-row: 2; }
  .spread__s4 { grid-column: 3; grid-row: 2; }
}
.spread__tile {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background-color: var(--cream-deep);
  background-size: cover; background-position: center;
  aspect-ratio: 1 / 1;
  transition: transform 0.5s var(--ease), filter 0.4s var(--ease);
}
.spread__tile:hover { transform: scale(1.02); filter: brightness(1.05); }
.spread__anchor { aspect-ratio: auto; min-height: 320px; }
@media (min-width: 880px) {
  .spread__anchor { aspect-ratio: auto; }
}
.spread__caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 0.625rem 0.875rem;
  background: linear-gradient(180deg, transparent 0%, rgba(31,27,22,0.65) 100%);
  color: var(--cream);
  font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase;
  opacity: 0; transition: opacity 0.3s var(--ease);
}
.spread__tile:hover .spread__caption { opacity: 1; }

.spread-rail {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-top: 1.5rem; gap: 1rem;
}
.spread-rail .eyebrow { color: var(--ink-mute); }

/* ---------- Big editorial quote (rebuild) ---------- */
.quote-big {
  background: var(--ink);
  color: var(--cream);
  padding-block: clamp(5rem, 14vw, 11rem);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.quote-big::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(60% 80% at 30% 20%, rgba(123, 92, 63, 0.35) 0%, transparent 60%),
    radial-gradient(50% 60% at 80% 90%, rgba(168, 181, 201, 0.18) 0%, transparent 60%);
}
.quote-big__inner { position: relative; z-index: 2; max-width: 980px; margin-inline: auto; padding-inline: var(--gutter); }
.quote-big__mark {
  font-family: 'Fraunces', serif; font-style: italic;
  font-size: clamp(6rem, 14vw, 12rem); line-height: 0.7;
  color: var(--cocoa); opacity: 0.75;
  font-weight: 300;
  margin-bottom: -0.25em;
}
.quote-big__text {
  font-family: 'Fraunces', serif;
  font-size: var(--fs-display);
  line-height: 1.04;
  letter-spacing: -0.03em;
  font-weight: 300;
  color: var(--cream);
  max-width: 22ch;
  margin-inline: auto;
  font-variation-settings: "SOFT" 50, "opsz" 144;
}
.quote-big__text em { font-style: italic; color: var(--sand-deep); font-weight: 300; }
.quote-big__attr {
  margin-top: 2.5rem;
  font-size: 0.75rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--sand-deep);
}

/* ---------- Dual CTA photo-back band ---------- */
.dual-photo {
  display: grid; gap: 1px;
  background: var(--ink);
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .dual-photo { grid-template-columns: 1fr 1fr; } }
.dual-photo__cell {
  position: relative;
  min-height: 420px;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: clamp(2rem, 4vw, 3.5rem);
  color: var(--cream);
  background-size: cover; background-position: center;
  overflow: hidden;
  isolation: isolate;
}
.dual-photo__cell::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(160deg, rgba(31,27,22,0.55) 0%, rgba(31,27,22,0.35) 50%, rgba(31,27,22,0.75) 100%);
  transition: background 0.4s var(--ease);
}
.dual-photo__cell:hover::before {
  background: linear-gradient(160deg, rgba(31,27,22,0.4) 0%, rgba(31,27,22,0.2) 50%, rgba(31,27,22,0.65) 100%);
}
.dual-photo__cell .eyebrow { color: var(--sand-deep); }
.dual-photo__title {
  font-size: clamp(1.875rem, 4vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--cream);
  max-width: 18ch;
  margin: 0.5rem 0 0.75rem;
}
.dual-photo__title em { font-style: italic; color: var(--sand); }
.dual-photo__lede { color: var(--sand); max-width: 36ch; font-size: 1.0625rem; }
.dual-photo__arrow {
  margin-top: 1.5rem;
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.85rem; font-weight: 500;
  color: var(--cream);
  border-bottom: 1px solid var(--sand);
  padding-bottom: 4px;
  align-self: flex-start;
  transition: gap 0.25s var(--ease), border-color 0.25s var(--ease);
}
.dual-photo__cell:hover .dual-photo__arrow { gap: 0.75rem; border-color: var(--cream); }
.dual-photo__arrow svg { width: 14px; height: 14px; }

/* ---------- Section ornaments ---------- */
.ornament {
  display: flex; align-items: center; gap: 1rem;
  justify-content: center;
  font-size: 0.6875rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 2.5rem;
}
.ornament::before, .ornament::after {
  content: ''; flex: 1; max-width: 80px; height: 1px;
  background: linear-gradient(to right, transparent, var(--ink-mute), transparent);
}
.ornament__star { color: var(--cocoa); font-size: 1.2em; }

.hr-fancy {
  display: flex; align-items: center; gap: 1rem;
  width: 100%;
  color: var(--ink-mute); opacity: 0.5;
}
.hr-fancy::before, .hr-fancy::after { content: ''; flex: 1; height: 1px; background: currentColor; }
.hr-fancy svg { width: 18px; height: 18px; }

/* Tilted poster effect for hybrid card */
.hybrid-showcase {
  position: relative;
  display: grid; gap: 2rem;
  padding: clamp(2.5rem, 5vw, 4rem) clamp(2rem, 4vw, 3.5rem);
  background: linear-gradient(135deg, var(--cream-deep), var(--cream));
  border-radius: var(--radius-lg);
  border: 1px solid var(--hairline);
  overflow: hidden;
  isolation: isolate;
}
@media (min-width: 880px) { .hybrid-showcase { grid-template-columns: 1.1fr 1fr; align-items: center; gap: 4rem; } }
.hybrid-showcase__copy { position: relative; z-index: 2; }
.hybrid-showcase__tag {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.4rem 0.875rem; border-radius: 999px;
  background: var(--cocoa); color: var(--cream);
  font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600;
  margin-bottom: 1.25rem;
}
.hybrid-showcase__tag .dot { width: 6px; height: 6px; border-radius: 999px; background: #d68b5a; box-shadow: 0 0 0 0 rgba(214,139,90,0.8); animation: pulse 2.4s ease-in-out infinite; }
.hybrid-showcase__title {
  font-size: clamp(2.25rem, 5vw, 4rem);
  line-height: 0.95; letter-spacing: -0.03em; font-weight: 300;
  margin-bottom: 1.25rem;
}
.hybrid-showcase__title em { font-style: italic; color: var(--cocoa); }
.hybrid-showcase__price {
  display: inline-flex; align-items: baseline; gap: 0.5rem;
  font-family: 'Fraunces', serif;
  color: var(--ink);
  margin: 1rem 0;
}
.hybrid-showcase__price strong { font-size: 2.5rem; font-weight: 400; letter-spacing: -0.02em; }
.hybrid-showcase__price small { font-size: 0.85rem; color: var(--ink-mute); }
.hybrid-showcase__stack { display: grid; gap: 0; margin: 2rem 0; }
.hybrid-showcase__step {
  position: relative;
  display: grid; grid-template-columns: auto 1fr; gap: 1.25rem; align-items: baseline;
  padding: 1.25rem 0;
  border-top: 1px solid var(--hairline);
}
.hybrid-showcase__step:last-child { border-bottom: 1px solid var(--hairline); }
.hybrid-showcase__step-num {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1.25rem; font-weight: 400;
  color: var(--cocoa);
  letter-spacing: -0.01em;
  min-width: 28px;
}
.hybrid-showcase__step-title { font-family: 'Fraunces', serif; font-size: 1.25rem; color: var(--ink); line-height: 1.25; letter-spacing: -0.01em; font-weight: 400; }
.hybrid-showcase__step-body { font-size: var(--fs-sm); color: var(--ink-soft); margin-top: 0.25rem; }
.hybrid-showcase__visual {
  position: relative;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem;
}
.hybrid-showcase__pic {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-sm);
  background-size: cover; background-position: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease);
}
.hybrid-showcase__pic:hover { transform: translateY(-4px); }
.hybrid-showcase__pic:nth-child(1) { transform: rotate(-2deg); }
.hybrid-showcase__pic:nth-child(2) { transform: rotate(1.5deg); margin-top: 1.5rem; }
.hybrid-showcase__pic:nth-child(3) { transform: rotate(2deg); margin-top: -1rem; }
.hybrid-showcase__pic:nth-child(4) { transform: rotate(-1deg); }

/* Decorative SVG asterisk used as separator */
.aster { color: var(--cocoa); opacity: 0.6; font-style: normal; font-size: 0.85em; margin-inline: 0.5em; }

/* Two-column services on desktop */
@media (min-width: 720px) {
  .two-col-services { grid-template-columns: repeat(2, 1fr) !important; }
}

/* Bigger section heads */
.section-head--big h2 {
  font-size: var(--fs-headline);
  max-width: 20ch;
}
.section-head--big .eyebrow {
  font-size: 0.7rem; letter-spacing: 0.28em;
}

/* Letter-spacing tighter on display */
.tight { letter-spacing: -0.04em; }

/* Audience callout — used on dark sections to recontextualise the numbers */
.audience-callout {
  position: relative;
  margin-top: 3.5rem;
  padding: clamp(2rem, 4vw, 3rem) clamp(1.75rem, 3.5vw, 2.5rem);
  border-left: 2px solid var(--cocoa);
  background: rgba(123, 92, 63, 0.08);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  display: grid; gap: 1.25rem;
}
.audience-callout__eyebrow {
  font-size: 0.7rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--cocoa); font-weight: 600;
}
.audience-callout__head {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.5rem, 2.6vw, 2.125rem);
  line-height: 1.15; letter-spacing: -0.02em;
  color: var(--cream); font-weight: 400;
  max-width: 28ch;
}
.audience-callout__head em { font-style: italic; color: var(--sand); }
.audience-callout p {
  color: var(--sand);
  font-size: 1.0625rem; line-height: 1.55;
  max-width: 62ch;
}
.audience-callout p em { font-style: italic; color: var(--cream); }
.audience-callout__close {
  margin-top: 0.25rem;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: clamp(1.125rem, 1.6vw, 1.375rem);
  color: var(--cream);
  max-width: 38ch;
  line-height: 1.35;
}

/* Magazine-style numbered figure label */
.fig-label {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.65rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
}
.fig-label::before {
  content: ''; width: 18px; height: 1px; background: currentColor; opacity: 0.5;
}
