/* ==========================================================================
   Fun Stations Miami — pastel / white art direction
   Display: Chillax (Fontshare) · Body: Nunito (Google)
   ========================================================================== */

:root {
  /* palette pulled from the logo */
  --white: #ffffff;
  --blush: #fdf3f7;
  --mint-tint: #f0faf8;
  --lav-tint: #f6f2fd;
  --butter-tint: #fff8ec;

  --pink: #f3a3bf;
  /* the logo pink, deepened just enough to carry white button text */
  --pink-brand: #e26e97;
  --pink-brand-hover: #d9628d;
  --pink-deep: #c94b78;
  --mint: #a5dad5;
  --mint-deep: #35857e;
  --lav: #c3aee0;
  --lav-deep: #7457a6;
  --butter: #fbd68c;
  --butter-deep: #a97516;

  --ink: #3f4a5a;
  --ink-soft: #5d6a7c;
  --muted: #7b8797;
  --line: #ecebf1;
  --line-soft: #f4f3f7;

  --font-display: 'Chillax', 'Nunito', 'system-ui', sans-serif;
  --font-body: 'Nunito', 'system-ui', sans-serif;

  --text-xs: 0.8125rem;
  --text-sm: 0.9375rem;
  --text-base: 1.0625rem;
  --text-lg: 1.1875rem;
  --text-xl: 1.5rem;
  --text-2xl: clamp(2rem, 4vw, 2.9rem);
  --text-hero: clamp(2.6rem, 7vw, 4.6rem);

  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-8: 2.75rem;
  --space-10: 3.5rem;
  --space-12: 4.5rem;
  --space-16: 6rem;
  --space-20: 7rem;
  --space-24: 8.5rem;
  --space-32: 11rem;

  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 26px;
  --r-xl: 34px;
  --r-pill: 999px;

  --shadow-sm: 0 2px 10px rgba(63, 74, 90, 0.05);
  --shadow-md: 0 10px 30px rgba(63, 74, 90, 0.08);
  --shadow-lg: 0 22px 55px rgba(63, 74, 90, 0.1);

  --header-h: 84px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3, h4 { margin: 0; font-family: var(--font-display); font-weight: 500; line-height: 1.14; letter-spacing: -0.01em; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
:focus-visible { outline: 3px solid var(--lav); outline-offset: 3px; border-radius: 6px; }

.wrap { width: min(1180px, 100% - 2.5rem); margin-inline: auto; }
@media (max-width: 640px) { .wrap { width: min(1180px, 100% - 1.75rem); } }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--space-2);
  font-family: var(--font-body); font-size: var(--text-sm); font-weight: 700;
  padding: 0.8rem 1.5rem; border-radius: var(--r-pill); border: 2px solid transparent;
  text-decoration: none; cursor: pointer; transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  white-space: nowrap;
}
.btn--primary { background: var(--pink-brand); color: #fff; box-shadow: 0 10px 22px rgba(226, 110, 151, 0.26); }
.btn--primary:hover { background: var(--pink-brand-hover); transform: translateY(-2px); box-shadow: 0 14px 28px rgba(226, 110, 151, 0.32); }
.btn--ghost { background: #fff; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--pink); background: var(--blush); transform: translateY(-2px); }
.btn--mint { border-color: #d6ece9; color: var(--ink); }
.btn--mint:hover { border-color: var(--mint); background: var(--mint-tint); }
.btn__ic { flex-shrink: 0; opacity: 0.95; }
.btn--mint .btn__ic { color: var(--mint-deep); }
.btn--light { background: #fff; color: var(--pink-deep); }
.btn--light:hover { transform: translateY(-2px); background: var(--blush); }

.icon-btn {
  display: none; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: var(--r-pill);
  background: #fff; border: 2px solid var(--line); color: var(--ink); cursor: pointer;
}
.icon-btn:hover { border-color: var(--pink); }

/* ---------- header ---------- */
.header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.header.is-scrolled { border-bottom-color: var(--line-soft); box-shadow: var(--shadow-sm); }
.header__inner {
  width: min(1180px, 100% - 2.5rem); margin-inline: auto;
  min-height: var(--header-h); display: flex; align-items: center; gap: var(--space-5);
}
.brand { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.brand__logo { height: 58px; width: auto; transition: height 0.3s ease; }
.brand--footer .brand__logo { height: 76px; }
.brand__tag { display: none; }
.header__wave { display: none; }

.nav { margin-left: auto; display: flex; align-items: center; gap: clamp(0.7rem, 1.5vw, 1.4rem); }
.nav a {
  font-size: var(--text-sm); font-weight: 600; color: var(--ink-soft); text-decoration: none;
  padding: 0.35rem 0; border-bottom: 2px solid transparent; transition: color 0.16s ease, border-color 0.16s ease;
  white-space: nowrap;
}
.nav a:hover { color: var(--pink-deep); border-bottom-color: var(--pink); }

.header__actions { display: flex; align-items: center; gap: var(--space-3); margin-left: var(--space-2); }

/* header social icons — desktop only, sits before the quote button */
/* specificity must beat the generic `.socials` rule further down the file */
.header__actions .header__socials { display: none; }
@media (min-width: 1360px) { .header__actions .header__socials { display: flex; } }
.header__socials {
  margin-top: 0; gap: 0.3rem; flex-wrap: nowrap; flex-shrink: 0;
  padding-right: 0.6rem; margin-right: 0.2rem; border-right: 1px solid var(--line);
}
.header__socials .social { border-width: 1.5px; }
.header__socials .social:nth-child(1) { color: var(--pink-deep); border-color: #f7d3e0; }
.header__socials .social:nth-child(2) { color: var(--mint-deep); border-color: #cfece9; }
.header__socials .social:nth-child(3) { color: var(--lav-deep);  border-color: #e0d5f1; }
.header__socials .social:hover { border-color: currentColor; }

/* ---------- menu button ---------- */
.menu-btn {
  display: none; align-items: center; gap: 0.5rem;
  padding: 0.5rem 0.95rem 0.5rem 0.8rem; border-radius: var(--r-pill);
  background: #fff; border: 2px solid var(--line); color: var(--ink);
  font-family: var(--font-body); font-size: var(--text-sm); font-weight: 700;
  cursor: pointer; transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.menu-btn:hover, .menu-btn:focus-visible { border-color: var(--pink); box-shadow: var(--shadow-sm); }
.menu-btn__bars { display: grid; gap: 3.5px; width: 17px; }
.menu-btn__bars i { display: block; height: 2px; border-radius: 2px; background: currentColor; }
.menu-btn__bars i:nth-child(1) { background: var(--pink); }
.menu-btn__bars i:nth-child(2) { background: var(--mint); width: 76%; }
.menu-btn__bars i:nth-child(3) { background: var(--lav); }

/* ---------- mobile drawer ---------- */
.drawer-scrim {
  position: fixed; inset: 0; z-index: 70;
  background: rgba(63, 74, 90, 0.42); backdrop-filter: blur(2px);
  opacity: 0; transition: opacity 0.28s ease;
}
.drawer-scrim.is-open { opacity: 1; }

.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 80;
  width: min(400px, 88vw);
  display: flex; flex-direction: column;
  background: #fff;
  border-left: 1px solid var(--line);
  box-shadow: -18px 0 46px rgba(63, 74, 90, 0.16);
  transform: translateX(100%);
  transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1);
  overscroll-behavior: contain;
}
.drawer.is-open { transform: translateX(0); }
.drawer::before {
  content: ''; position: absolute; inset: 0 0 auto 0; height: 190px; pointer-events: none;
  background:
    radial-gradient(70% 100% at 8% 0%, rgba(243, 163, 191, 0.26), transparent 72%),
    radial-gradient(60% 90% at 92% 0%, rgba(195, 174, 224, 0.24), transparent 72%),
    radial-gradient(80% 80% at 50% 0%, rgba(165, 218, 213, 0.18), transparent 75%);
}

.drawer__top {
  position: relative; z-index: 1; flex-shrink: 0;
  display: flex; align-items: center; justify-content: space-between; gap: var(--space-4);
  padding: 1.15rem 1.25rem 0.6rem;
}
.drawer__eyebrow {
  font-size: var(--text-xs); font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--pink-deep);
}
.drawer__close {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; flex-shrink: 0; border-radius: var(--r-pill);
  background: #fff; border: 2px solid var(--line); color: var(--ink); cursor: pointer;
  transition: border-color 0.18s ease, color 0.18s ease;
}
.drawer__close:hover, .drawer__close:focus-visible { border-color: var(--pink); color: var(--pink-deep); }

.drawer__nav {
  position: relative; z-index: 1;
  flex: 1 1 auto; overflow-y: auto; -webkit-overflow-scrolling: touch;
  display: flex; flex-direction: column; gap: 0.5rem;
  padding: 0.5rem 1.25rem 1.1rem;
  scrollbar-width: none;
  /* fade the last row out so a cut-off pill reads as "scroll for more" */
  -webkit-mask-image: linear-gradient(to bottom, #000 calc(100% - 34px), transparent 100%);
  mask-image: linear-gradient(to bottom, #000 calc(100% - 34px), transparent 100%);
}
.drawer__nav::-webkit-scrollbar { width: 0; height: 0; }

.mrow {
  display: flex; align-items: center; gap: 0.85rem;
  padding: 0.62rem 0.9rem 0.62rem 0.62rem;
  border-radius: var(--r-pill);
  background: var(--tint); border: 1.5px solid transparent;
  text-decoration: none; color: var(--ink);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}
.drawer.is-open .mrow { animation: mrowIn 0.42s cubic-bezier(0.22, 1, 0.36, 1) backwards; animation-delay: calc(0.06s + var(--i) * 0.035s); }
@keyframes mrowIn { from { opacity: 0; transform: translateX(18px); } to { opacity: 1; transform: none; } }
.mrow:hover, .mrow:focus-visible { border-color: var(--edge); transform: translateX(3px); box-shadow: var(--shadow-sm); }
.mrow__chip {
  display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0;
  width: 42px; height: 42px; border-radius: var(--r-pill);
  background: var(--chip); color: #fff;
}
.mrow__label { font-size: 1.02rem; font-weight: 700; letter-spacing: -0.01em; }
.mrow__go { margin-left: auto; flex-shrink: 0; color: var(--edge); }

.mrow--pink   { --tint: var(--blush);      --chip: var(--pink);   --edge: var(--pink); }
.mrow--mint   { --tint: var(--mint-tint);  --chip: var(--mint);   --edge: var(--mint); }
.mrow--lav    { --tint: var(--lav-tint);   --chip: var(--lav);    --edge: var(--lav); }
.mrow--butter { --tint: var(--butter-tint);--chip: var(--butter); --edge: var(--butter); }

.drawer__foot {
  position: relative; z-index: 1; flex-shrink: 0;
  display: grid; gap: 0.6rem;
  padding: 0.9rem 1.25rem calc(1.1rem + env(safe-area-inset-bottom));
  border-top: 1px solid var(--line-soft); background: #fff;
}
.btn--block { width: 100%; justify-content: center; }
.drawer__follow {
  margin: 0.35rem 0 0; text-align: center;
  font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--muted);
}
.socials--drawer { justify-content: center; margin-top: 0; }
.socials--drawer .social { width: 44px; height: 44px; }

body.is-locked { overflow: hidden; }

@media (max-width: 1080px) {
  .nav { display: none; }
  /* the nav normally supplies margin-left:auto; without it the actions must push themselves right */
  .header__actions { margin-left: auto; }
  .menu-btn { display: inline-flex; }
  .header__actions .btn { display: none; }
  .brand__logo { height: 48px; }
}
/* ---------- mobile: logo large and centred, hamburger on the left ---------- */
@media (max-width: 820px) {
  .header { --logo-h: 128px; }
  .header__inner {
    position: relative; flex-direction: column; justify-content: center;
    gap: 0; min-height: 0; padding-block: 0.85rem 0.5rem;
    width: min(1180px, 100% - 1.5rem);
  }
  .brand { flex-direction: column; align-items: center; gap: 0.5rem; width: 100%; }
  .brand__logo { height: var(--logo-h); max-width: min(72vw, 320px); object-fit: contain; }
  .brand__tag {
    display: block; font-size: 0.62rem; font-weight: 700; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--lav-deep); text-align: center;
    opacity: 1; transition: opacity 0.25s ease, max-height 0.3s ease;
    max-height: 2rem; overflow: hidden;
  }
  .brand__tag i { font-style: normal; color: var(--pink); margin-inline: 0.15rem; }
  .header__actions {
    order: -1; align-self: flex-start; position: static;
    margin: 0 0 0.35rem; gap: 0;
  }
  .menu-btn { padding: 0.5rem 0.85rem 0.5rem 0.7rem; }
  .header__wave {
    display: block; line-height: 0; height: 80px; overflow: hidden;
    opacity: 1; transition: opacity 0.25s ease, height 0.3s ease;
  }
  .header__wave svg { display: block; width: 100%; height: 80px; }
  /* compact once the page scrolls, so the sticky bar stays out of the way */
  .header.is-scrolled { --logo-h: 44px; }
  .header.is-scrolled .header__inner { padding-block: 0.5rem; }
  .header.is-scrolled .brand__tag { opacity: 0; max-height: 0; }
  .header.is-scrolled .header__wave { opacity: 0; height: 0; }
  .header.is-scrolled .brand { margin-left: 0; }
  .header.is-scrolled .header__actions {
    position: absolute; left: 0; top: 50%; transform: translateY(-50%); margin: 0;
  }
}
@media (max-width: 380px) {
  .header { --logo-h: 108px; }
  .menu-btn { padding: 0.45rem 0.7rem; font-size: 0.8rem; }
  .menu-btn__bars { width: 15px; }
}

/* ---------- hero ---------- */
.hero { position: relative; padding-block: clamp(var(--space-10), 7vw, var(--space-16)) 0; overflow: hidden; }
/* the pastel ribbons carry the colour now — the hero itself stays clean white */
.hero__body { text-align: center; max-width: 62rem; margin-inline: auto; }
.hero h1 { font-size: var(--text-hero); margin-block: var(--space-4) var(--space-5); }
.hero h1 em { font-style: normal; color: var(--pink-brand); }
.hero .eyebrow { color: var(--pink-deep); }

/* ---------- pastel wave ---------- */
.wave { line-height: 0; width: 100%; overflow: hidden; }
.wave svg { display: block; width: 100%; height: clamp(72px, 7.5vw, 104px); }
.wave--hero { margin-top: clamp(var(--space-6), 5vw, var(--space-10)); opacity: 0.9; }
.wave--hero + .hero__media { margin-top: var(--space-6); }
.hero__lead { font-size: var(--text-lg); color: var(--ink-soft); max-width: 54ch; margin-inline: auto; }
.hero__cta { display: flex; flex-wrap: wrap; gap: var(--space-3); justify-content: center; margin-top: var(--space-6); }
.hero__note { margin-top: var(--space-5); font-size: var(--text-sm); color: var(--muted); }
.hero__media {
  margin-top: var(--space-8); border-radius: var(--r-xl); overflow: hidden;
  box-shadow: var(--shadow-lg); background: var(--blush);
}
.hero__media img { width: 100%; height: clamp(280px, 46vw, 540px); object-fit: cover; }

.eyebrow {
  font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--lav-deep);
}

.facts {
  margin: var(--space-8) auto 0; display: grid; gap: var(--space-3);
  grid-template-columns: repeat(3, minmax(0, 1fr)); max-width: 46rem;
}
.fact { background: var(--blush); border-radius: var(--r-lg); padding: var(--space-4) var(--space-3); }
/* cycle the three logo colours, matching the rebrand artwork */
.fact:nth-child(2) { background: var(--mint-tint); }
.fact:nth-child(3) { background: var(--lav-tint); }
.fact dt { font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--pink-deep); }
.fact:nth-child(2) dt { color: var(--mint-deep); }
.fact:nth-child(3) dt { color: var(--lav-deep); }
.fact dd { margin: 0.3rem 0 0; font-size: var(--text-sm); font-weight: 600; }
@media (max-width: 620px) { .facts { grid-template-columns: 1fr; } }

/* ---------- sections ---------- */
.section { padding-block: clamp(var(--space-12), 8vw, var(--space-20)); }
.section--tight { padding-block: clamp(var(--space-8), 5vw, var(--space-12)); }
.section--offset { background: var(--blush); }
.section--mint { background: var(--mint-tint); }
.section--lav { background: var(--lav-tint); }

.section-head { max-width: 46rem; margin-bottom: var(--space-10); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: var(--text-2xl); margin-top: var(--space-3); }
.section-head p { color: var(--ink-soft); margin-top: var(--space-4); }
.rule { width: 64px; height: 5px; border-radius: var(--r-pill); margin-top: var(--space-4);
  background: linear-gradient(90deg, var(--pink), var(--lav) 55%, var(--mint)); }
.section-head--center .rule { margin-inline: auto; }

/* ---------- value strip ---------- */
.value-grid { display: grid; gap: var(--space-4); grid-template-columns: repeat(4, minmax(0, 1fr)); }
.value { background: #fff; border: 2px solid var(--line-soft); border-radius: var(--r-lg); padding: var(--space-5); }
.value h3 { font-size: var(--text-lg); font-family: var(--font-body); font-weight: 700; }
.value p { margin-top: var(--space-2); font-size: var(--text-sm); color: var(--ink-soft); }
.value:nth-child(1) { background: var(--blush); border-color: transparent; }
.value:nth-child(2) { background: var(--mint-tint); border-color: transparent; }
.value:nth-child(3) { background: var(--lav-tint); border-color: transparent; }
.value:nth-child(4) { background: var(--butter-tint); border-color: transparent; }
@media (max-width: 900px) { .value-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 520px) { .value-grid { grid-template-columns: 1fr; } }

/* ---------- steps ---------- */
.steps { display: grid; gap: var(--space-5); grid-template-columns: repeat(4, minmax(0, 1fr)); }
.step { background: #fff; border-radius: var(--r-lg); padding: var(--space-6) var(--space-5); box-shadow: var(--shadow-sm); }
.step__num {
  width: 42px; height: 42px; border-radius: var(--r-pill); display: grid; place-items: center;
  font-family: var(--font-display); font-size: var(--text-lg); color: #fff; background: var(--pink);
  margin-bottom: var(--space-4);
}
.step:nth-child(2) .step__num { background: var(--mint); }
.step:nth-child(3) .step__num { background: var(--lav); }
.step:nth-child(4) .step__num { background: var(--butter); color: var(--ink); }
.step h3 { font-size: var(--text-lg); font-family: var(--font-body); font-weight: 700; }
.step p { margin-top: var(--space-2); font-size: var(--text-sm); color: var(--ink-soft); }
@media (max-width: 940px) { .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 540px) { .steps { grid-template-columns: 1fr; } }

/* ---------- product cards ---------- */
.cards { display: grid; gap: var(--space-6); grid-template-columns: repeat(3, minmax(0, 1fr)); }
@media (max-width: 1000px) { .cards { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 660px) { .cards { grid-template-columns: 1fr; } }

.card {
  background: #fff; border-radius: var(--r-xl); overflow: hidden;
  border: 2px solid var(--line-soft); box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card__media { position: relative; background: var(--blush); }
.card__media img { width: 100%; height: 260px; object-fit: cover; }
.card__media--contain { padding: var(--space-5); }
.card__media--contain img { height: 210px; object-fit: contain; }
.card__size {
  position: absolute; left: var(--space-4); bottom: var(--space-4);
  background: rgba(255, 255, 255, 0.94); color: var(--ink);
  font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 0.35rem 0.75rem; border-radius: var(--r-pill);
}
.card__body { padding: var(--space-5) var(--space-5) var(--space-6); display: flex; flex-direction: column; gap: var(--space-3); flex: 1; }
.card__head { display: flex; align-items: flex-start; justify-content: space-between; gap: var(--space-4); }
.card__name { font-size: var(--text-xl); }
.card__price {
  text-align: right; font-family: var(--font-display); font-size: var(--text-xl); color: var(--pink-deep);
  display: flex; flex-direction: column; line-height: 1.15;
}
.card__price span { font-family: var(--font-body); font-size: var(--text-xs); font-weight: 600; color: var(--muted); margin-top: 0.2rem; }
.card__meta { font-size: var(--text-sm); font-weight: 600; color: var(--lav-deep); }
.card__body ul { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.5rem var(--space-4); }
.card__body li { position: relative; padding-left: 1.1rem; font-size: var(--text-sm); color: var(--ink-soft); }
.card__body li::before {
  content: ''; position: absolute; left: 0; top: 0.62em; width: 7px; height: 7px;
  border-radius: 50%; background: var(--pink);
}
.card__note {
  margin-top: auto; background: var(--butter-tint); border-radius: var(--r-md);
  padding: 0.7rem 1rem; font-size: var(--text-sm); font-weight: 600; color: var(--butter-deep);
}
@media (max-width: 480px) { .card__body ul { grid-template-columns: 1fr; } }

/* ---------- callout ---------- */
.callout {
  margin-top: var(--space-8); background: #fff; border: 2px solid var(--line-soft);
  border-radius: var(--r-xl); padding: var(--space-6) var(--space-6);
}
.callout h3 { font-size: var(--text-lg); font-family: var(--font-body); font-weight: 700; }
.callout p { margin-top: var(--space-2); color: var(--ink-soft); font-size: var(--text-sm); }

/* ---------- decor ---------- */
.decor-grid { display: grid; gap: var(--space-5); grid-template-columns: repeat(4, minmax(0, 1fr)); }
.decor { background: #fff; border-radius: var(--r-lg); padding: var(--space-6) var(--space-5); box-shadow: var(--shadow-sm); }
.decor__icon { display: grid; place-items: center; width: 62px; height: 62px; border-radius: var(--r-pill); margin-bottom: var(--space-4); }
.decor__icon--garland { background: var(--blush); color: var(--pink); }
.decor__icon--backdrop { background: var(--mint-tint); color: var(--mint); }
.decor__icon--panel { background: var(--lav-tint); color: var(--lav); }
.decor__icon--sign { background: var(--butter-tint); color: var(--butter); }
.decor h3 { font-size: var(--text-lg); font-family: var(--font-body); font-weight: 700; }
.decor p { margin-top: var(--space-2); font-size: var(--text-sm); color: var(--ink-soft); }
@media (max-width: 980px) { .decor-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 540px) { .decor-grid { grid-template-columns: 1fr; } }

.gallery {
  margin-top: var(--space-8);
  display: grid; gap: var(--space-4);
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.gallery figure { margin: 0; border-radius: var(--r-lg); overflow: hidden; background: #fff; box-shadow: var(--shadow-sm); }
.gallery img { width: 100%; height: 320px; object-fit: cover; transition: transform 0.4s ease; }
.gallery figure:hover img { transform: scale(1.04); }
@media (max-width: 900px) { .gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); } .gallery img { height: 260px; } }
@media (max-width: 520px) { .gallery { grid-template-columns: 1fr; } }

.decor-note {
  margin-top: var(--space-8); background: #fff; border-radius: var(--r-xl); padding: var(--space-6);
  display: grid; gap: var(--space-6); grid-template-columns: 1fr 1fr; align-items: start; box-shadow: var(--shadow-sm);
}
.decor-note h3 { font-size: var(--text-lg); font-family: var(--font-body); font-weight: 700; }
.decor-note p { margin-top: var(--space-2); font-size: var(--text-sm); color: var(--ink-soft); }
.decor-prices { margin: 0; }
@media (max-width: 820px) { .decor-note { grid-template-columns: 1fr; } }

/* ---------- bundles ---------- */
.bundles { display: grid; gap: var(--space-5); grid-template-columns: repeat(3, minmax(0, 1fr)); }
.bundle { background: #fff; border-radius: var(--r-xl); padding: var(--space-6); box-shadow: var(--shadow-sm); border-top: 6px solid var(--pink); }
.bundle:nth-child(2) { border-top-color: var(--lav); }
.bundle:nth-child(3) { border-top-color: var(--mint); }
.bundle__price { font-family: var(--font-display); font-size: var(--text-xl); color: var(--pink-deep); }
.bundle h3 { font-size: var(--text-lg); margin-top: var(--space-2); font-family: var(--font-body); font-weight: 700; }
.bundle p:last-child { margin-top: var(--space-3); font-size: var(--text-sm); color: var(--ink-soft); }
@media (max-width: 900px) { .bundles { grid-template-columns: 1fr; } }

/* ---------- price tables ---------- */
.tables { display: grid; gap: var(--space-5); grid-template-columns: repeat(3, minmax(0, 1fr)); }
.table-card { background: #fff; border-radius: var(--r-xl); padding: var(--space-6); box-shadow: var(--shadow-sm); }
.table-card h3 { font-size: var(--text-lg); margin-bottom: var(--space-4); font-family: var(--font-body); font-weight: 700; }
.table-card dl, .decor-prices { display: flex; flex-direction: column; }
.row {
  display: flex; align-items: baseline; justify-content: space-between; gap: var(--space-4);
  padding: 0.7rem 0; border-bottom: 1px dashed var(--line);
}
.row:last-child { border-bottom: none; }
.row dt { font-size: var(--text-sm); color: var(--ink-soft); }
.row dd { margin: 0; font-weight: 700; font-size: var(--text-sm); color: var(--pink-deep); white-space: nowrap; }
@media (max-width: 900px) { .tables { grid-template-columns: 1fr; } }

.colors { display: flex; flex-wrap: wrap; gap: var(--space-3); margin-top: var(--space-4); }
.swatch { display: inline-flex; align-items: center; gap: 0.55rem; font-size: var(--text-sm); font-weight: 600; }
.swatch i { width: 26px; height: 26px; border-radius: var(--r-pill); border: 2px solid var(--line); }

/* ---------- info ---------- */
.info-grid { display: grid; gap: var(--space-5); grid-template-columns: repeat(3, minmax(0, 1fr)); }
.info { background: #fff; border-radius: var(--r-lg); padding: var(--space-5) var(--space-5) var(--space-6); border: 2px solid var(--line-soft); }
.info h3 { font-size: var(--text-lg); font-family: var(--font-body); font-weight: 700; }
.info p { margin-top: var(--space-2); font-size: var(--text-sm); color: var(--ink-soft); }
@media (max-width: 940px) { .info-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .info-grid { grid-template-columns: 1fr; } }

/* ---------- inquiry form ---------- */
.form {
  background: #fff; border-radius: var(--r-xl); padding: clamp(var(--space-5), 4vw, var(--space-10));
  box-shadow: var(--shadow-md); border: 2px solid var(--line-soft);
  display: flex; flex-direction: column; gap: var(--space-5);
}
.form__grid { display: grid; gap: var(--space-4) var(--space-5); grid-template-columns: repeat(2, minmax(0, 1fr)); }
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field > span { font-size: var(--text-sm); font-weight: 700; color: var(--ink); }
.field > span i { color: var(--pink-deep); font-style: normal; }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: var(--text-base); color: var(--ink);
  background: var(--white); border: 2px solid var(--line); border-radius: var(--r-md);
  padding: 0.75rem 0.95rem; width: 100%; transition: border-color 0.16s ease, box-shadow 0.16s ease;
}
.field textarea { resize: vertical; min-height: 118px; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: var(--pink); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--pink-deep); box-shadow: 0 0 0 4px rgba(243, 163, 191, 0.28);
}
.field input::placeholder, .field textarea::placeholder { color: #a9b2bf; }
.field input[aria-invalid='true'], .field select[aria-invalid='true'] { border-color: #d64545; background: #fdf5f5; }

.chips { border: none; margin: 0; padding: 0; }
.chips legend { font-size: var(--text-sm); font-weight: 700; padding: 0 0 var(--space-3); }
.chips__row { display: flex; flex-wrap: wrap; gap: var(--space-2); }
.chip { position: relative; }
.chip input { position: absolute; opacity: 0; width: 100%; height: 100%; left: 0; top: 0; margin: 0; cursor: pointer; }
.chip span {
  display: inline-block; padding: 0.55rem 1.05rem; border-radius: var(--r-pill);
  border: 2px solid var(--line); background: #fff; font-size: var(--text-sm); font-weight: 600;
  color: var(--ink-soft); transition: all 0.16s ease;
}
.chip:hover span { border-color: var(--pink); color: var(--ink); }
.chip input:checked + span { background: var(--pink-deep); border-color: var(--pink-deep); color: #fff; }
.chip input:focus-visible + span { outline: 3px solid var(--lav); outline-offset: 2px; }

.form__actions { display: flex; flex-wrap: wrap; gap: var(--space-3); }
.form__fine { font-size: var(--text-xs); color: var(--muted); }
.form__error {
  background: #fdf1f1; color: #a02b2b; border-radius: var(--r-md); padding: 0.75rem 1rem;
  font-size: var(--text-sm); font-weight: 600;
}
.form__ok {
  background: var(--mint-tint); color: var(--mint-deep); border-radius: var(--r-md);
  padding: 0.75rem 1rem; font-size: var(--text-sm); font-weight: 700;
}
@media (max-width: 700px) { .form__grid { grid-template-columns: 1fr; } .form__actions .btn { width: 100%; } }

/* ---------- closing CTA ---------- */
.closer { position: relative; overflow: hidden; background: var(--blush); }
.closer__media { position: absolute; inset: 0; }
.closer__media img { width: 100%; height: 100%; object-fit: cover; }
.closer__media::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.93), rgba(255, 251, 253, 0.9));
}
.closer__body { position: relative; text-align: center; padding-block: clamp(var(--space-16), 11vw, var(--space-24)); }
.closer h2 { font-size: var(--text-2xl); margin-block: var(--space-3) var(--space-5); }
.closer p { color: var(--ink-soft); max-width: 54ch; margin-inline: auto; }
.closer__phone {
  display: inline-block; margin-top: var(--space-6); font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem); color: var(--pink-deep); text-decoration: none; letter-spacing: 0.01em;
}
.closer__phone:hover { color: var(--lav-deep); }
.closer__cta { display: flex; flex-wrap: wrap; gap: var(--space-3); justify-content: center; margin-top: var(--space-6); }
.closer .btn--light { border-color: var(--line); }

/* ---------- footer ---------- */
.footer { background: #fff; border-top: 1px solid var(--line); padding-block: var(--space-12) var(--space-8); }
.footer__grid { display: grid; gap: var(--space-8); grid-template-columns: 1.4fr 1fr 1fr; }
.footer h4 {
  font-family: var(--font-body); font-size: var(--text-xs); font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--lav-deep); margin-bottom: var(--space-4);
}
.footer ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer a { text-decoration: none; font-size: var(--text-sm); color: var(--ink-soft); }
.footer a:hover { color: var(--pink-deep); }
.footer p { font-size: var(--text-sm); color: var(--ink-soft); }
.footer__bottom {
  margin-top: var(--space-10); padding-top: var(--space-5); border-top: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 0.4rem; font-size: var(--text-xs); color: var(--muted);
}
@media (max-width: 860px) { .footer__grid { grid-template-columns: 1fr; gap: var(--space-6); } }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .card:hover, .btn:hover { transform: none; }
}

/* ---------------------------------------------------------- photo gallery */
.gal { position: relative; }
.gal__track {
  display: flex; overflow-x: auto; scroll-snap-type: x mandatory;
  scroll-behavior: smooth; scrollbar-width: none; -ms-overflow-style: none;
}
.gal__track::-webkit-scrollbar { display: none; }
.gal__track:focus-visible { outline: 3px solid var(--lav); outline-offset: -3px; }
.gal__track img, .gal__track video {
  flex: 0 0 100%; width: 100%; height: 260px; object-fit: cover;
  scroll-snap-align: center; display: block; background: var(--blush);
}
.card__media--contain .gal__track img { height: 210px; object-fit: contain; }
.card__media > video { width: 100%; height: 260px; object-fit: cover; display: block; }
.gal--wide .gal__track video { height: 440px; }
@media (max-width: 760px) { .gal--wide .gal__track video { height: 280px; } }
.gal__nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 38px; height: 38px; border-radius: 50%; border: 0; cursor: pointer;
  background: rgba(255, 255, 255, 0.93); color: var(--ink);
  display: grid; place-items: center; box-shadow: 0 4px 14px rgba(63, 74, 90, 0.2);
  opacity: 0; transition: opacity 0.22s ease, background 0.2s ease;
}
.gal__nav--prev { left: 10px; }
.gal__nav--next { right: 10px; transform: translateY(-50%) rotate(180deg); }
.gal:hover .gal__nav, .gal:focus-within .gal__nav { opacity: 1; }
.gal__nav:hover { background: #fff; color: var(--pink-deep); }
.gal__nav[disabled] { opacity: 0 !important; pointer-events: none; }
.gal__dots {
  position: absolute; right: 14px; bottom: 12px;
  display: flex; gap: 6px; justify-content: flex-end;
}
.gal--wide .gal__dots { left: 0; right: 0; justify-content: center; }
.gal__dot {
  width: 7px; height: 7px; padding: 0; border: 0; border-radius: 50%; cursor: pointer;
  background: rgba(255, 255, 255, 0.6); box-shadow: 0 1px 3px rgba(63, 74, 90, 0.3);
  transition: background 0.2s ease, width 0.2s ease;
}
.gal__dot[aria-current="true"] { background: #fff; width: 18px; border-radius: var(--r-pill); }
.gal__count {
  position: absolute; top: 10px; right: 10px;
  font-size: var(--text-xs); font-weight: 700; color: var(--ink);
  background: rgba(255, 255, 255, 0.92); padding: 0.2rem 0.55rem; border-radius: var(--r-pill);
  box-shadow: 0 2px 8px rgba(63, 74, 90, 0.14);
}
@media (hover: none) { .gal__nav { display: none; } }

.gal--wide { border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-sm); background: #fff; }
.gal--wide .gal__track img { height: 440px; }
@media (max-width: 760px) { .gal--wide .gal__track img { height: 280px; } }

/* ---------------------------------------------------------- social icons */
.socials { display: flex; gap: 0.6rem; margin-top: 0.75rem; flex-wrap: wrap; }
.social {
  width: 42px; height: 42px; border-radius: var(--r-pill);
  display: grid; place-items: center;
  background: #fff; border: 2px solid var(--line); color: var(--ink);
  transition: transform 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.social:hover { transform: translateY(-2px); color: var(--pink-deep); border-color: var(--pink); }
.socials__label {
  margin-top: 1rem; font-size: var(--text-xs); font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-soft);
}
.socials--closer { justify-content: center; margin-top: 1.25rem; }
.socials--closer .social { background: rgba(255, 255, 255, 0.16); border-color: rgba(255, 255, 255, 0.5); color: #fff; }
.socials--closer .social:hover { background: #fff; color: var(--pink-deep); border-color: #fff; }
/* tint the drawer's three follow icons so they echo the logo colours */
.socials--drawer .social:nth-child(1) { border-color: var(--pink); color: var(--pink-deep); }
.socials--drawer .social:nth-child(2) { border-color: var(--mint); color: var(--mint-deep); }
.socials--drawer .social:nth-child(3) { border-color: var(--lav);  color: var(--lav-deep); }
.header__socials .social { width: 38px; height: 38px; }

/* ---------------------------------------------------------- venue */
.venue {
  margin-top: var(--space-8); display: grid; gap: var(--space-6);
  grid-template-columns: 1.15fr 1fr; align-items: stretch;
}
.venue__map {
  border-radius: var(--r-xl); overflow: hidden; background: #fff;
  box-shadow: var(--shadow-sm); min-height: 380px;
}
.venue__map iframe { width: 100%; height: 100%; min-height: 380px; border: 0; display: block; }
.venue__card {
  background: #fff; border-radius: var(--r-xl); padding: var(--space-6);
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
}
.venue__name { font-family: var(--font-display); font-size: var(--text-2xl); }
.venue__addr { margin-top: var(--space-3); color: var(--ink-soft); line-height: 1.55; }
.venue__addr span { font-size: var(--text-sm); color: var(--mint-deep); font-weight: 600; }
.venue__meta {
  margin: var(--space-5) 0 0; display: grid; gap: var(--space-4);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.venue__meta dt {
  font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--mint-deep);
}
.venue__meta dd { margin: 0.25rem 0 0; font-weight: 600; font-size: var(--text-sm); }
.venue__cta { margin-top: var(--space-5); display: flex; gap: 0.6rem; flex-wrap: wrap; }
.venue__soon { margin-top: var(--space-5); font-size: var(--text-sm); color: var(--ink-soft); }
.venue__card .socials { margin-top: 0.6rem; }
.venue__grid {
  margin-top: var(--space-6); display: grid; gap: var(--space-4);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.venue__item { background: #fff; border-radius: var(--r-lg); padding: var(--space-5); box-shadow: var(--shadow-sm); }
.venue__item h3 { font-family: var(--font-display); font-size: var(--text-lg); }
.venue__item p { margin-top: var(--space-2); font-size: var(--text-sm); color: var(--ink-soft); }
.venue__gallery { margin-top: var(--space-8); }
.venue__gallery-label {
  font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--mint-deep); margin-bottom: var(--space-3);
}
.rule--mint { background: var(--mint) !important; }
@media (max-width: 960px) {
  .venue { grid-template-columns: 1fr; }
  .venue__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .venue__grid { grid-template-columns: 1fr; }
  .venue__meta { grid-template-columns: 1fr; }
  .venue__map, .venue__map iframe { min-height: 280px; }
}

/* ==========================================================================
   Service pages, FAQ, social — added with the multi-page SEO build
   ========================================================================== */

.section--butter { background: var(--butter-tint); }

/* ------------------------------------------------------------- breadcrumbs */
.crumbs {
  display: flex; align-items: center; justify-content: center; gap: .55rem;
  font-size: var(--text-xs); color: var(--muted); letter-spacing: .02em;
  margin-bottom: var(--space-4);
}
.crumbs a { color: var(--pink-deep); font-weight: 700; text-decoration: none; }
.crumbs a:hover { text-decoration: underline; }
.crumbs span[aria-hidden] { color: var(--line); }
.crumbs span[aria-current] { color: var(--ink-soft); font-weight: 600; }

/* ------------------------------------------------------------- page hero */
.hero--page { padding-block: clamp(var(--space-8), 5vw, var(--space-12)) 0; }
.hero--page h1 { font-size: clamp(2.2rem, 5.2vw, 3.5rem); }
.hero--page .hero__lead { max-width: 58ch; }
.hero--page .hero__media img { height: clamp(240px, 38vw, 440px); }

/* ------------------------------------------------------------- category cards */
.cats { display: grid; gap: var(--space-4); grid-template-columns: repeat(4, minmax(0, 1fr)); }
.cat {
  display: flex; flex-direction: column; gap: var(--space-4);
  background: #fff; border: 2px solid var(--line-soft); border-radius: var(--r-lg);
  padding: var(--space-5); text-decoration: none; color: var(--ink);
  position: relative; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.cat:hover { transform: translateY(-4px); box-shadow: var(--shadow-md, 0 10px 30px rgba(63,74,90,.08)); border-color: var(--edge); }
.cat__chip {
  width: 54px; height: 54px; border-radius: var(--r-md); flex: none;
  display: grid; place-items: center; background: var(--chip); color: #fff;
}
.cat__body { display: flex; flex-direction: column; gap: .3rem; }
.cat__body b { font-family: var(--font-display); font-size: var(--text-xl); font-weight: 600; line-height: 1.15; }
.cat__body i { font-style: normal; font-size: var(--text-sm); font-weight: 700; color: var(--deep); }
.cat__body > span { font-size: var(--text-sm); color: var(--ink-soft); margin-top: .2rem; }
.cat__go { position: absolute; top: var(--space-5); right: var(--space-5); color: var(--deep); opacity: .5; transition: opacity .2s ease, transform .2s ease; }
.cat:hover .cat__go { opacity: 1; transform: translateX(3px); }
.cat--pink   { --chip: var(--pink);   --deep: var(--pink-deep);   --edge: var(--pink);   background: var(--blush); border-color: transparent; }
.cat--mint   { --chip: var(--mint);   --deep: var(--mint-deep);   --edge: var(--mint);   background: var(--mint-tint); border-color: transparent; }
.cat--lav    { --chip: var(--lav);    --deep: var(--lav-deep);    --edge: var(--lav);    background: var(--lav-tint); border-color: transparent; }
.cat--butter { --chip: var(--butter); --deep: var(--butter-deep); --edge: var(--butter); background: var(--butter-tint); border-color: transparent; }
@media (max-width: 1020px) { .cats { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px)  { .cats { grid-template-columns: 1fr; } }

/* ------------------------------------------------------------- service areas */
.areas {
  background: #fff; border: 2px solid var(--line-soft); border-radius: var(--r-lg);
  padding: clamp(var(--space-5), 4vw, var(--space-8));
  max-width: 74ch; margin-inline: auto; text-align: center;
}
.areas h2 { font-size: clamp(1.4rem, 2.6vw, 1.9rem); }
.areas p { margin-top: var(--space-3); color: var(--ink-soft); font-size: var(--text-base); }
.areas a { color: var(--pink-deep); font-weight: 700; }

/* ------------------------------------------------------------- quote band */
.qband {
  display: flex; align-items: center; justify-content: space-between; gap: var(--space-6);
  flex-wrap: wrap; background: var(--blush); border-radius: var(--r-xl);
  padding: clamp(var(--space-5), 4vw, var(--space-8));
}
.qband h2 { font-size: clamp(1.4rem, 2.8vw, 2rem); }
.qband p { margin-top: .5rem; color: var(--ink-soft); font-size: var(--text-sm); max-width: 52ch; }
.qband__cta { display: flex; flex-wrap: wrap; gap: var(--space-3); }
@media (max-width: 720px) { .qband { flex-direction: column; align-items: flex-start; } }

/* ------------------------------------------------------------- related links */
.related__head { font-size: clamp(1.3rem, 2.4vw, 1.7rem); text-align: center; margin-bottom: var(--space-5); }
.related { display: flex; flex-wrap: wrap; gap: var(--space-3); justify-content: center; }
.rel {
  display: inline-flex; align-items: center; gap: .6rem;
  background: #fff; border: 2px solid var(--line); border-radius: var(--r-pill);
  padding: .55rem 1.15rem .55rem .55rem; text-decoration: none;
  color: var(--ink); font-weight: 700; font-size: var(--text-sm);
  transition: border-color .2s ease, transform .2s ease;
}
.rel:hover { border-color: var(--pink); transform: translateY(-2px); }
.rel__chip { width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; background: var(--blush); color: var(--pink-deep); flex: none; }

/* ------------------------------------------------------------- FAQ */
.faqs { display: grid; gap: var(--space-3); max-width: 60rem; }
.faq {
  background: #fff; border: 2px solid var(--line-soft); border-radius: var(--r-lg);
  padding: 0 clamp(var(--space-4), 3vw, var(--space-6));
  transition: border-color .2s ease;
}
.faq[open] { border-color: var(--butter); }
.faq summary {
  list-style: none; cursor: pointer; display: flex; align-items: center;
  justify-content: space-between; gap: var(--space-4);
  padding-block: clamp(var(--space-4), 3vw, var(--space-5));
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary h3 { font-family: var(--font-body); font-size: var(--text-base); font-weight: 700; margin: 0; }
.faq summary::after {
  content: ""; flex: none; width: 12px; height: 12px;
  border-right: 2.5px solid var(--butter-deep); border-bottom: 2.5px solid var(--butter-deep);
  transform: rotate(45deg) translateY(-2px); transition: transform .25s ease;
}
.faq[open] summary::after { transform: rotate(-135deg) translateY(-2px); }
.faq > p {
  margin: 0; padding-bottom: clamp(var(--space-4), 3vw, var(--space-5));
  color: var(--ink-soft); font-size: var(--text-sm); max-width: 72ch;
}

/* ------------------------------------------------------------- follow band */
.follow {
  padding-block: clamp(var(--space-10), 6vw, var(--space-16));
  background:
    radial-gradient(120% 90% at 12% 0%, var(--blush) 0%, rgba(253,243,247,0) 62%),
    radial-gradient(110% 90% at 88% 12%, var(--lav-tint) 0%, rgba(246,242,253,0) 60%),
    radial-gradient(120% 100% at 50% 105%, var(--mint-tint) 0%, rgba(240,250,248,0) 58%),
    #fff;
}
.follow__strip {
  display: grid; grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: var(--space-3); margin-bottom: var(--space-8);
}
.follow__strip figure {
  margin: 0; border-radius: var(--r-md); overflow: hidden;
  background: var(--blush); box-shadow: var(--shadow-sm);
}
.follow__strip img { width: 100%; height: clamp(120px, 13vw, 190px); object-fit: cover; display: block; transition: transform .5s ease; }
.follow__strip figure:hover img { transform: scale(1.06); }
.follow__strip figure:nth-child(even) { transform: translateY(14px); }

.follow__pills { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--space-4); max-width: 58rem; margin-inline: auto; }
.spill {
  display: flex; align-items: center; gap: var(--space-4);
  background: #fff; border: 2px solid var(--line-soft); border-radius: var(--r-lg);
  padding: var(--space-4) var(--space-5); text-decoration: none; color: var(--ink);
  box-shadow: var(--shadow-sm); position: relative;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.spill:hover { transform: translateY(-4px); border-color: var(--edge); box-shadow: 0 12px 30px rgba(63,74,90,.09); }
.spill__chip { width: 48px; height: 48px; flex: none; border-radius: 50%; display: grid; place-items: center; background: var(--edge); color: #fff; }
.spill__text { display: flex; flex-direction: column; line-height: 1.25; min-width: 0; }
.spill__text b { font-family: var(--font-display); font-size: var(--text-lg); font-weight: 600; }
.spill__text i { font-style: normal; font-size: var(--text-xs); color: var(--muted); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.spill__go { margin-left: auto; color: var(--deep); font-size: 1.1rem; opacity: .55; }
.spill:hover .spill__go { opacity: 1; }
.spill--ig { --edge: var(--pink);   --deep: var(--pink-deep);   background: var(--blush); border-color: transparent; }
.spill--tt { --edge: var(--lav);    --deep: var(--lav-deep);    background: var(--lav-tint); border-color: transparent; }
.spill--fb { --edge: var(--mint);   --deep: var(--mint-deep);   background: var(--mint-tint); border-color: transparent; }

.follow__tag { text-align: center; margin-top: var(--space-6); font-size: var(--text-sm); color: var(--muted); }
.follow__tag span { color: var(--pink-deep); font-weight: 700; }

@media (max-width: 1020px) {
  .follow__strip { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .follow__pills { grid-template-columns: 1fr; max-width: 30rem; }
}
@media (max-width: 560px) {
  .follow__strip { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--space-2); }
  .follow__strip figure:nth-child(even) { transform: none; }
  .follow__strip img { height: 128px; }
}

/* ------------------------------------------------------------- footer socials */
.footer .socials--footer { margin-top: var(--space-5); }
.footer .socials--footer .social { width: 44px; height: 44px; }

/* Top bar breathing room: nine nav items plus social icons is tight at 1360px */
@media (min-width: 1360px) and (max-width: 1520px) {
  .nav { gap: 0.85rem; }
  .header__actions .header__socials { gap: 0.3rem; }
  .header__actions .header__socials .social { width: 36px; height: 36px; }
}
@media (min-width: 1081px) and (max-width: 1180px) {
  .nav { gap: 0.7rem; }
  .nav a { font-size: 0.875rem; }
}
.faqs { margin-inline: auto; }

@media (max-width: 560px) {
  /* compact the category cards into a chip-beside-text row on phones */
  .cat { flex-direction: row; align-items: flex-start; gap: var(--space-4); padding: var(--space-4); }
  .cat__chip { width: 46px; height: 46px; }
  .cat__body b { font-size: var(--text-lg); }
  .cat__go { top: var(--space-4); right: var(--space-4); }
  .cat__body { padding-right: 1.6rem; }
  .qband__cta { width: 100%; }
  .qband__cta .btn { flex: 1 1 100%; justify-content: center; }
}
