/* ═══════════════════════════════════════════════════════════
   Stella's Face Painting
   Design concept: a face painter's split-cake palette. Paint,
   brush strokes, scrapbook tiles, sticker chips. Pink leads.
   ═══════════════════════════════════════════════════════════ */

:root {
  /* Paint. Pink is the brand; the rest are real face-paint colours. */
  --pink:        #FF3E9A;   /* the brand pink: fills, highlights, decoration */
  --pink-cta:    #D81478;   /* anywhere white text sits on pink (4.9:1) */
  --pink-deep:   #C81678;   /* pink text on light backgrounds (5.2:1) */
  --pink-soft:   #FFD9EC;
  --pink-wash:   #FFEFF7;
  --yellow:      #FFC93C;
  --tangerine:   #FF7A3D;
  --teal:        #19BFB7;
  --violet:      #7B4BE0;

  /* Ink and paper. Never pure black, never pure white. */
  --ink:         #241826;
  --ink-70:      #55465C;
  --ink-45:      #7E7186;
  --paper:       #FFF8F3;
  --paper-2:     #FDF1E7;
  --line:        #EADCE4;

  --font-display: 'Baloo 2', 'Trebuchet MS', system-ui, sans-serif;
  --font-body:    'Nunito Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-hand:    'Caveat', 'Bradley Hand', 'Segoe Script', cursive;

  /* One spacing scale, used everywhere. */
  --s1: .5rem;  --s2: .875rem; --s3: 1.25rem; --s4: 2rem;
  --s5: 3rem;   --s6: 4.5rem;  --s7: 7rem;

  --r-sm: 10px; --r-md: 18px; --r-lg: 28px; --r-xl: 40px;
  --shadow:    0 2px 0 rgba(36,24,38,.09), 0 14px 30px -18px rgba(36,24,38,.42);
  --shadow-lg: 0 3px 0 rgba(36,24,38,.10), 0 30px 60px -30px rgba(36,24,38,.45);
  --wrap: 1180px;

  color-scheme: light;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 92px; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: clamp(1.02rem, .96rem + .3vw, 1.14rem);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Paper grain. Subtle: it should read as texture, not as noise. */
body::before {
  content: "";
  position: fixed; inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: .5;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.28'/%3E%3C/svg%3E");
}

img, svg { max-width: 100%; }
ul, ol { margin: 0; padding: 0; list-style: none; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -.015em;
  margin: 0 0 var(--s3);
  text-wrap: balance;
}
h1 { font-size: clamp(2.5rem, 1.5rem + 4.2vw, 4.3rem); }
h2 { font-size: clamp(1.95rem, 1.3rem + 2.6vw, 3rem); }
h3 { font-size: clamp(1.2rem, 1.05rem + .55vw, 1.45rem); font-weight: 700; }
p  { margin: 0 0 var(--s3); }
p:last-child { margin-bottom: 0; }

.handwrite {
  font-family: var(--font-hand);
  font-size: 1.5em;
  line-height: 1.25;
  color: var(--pink-deep);
}

.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }

.skip {
  position: absolute; left: -9999px;
  background: var(--ink); color: #fff;
  padding: .8rem 1.4rem; border-radius: 0 0 var(--r-sm) 0; z-index: 10000;
}
.skip:focus { left: 0; top: 0; }

:where(a, button, summary, details):focus-visible {
  outline: 3px solid var(--violet);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ── Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--font-display); font-weight: 700; font-size: 1.02rem;
  text-decoration: none; cursor: pointer;
  padding: .78rem 1.5rem; border-radius: 999px;
  border: 2.5px solid var(--ink);
  transition: transform .16s ease, box-shadow .16s ease, background-color .16s ease;
  box-shadow: 0 4px 0 var(--ink);
}
.btn:hover  { transform: translateY(-2px); box-shadow: 0 6px 0 var(--ink); }
.btn:active { transform: translateY(2px);  box-shadow: 0 1px 0 var(--ink); }
.btn .ic { width: 1.1em; height: 1.1em; flex: none; }

.btn-lg { padding: 1rem 1.9rem; font-size: 1.12rem; }
.btn-call  { background: var(--pink-cta); color: #fff; }
.btn-call:hover { background: var(--pink-deep); }
.btn-text  { background: var(--yellow); color: var(--ink); }
.btn-text:hover { background: #FFD866; }
.btn-ghost { background: transparent;   color: var(--ink); box-shadow: 0 4px 0 rgba(36,24,38,.22); }
.btn-ghost:hover { background: var(--pink-wash); box-shadow: 0 6px 0 rgba(36,24,38,.22); }
.btn-white { background: #fff; color: var(--pink-deep); }
.btn-outline-white { background: transparent; color: #fff; border-color: #fff; box-shadow: 0 4px 0 rgba(255,255,255,.55); }
.btn-outline-white:hover { background: rgba(255,255,255,.14); box-shadow: 0 6px 0 rgba(255,255,255,.55); }

/* ── Header ────────────────────────────────────────────── */
.site-head {
  position: sticky; top: 0; z-index: 900;
  background: rgba(255,248,243,.93);
  backdrop-filter: blur(10px);
  border-bottom: 2.5px solid var(--ink);
}
.head-inner { display: flex; align-items: center; gap: var(--s3); padding: .75rem 0; }

.brand { display: flex; align-items: center; gap: .7rem; text-decoration: none; color: var(--ink); }
.brand-dots { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; flex: none; }
.brand-dots i { width: 11px; height: 11px; border-radius: 50%; display: block; }
.brand-dots i:nth-child(1) { background: var(--pink); }
.brand-dots i:nth-child(2) { background: var(--yellow); }
.brand-dots i:nth-child(3) { background: var(--teal); }
.brand-dots i:nth-child(4) { background: var(--violet); }

.brand-name { font-family: var(--font-display); font-weight: 800; font-size: 1.3rem; line-height: 1; }
.brand-name em {
  display: block; font-style: normal; font-weight: 600;
  font-size: .62em; letter-spacing: .1em; text-transform: uppercase;
  color: var(--pink-deep); margin-top: 2px;
}

.nav { display: flex; gap: var(--s3); margin-left: auto; }
.nav a {
  font-family: var(--font-display); font-weight: 600; font-size: 1.02rem;
  color: var(--ink); text-decoration: none; padding: .3rem 0; position: relative;
}
.nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0;
  height: 4px; border-radius: 3px; background: var(--pink);
  transition: right .22s ease;
}
.nav a:hover::after { right: 0; }
.head-call { padding: .55rem 1.15rem; font-size: .96rem; }

@media (max-width: 900px) {
  .nav { display: none; }
  .head-call { margin-left: auto; }
}

/* ── Hero ──────────────────────────────────────────────── */
.hero { position: relative; padding: clamp(2.5rem, 5vw, var(--s6)) 0 0; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(60% 55% at 82% 18%, var(--pink-wash) 0%, transparent 62%),
    radial-gradient(48% 45% at 8% 72%, #FFF6E4 0%, transparent 60%);
}
.hero-grid {
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: var(--s5); align-items: center;
  padding-bottom: clamp(3rem, 7vw, 6rem);
}

.eyebrow {
  display: inline-flex; align-items: flex-start; gap: .55rem;
  font-family: var(--font-display); font-weight: 700;
  font-size: .84rem; letter-spacing: .13em; text-transform: uppercase;
  color: var(--pink-deep); margin-bottom: var(--s2);
}
.eyebrow .dot {
  width: 9px; height: 9px; border-radius: 50%; background: var(--pink);
  flex: none; margin-top: .42em;
}

/* Painted highlight behind key words. Hand-drawn, not a rectangle. */
.hl { position: relative; white-space: nowrap; }
.hl::before {
  content: ""; position: absolute; z-index: -1;
  left: -.14em; right: -.14em; top: .1em; bottom: .04em;
  border-radius: 42% 58% 46% 54% / 62% 38% 62% 38%;
  transform: rotate(-1.2deg);
}
.hl-pink::before   { background: var(--pink); opacity: .35; }
.hl-teal::before   { background: var(--teal); opacity: .38; }
.hl-yellow::before { background: var(--yellow); opacity: .55; }

.lede {
  font-size: clamp(1.1rem, 1rem + .5vw, 1.28rem);
  color: var(--ink-70); max-width: 34ch; margin-top: var(--s3);
}
.cta-row { display: flex; flex-wrap: wrap; gap: var(--s2); margin-top: var(--s4); }
.cta-centre { justify-content: center; }
.cta-note { margin-top: var(--s2); font-size: .95rem; color: var(--ink-45); max-width: 40ch; }

.hero-art { position: relative; }
.palette-svg { width: 100%; height: auto; display: block; overflow: visible; }
.palette { transform-origin: 222px 230px; animation: sway 9s ease-in-out infinite; }
.brush   { animation: dab 6s ease-in-out infinite; transform-origin: 60% 60%; }
@keyframes sway { 0%,100% { transform: rotate(-1.6deg); } 50% { transform: rotate(1.6deg); } }
@keyframes dab  { 0%,100% { transform: translate(0,0) rotate(0deg); } 50% { transform: translate(-8px,-10px) rotate(-5deg); } }
@media (prefers-reduced-motion: reduce) { .palette, .brush { animation: none; } }

/* Sticker chips, angled like they were slapped on */
.chip {
  position: absolute;
  background: #fff; color: var(--ink);
  font-family: var(--font-display); font-weight: 700; font-size: .88rem;
  padding: .48rem 1rem; border-radius: 999px;
  border: 2.5px solid var(--ink); box-shadow: 0 4px 0 var(--ink);
  white-space: nowrap;
}
.chip-1 { top: 4%;  left: -6%;  transform: rotate(-6deg); background: var(--yellow); }
.chip-2 { top: 46%; right: -8%; transform: rotate(5deg); }
.chip-3 { bottom: 6%; left: 2%;  transform: rotate(-3deg); background: var(--teal); color: var(--ink); }

.wave { display: block; width: 100%; height: clamp(40px, 6vw, 90px); }

@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; gap: var(--s4); }
  .hero-art { max-width: 440px; margin-inline: auto; width: 88%; }
  .lede { max-width: 46ch; }
  .chip-1 { left: -2%; } .chip-2 { right: -2%; }
}

/* ── The honest bit ────────────────────────────────────── */
.honest { background: var(--paper-2); padding: var(--s6) 0; }
.honest-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: var(--s5); align-items: center; }
.honest-lead h2 { max-width: 18ch; }
.honest-lead p { color: var(--ink-70); max-width: 44ch; }
.honest-lead .handwrite { color: var(--pink-deep); margin-top: var(--s3); }

.honest-facts { display: grid; gap: var(--s2); }
.honest-facts li {
  display: grid; grid-template-columns: auto 1fr; gap: var(--s3); align-items: center;
  background: #fff; border: 2.5px solid var(--ink); border-radius: var(--r-md);
  padding: var(--s3); box-shadow: 0 4px 0 var(--ink);
}
.honest-facts li:nth-child(1) { transform: rotate(-.8deg); }
.honest-facts li:nth-child(3) { transform: rotate(.7deg); }
.honest-facts .fig {
  font-family: var(--font-display); font-weight: 800; line-height: .95;
  font-size: 1.85rem; color: var(--pink-deep); min-width: 3.4em; text-align: center;
}
.honest-facts li:nth-child(2) .fig { color: var(--teal); }
.honest-facts li:nth-child(3) .fig { color: var(--violet); font-size: 1.25rem; }
.honest-facts .lbl { font-size: .97rem; color: var(--ink-70); line-height: 1.45; }

@media (max-width: 900px) { .honest-grid { grid-template-columns: 1fr; gap: var(--s4); } }

/* ── Section headers ───────────────────────────────────── */
.sec-head { max-width: 58ch; margin: 0 auto var(--s5); text-align: center; }
.sec-head-left { margin-inline: 0; text-align: left; }
.sec-sub { color: var(--ink-70); font-size: 1.06rem; }

/* ── Designs board ─────────────────────────────────────── */
.designs { padding: var(--s6) 0; }
.board {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s3);
}
.tile {
  margin: 0; position: relative;
  background: var(--bg, var(--pink-wash));
  border: 2.5px solid var(--ink); border-radius: var(--r-md);
  box-shadow: 0 4px 0 var(--ink);
  padding: var(--s3) var(--s3) var(--s2);
  display: flex; flex-direction: column; gap: var(--s2);
  transition: transform .2s ease, box-shadow .2s ease;
}
.tile { min-height: 300px; }
.tile svg { width: 100%; height: auto; flex: 1; min-height: 0; max-height: 215px; }
.tile figcaption {
  font-family: var(--font-display); font-weight: 700; font-size: 1.06rem; line-height: 1.15;
}
.tile figcaption small {
  display: block; font-family: var(--font-body); font-weight: 400;
  font-size: .84rem; color: var(--ink-70); margin-top: .2rem; line-height: 1.35;
}
/* Pinned-to-a-corkboard angles. Deliberately uneven.
   Row rhythm is 2+1+1 / 1+1+2 / 1+1+note, so widths vary without leaving holes. */
.t-a { transform: rotate(-1.4deg); }
.t-b { transform: rotate(1deg); }
.t-c { transform: rotate(-.6deg); }
.t-d { transform: rotate(1.6deg); }
.t-e { transform: rotate(-1deg); }
.t-f { transform: rotate(.8deg); }
.t-g { transform: rotate(-1.7deg); }
.t-h { transform: rotate(1.2deg); }

/* The two feature tiles run wide, with the design beside its caption. */
.t-a, .t-f { grid-column: span 2; flex-direction: row; align-items: center; gap: var(--s4); }
.t-a svg, .t-f svg { width: 44%; flex: none; max-height: 250px; }
.t-a figcaption, .t-f figcaption { font-size: 1.5rem; }
.t-a figcaption small, .t-f figcaption small { font-size: .95rem; margin-top: .45rem; }

.tile:hover { transform: rotate(0deg) translateY(-5px); box-shadow: 0 9px 0 var(--ink); z-index: 2; }

/* The note sits in the board as the last two cells, so the grid closes cleanly. */
.board-note {
  grid-column: span 2; margin: 0;
  display: flex; align-items: center; gap: .9rem;
  font-size: .96rem; color: var(--ink-70); line-height: 1.5;
  background: #fff; border: 2.5px dashed var(--pink-soft); border-radius: var(--r-md);
  padding: var(--s3); transform: rotate(.5deg);
}
.board-note .pin {
  width: 16px; height: 16px; border-radius: 50%; background: var(--pink);
  box-shadow: 0 0 0 5px var(--pink-soft); flex: none;
}

@media (max-width: 1000px) {
  .board { grid-template-columns: repeat(2, 1fr); }
  .t-a, .t-f, .board-note { grid-column: span 2; }
}
@media (max-width: 620px) {
  .board { grid-template-columns: 1fr; }
  .t-a, .t-f, .board-note { grid-column: auto; }
  .t-a, .t-f { flex-direction: column; gap: var(--s2); }
  .t-a svg, .t-f svg { width: 100%; max-height: 215px; }
  .t-a figcaption, .t-f figcaption { font-size: 1.06rem; }
  .tile { transform: none !important; }
}

/* ── Pricing ───────────────────────────────────────────── */
.pricing { background: var(--paper-2); padding: var(--s6) 0; }
.pots {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: var(--s3); align-items: start;
}
.pot {
  position: relative; background: #fff;
  border: 2.5px solid var(--ink); border-radius: var(--r-lg);
  box-shadow: 0 5px 0 var(--ink);
  padding: var(--s4) var(--s3) var(--s3);
  display: flex; flex-direction: column; gap: var(--s2);
}
/* The lid: a stripe of paint across the top of the pot */
.pot-lid {
  position: absolute; top: -2.5px; left: 12%; right: 12%; height: 12px;
  background: var(--lid); border: 2.5px solid var(--ink); border-top: 0;
  border-radius: 0 0 14px 14px;
}
.pot h3 { margin: 0; }
.pot-price { margin: 0; font-family: var(--font-display); font-weight: 800; line-height: 1; }
.pot-price .dollars { font-size: 3.1rem; color: var(--pink-deep); }
.pot-price .per { font-size: 1.1rem; color: var(--ink-45); font-weight: 600; }
.pot-for {
  margin: 0; font-family: var(--font-display); font-weight: 600;
  font-size: 1rem; color: var(--ink-70);
  border-bottom: 2px dashed var(--line); padding-bottom: var(--s2);
}
.pot ul { display: grid; gap: .55rem; margin: 0; }
.pot ul li { position: relative; padding-left: 1.7rem; font-size: .98rem; color: var(--ink-70); }
.pot ul li::before {
  content: ""; position: absolute; left: 0; top: .48em;
  width: 11px; height: 11px; border-radius: 50%;
  background: var(--teal); box-shadow: 0 0 0 3px #E2F8F6;
}
.pot .btn { margin-top: auto; align-self: flex-start; }

.pot-feature {
  background: var(--pink-wash);
  transform: translateY(-14px) rotate(-.7deg);
  box-shadow: 0 8px 0 var(--ink);
}
.pot-feature .pot-price .dollars { font-size: 3.6rem; }
.pot-flag {
  position: absolute; top: -18px; right: -10px;
  background: var(--yellow); color: var(--ink);
  font-family: var(--font-display); font-weight: 700; font-size: .82rem;
  padding: .35rem .9rem; border-radius: 999px;
  border: 2.5px solid var(--ink); box-shadow: 0 3px 0 var(--ink);
  transform: rotate(5deg);
}
.pot-note { margin: 0; font-size: 1.35rem; align-self: flex-end; transform: rotate(-4deg); }

.travel {
  margin: var(--s5) auto 0; max-width: 66ch; text-align: center;
  font-size: .98rem; color: var(--ink-70);
  background: #fff; border: 2.5px solid var(--ink); border-radius: var(--r-md);
  padding: var(--s3); box-shadow: 0 4px 0 var(--ink);
}
.travel strong { color: var(--ink); font-family: var(--font-display); }

@media (max-width: 900px) {
  .pots { grid-template-columns: 1fr; gap: var(--s4); }
  .pot-feature { transform: none; }
  .pot-flag { right: 8px; }
}

/* ── How it works ──────────────────────────────────────── */
.how { padding: var(--s6) 0; }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s3); position: relative; }
/* The brushstroke that runs behind the steps */
.steps::before {
  content: ""; position: absolute; left: 6%; right: 6%; top: 30px; height: 10px;
  background: var(--pink-soft); border-radius: 999px;
  transform: rotate(-.6deg); z-index: 0;
}
.steps li { position: relative; z-index: 1; padding-top: 0; }
.step-n {
  display: grid; place-items: center;
  width: 62px; height: 62px; border-radius: 50%;
  background: var(--pink); color: #fff;
  font-family: var(--font-display); font-weight: 800; font-size: 1.7rem;
  border: 2.5px solid var(--ink); box-shadow: 0 4px 0 var(--ink);
  margin-bottom: var(--s3);
}
.steps li:nth-child(2) .step-n { background: var(--yellow); color: var(--ink); }
.steps li:nth-child(3) .step-n { background: var(--teal); color: var(--ink); }
.steps li:nth-child(4) .step-n { background: var(--violet); }
.steps h3 { margin-bottom: .5rem; }
.steps p { color: var(--ink-70); font-size: .98rem; }
.step-time {
  display: inline-block; margin-top: var(--s2);
  font-family: var(--font-hand); font-size: 1.25rem; color: var(--pink-deep);
}
@media (max-width: 860px) {
  .steps { grid-template-columns: 1fr; gap: var(--s4); }
  .steps::before { left: 30px; right: auto; top: 10px; bottom: 10px; width: 10px; height: auto; }
  .steps li { padding-left: 84px; }
  .step-n { position: absolute; left: 0; top: 0; margin: 0; }
}

/* ── About ─────────────────────────────────────────────── */
.about { background: var(--paper-2); padding: var(--s6) 0; }
.about-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: var(--s5); align-items: center; }

.about-photo { position: relative; }
.photo-frame {
  background: #fff; border: 2.5px solid var(--ink); border-radius: var(--r-sm);
  padding: 14px 14px 52px; box-shadow: var(--shadow-lg);
  transform: rotate(-2.2deg);
}
.photo-inner {
  aspect-ratio: 4/5; background: var(--pink-wash);
  border-radius: 4px; display: grid; place-items: center; gap: var(--s2);
  padding: var(--s3);
  --c1: #FF6FB5; --c2: #FFC93C; --c3: #7B4BE0;
}
.photo-inner svg { width: 55%; height: auto; }
.photo-inner span {
  font-family: var(--font-hand); font-size: 1.45rem; line-height: 1.2;
  color: var(--pink-deep); text-align: center;
}
.tape {
  position: absolute; width: 90px; height: 30px;
  background: rgba(255,201,60,.55); border: 1px solid rgba(36,24,38,.10);
}
.tape-l { top: -12px; left: 4%;  transform: rotate(-8deg); }
.tape-r { bottom: 18px; right: 2%; transform: rotate(6deg); }

.about-copy p { color: var(--ink-70); max-width: 52ch; }
.about-copy .signoff { font-size: 2rem; margin-top: var(--s3); }

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: var(--s5); }
  .about-photo { max-width: 320px; margin-inline: auto; }
}

/* ── Service area ──────────────────────────────────────── */
.area { padding: var(--s6) 0; }
.towns { display: flex; flex-wrap: wrap; gap: var(--s2); justify-content: center; }
.towns li {
  font-family: var(--font-display); font-weight: 700; font-size: 1.05rem;
  background: #fff; border: 2.5px solid var(--ink); border-radius: 999px;
  padding: .55rem 1.35rem; box-shadow: 0 4px 0 var(--ink);
}
.towns li:nth-child(3n)   { transform: rotate(-1.6deg); }
.towns li:nth-child(3n+1) { transform: rotate(1.2deg); }
.towns .home { background: var(--pink-cta); color: #fff; }
.towns .more {
  background: transparent; border-style: dashed; box-shadow: none;
  font-family: var(--font-hand); font-size: 1.35rem; color: var(--pink-deep); font-weight: 600;
}

/* ── FAQ ───────────────────────────────────────────────── */
.faq { background: var(--paper-2); padding: var(--s6) 0; }
.faq-wrap { display: grid; grid-template-columns: .8fr 1.2fr; gap: var(--s5); align-items: start; }
.faq .sec-head { margin-bottom: 0; position: sticky; top: 110px; }

.faq-list { display: grid; gap: var(--s2); }
.faq-list details {
  background: #fff; border: 2.5px solid var(--ink); border-radius: var(--r-md);
  box-shadow: 0 4px 0 var(--ink); overflow: hidden;
}
.faq-list summary {
  cursor: pointer; list-style: none;
  font-family: var(--font-display); font-weight: 700; font-size: 1.1rem;
  padding: var(--s3); padding-right: 3.4rem; position: relative;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: ""; position: absolute; right: var(--s3); top: 50%;
  width: 26px; height: 26px; margin-top: -13px;
  border-radius: 50%;
  transition: transform .2s ease, background-color .2s ease;
  /* plus sign drawn as two bars over the disc */
  background-color: var(--pink);
  background-image: linear-gradient(#fff, #fff), linear-gradient(#fff, #fff);
  background-size: 13px 3px, 3px 13px;
  background-position: center, center;
  background-repeat: no-repeat;
}
.faq-list details[open] summary::after { transform: rotate(135deg); background-color: var(--violet); }
.faq-list details p {
  padding: 0 var(--s3) var(--s3);
  color: var(--ink-70); font-size: .99rem; max-width: 62ch;
}
@media (max-width: 900px) {
  .faq-wrap { grid-template-columns: 1fr; gap: var(--s4); }
  .faq .sec-head { position: static; }
}

/* ── Final CTA ─────────────────────────────────────────── */
.final {
  background: var(--pink-cta);
  border-top: 3px solid var(--ink); border-bottom: 3px solid var(--ink);
  padding: var(--s6) 0; color: #fff; position: relative; overflow: hidden;
}
.final::before {
  content: ""; position: absolute; inset: 0; opacity: .16;
  background:
    radial-gradient(circle at 12% 22%, var(--yellow) 0 60px, transparent 61px),
    radial-gradient(circle at 88% 30%, var(--teal) 0 44px, transparent 45px),
    radial-gradient(circle at 76% 84%, var(--yellow) 0 34px, transparent 35px),
    radial-gradient(circle at 22% 82%, var(--violet) 0 52px, transparent 53px);
}
.final-inner { position: relative; text-align: center; max-width: 58ch; }
.final h2 { color: #fff; }
.final p { color: #fff; }

/* ── Footer ────────────────────────────────────────────── */
.site-foot { background: var(--ink); color: #EFE6EE; padding: var(--s5) 0 var(--s3); }
.foot-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: var(--s4); }
.foot-brand { color: #fff; font-size: 1.45rem; margin-bottom: var(--s2); }
.foot-brand em { color: var(--pink); }
.foot-blurb { color: rgba(239,230,238,.66); font-size: .95rem; max-width: 34ch; }
.site-foot h3 { color: #fff; font-size: 1.02rem; margin-bottom: var(--s2); }
.foot-links { display: grid; gap: .5rem; }
.foot-links a { color: rgba(239,230,238,.78); text-decoration: none; font-size: .96rem; }
.foot-links a:hover { color: var(--pink); text-decoration: underline; }

.foot-base {
  display: flex; justify-content: space-between; align-items: center; gap: var(--s3);
  border-top: 1px solid rgba(255,255,255,.12);
  margin-top: var(--s4); padding-top: var(--s3);
  font-size: .88rem; color: rgba(239,230,238,.5);
}
.foot-base p { margin: 0; }
.foot-paint { display: flex; gap: 7px; }
.foot-paint i { width: 15px; height: 15px; border-radius: 50%; display: block; }
.foot-paint i:nth-child(1) { background: var(--pink); }
.foot-paint i:nth-child(2) { background: var(--yellow); }
.foot-paint i:nth-child(3) { background: var(--teal); }
.foot-paint i:nth-child(4) { background: var(--violet); }
.foot-paint i:nth-child(5) { background: var(--tangerine); }

@media (max-width: 760px) {
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .foot-grid > :first-child { grid-column: 1 / -1; }
  .foot-base { flex-direction: column-reverse; text-align: center; }
}

/* ── Scroll reveal ─────────────────────────────────────── */
.rise { opacity: 0; transform: translateY(22px); }
.rise.in { opacity: 1; transform: none; transition: opacity .55s ease, transform .55s cubic-bezier(.2,.7,.3,1); }
/* Tiles keep their pinned angle once revealed */
.t-a.rise.in { transform: rotate(-1.4deg); } .t-b.rise.in { transform: rotate(1deg); }
.t-c.rise.in { transform: rotate(-.6deg); }  .t-d.rise.in { transform: rotate(1.6deg); }
.t-e.rise.in { transform: rotate(-1deg); }   .t-f.rise.in { transform: rotate(.8deg); }
.t-g.rise.in { transform: rotate(-1.7deg); } .t-h.rise.in { transform: rotate(1.2deg); }
.pot-feature.rise.in { transform: translateY(-14px) rotate(-.7deg); }
.honest-facts li:nth-child(1).rise.in { transform: rotate(-.8deg); }
.honest-facts li:nth-child(3).rise.in { transform: rotate(.7deg); }

@media (max-width: 900px) { .pot-feature.rise.in { transform: none; } }
@media (max-width: 560px) { .t-a.rise.in, .t-b.rise.in, .t-c.rise.in, .t-d.rise.in,
  .t-e.rise.in, .t-f.rise.in, .t-g.rise.in, .t-h.rise.in { transform: none; } }

@media (prefers-reduced-motion: reduce) {
  .rise { opacity: 1; transform: none !important; }
  .btn, .tile { transition: none; }
}
