:root {
  --ink: #1c1420;
  --ink-2: #3b2f3c;
  --muted: #6f6272;
  --wine: #6b2d3c;
  --wine-d: #4a1e2a;
  --plum: #3b1530;
  --indigo: #2a2559;
  --indigo-l: #5b56a8;
  --coral: #e4694f;
  --apricot: #f4b168;
  --apricot-d: #c98230;
  --blush: #f8d3cb;
  --blush-l: #fdeee9;
  --sage: #a7c4b0;
  --sage-l: #e9f2ec;
  --sage-d: #4f8266;
  --slate: #7e8aa6;
  --gold: #c39a5c;
  --gold-l: #e6c993;
  --ivory: #fbf5ec;
  --ivory-d: #f1e6d6;
  --white: #fffdf9;
  --line: #e2d3c4;
  --accent: var(--coral);
  --shadow: 0 18px 50px rgba(59, 21, 48, 0.14);
  --shadow-lift: 0 30px 70px rgba(59, 21, 48, 0.22);
  --radius: 18px;
  --radius-s: 10px;
  --max: 1120px;
  --narrow: 760px;
  --ease: cubic-bezier(.22,.8,.3,1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: "Source Sans 3", "Noto Sans", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
:focus-visible { outline: 3px solid var(--coral); outline-offset: 3px; border-radius: 6px; }

.wrap { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; position: relative; }
.narrow { width: min(var(--narrow), calc(100% - 40px)); margin-inline: auto; position: relative; }

/* ---------- scroll progress ---------- */
.progress {
  position: fixed; top: 0; left: 0; height: 4px; width: 100%;
  z-index: 60; transform-origin: 0 50%; transform: scaleX(0);
  background: linear-gradient(90deg, var(--coral), var(--apricot), var(--sage), var(--indigo-l), var(--wine));
}

/* ---------- type ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin: 0 0 14px;
  transition: color .6s;
}
.eyebrow::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: currentColor; box-shadow: 0 0 0 4px color-mix(in srgb, currentColor 22%, transparent);
}
h1, h2, h3, .serif { font-family: "Cormorant Garamond", "Times New Roman", serif; font-weight: 500; }
h2 {
  font-size: clamp(2.1rem, 4.2vw, 3.2rem);
  line-height: 1.12;
  margin: 0 0 18px;
  color: var(--plum);
  letter-spacing: -0.01em;
}
h3 {
  font-size: 1.55rem;
  margin: 0 0 10px;
  color: var(--ink);
}
p { margin: 0 0 14px; color: var(--ink-2); }
.lede { font-family: "Cormorant Garamond", serif; font-size: 1.4rem; font-style: italic; color: var(--ink-2); line-height: 1.5; }
.spectrum span { transition: color .4s; }
.spectrum span:nth-child(5n+1) { color: var(--coral); }
.spectrum span:nth-child(5n+2) { color: var(--indigo-l); }
.spectrum span:nth-child(5n+3) { color: var(--wine); }
.spectrum span:nth-child(5n+4) { color: var(--sage-d); }
.spectrum span:nth-child(5n+5) { color: var(--apricot-d); }
.spectrum span:hover { color: var(--ink); }

.gold-rule {
  width: 72px; height: 3px; border: 0; border-radius: 3px;
  background: linear-gradient(90deg, var(--coral), var(--apricot), var(--sage), var(--indigo-l));
  margin: 18px 0 22px;
}
.gold-rule.center { margin: 18px auto 22px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  text-decoration: none; border: none; cursor: pointer;
  font-family: inherit; font-weight: 600; letter-spacing: 0.04em;
  padding: 15px 28px; border-radius: 999px;
  position: relative; overflow: hidden; isolation: isolate;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .3s;
}
.btn::after {
  content: ""; position: absolute; inset: 0; z-index: -1; opacity: 0;
  background: linear-gradient(120deg, var(--coral), var(--apricot));
  transition: opacity .3s;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(228,105,79,.35); }
.btn:active { transform: translateY(0) scale(.98); }
.btn-primary { background: linear-gradient(120deg, var(--wine), var(--coral)); color: var(--ivory); }
.btn-primary:hover::after { opacity: 1; }
.btn-ghost { background: rgba(251,245,236,.08); color: var(--ivory); border: 1px solid rgba(251,245,236,0.5); backdrop-filter: blur(6px); }
.btn-ghost:hover { border-color: var(--apricot); color: var(--apricot); box-shadow: 0 14px 30px rgba(244,177,104,.25); }
.btn-dark { background: var(--plum); color: var(--ivory); }
.btn-dark:hover::after { opacity: 1; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }

/* ---------- nav ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 28px;
  background: transparent; color: var(--ivory);
  transition: background 0.3s, color 0.3s, box-shadow 0.3s, padding .3s;
}
.nav.scrolled {
  background: rgba(251,245,236,0.86);
  color: var(--ink);
  padding: 10px 28px;
  backdrop-filter: blur(16px) saturate(1.4);
  box-shadow: 0 1px 0 rgba(226,211,196,.8), 0 10px 30px rgba(59,21,48,.08);
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.mark {
  width: 36px; height: 36px; border-radius: 10px;
  display: grid; place-items: center;
  font-family: "Cormorant Garamond", serif; font-size: 18px; font-weight: 600; color: #fff;
  background: linear-gradient(135deg, var(--coral), var(--wine) 60%, var(--indigo));
  box-shadow: 0 6px 16px rgba(228,105,79,.35);
  transition: transform .4s var(--ease);
}
.brand:hover .mark { transform: rotate(-8deg) scale(1.08); }
.brand-name { font-size: 0.82rem; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600; }
.nav-links { display: flex; gap: 6px; list-style: none; margin: 0; padding: 0; font-size: 0.88rem; }
.nav-links a {
  text-decoration: none; opacity: 0.85; padding: 6px 12px; border-radius: 999px;
  position: relative; transition: background .25s, color .25s, opacity .25s;
}
.nav-links a:hover { opacity: 1; background: rgba(228,105,79,.14); color: var(--coral); }
.nav-links a.is-active { opacity: 1; color: #fff; background: linear-gradient(120deg, var(--coral), var(--wine)); }
.nav-cta {
  background: linear-gradient(120deg, var(--coral), var(--wine)); color: var(--ivory) !important;
  padding: 9px 18px; border-radius: 999px; font-size: 0.8rem; letter-spacing: 0.06em; text-decoration: none; font-weight: 600;
  box-shadow: 0 8px 20px rgba(228,105,79,.3); transition: transform .25s var(--ease), box-shadow .25s;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 14px 28px rgba(228,105,79,.4); }
.menu-btn {
  display: none; background: none; border: 0; color: inherit; width: 40px; height: 40px; cursor: pointer;
  flex-direction: column; justify-content: center; gap: 5px; align-items: center;
}
.menu-btn span { width: 22px; height: 2px; background: currentColor; border-radius: 2px; transition: transform .3s var(--ease), opacity .3s; }
.menu-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-btn.open span:nth-child(2) { opacity: 0; }
.menu-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- hero ---------- */
.hero {
  min-height: 100vh;
  position: relative;
  display: grid;
  place-items: end start;
  color: var(--ivory);
  isolation: isolate;
  overflow: hidden;
}
.hero-media { position: absolute; inset: -6%; z-index: -3; will-change: transform; }
.hero-slide {
  position: absolute; inset: 0; opacity: 0;
  background-size: cover; background-position: center;
  transform: scale(1.06);
  transition: opacity 1.6s ease, transform 8s linear;
}
.hero-slide.is-active { opacity: 1; transform: scale(1); }
.hero-wash {
  position: absolute; inset: 0; z-index: -2;
  background:
    linear-gradient(180deg, rgba(28,20,32,0.45) 0%, rgba(28,20,32,0.12) 35%, rgba(28,20,32,0.8) 100%),
    linear-gradient(90deg, rgba(28,20,32,0.45) 0%, transparent 60%),
    radial-gradient(60% 60% at 15% 100%, color-mix(in srgb, var(--accent) 55%, transparent), transparent 70%);
  transition: background 1.2s;
}
.hero-inner { padding: 90px 28px 56px; width: min(600px, 100%); }
.hero .eyebrow { color: var(--apricot); text-shadow: 0 2px 12px rgba(0,0,0,.6); }
.hero h1 {
  font-size: clamp(2.2rem, 3.6vw, 3.3rem);
  line-height: 1.05;
  margin: 0 0 14px;
  color: var(--ivory);
  font-weight: 500;
  text-shadow: 0 10px 40px rgba(0,0,0,.35);
}
.hero .sub {
  font-size: 1.05rem;
  max-width: 34em;
  color: rgba(251,245,236,0.9);
}
.hero-pills { display: flex; flex-wrap: wrap; gap: 7px; margin: 16px 0 4px; max-width: 34em; }
.hero-pills span {
  border: 1px solid rgba(255,255,255,.35);
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 999px;
  cursor: default;
  transition: background .3s, transform .3s var(--ease), border-color .3s;
}
.hero-pills span:nth-child(1):hover { background: var(--coral); border-color: var(--coral); }
.hero-pills span:nth-child(2):hover { background: var(--indigo-l); border-color: var(--indigo-l); }
.hero-pills span:nth-child(3):hover { background: var(--sage-d); border-color: var(--sage-d); }
.hero-pills span:nth-child(4):hover { background: var(--apricot-d); border-color: var(--apricot-d); }
.hero-pills span:nth-child(5):hover { background: var(--wine); border-color: var(--wine); }
.hero-pills span:nth-child(6):hover { background: var(--blush); border-color: var(--blush); color: var(--plum); }
.hero-pills span:nth-child(7):hover { background: var(--slate); border-color: var(--slate); }
.hero-pills span:hover { transform: translateY(-3px); }
.hero-dots {
  position: absolute; right: 28px; top: 50%; transform: translateY(-50%); z-index: 2;
  display: flex; flex-direction: column; gap: 10px;
}
.hero-dots button {
  width: 4px; height: 34px; border: 0; border-radius: 4px; padding: 0; cursor: pointer;
  background: rgba(255,255,255,.35); overflow: hidden; position: relative; transition: background .3s, transform .3s var(--ease);
}
.hero-dots button:hover { transform: scaleX(2); background: rgba(255,255,255,.6); }
.hero-dots button::after {
  content: ""; position: absolute; inset: 0; background: var(--apricot);
  transform: scaleY(0); transform-origin: 50% 0;
}
.hero-dots button.is-active::after { animation: fill 6s linear forwards; }
@keyframes fill { to { transform: scaleY(1); } }

/* one orchestrated page-load moment */
.hero-inner > * { opacity: 0; transform: translateY(22px); animation: rise .9s var(--ease) forwards; }
.hero-inner > :nth-child(1) { animation-delay: .15s; }
.hero-inner > :nth-child(2) { animation-delay: .3s; }
.hero-inner > :nth-child(3) { animation-delay: .45s; }
.hero-inner > :nth-child(4) { animation-delay: .6s; }
.hero-inner > :nth-child(5) { animation-delay: .75s; }
.hero-inner > :nth-child(6) { animation-delay: .9s; }
@keyframes rise { to { opacity: 1; transform: none; } }

/* ---------- bands ---------- */
section { padding: 96px 0; position: relative; }
.band-ivory { background: var(--ivory); }
.band-blush { background: linear-gradient(180deg, var(--blush-l), #fbe0d9); }
.band-sage { background: linear-gradient(180deg, var(--sage-l), #dcebe0); }
.band-apricot { background: linear-gradient(180deg, #fdf1e2, #fbe3c4); }
.band-twilight { background: linear-gradient(180deg, #eeedf8, #dcd9f0); --band: #e9e7f5; }
.band-night { background: radial-gradient(120% 80% at 80% 0%, #3a3477 0%, var(--indigo) 45%, #17142f 100%); color: var(--ivory); }
.band-night h2, .band-night p { color: var(--ivory); }
.band-night .eyebrow { color: var(--apricot); }
.band-wine {
  background: radial-gradient(90% 70% at 100% 100%, #7c2f4a 0%, var(--plum) 55%, #1f1030 100%);
  color: var(--ivory);
}
.band-wine h2, .band-wine p, .band-wine h3 { color: var(--ivory); }
.band-wine .eyebrow { color: var(--apricot); }
.band-aurora {
  background: linear-gradient(135deg, var(--coral) 0%, var(--wine) 30%, var(--indigo) 65%, var(--indigo-l) 100%);
  background-size: 300% 300%;
  animation: aurora 18s ease-in-out infinite alternate;
  color: var(--ivory);
}
@keyframes aurora { from { background-position: 0% 0%; } to { background-position: 100% 100%; } }
.band-aurora h2, .band-aurora p { color: #fff; }
.band-aurora .eyebrow { color: var(--apricot); }
.band-aurora .lede { color: var(--blush); }
.center { text-align: center; }

.glow-band::before, .glow-band::after {
  content: ""; position: absolute; border-radius: 50%; filter: blur(70px); opacity: .55; pointer-events: none;
}
.glow-band::before { width: 420px; height: 420px; background: var(--blush); top: -120px; right: -120px; }
.glow-band::after { width: 360px; height: 360px; background: var(--sage-l); bottom: -140px; left: -100px; }

/* ---------- tilt cards (shared) ---------- */
.tilt { transform-style: preserve-3d; transition: transform .35s var(--ease), box-shadow .35s var(--ease); will-change: transform; }
.tilt.is-tilting { transition: transform .08s linear; }

/* ---------- speed ---------- */
.speed-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; }
.speed-photo { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); height: 460px; position: relative; }
.speed-photo::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(135deg, rgba(228,105,79,.25), transparent 50%, rgba(42,37,89,.3));
  mix-blend-mode: soft-light;
}
.speed-photo img { width: 100%; height: 100%; object-fit: cover; }
.quiet-list { list-style: none; padding: 0; margin: 22px 0 0; display: flex; flex-wrap: wrap; gap: 10px; }
.quiet-list li {
  color: var(--ink-2); letter-spacing: 0.04em; padding: 8px 16px; border-radius: 999px;
  background: var(--white); border: 1px solid var(--line); font-weight: 500;
  transition: transform .3s var(--ease), background .3s, color .3s, border-color .3s;
}
.quiet-list li:nth-child(1):hover { background: var(--coral); color: #fff; border-color: var(--coral); }
.quiet-list li:nth-child(2):hover { background: var(--indigo-l); color: #fff; border-color: var(--indigo-l); }
.quiet-list li:nth-child(3):hover { background: var(--sage-d); color: #fff; border-color: var(--sage-d); }
.quiet-list li:hover { transform: translateY(-3px); }

/* ---------- problem ---------- */
.problem-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 28px; padding: 0; }
.problem-grid li {
  list-style: none; padding: 14px 16px 14px 44px; position: relative;
  background: rgba(255,255,255,.65); border: 1px solid rgba(228,105,79,.18); border-radius: var(--radius-s);
  color: var(--ink-2); transition: transform .3s var(--ease), background .3s, box-shadow .3s;
}
.problem-grid li::before {
  content: "×"; position: absolute; left: 14px; top: 11px;
  width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center;
  font-size: 1rem; line-height: 1; font-weight: 700; color: #fff; background: var(--coral);
  transition: transform .3s var(--ease), background .3s;
}
.problem-grid li:hover { transform: translateX(6px); background: #fff; box-shadow: 0 12px 30px rgba(228,105,79,.18); }
.problem-grid li:hover::before { transform: rotate(90deg) scale(1.15); background: var(--wine); }

.case-card {
  margin-top: 40px;
  padding: 30px 28px 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  position: relative; overflow: hidden;
  box-shadow: var(--shadow);
}
.case-card::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 6px;
  background: linear-gradient(180deg, var(--coral), var(--wine), var(--indigo));
}
.case-card .eyebrow { color: var(--wine); }
.case-card h3 { margin-bottom: 12px; }
.case-card strong { color: var(--wine); }
.count { font-variant-numeric: tabular-nums; }
.case-card .source { font-size: 0.82rem; color: var(--muted); margin: 16px 0 0; }
.case-card .source a { color: var(--coral); text-decoration-thickness: 1px; text-underline-offset: 3px; }

/* ---------- pull quotes ---------- */
.is-block { max-width: 760px; }
.pull {
  border-left: 0; padding: 22px 26px; margin: 28px 0 0;
  font-family: "Cormorant Garamond", serif; font-size: 1.5rem; line-height: 1.35;
  color: var(--plum); background: var(--white); border-radius: var(--radius-s);
  position: relative; box-shadow: var(--shadow);
}
.pull::before {
  content: ""; position: absolute; left: 0; top: 14px; bottom: 14px; width: 4px; border-radius: 4px;
  background: linear-gradient(180deg, var(--coral), var(--indigo-l));
}

/* ---------- themes ---------- */
.theme-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 32px; perspective: 1200px; }
.theme-card {
  position: relative; min-height: 300px; border-radius: var(--radius); overflow: hidden; isolation: isolate; cursor: zoom-in;
  box-shadow: var(--shadow);
}
.theme-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.theme-card:hover img { transform: scale(1.06); }
.theme-card span {
  position: absolute; left: 18px; bottom: 18px; z-index: 2;
  color: #fff; font-size: 1rem; letter-spacing: 0.02em; font-weight: 600;
  padding: 8px 14px; border-radius: 999px;
  background: color-mix(in srgb, var(--card-accent, var(--coral)) 78%, #000 10%);
  backdrop-filter: blur(6px);
  transform: translateY(6px); transition: transform .4s var(--ease), background .3s;
}
.theme-card:hover span { transform: translateY(0); }
.theme-card::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, transparent 45%, color-mix(in srgb, var(--card-accent, var(--plum)) 55%, #1c1420) 100%);
  transition: opacity .4s;
}
.theme-card::before {
  content: ""; position: absolute; inset: 0; z-index: 3; pointer-events: none; opacity: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255,255,255,.28), transparent 45%);
  transition: opacity .3s;
}
.theme-card:hover::before { opacity: 1; }

.note { font-size: 0.86rem; color: var(--muted); margin-top: 8px; }

/* ---------- split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split-photo { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); height: 440px; cursor: zoom-in; position: relative; }
.split-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.split-photo:hover img { transform: scale(1.05); }
.split-photo::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  box-shadow: inset 0 0 0 0 var(--coral); transition: box-shadow .3s;
}
.split-photo:hover::after { box-shadow: inset 0 0 0 4px var(--coral); }
.split ul { margin: 0 0 16px; padding: 0; color: var(--ink-2); list-style: none; }
.tick-list li {
  margin: 8px 0; padding: 10px 14px 10px 42px; position: relative; background: rgba(255,255,255,.6); border-radius: var(--radius-s);
  transition: transform .3s var(--ease), background .3s;
}
.tick-list li::before {
  content: ""; position: absolute; left: 12px; top: 12px; width: 20px; height: 20px; border-radius: 50%;
  background: var(--sage-d) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 12l5 5L19 7' fill='none' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/12px no-repeat;
}
.tick-list li:nth-child(2)::before { background-color: var(--indigo-l); }
.tick-list li:nth-child(3)::before { background-color: var(--coral); }
.tick-list li:hover { transform: translateX(6px); background: #fff; }

/* ---------- gallery ---------- */
.gallery { display: grid; grid-template-columns: 1.4fr 1fr 1fr; grid-template-rows: 250px 250px; gap: 14px; margin-top: 32px; }
.gallery figure {
  margin: 0; overflow: hidden; border-radius: 14px; position: relative; cursor: zoom-in;
  box-shadow: 0 20px 50px rgba(0,0,0,.35);
  transition: transform .4s var(--ease), box-shadow .4s;
}
.gallery figure:hover { transform: translateY(-6px) scale(1.01); box-shadow: 0 30px 60px rgba(0,0,0,.5), 0 0 0 3px var(--apricot); }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.gallery figure:hover img { transform: scale(1.08); }
.gallery figcaption {
  position: absolute; left: 14px; bottom: 12px; color: #fff; font-size: 0.78rem; letter-spacing: 0.06em;
  text-transform: uppercase; padding: 6px 12px; border-radius: 999px;
  background: rgba(23,20,47,.7); backdrop-filter: blur(6px);
  transition: background .3s;
}
.gallery figure:hover figcaption { background: var(--coral); }
.gallery .wide { grid-row: 1 / span 2; }

/* ---------- audience cards ---------- */
.audience { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 28px; }
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px 22px;
  position: relative; overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
}
.card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 6px;
  background: var(--card-accent, var(--coral));
  transform: scaleX(.25); transform-origin: 0 50%; transition: transform .5s var(--ease);
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lift); border-color: var(--card-accent, var(--coral)); }
.card:hover::before { transform: scaleX(1); }
.card h3 { font-size: 1.4rem; color: var(--card-accent, var(--plum)); }
.card ul { margin: 10px 0 0; padding-left: 18px; color: var(--ink-2); }
.card li { margin: 6px 0; }
.card li::marker { color: var(--card-accent, var(--coral)); }

/* ---------- why grid ---------- */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 28px; }
.why-item {
  background: rgba(255,253,249,0.06);
  border: 1px solid rgba(244,177,104,0.28);
  padding: 22px 24px;
  border-radius: 14px;
  position: relative; overflow: hidden;
  transition: transform .35s var(--ease), background .35s, border-color .35s;
}
.why-item::before {
  content: ""; position: absolute; inset: 0; opacity: 0; pointer-events: none;
  background: radial-gradient(circle at var(--mx, 30%) var(--my, 30%), rgba(244,177,104,.28), transparent 55%);
  transition: opacity .35s;
}
.why-item:hover { transform: translateY(-4px); background: rgba(255,253,249,0.1); border-color: var(--apricot); }
.why-item:hover::before { opacity: 1; }
.why-item h3 { color: var(--apricot); font-size: 1.25rem; }

/* ---------- steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; counter-reset: step; position: relative; }
.steps-line {
  position: absolute; left: 16.6%; right: 16.6%; top: -1px; height: 3px; border-radius: 3px;
  background: var(--ivory-d); z-index: 0; overflow: hidden;
}
.steps-line i {
  display: block; height: 100%; width: 100%;
  background: linear-gradient(90deg, var(--coral), var(--indigo-l), var(--sage-d));
  transform: scaleX(0); transform-origin: 0 50%; transition: transform 1.4s var(--ease);
}
.step {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative; z-index: 1;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
}
.step::before {
  counter-increment: step;
  content: counter(step);
  width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center;
  font-family: "Cormorant Garamond", serif; font-size: 1.5rem; font-weight: 600;
  color: #fff; background: var(--card-accent, var(--coral));
  margin: -50px 0 14px; box-shadow: 0 0 0 6px var(--band, var(--ivory)), 0 10px 24px color-mix(in srgb, var(--card-accent, var(--coral)) 45%, transparent);
  transform: scale(.6); opacity: .5; transition: transform .5s var(--ease), opacity .5s;
}
.step.is-lit::before { transform: scale(1); opacity: 1; }
.step:hover { transform: translateY(-8px); box-shadow: var(--shadow-lift); border-color: var(--card-accent, var(--coral)); }
.step h3 { color: var(--card-accent, var(--plum)); }
.step ul { padding-left: 18px; margin: 8px 0 0; color: var(--muted); }
.step li::marker { color: var(--card-accent, var(--coral)); }

/* ---------- pricing ---------- */
.prices { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 32px; align-items: stretch; }
.price-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 22px 20px;
  position: relative;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
}
.price-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lift); border-color: var(--card-accent, var(--coral)); }
.price-card .eyebrow { color: var(--card-accent, var(--coral)); }
.price-card h3 { font-size: 2.6rem; margin: 4px 0 8px; color: var(--plum); }
.price-card > p:not(.eyebrow) { font-weight: 600; color: var(--ink); }
.price-card ul { margin: 12px 0 0; padding-left: 18px; color: var(--ink-2); font-size: 0.92rem; }
.price-card li { margin: 6px 0; }
.price-card li::marker { color: var(--card-accent, var(--coral)); }
.price-card.featured {
  background: linear-gradient(160deg, var(--plum), var(--wine) 60%, #8a3a54);
  border: 0; color: var(--ivory);
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(107,45,60,.35);
}
.price-card.featured::before {
  content: ""; position: absolute; inset: -3px; border-radius: calc(var(--radius) + 3px);
  background: linear-gradient(120deg, var(--coral), var(--apricot), var(--indigo-l), var(--coral));
  background-size: 300% 300%; animation: aurora 6s linear infinite alternate;
  padding: 3px;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events: none;
}
.price-card.featured:hover { transform: translateY(-16px); }
.price-card.featured h3, .price-card.featured p, .price-card.featured li { color: var(--ivory); }
.price-card.featured .eyebrow { color: var(--apricot); }
.price-card.featured ul, .price-card.featured li { color: rgba(251,245,236,0.9); }
.price-card.featured li::marker { color: var(--apricot); }

.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 28px; }
.compare article { border-radius: var(--radius); padding: 30px 28px; transition: transform .4s var(--ease), box-shadow .4s, filter .4s; }
.compare .old { background: var(--ivory-d); border: 1px solid var(--line); }
.compare .old h3 { color: var(--muted); }
.compare .new { background: linear-gradient(160deg, var(--indigo), var(--indigo-l)); color: var(--ivory); box-shadow: 0 24px 50px rgba(42,37,89,.3); }
.compare .new h3, .compare .new li { color: var(--ivory); }
.compare:hover .old { filter: saturate(.6); }
.compare .old:hover { filter: none; transform: translateY(-4px); }
.compare .new:hover { transform: translateY(-4px) scale(1.02); }
.compare ul { list-style: none; padding: 0; margin: 12px 0 0; }
.compare li { padding: 10px 0 10px 30px; border-bottom: 1px solid rgba(110,98,88,0.2); position: relative; }
.compare .old li::before { content: "–"; position: absolute; left: 4px; color: var(--coral); font-weight: 700; }
.compare .new li::before {
  content: ""; position: absolute; left: 2px; top: 13px; width: 18px; height: 18px; border-radius: 50%;
  background: var(--apricot) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 12l5 5L19 7' fill='none' stroke='%232a2559' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/11px no-repeat;
}
.compare .new li { border-bottom-color: rgba(251,245,236,0.15); }

/* ---------- expect ---------- */
.expect { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 0; margin: 24px 0 0; }
.expect li {
  list-style: none; padding: 14px 16px 14px 46px; background: rgba(255,255,255,.7); border-radius: var(--radius-s); position: relative;
  transition: transform .3s var(--ease), background .3s, box-shadow .3s;
}
.expect li::before {
  content: ""; position: absolute; left: 14px; top: 16px; width: 20px; height: 20px; border-radius: 50%;
  background: var(--sage-d) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 12l5 5L19 7' fill='none' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/12px no-repeat;
  transition: transform .3s var(--ease);
}
.expect li:hover { transform: translateY(-3px); background: #fff; box-shadow: 0 12px 28px rgba(79,130,102,.18); }
.expect li:hover::before { transform: scale(1.2) rotate(8deg); }

/* ---------- trust ---------- */
.trust { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; margin-top: 30px; }
.trust div {
  text-align: center; padding: 24px 14px;
  border: 1px solid rgba(201,130,48,.25); border-radius: 16px; background: rgba(255,255,255,.75);
  font-size: 0.95rem; color: var(--ink-2); font-weight: 500;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  transition: transform .35s var(--ease), box-shadow .35s, background .35s, color .35s;
}
.trust svg { width: 42px; height: 42px; padding: 9px; border-radius: 50%; background: var(--card-accent, var(--coral)); fill: #fff; color: #fff; transition: transform .4s var(--ease); }
.trust div:hover { transform: translateY(-8px) rotate(-1deg); background: var(--card-accent, var(--coral)); color: #fff; box-shadow: var(--shadow-lift); }
.trust div:hover svg { background: #fff; fill: var(--card-accent, var(--coral)); color: var(--card-accent, var(--coral)); transform: scale(1.1) rotate(8deg); }

/* ---------- summary ---------- */
.summary { padding: 110px 0; overflow: hidden; }
.summary h2 { font-size: clamp(2.1rem, 4.5vw, 3.4rem); max-width: 16em; margin-inline: auto; }
.summary .gold-rule { background: linear-gradient(90deg, var(--apricot), #fff, var(--apricot)); }

/* ---------- footer ---------- */
footer {
  background: var(--ink);
  color: rgba(251,245,236,0.7);
  padding: 36px 0 28px;
  font-size: 0.88rem;
}
.foot { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
footer a { color: var(--apricot); text-decoration: none; border-bottom: 1px solid transparent; transition: border-color .2s; }
footer a:hover { border-color: var(--apricot); }

/* ---------- faq ---------- */
.faq details { border-top: 1px solid var(--line); padding: 4px 0; }
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer; font-weight: 600; color: var(--ink); list-style: none;
  display: flex; justify-content: space-between; gap: 16px; align-items: center;
  padding: 14px 8px; border-radius: var(--radius-s); transition: background .25s, color .25s, padding .25s;
}
.faq summary:hover { background: rgba(228,105,79,.08); color: var(--wine); padding-left: 14px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; flex: 0 0 auto;
  width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center;
  color: #fff; background: linear-gradient(120deg, var(--coral), var(--wine));
  font-family: "Cormorant Garamond", serif; font-size: 1.5rem; font-weight: 600; line-height: 1;
  transition: transform .35s var(--ease);
}
.faq details[open] summary { color: var(--wine); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq-body { overflow: hidden; }
.faq-body p { margin: 4px 8px 16px; padding-left: 16px; border-left: 3px solid var(--blush); }

/* ---------- back to top ---------- */
.to-top {
  position: fixed; right: 22px; bottom: 22px; z-index: 45;
  width: 48px; height: 48px; border-radius: 50%; border: 0; cursor: pointer;
  background: linear-gradient(135deg, var(--coral), var(--wine)); color: #fff;
  box-shadow: 0 12px 30px rgba(228,105,79,.4);
  display: grid; place-items: center;
  opacity: 0; transform: translateY(20px) scale(.8); pointer-events: none;
  transition: opacity .3s, transform .3s var(--ease);
}
.to-top svg { width: 22px; height: 22px; }
.to-top.is-shown { opacity: 1; transform: none; pointer-events: auto; }
.to-top:hover { transform: translateY(-3px); }

/* ---------- lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(23,20,47,.92); backdrop-filter: blur(10px);
  display: grid; place-items: center;
  opacity: 0; pointer-events: none; transition: opacity .3s;
}
.lightbox.is-open { opacity: 1; pointer-events: auto; }
.lightbox figure { margin: 0; max-width: min(1100px, 92vw); text-align: center; transform: scale(.94); transition: transform .35s var(--ease); }
.lightbox.is-open figure { transform: none; }
.lightbox img { max-height: 82vh; max-width: 100%; margin: 0 auto; border-radius: 12px; box-shadow: 0 40px 100px rgba(0,0,0,.6); object-fit: contain; }
.lightbox figcaption { color: var(--apricot); margin-top: 14px; font-family: "Cormorant Garamond", serif; font-size: 1.3rem; font-style: italic; }
.lightbox button {
  position: absolute; border: 0; cursor: pointer; color: #fff; background: rgba(255,255,255,.12);
  width: 48px; height: 48px; border-radius: 50%; font-size: 1.8rem; line-height: 1;
  display: grid; place-items: center; transition: background .25s, transform .25s var(--ease);
}
.lightbox button:hover { background: var(--coral); transform: scale(1.08); }
.lb-close { top: 20px; right: 20px; }
.lb-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 20px; top: 50%; transform: translateY(-50%); }
.lb-prev:hover { transform: translateY(-50%) scale(1.08); }
.lb-next:hover { transform: translateY(-50%) scale(1.08); }

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
  .hero-inner > * { opacity: 1; transform: none; }
  .hero-slide { transform: none; }
}

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; gap: 4px;
    position: absolute; top: 66px; right: 16px; left: 16px;
    background: rgba(251,245,236,.98); color: var(--ink);
    padding: 14px; border-radius: 16px; box-shadow: var(--shadow-lift);
    animation: rise .35s var(--ease);
  }
  .nav-links.open a { display: block; }
  .menu-btn { display: flex; }
  .nav-cta { display: none; }
  .speed-grid, .split, .audience, .compare, .steps, .theme-grid, .why-grid, .trust, .prices { grid-template-columns: 1fr; }
  .problem-grid, .expect { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery figure { height: 200px; }
  .gallery .wide { grid-row: auto; grid-column: 1 / -1; height: 280px; }
  .theme-card { min-height: 220px; }
  .speed-photo, .split-photo { height: 320px; }
  .split .split-photo { order: -1; }
  .steps-line { display: none; }
  .step::before { margin-top: -46px; }
  .price-card.featured { transform: none; }
  .trust div { flex-direction: row; text-align: left; }
  section { padding: 64px 0; }
  .hero { min-height: 92vh; }
  .hero-inner { padding: 90px 40px 80px 24px; }
  .hero-dots { right: 14px; }
  .lb-prev, .lb-next { width: 40px; height: 40px; }
  .lb-prev { left: 8px; } .lb-next { right: 8px; }
}

/* ======================================================
   v4 additions: ribbon, photo stack, expanding strip,
   proof photo with chips, photo band, richer footer
   ====================================================== */

/* ---------- ribbon marquee ---------- */
.ribbon {
  background: linear-gradient(90deg, var(--coral), var(--wine), var(--indigo), var(--wine), var(--coral));
  background-size: 200% 100%;
  color: #fff; overflow: hidden; padding: 14px 0;
  font-size: 0.8rem; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600;
  animation: aurora 20s linear infinite alternate;
}
.ribbon-track { display: flex; align-items: center; gap: 28px; width: max-content; animation: marquee 34s linear infinite; }
.ribbon:hover .ribbon-track { animation-play-state: paused; }
.ribbon-track span { white-space: nowrap; }
.ribbon-track i { width: 7px; height: 7px; border-radius: 50%; background: var(--apricot); flex: 0 0 auto; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- fanned photo stack (What it is) ---------- */
.stack { position: relative; height: 480px; perspective: 1200px; }
.stack figure {
  position: absolute; margin: 0; left: 50%; top: 50%;
  width: 62%; aspect-ratio: 3 / 4; border-radius: 16px; overflow: hidden; cursor: zoom-in;
  box-shadow: 0 30px 70px rgba(59,21,48,.3);
  border: 6px solid #fff;
  transform: translate(-50%, -50%) rotate(var(--r, 0deg)) translateX(var(--x, 0));
  transition: transform .6s var(--ease), box-shadow .6s;
}
.stack figure img { width: 100%; height: 100%; object-fit: cover; }
.stack figure:nth-child(1) { --r: -12deg; --x: -16%; z-index: 1; }
.stack figure:nth-child(2) { --r: 0deg; --x: 0; z-index: 2; }
.stack figure:nth-child(3) { --r: 11deg; --x: 16%; z-index: 3; }
.stack:hover figure:nth-child(1) { --r: -18deg; --x: -42%; }
.stack:hover figure:nth-child(3) { --r: 17deg; --x: 42%; }
.stack:hover figure:nth-child(2) { transform: translate(-50%, -54%) scale(1.04); }
.stack figure:hover { z-index: 5; box-shadow: 0 40px 90px rgba(59,21,48,.4), 0 0 0 4px var(--coral); }
.stack-badge {
  position: absolute; left: 50%; bottom: 8px; transform: translateX(-50%); z-index: 6;
  background: linear-gradient(120deg, var(--coral), var(--wine)); color: #fff;
  padding: 10px 18px; border-radius: 999px; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.04em; white-space: nowrap;
  box-shadow: 0 14px 30px rgba(228,105,79,.4);
}

/* ---------- expanding strip (What you can create) ---------- */
.strip { display: flex; gap: 12px; height: 420px; margin-top: 34px; }
.strip figure {
  flex: 1; margin: 0; position: relative; border-radius: 16px; overflow: hidden; cursor: pointer; min-width: 0;
  box-shadow: var(--shadow);
  transition: flex .7s var(--ease), box-shadow .4s;
}
.strip figure.is-open { flex: 4; }
.strip figure img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease), filter .5s; filter: saturate(.85); }
.strip figure.is-open img { filter: none; transform: scale(1.03); }
.strip figure::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, color-mix(in srgb, var(--card-accent) 70%, #1c1420) 100%);
}
.strip figcaption {
  position: absolute; left: 18px; right: 18px; bottom: 18px; z-index: 2;
  font-family: "Cormorant Garamond", serif; font-size: 1.7rem; font-style: italic; color: #fff; line-height: 1.1;
  opacity: 0; transform: translateY(12px); transition: opacity .45s .15s, transform .45s .15s var(--ease);
  text-shadow: 0 6px 20px rgba(0,0,0,.4);
}
.strip figure.is-open figcaption { opacity: 1; transform: none; }
.strip figure:not(.is-open)::before {
  content: ""; position: absolute; left: 50%; bottom: 20px; z-index: 2; width: 10px; height: 10px; border-radius: 50%;
  background: var(--card-accent); transform: translateX(-50%); box-shadow: 0 0 0 4px rgba(255,255,255,.35);
}

/* ---------- proof photo with floating chips (AI models) ---------- */
.proof-photo { position: relative; border-radius: var(--radius); overflow: visible; height: 500px; cursor: zoom-in; }
.proof-photo img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-lift); }
.chip {
  position: absolute; display: flex; align-items: center; gap: 10px;
  background: rgba(255,253,249,.92); backdrop-filter: blur(10px);
  padding: 10px 16px 10px 12px; border-radius: 999px; font-weight: 600; font-size: 0.9rem; color: var(--plum);
  box-shadow: 0 16px 36px rgba(59,21,48,.2); white-space: nowrap;
  animation: floaty 6s ease-in-out infinite;
}
.chip i {
  width: 24px; height: 24px; border-radius: 50%; flex: 0 0 auto;
  background: var(--coral) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 12l5 5L19 7' fill='none' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/13px no-repeat;
}
.chip-1 { top: 36px; left: -28px; }
.chip-2 { top: 46%; right: -34px; animation-delay: -2s; }
.chip-2 i { background-color: var(--indigo-l); }
.chip-3 { bottom: 40px; left: 8%; animation-delay: -4s; }
.chip-3 i { background-color: var(--sage-d); }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

/* ---------- photo band (What couples can expect) ---------- */
.band-photo { color: var(--ivory); isolation: isolate; overflow: hidden; }
.band-photo-bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(100deg, rgba(31,16,48,.92) 0%, rgba(59,21,48,.72) 45%, rgba(42,37,89,.55) 100%),
    url("images/p71.jpg") center / cover no-repeat;
}
.band-photo h2, .band-photo p { color: #fff; }
.band-photo .eyebrow { color: var(--apricot); }
.expect-split { align-items: start; }
.band-photo .expect { display: grid; grid-template-columns: 1fr; gap: 10px; margin: 0; padding: 0; }
.band-photo .expect li {
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); color: #fff; backdrop-filter: blur(8px);
}
.band-photo .expect li:hover { background: rgba(255,255,255,.2); box-shadow: 0 14px 30px rgba(0,0,0,.25); }
.band-photo .expect li::before { background-color: var(--apricot); }
.pull-glass {
  background: rgba(255,255,255,.1); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,.22);
  color: #fff; box-shadow: none;
}
.pull-glass::before { background: linear-gradient(180deg, var(--apricot), var(--coral)); }

/* ---------- footer ---------- */
footer { padding: 56px 0 32px; position: relative; }
footer::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--coral), var(--apricot), var(--sage), var(--indigo-l), var(--wine));
}
.foot { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; align-items: start; }
.foot-brand p { color: rgba(251,245,236,.7); margin: 14px 0 0; max-width: 30em; }
.foot-brand .brand-name { color: var(--ivory); }
.foot-private { color: var(--apricot) !important; font-size: 0.82rem; letter-spacing: 0.06em; }
.foot-links { list-style: none; margin: 4px 0 0; padding: 0; display: grid; gap: 8px; }
.foot-links a { color: rgba(251,245,236,.8); border: 0; transition: color .2s, padding-left .25s var(--ease); }
.foot-links a:hover { color: var(--apricot); padding-left: 6px; }
.foot-cta { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; }
.foot-top { color: rgba(251,245,236,.6); font-size: 0.88rem; }

@media (max-width: 900px) {
  .stack { height: 380px; }
  .stack figure { width: 58%; }
  .strip { flex-direction: column; height: auto; }
  .strip figure { height: 90px; flex: none; }
  .strip figure.is-open { height: 300px; }
  .strip figure:not(.is-open)::before { display: none; }
  .strip figure:not(.is-open) figcaption { opacity: 1; transform: none; font-size: 1.15rem; bottom: 14px; }
  .proof-photo { height: 400px; }
  .chip { font-size: 0.8rem; }
  .chip-1 { left: 8px; } .chip-2 { right: 8px; }
  .foot { grid-template-columns: 1fr; gap: 28px; }
  .ribbon { font-size: 0.72rem; }
}

/* ---------- "Bring what matters" clickable tabs ---------- */
.matter-list li { cursor: pointer; user-select: none; padding-right: 44px; }
.matter-list li::after {
  content: ""; position: absolute; right: 12px; top: 50%; width: 22px; height: 22px;
  transform: translateY(-50%);
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4 8c0-1.1.9-2 2-2h2l1.2-1.6c.4-.5 1-.9 1.6-.9h2.4c.6 0 1.2.4 1.6.9L16 6h2a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2z' fill='none' stroke='%236b2d3c' stroke-width='1.8'/%3E%3Ccircle cx='12' cy='12' r='3.4' fill='none' stroke='%236b2d3c' stroke-width='1.8'/%3E%3C/svg%3E") center/contain no-repeat;
  opacity: .45; transition: opacity .25s, transform .3s var(--ease);
}
.matter-list li:hover::after { opacity: .9; }
.matter-list li.is-active {
  background: #fff; transform: translateX(6px);
  box-shadow: 0 14px 32px rgba(107,45,60,.16), inset 0 0 0 2px var(--coral);
  font-weight: 600; color: var(--plum);
}
.matter-list li.is-active::after { opacity: 1; transform: translateY(-50%) scale(1.1); }
#matterPhoto img, #locPhoto img { transition: opacity .28s ease, transform .28s var(--ease); }
#matterPhoto.is-swapping img, #locPhoto.is-swapping img { opacity: 0; transform: scale(1.03); }

/* ---------- pricing buttons + shared note ---------- */
.btn-price {
  width: 100%; margin-top: 18px; padding: 13px 20px;
  background: linear-gradient(120deg, var(--wine), var(--coral)); color: var(--ivory);
  font-size: 0.92rem;
}
.price-card.featured .btn-price { background: var(--ivory); color: var(--wine); }
.price-card.featured .btn-price:hover { box-shadow: 0 14px 30px rgba(0,0,0,.25); }
.plans-note { margin: 22px 0 0; color: var(--ink-2); }
.plans-note strong { color: var(--wine); }
.compare .old h3 small { font-size: 0.62em; font-weight: 400; color: var(--muted); }
.band-wine .why-grid { margin-top: 44px; }
.band-wine .pull { background: rgba(255,253,249,.1); color: var(--ivory); backdrop-filter: blur(8px); border: 1px solid rgba(244,177,104,.3); box-shadow: none; }
.band-wine .proof-photo { height: 460px; }

/* keep heads in frame on all crop-to-fill photos: bias the visible band upward */
.gallery img, .strip img, .theme-card img, .split-photo img,
.stack img, .proof-photo img, .speed-photo img { object-position: center 25%; }

/* ---------- sticky mobile CTA ---------- */
.mobile-cta {
  display: none;
  position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 48;
  text-align: center; text-decoration: none;
  padding: 14px 18px; border-radius: 999px;
  background: linear-gradient(120deg, var(--coral), var(--wine));
  color: #fff; font-weight: 600; letter-spacing: .03em;
  box-shadow: 0 14px 34px rgba(228,105,79,.45);
  transform: translateY(90px); transition: transform .35s var(--ease);
}
.mobile-cta.is-shown { transform: none; }
@media (max-width: 900px) {
  .mobile-cta { display: block; }
  .to-top { bottom: 76px; }
}

/* ---------- smaller hero images on mobile ---------- */
@media (max-width: 900px) {
  .hero-slide:nth-child(1) { background-image: url('images/p06-sm.jpg') !important; }
  .hero-slide:nth-child(2) { background-image: url('images/p03-sm.jpg') !important; }
  .hero-slide:nth-child(3) { background-image: url('images/p52-sm.jpg') !important; }
  .hero-slide:nth-child(4) { background-image: url('images/p37-sm.jpg') !important; }
  .hero-slide:nth-child(5) { background-image: url('images/p65-sm.jpg') !important; }
  .hero-slide:nth-child(6) { background-image: url('images/p27-sm.jpg') !important; }
  .hero-slide:nth-child(7) { background-image: url('images/p22-sm.jpg') !important; }
  .band-photo-bg { background-image: linear-gradient(100deg, rgba(31,16,48,.92) 0%, rgba(59,21,48,.72) 45%, rgba(42,37,89,.55) 100%), url('images/p71-sm.jpg') !important; background-size: cover !important; background-position: center !important; }
}

/* ---------- theme stats strip ---------- */
.stat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin: 28px 0 6px; }
.stat {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-s);
  padding: 18px 16px; text-align: center;
  transition: transform .3s var(--ease), box-shadow .3s, border-color .3s;
}
.stat b {
  display: block; font-family: "Cormorant Garamond", serif; font-weight: 600;
  font-size: 2.4rem; line-height: 1; color: var(--card-accent, var(--coral));
  font-variant-numeric: tabular-nums;
}
.stat > span:last-child { display: block; margin-top: 6px; font-size: 0.85rem; letter-spacing: .04em; color: var(--muted); text-transform: uppercase; }
.stat b .count { font-size: inherit; color: inherit; text-transform: none; }
.stat:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--card-accent, var(--coral)); }
@media (max-width: 900px) { .stat-row { grid-template-columns: 1fr 1fr; } }
