/* ============================================================
   Sweet Sammye's Chocolate Covered Treats — design system
   Palette inspired by the actual product: cocoa, blush, cream,
   rose-gold. Playful + sweet but anchored in the brand.
============================================================ */

:root {
  /* Fluid type scale */
  --text-xs: clamp(0.75rem, 0.7rem + 0.2vw, 0.85rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.3vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.3vw, 1.125rem);
  --text-lg: clamp(1.15rem, 1.05rem + 0.4vw, 1.35rem);
  --text-xl: clamp(1.5rem, 1.3rem + 0.9vw, 2rem);
  --text-2xl: clamp(2rem, 1.6rem + 2vw, 3rem);
  --text-3xl: clamp(2.5rem, 1.8rem + 3.5vw, 4.5rem);
  --text-hero: clamp(3rem, 2rem + 5vw, 6rem);

  /* Spacing */
  --space-1: 4px; --space-2: 8px; --space-3: 12px; --space-4: 16px;
  --space-5: 20px; --space-6: 24px; --space-8: 32px; --space-10: 40px;
  --space-12: 48px; --space-16: 64px; --space-20: 80px; --space-24: 96px;
  --space-32: 128px;

  /* Brand palette — pulled from the logo: dusty blue + rose gold + warm white
     Decorative tones (rose, mid-blue, mocha) are kept lighter for logo + UI
     accents. Text-grade tones (rose-text, cocoa-2, mocha-text) are darkened
     to hit WCAG AA 4.5:1 on cream/white backgrounds. */
  --color-cream:      #FBF9F7;   /* page background — soft warm white */
  --color-cream-2:    #F2E9E3;   /* section surface — blush cream */
  --color-blush:      #F2E4DF;   /* soft blush accent */
  --color-blush-2:    #E5D2CB;   /* deeper blush */
  --color-rose:       #C99383;   /* rose gold — decorative only (logo, dividers) */
  --color-rose-d:     #9B6B5F;   /* rose for text + filled buttons — AA on cream/white */
  --color-rose-dd:    #7E5347;   /* hover / active rose */
  --color-cocoa:      #3E516A;   /* deep dusty blue — headings */
  --color-cocoa-2:    #4A6986;   /* mid dusty blue — body links + nav (AA on cream) */
  --color-cocoa-deco: #5B7A9A;   /* decorative dusty-blue tint (logo, large script) */
  --color-mocha:      #5A7590;   /* muted slate-blue body text — AA on white (4.6:1) */
  --color-mocha-deco: #8298AE;   /* decorative muted slate */
  --color-gold:       #B07D6C;   /* copper accent for details */
  --color-ink:        #2C3A4D;
  --color-white:      #FFFFFF;
  --color-border:     rgba(74, 105, 134, 0.22);
  --color-shadow:     rgba(62, 81, 106, 0.12);

  /* Semantic aliases used in components */
  --color-bg:       var(--color-cream);
  --color-surface:  var(--color-white);
  --color-text:     #4C5B6F;
  --color-heading:  var(--color-cocoa);
  --color-muted:    var(--color-mocha);
  --color-accent:   var(--color-rose);

  --radius-sm: 8px; --radius-md: 14px; --radius-lg: 22px; --radius-pill: 999px;
  --shadow-sm: 0 1px 2px var(--color-shadow);
  --shadow-md: 0 8px 24px -8px rgba(62, 81, 106, 0.18);
  --shadow-lg: 0 20px 50px -12px rgba(62, 81, 106, 0.22);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);

  --font-display: 'Allura', 'Great Vibes', cursive;            /* logo-style flowing script */
  --font-script:  'Allura', 'Great Vibes', cursive;            /* same script for emphasis */
  --font-serif:   'Cormorant Garamond', 'Playfair Display', Georgia, serif; /* elegant serif headings */
  --font-body:    'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;

  --container: min(1200px, 92vw);
  --container-narrow: min(840px, 92vw);
}

html, body {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: var(--text-base);
}

h1, h2, h3, h4 { color: var(--color-heading); font-family: var(--font-serif); font-weight: 500; letter-spacing: -0.005em; }
h1 { font-size: var(--text-3xl); font-weight: 500; }
h2 { font-size: var(--text-2xl); font-weight: 500; }
h3 { font-size: var(--text-xl); font-weight: 600; }
h4 { font-size: var(--text-lg); font-weight: 600; }

.display { font-family: var(--font-display); font-weight: 400; letter-spacing: 0; line-height: 1; }
.script  { font-family: var(--font-script); font-weight: 400; line-height: 1; }

p { color: var(--color-text); }
a { color: var(--color-rose-d); text-decoration: none; transition: color .25s var(--ease); }
a:hover { color: var(--color-rose-dd); }

/* ---------- Layout containers ---------- */
.container { width: var(--container); margin-inline: auto; }
.container-narrow { width: var(--container-narrow); margin-inline: auto; }
.section { padding-block: clamp(var(--space-16), 8vw, var(--space-32)); }
.section-tight { padding-block: clamp(var(--space-12), 6vw, var(--space-20)); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 249, 247, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: var(--space-4) 0;
  width: var(--container); margin-inline: auto;
}
.nav__brand {
  display: flex; align-items: center; gap: var(--space-3);
  color: var(--color-cocoa); font-weight: 700; font-size: var(--text-lg);
}
.nav__brand img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.nav__brand-text { display: flex; flex-direction: column; line-height: 1; }
.nav__brand-name { font-family: var(--font-display); font-size: 1.85rem; letter-spacing: 0.5px; line-height: 0.9; }
.nav__brand-name .brand-sweet { color: var(--color-cocoa-2); }
/* Large script wordmark — 24px+ bold passes WCAG large-text 3:1 with #C99383,
   but we bump slightly darker for safety while keeping the rose-gold feel */
.nav__brand-name .brand-sammyes { color: var(--color-rose-d); margin-left: 0.15em; }
.nav__brand-sub { font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--color-cocoa-2); margin-top: 4px; font-weight: 500; }

.nav__list { list-style: none; display: flex; gap: var(--space-6); align-items: center; }
.nav__list a {
  color: var(--color-cocoa-2); font-size: var(--text-sm); font-weight: 600;
  padding: var(--space-2) var(--space-3); border-radius: var(--radius-pill);
}
.nav__list a:hover, .nav__list a[aria-current="page"] {
  color: var(--color-rose-dd); background: var(--color-blush);
}
/* When the CTA link is the active page, ensure its text remains AA on blush */
.nav__cta[aria-current="page"] {
  background: var(--color-rose-d) !important;
  color: var(--color-white) !important;
}
.nav__cta {
  background: var(--color-rose-d); color: var(--color-white) !important;
  padding: var(--space-3) var(--space-5) !important; font-weight: 700;
}
.nav__cta:hover { background: var(--color-rose-dd) !important; color: var(--color-white) !important; }

.nav__toggle { display: none; }

@media (max-width: 820px) {
  .nav__list { display: none; }
  .nav__list--open {
    display: flex; flex-direction: column; position: absolute;
    top: 100%; left: 0; right: 0; background: var(--color-cream);
    border-bottom: 1px solid var(--color-border);
    padding: var(--space-4) var(--space-6); gap: var(--space-2);
    box-shadow: var(--shadow-md);
  }
  .nav__list--open li { width: 100%; }
  .nav__list--open a { display: block; width: 100%; }
  .nav__toggle {
    display: flex; align-items: center; justify-content: center;
    width: 44px; height: 44px; border-radius: 8px;
    background: var(--color-blush); color: var(--color-cocoa);
  }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--space-2);
  padding: var(--space-4) var(--space-6); border-radius: var(--radius-pill);
  font-weight: 700; font-size: var(--text-sm); letter-spacing: 0.02em;
  transition: transform .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease);
  min-height: 48px; min-width: 48px;
}
.btn--primary { background: var(--color-rose-d); color: var(--color-white); box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--color-rose-dd); color: var(--color-white); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--ghost { background: transparent; color: var(--color-cocoa); border: 2px solid var(--color-cocoa); }
.btn--ghost:hover { background: var(--color-cocoa); color: var(--color-cream); }
.btn--block { width: 100%; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding-block: clamp(var(--space-16), 10vw, var(--space-32));
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 20%, var(--color-blush) 0%, transparent 45%),
    radial-gradient(circle at 85% 75%, #E1E8F0 0%, transparent 50%),
    var(--color-cream);
}
.hero__sprinkle {
  position: absolute; pointer-events: none; opacity: 0.7;
}
.hero__grid {
  width: var(--container); margin-inline: auto;
  display: grid; grid-template-columns: 1.1fr 1fr; gap: var(--space-12);
  align-items: center;
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: var(--space-2);
  font-size: var(--text-sm); font-weight: 700; color: var(--color-rose-dd);
  text-transform: uppercase; letter-spacing: 0.22em;
  background: var(--color-blush); padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-pill);
  margin-bottom: var(--space-5);
}
.hero__title {
  font-size: var(--text-hero);
  color: var(--color-cocoa);
  line-height: 0.98;
  margin-bottom: var(--space-5);
  letter-spacing: -0.02em;
}
.hero__title .hl {
  font-family: var(--font-display);
  color: var(--color-rose);
  font-weight: 400;
  display: inline-block;
  font-size: 1.25em;
  line-height: 0.9;
}
.hero__lead {
  font-size: var(--text-lg); color: var(--color-cocoa-2);
  max-width: 50ch; margin-bottom: var(--space-8);
}
.hero__cta { display: flex; gap: var(--space-3); flex-wrap: wrap; }
.hero__media {
  position: relative;
  transform: rotate(2deg);
}
.hero__media-frame {
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__badge {
  position: absolute; bottom: -20px; left: -28px;
  background: var(--color-cocoa); color: var(--color-cream);
  padding: var(--space-4) var(--space-6); border-radius: var(--radius-md);
  font-family: var(--font-display); font-size: 1.5rem; line-height: 1;
  transform: rotate(-4deg);
  box-shadow: var(--shadow-md);
  border: 3px solid var(--color-gold);
  z-index: 2;
}

@media (max-width: 820px) {
  .hero__grid { grid-template-columns: 1fr; gap: var(--space-10); }
  .hero__media { transform: rotate(0); max-width: 480px; margin: 0 auto; }
}

/* ---------- Section headings ---------- */
.section__eyebrow {
  display: block; font-size: var(--text-sm); font-weight: 700;
  color: var(--color-rose-dd); text-transform: uppercase; letter-spacing: 0.25em;
  margin-bottom: var(--space-3);
}
.section__title { font-size: var(--text-2xl); margin-bottom: var(--space-4); color: var(--color-cocoa); }
.section__title .hl { font-family: var(--font-display); color: var(--color-rose); font-weight: 400; font-size: 1.2em; line-height: 0.9; }
.section__lead { font-size: var(--text-lg); color: var(--color-cocoa-2); max-width: 60ch; }
.section__head { text-align: center; margin-bottom: var(--space-12); }
.section__head .section__lead { margin-inline: auto; }

/* ---------- Treat cards (featured grid) ---------- */
.treats-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-6);
}
.treat-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  display: flex; flex-direction: column;
}
.treat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.treat-card__img { aspect-ratio: 1/1; overflow: hidden; background: var(--color-cream-2); }
.treat-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.treat-card:hover .treat-card__img img { transform: scale(1.05); }
.treat-card__body { padding: var(--space-5) var(--space-6) var(--space-6); }
.treat-card__name { font-size: var(--text-lg); color: var(--color-cocoa); margin-bottom: var(--space-2); font-weight: 600; font-family: var(--font-serif); }
.treat-card__price { color: var(--color-rose-d); font-weight: 700; font-size: var(--text-base); margin-bottom: var(--space-2); }
.treat-card__desc { font-size: var(--text-sm); color: var(--color-mocha); }

/* ---------- Party packages ---------- */
.packages {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-6);
}
.package {
  background: var(--color-white);
  padding: var(--space-8);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  position: relative;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.package:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.package--featured { background: var(--color-cocoa); color: var(--color-cream); border-color: var(--color-cocoa); }
.package--featured .package__name { color: var(--color-blush); }
.package--featured .package__price,
.package--featured .package__count,
.package--featured .package__list li { color: var(--color-cream); }
.package--featured .package__list li::before { background: var(--color-rose); }
.package__tag {
  position: absolute; top: -14px; right: var(--space-6);
  background: var(--color-rose); color: var(--color-white);
  padding: var(--space-2) var(--space-4); border-radius: var(--radius-pill);
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
}
.package__name { font-family: var(--font-display); font-size: 2.6rem; color: var(--color-cocoa); margin-bottom: var(--space-2); line-height: 1; font-weight: 400; }
.package__price { color: var(--color-rose-d); font-size: var(--text-xl); font-weight: 700; margin-bottom: var(--space-2); }
.package__count { color: var(--color-mocha); font-size: var(--text-sm); margin-bottom: var(--space-6); }
.package__list { list-style: none; display: flex; flex-direction: column; gap: var(--space-3); margin-bottom: var(--space-6); flex: 1; }
.package__list li { padding-left: var(--space-6); position: relative; font-size: var(--text-base); color: var(--color-cocoa-2); }
.package__list li::before {
  content: ''; position: absolute; left: 0; top: 0.55em;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--color-rose);
}

/* ---------- Gallery ---------- */
.gallery {
  display: grid; grid-template-columns: repeat(12, 1fr); gap: var(--space-3);
}
.gallery figure {
  border-radius: var(--radius-md); overflow: hidden; background: var(--color-cream-2);
  position: relative;
}
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.gallery figure:hover img { transform: scale(1.04); }
.gallery .g1 { grid-column: span 6; aspect-ratio: 4/3; }
.gallery .g2 { grid-column: span 6; aspect-ratio: 4/3; }
.gallery .g3 { grid-column: span 4; aspect-ratio: 1/1; }
.gallery .g4 { grid-column: span 4; aspect-ratio: 1/1; }
.gallery .g5 { grid-column: span 4; aspect-ratio: 1/1; }
.gallery .g6 { grid-column: span 6; aspect-ratio: 4/3; }
.gallery .g7 { grid-column: span 6; aspect-ratio: 4/3; }
@media (max-width: 720px) {
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery .g1, .gallery .g2, .gallery .g3, .gallery .g4, .gallery .g5, .gallery .g6, .gallery .g7
    { grid-column: span 1; aspect-ratio: 1/1; }
}

/* ---------- About strip ---------- */
.about {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: var(--space-12);
  align-items: center;
  background: var(--color-cream-2);
  border-radius: var(--radius-lg);
  padding: clamp(var(--space-8), 5vw, var(--space-16));
}
.about__img {
  border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 4/5; box-shadow: var(--shadow-md);
}
.about__img img { width: 100%; height: 100%; object-fit: cover; }
.about__quote {
  border-left: 3px solid var(--color-rose);
  padding-left: var(--space-5);
  font-family: var(--font-serif); font-style: italic; font-size: 1.4rem; line-height: 1.4;
  color: var(--color-cocoa); margin-top: var(--space-6); font-weight: 400;
}
@media (max-width: 820px) { .about { grid-template-columns: 1fr; } }

/* ---------- CTA banner ---------- */
.cta-banner {
  background:
    radial-gradient(circle at 20% 30%, rgba(201, 147, 131, 0.45) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(176, 125, 108, 0.30) 0%, transparent 50%),
    var(--color-cocoa);
  color: var(--color-cream);
  border-radius: var(--radius-lg);
  padding: clamp(var(--space-12), 8vw, var(--space-20));
  text-align: center;
}
.cta-banner h2 { color: var(--color-cream); }
.cta-banner p  { color: rgba(251, 249, 247, 0.85); max-width: 60ch; margin: var(--space-4) auto var(--space-8); }
.cta-banner .btn--primary { background: var(--color-white); color: var(--color-cocoa); }
.cta-banner .btn--primary:hover { background: var(--color-blush); color: var(--color-cocoa); }
.cta-banner .section__eyebrow { color: var(--color-blush) !important; }

/* ---------- Menu page tables ---------- */
.menu-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-6);
}
.menu-card {
  background: var(--color-white); padding: var(--space-6) var(--space-8);
  border-radius: var(--radius-lg); border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}
.menu-card h3 { color: var(--color-cocoa); margin-bottom: var(--space-2); }
.menu-card__price {
  color: var(--color-rose-d); font-weight: 700; font-size: var(--text-base);
  margin-bottom: var(--space-4);
}
.menu-card ul { list-style: none; display: flex; flex-direction: column; gap: var(--space-2); }
.menu-card li {
  font-size: var(--text-sm); color: var(--color-cocoa-2);
  padding: var(--space-2) 0; border-bottom: 1px dashed var(--color-border);
}
.menu-card li:last-child { border-bottom: 0; }
.menu-card li .flavor-price { color: var(--color-mocha); float: right; font-weight: 600; }

.deposit-callout {
  background: var(--color-blush);
  border-left: 6px solid var(--color-rose);
  padding: var(--space-6) var(--space-8);
  border-radius: var(--radius-md);
  margin-top: var(--space-10);
}
.deposit-callout h3 { color: var(--color-cocoa); margin-bottom: var(--space-3); }
.deposit-callout p { color: var(--color-cocoa-2); }

/* ---------- Order form ---------- */
.order-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: var(--space-10); align-items: start; }
@media (max-width: 920px) { .order-grid { grid-template-columns: 1fr; } }

.order-form {
  background: var(--color-white);
  padding: clamp(var(--space-6), 4vw, var(--space-10));
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}
.form-section { margin-bottom: var(--space-8); }
.form-section h3 {
  font-size: var(--text-lg); color: var(--color-cocoa);
  margin-bottom: var(--space-4); padding-bottom: var(--space-3);
  border-bottom: 2px solid var(--color-blush);
}
.field { display: flex; flex-direction: column; gap: var(--space-2); margin-bottom: var(--space-4); }
.field label { font-weight: 600; color: var(--color-cocoa); font-size: var(--text-sm); }
.field .hint { color: var(--color-mocha); font-size: 0.8rem; }
.field input, .field textarea, .field select {
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--color-border);
  background: var(--color-cream);
  font-size: var(--text-base);
  color: var(--color-cocoa);
  font-family: inherit;
  transition: border-color .2s var(--ease), background .2s var(--ease);
  min-height: 48px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  min-width: 0;
}
/* Allow grid/flex items to shrink below content size */
.field, .field-row > * { min-width: 0; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--color-rose-d); background: var(--color-white);
  box-shadow: 0 0 0 3px rgba(155, 107, 95, 0.15);
}
.field textarea { min-height: 120px; resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); }
@media (max-width: 540px) { .field-row { grid-template-columns: 1fr; } }

.item-row {
  display: grid; grid-template-columns: 2fr 1fr 110px 90px;
  gap: var(--space-3); align-items: center;
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--color-border);
}
.item-row:last-of-type { border-bottom: 0; }
.item-row__name { font-weight: 600; color: var(--color-cocoa); font-size: var(--text-sm); }
.item-row__price { color: var(--color-mocha); font-size: var(--text-sm); }
.item-row input[type="number"] { padding: var(--space-2) var(--space-3); min-height: 40px; }
.item-row__subtotal { text-align: right; font-weight: 700; color: var(--color-rose-d); }
@media (max-width: 620px) {
  .item-row { grid-template-columns: 1fr 80px 80px; }
  .item-row__price { display: none; }
}

.summary-card {
  background: var(--color-cocoa); color: var(--color-cream);
  padding: var(--space-8); border-radius: var(--radius-lg);
  position: sticky; top: 100px;
  box-shadow: var(--shadow-md);
}
.summary-card h3 { color: var(--color-cream); margin-bottom: var(--space-5); }
.summary-row {
  display: flex; justify-content: space-between; padding: var(--space-3) 0;
  border-bottom: 1px solid rgba(251, 246, 240, 0.15); font-size: var(--text-sm);
}
.summary-row strong { color: var(--color-cream); }
.summary-total {
  display: flex; justify-content: space-between; padding-top: var(--space-4);
  font-size: var(--text-lg); font-weight: 700;
}
.summary-deposit {
  display: flex; justify-content: space-between; padding-top: var(--space-3);
  font-size: var(--text-base); color: var(--color-blush); font-weight: 700;
}
.summary-note { font-size: 0.8rem; color: rgba(251, 246, 240, 0.85); margin-top: var(--space-4); line-height: 1.5; }

/* ---------- Order success ---------- */
.success-banner {
  background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-blush) 100%);
  border: 1px solid rgba(201, 147, 131, 0.25);
  border-left: 6px solid var(--color-rose);
  color: var(--color-cocoa);
  padding: var(--space-7) var(--space-7);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-8);
  display: none;
  box-shadow: 0 8px 24px rgba(62, 81, 106, 0.08);
}
.success-banner.is-visible { display: block; }
.success-banner__title {
  margin: 0 0 var(--space-3) 0;
  line-height: 1.05;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35em;
}
.success-banner__title .sb-serif {
  /* Dusty-blue script — matches "Sweet" in the logo */
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.4rem, 5.2vw, 3.6rem);
  color: var(--color-cocoa-2);
  line-height: 0.95;
  letter-spacing: 0;
}
.success-banner__title .sb-script {
  /* Rose-gold script — matches "Sammye's" in the logo */
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.4rem, 5.2vw, 3.6rem);
  color: var(--color-rose);
  line-height: 0.95;
  margin-left: 0.05em;
}
.success-banner p { color: var(--color-cocoa); font-size: var(--text-base); line-height: 1.6; }
.success-banner a { color: var(--color-rose); text-decoration: underline; text-underline-offset: 3px; }
.success-banner a:hover { color: var(--color-rose-d); }

/* ---------- FAQ ---------- */
.faq { display: flex; flex-direction: column; gap: var(--space-3); }
.faq details {
  background: var(--color-white); border: 1px solid var(--color-border);
  border-radius: var(--radius-md); padding: var(--space-5) var(--space-6);
  box-shadow: var(--shadow-sm);
}
.faq summary {
  cursor: pointer; font-weight: 700; color: var(--color-cocoa);
  font-size: var(--text-base);
  list-style: none; display: flex; justify-content: space-between; align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; font-size: 1.5rem; color: var(--color-rose); transition: transform .25s var(--ease); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { margin-top: var(--space-3); color: var(--color-cocoa-2); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--color-cocoa); color: var(--color-cream);
  padding: var(--space-16) 0 var(--space-8);
  margin-top: var(--space-20);
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr;
  gap: var(--space-10);
  margin-bottom: var(--space-10);
}
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand { display: flex; align-items: center; gap: var(--space-3); margin-bottom: var(--space-4); }
.footer-brand img { width: 56px; height: 56px; border-radius: 50%; }
.footer-brand-name { font-family: var(--font-display); font-size: 2.2rem; color: var(--color-blush); line-height: 0.9; font-weight: 400; }
.site-footer p { color: rgba(251, 246, 240, 0.92); font-size: var(--text-sm); }
.site-footer h3, .site-footer h4 { color: var(--color-cream); margin-bottom: var(--space-4); font-size: var(--text-base); font-weight: 600; }
.site-footer ul { list-style: none; display: flex; flex-direction: column; gap: var(--space-2); }
.site-footer a { color: rgba(251, 246, 240, 0.95); font-size: var(--text-sm); }
.site-footer a:hover { color: var(--color-blush); }
.footer-bottom {
  border-top: 1px solid rgba(251, 246, 240, 0.2);
  padding-top: var(--space-6); display: flex; justify-content: space-between; flex-wrap: wrap; gap: var(--space-3);
  font-size: var(--text-xs); color: rgba(251, 246, 240, 0.85);
}

/* ---------- Scroll reveal ---------- */
/* JS adds .js-reveal to html when supported; otherwise everything is visible by default */
.js-reveal .reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.js-reveal .reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .js-reveal .reveal { opacity: 1 !important; transform: none !important; }
}

/* ---------- Misc page heads ---------- */
.page-head {
  padding-block: clamp(var(--space-16), 8vw, var(--space-24));
  background:
    radial-gradient(circle at 80% 20%, var(--color-blush) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, #E1E8F0 0%, transparent 50%),
    var(--color-cream);
  text-align: center;
}
.page-head h1 { font-size: var(--text-3xl); margin-bottom: var(--space-4); }
.page-head .hl { font-family: var(--font-display); color: var(--color-rose); font-weight: 400; font-size: 1.25em; line-height: 0.9; }
.page-head p { max-width: 56ch; margin-inline: auto; font-size: var(--text-lg); color: var(--color-cocoa-2); }
