@charset "utf-8";

/* ==========================================================================
   Keep It Sweet Chester
   Design tokens are derived directly from the logo artwork:
     bubblegum pink #f0628e, sky cyan #31c0f0, candy red #e43c30, grey #d2d1d6.
   The bright brand tones are used for FILLS and DECORATION; deeper "ink"
   variants carry text and buttons so everything clears WCAG AA on white.
   ========================================================================== */

:root {
  /* brand */
  --pink: #f0628e;
  --pink-soft: #ffd9e5;
  --pink-tint: #fff1f6;
  --pink-mid: #d8336a;      /* 4.56:1 with white  */
  --pink-ink: #b81e57;      /* 6.31:1 on white    */

  --cyan: #31c0f0;
  --cyan-soft: #d5f2fd;
  --cyan-tint: #f0fbff;
  --cyan-mid: #0b7a9e;      /* 4.89:1 with white  */
  --cyan-ink: #0b6f96;      /* 5.57:1 on white    */

  --red: #e43c30;
  --butter: #ffd45e;
  --mint: #6ed6b3;

  /* neutrals */
  --ink: #2a1b2b;
  --ink-soft: #5d4a5e;
  --muted: #746275;
  --line: #ecdfe6;
  --line-strong: #d9c7d2;
  --surface: #ffffff;
  --surface-2: #fffafc;
  --surface-3: #f7f2f6;

  /* shape + motion */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-pill: 999px;
  --shadow-sm: 0 2px 6px rgba(42, 27, 43, 0.06);
  --shadow-md: 0 10px 28px -12px rgba(42, 27, 43, 0.24);
  --shadow-lg: 0 26px 60px -28px rgba(184, 30, 87, 0.42);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --shell: 1160px;
  --font: "Segoe UI Variable Text", "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  --font-display: ui-rounded, "SF Pro Rounded", "Segoe UI Variable Display", "Segoe UI", system-ui, sans-serif;
}

/* --------------------------------------------------------------- reset */

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg, video { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.14; margin: 0; letter-spacing: -0.018em; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
ul, ol { margin: 0; padding: 0; }
a { color: var(--pink-ink); text-underline-offset: 3px; text-decoration-thickness: 2px; }
a:hover { color: var(--pink-mid); }

:focus-visible {
  outline: 3px solid var(--cyan-mid);
  outline-offset: 3px;
  border-radius: 4px;
}

.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;
}

.skip-link {
  position: absolute; left: 50%; top: 0; transform: translate(-50%, -120%);
  z-index: 100; background: var(--ink); color: #fff; padding: 0.7rem 1.2rem;
  border-radius: 0 0 var(--r-md) var(--r-md); font-weight: 700; text-decoration: none;
}
.skip-link:focus { transform: translate(-50%, 0); color: #fff; }

.shell { width: min(var(--shell), 100% - 2.5rem); margin-inline: auto; }
.shell-narrow { width: min(760px, 100% - 2.5rem); }
.center { text-align: center; }
.muted { color: var(--muted); }
.icon { width: 1.15em; height: 1.15em; flex: none; }

/* ------------------------------------------------------------- buttons */

.btn {
  --btn-bg: var(--pink-mid);
  --btn-fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.78rem 1.5rem;
  font: 700 1rem/1.2 var(--font-display);
  color: var(--btn-fg); background: var(--btn-bg);
  border: 2px solid transparent; border-radius: var(--r-pill);
  text-decoration: none; cursor: pointer;
  transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease), background-color 0.18s var(--ease);
}
.btn:hover { transform: translateY(-2px); color: var(--btn-fg); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: linear-gradient(135deg, var(--pink-mid), var(--pink-ink));
  box-shadow: var(--shadow-lg);
}
.btn-primary:hover { background: linear-gradient(135deg, var(--pink-ink), #a1194c); }

.btn-secondary { --btn-bg: var(--cyan-mid); box-shadow: 0 20px 44px -26px rgba(11, 122, 158, 0.85); }
.btn-secondary:hover { --btn-bg: var(--cyan-ink); }

.btn-ghost { --btn-bg: transparent; --btn-fg: var(--pink-ink); border-color: currentColor; }
.btn-ghost:hover { --btn-bg: var(--pink-tint); }

.btn-invert { --btn-bg: #fff; --btn-fg: var(--pink-ink); box-shadow: var(--shadow-md); }
.btn-invert:hover { --btn-bg: var(--pink-tint); }

.btn-quiet { --btn-bg: transparent; --btn-fg: var(--ink-soft); border-color: var(--line-strong); }
.btn-quiet:hover { --btn-bg: var(--surface-3); }

.btn-lg { padding: 1rem 1.9rem; font-size: 1.0625rem; }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.9rem; }
.btn-block { width: 100%; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-family: var(--font-display); font-weight: 700; text-decoration: none;
  color: var(--pink-ink);
}
.link-arrow:hover { gap: 0.8rem; }
.link-arrow .icon { transition: transform 0.18s var(--ease); }

/* -------------------------------------------------------------- header */

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(1.6) blur(12px);
  border-bottom: 1px solid var(--line);
}
.site-header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 78px; }

.brand { display: flex; align-items: center; gap: 0.7rem; text-decoration: none; color: inherit; }
.brand-mark { width: 56px; height: 56px; border-radius: 14px; object-fit: contain; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-family: var(--font-display); font-weight: 800; font-size: 1.22rem; color: var(--pink-ink); letter-spacing: -0.02em; }
.brand-sub { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.11em; text-transform: uppercase; color: var(--cyan-ink); }

.nav-list { display: flex; align-items: center; gap: 0.25rem; list-style: none; }
.nav-link {
  display: block; padding: 0.55rem 0.85rem; border-radius: var(--r-pill);
  font-weight: 650; font-size: 0.97rem; color: var(--ink-soft); text-decoration: none;
  transition: background-color 0.16s var(--ease), color 0.16s var(--ease);
}
.nav-link:hover { background: var(--pink-tint); color: var(--pink-ink); }
.nav-link.is-current { color: var(--pink-ink); background: var(--pink-tint); }
.nav-cta-item { margin-left: 0.5rem; }

.nav-mobile { display: none; }
.nav-toggle {
  display: flex; align-items: center; gap: 0.55rem; cursor: pointer; list-style: none;
  padding: 0.6rem 1rem; border: 2px solid var(--line-strong); border-radius: var(--r-pill);
  font-family: var(--font-display); font-weight: 700; color: var(--ink);
}
.nav-toggle::-webkit-details-marker { display: none; }
.nav-toggle-bars { display: grid; gap: 4px; }
.nav-toggle-bars span { display: block; width: 20px; height: 2.5px; background: var(--pink-mid); border-radius: 2px; }
.nav-drawer {
  position: absolute; left: 0; right: 0; top: 100%;
  background: #fff; border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-md); padding: 0.75rem 1.25rem 1.25rem;
}
.nav-list-mobile { flex-direction: column; align-items: stretch; gap: 0.15rem; }
.nav-list-mobile .nav-link { padding: 0.8rem 0.9rem; font-size: 1.05rem; }
.nav-list-mobile .nav-cta-item { margin: 0.5rem 0 0; }
.nav-list-mobile .btn { width: 100%; }

@media (max-width: 940px) {
  .nav-list-desktop { display: none; }
  .nav-mobile { display: block; }
  .brand-mark { width: 46px; height: 46px; }
}

/* ---------------------------------------------------------------- hero */

.hero {
  position: relative; isolation: isolate; overflow: hidden;
  padding: clamp(3rem, 7vw, 5.5rem) 0 clamp(4rem, 8vw, 6.5rem);
  background:
    radial-gradient(1100px 520px at 12% -10%, var(--pink-soft) 0%, transparent 62%),
    radial-gradient(900px 480px at 92% 8%, var(--cyan-soft) 0%, transparent 60%),
    linear-gradient(180deg, var(--pink-tint), #fff 78%);
}
/* Confetti sprinkles, drawn once and tiled. */
.hero-decor {
  position: absolute; inset: 0; z-index: -1; opacity: 0.5;
  background-image:
    radial-gradient(6px 12px at 20px 30px, rgba(240, 98, 142, 0.5) 96%, transparent 100%),
    radial-gradient(12px 6px at 140px 90px, rgba(49, 192, 240, 0.45) 96%, transparent 100%),
    radial-gradient(6px 12px at 250px 40px, rgba(255, 212, 94, 0.55) 96%, transparent 100%),
    radial-gradient(10px 5px at 60px 170px, rgba(228, 60, 48, 0.35) 96%, transparent 100%),
    radial-gradient(5px 10px at 210px 200px, rgba(110, 214, 179, 0.5) 96%, transparent 100%);
  background-size: 300px 240px;
}
.hero-inner {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 4rem); align-items: center;
}
.eyebrow {
  display: inline-block; margin: 0 0 0.9rem;
  font: 800 0.78rem/1 var(--font-display); letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--cyan-ink);
}
.eyebrow-hero {
  background: #fff; border: 2px solid var(--cyan-soft);
  padding: 0.5rem 1rem; border-radius: var(--r-pill); box-shadow: var(--shadow-sm);
}
.hero-title {
  font-size: clamp(2.4rem, 6.2vw, 4.15rem); font-weight: 800;
  background: linear-gradient(120deg, var(--pink-ink) 12%, var(--pink) 52%, var(--cyan-ink) 96%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 1.1rem;
}
.hero-text { font-size: clamp(1.06rem, 1.6vw, 1.22rem); color: var(--ink-soft); max-width: 34rem; margin-bottom: 1.9rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-bottom: 2rem; }
.center-actions { justify-content: center; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 0.5rem 1.4rem; list-style: none; font-size: 0.94rem; font-weight: 650; color: var(--ink-soft); }
.hero-badges li { display: flex; align-items: center; gap: 0.45rem; }
.hero-badges .icon { color: var(--mint); width: 1.05rem; height: 1.05rem; }
.hero-art img { filter: drop-shadow(0 30px 50px rgba(184, 30, 87, 0.22)); }

@media (max-width: 940px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-text { margin-inline: auto; }
  .hero-actions, .hero-badges { justify-content: center; }
  .hero-art { order: -1; max-width: 420px; margin-inline: auto; }
}

/* Scalloped dividers -- echoes the wavy ring around the logo.
   Pinned to the section's bottom EDGE. In normal flow they would sit above the
   section's bottom padding and paint over the last line of content. */
.scallop-hero,
.scallop-page {
  position: absolute; left: 0; right: 0; bottom: 0; height: 24px;
  z-index: 3; pointer-events: none;
  background-image: radial-gradient(circle 24px at 50% 100%, #fff 97%, rgba(255, 255, 255, 0) 100%);
  background-size: 48px 24px; background-repeat: repeat-x;
}
/* The footer divider is a flow sibling of <footer>, so it stays in flow. */
.scallop-footer {
  position: relative; height: 26px; margin: 0;
  background-image: radial-gradient(circle 26px at 50% 0, var(--ink) 97%, rgba(0, 0, 0, 0) 100%);
  background-size: 52px 26px; background-repeat: repeat-x;
}

/* ------------------------------------------------------------ sections */

.section { padding: clamp(3.2rem, 7vw, 5.5rem) 0; }
.section-tint { background: linear-gradient(180deg, var(--surface-2), var(--pink-tint)); }
.section-intro { padding-top: clamp(2.5rem, 5vw, 4rem); }

.section-head { max-width: 44rem; margin: 0 auto clamp(2rem, 4vw, 3rem); text-align: center; }
.section-head.is-left { margin-inline: 0; text-align: left; }
.section-title { font-size: clamp(1.85rem, 3.6vw, 2.75rem); margin-bottom: 0.85rem; }
.section-text { color: var(--ink-soft); font-size: 1.06rem; }
.section-foot { margin-top: 2.5rem; text-align: center; }

.page-hero {
  position: relative; padding: clamp(2.8rem, 6vw, 4.5rem) 0 clamp(3.4rem, 6vw, 4.6rem);
  background:
    radial-gradient(800px 380px at 15% 0%, var(--pink-soft) 0%, transparent 65%),
    radial-gradient(700px 340px at 88% 10%, var(--cyan-soft) 0%, transparent 62%),
    linear-gradient(180deg, var(--pink-tint), #fff);
}
/* The page hero already carries generous bottom padding; a full section's worth
   of top padding on top of it leaves a dead band. */
.page-hero + .section { padding-top: clamp(2rem, 4vw, 3rem); }
.page-hero h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); margin-bottom: 0.9rem; color: var(--pink-ink); max-width: 20ch; }
.page-lead { font-size: clamp(1.05rem, 1.6vw, 1.2rem); color: var(--ink-soft); max-width: 46rem; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.split-story { grid-template-columns: 1.35fr 0.65fr; }
.split-form { grid-template-columns: 1.5fr 0.5fr; }
@media (max-width: 940px) { .split, .split-story, .split-form { grid-template-columns: 1fr; } }

.prose { font-size: 1.08rem; color: var(--ink-soft); }
.prose p { margin-bottom: 1.15em; }
.rich-list { list-style: none; display: grid; gap: 0.5rem; margin: 0 0 1em; }
.rich-list li { position: relative; padding-left: 1.6rem; }
.rich-list li::before {
  content: ""; position: absolute; left: 0; top: 0.62em; width: 8px; height: 8px;
  border-radius: 50%; background: var(--pink);
}

/* ---------------------------------------------------------- stat cards */

.stat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; list-style: none; }
.stat-grid li {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 1.4rem; box-shadow: var(--shadow-sm); display: grid; gap: 0.15rem;
}
.stat-key {
  display: grid; place-items: center; width: 42px; height: 42px; margin-bottom: 0.5rem;
  border-radius: 12px; background: var(--pink-tint); color: var(--pink-ink);
}
.stat-grid strong { font-family: var(--font-display); font-size: 1.06rem; }
.stat-grid span:last-child { font-size: 0.92rem; color: var(--muted); }
@media (max-width: 560px) { .stat-grid { grid-template-columns: 1fr; } }

/* ------------------------------------------------------- offer / cards */

/* Flex rather than grid so a trailing partial row (5 cards over 3 columns)
   centres instead of hanging off to the left. */
.offer-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.25rem; }
.offer-card { flex: 1 1 280px; max-width: 380px; }
.offer-grid-lg { gap: 1.5rem; }
.offer-card {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--r-xl);
  padding: 1.9rem 1.6rem; box-shadow: var(--shadow-sm); overflow: hidden;
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease), border-color 0.22s var(--ease);
}
.offer-card::after {
  content: ""; position: absolute; inset: 0 0 auto; height: 5px;
  background: linear-gradient(90deg, var(--pink), var(--cyan));
}
.offer-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--pink-soft); }
.offer-icon {
  display: grid; place-items: center; width: 58px; height: 58px; margin-bottom: 1.1rem;
  border-radius: 18px; background: linear-gradient(140deg, var(--pink-tint), var(--cyan-tint));
  color: var(--pink-ink); border: 1px solid var(--pink-soft);
}
.offer-icon .cat-icon { width: 34px; height: 34px; display: block; }
.offer-title { font-size: 1.28rem; margin-bottom: 0.55rem; }
.offer-blurb { color: var(--ink-soft); font-size: 0.99rem; margin-bottom: 1.1rem; }

.chip-row { display: flex; flex-wrap: wrap; gap: 0.4rem; list-style: none; }
.chip {
  font-size: 0.82rem; font-weight: 650; padding: 0.3rem 0.7rem; border-radius: var(--r-pill);
  background: var(--surface-3); color: var(--ink-soft); border: 1px solid var(--line);
}

/* ---------------------------------------------------------- step cards */

.step-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.25rem; list-style: none; counter-reset: step; }
.step-card { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--r-xl); padding: 2.4rem 1.5rem 1.6rem; box-shadow: var(--shadow-sm); }
.step-num {
  position: absolute; top: -20px; left: 1.5rem; display: grid; place-items: center;
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(140deg, var(--pink), var(--pink-ink)); color: #fff;
  font: 800 1.2rem var(--font-display); box-shadow: var(--shadow-md);
}
.step-card h3 { font-size: 1.14rem; margin-bottom: 0.45rem; }
.step-card p { color: var(--ink-soft); font-size: 0.97rem; }

/* -------------------------------------------------------------- events */

.event-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.event-card {
  display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease);
}
.event-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.event-media { aspect-ratio: 16 / 10; overflow: hidden; background: var(--surface-3); }
.event-media img { width: 100%; height: 100%; object-fit: cover; }
.event-body { padding: 1.5rem; display: grid; gap: 0.55rem; }
.event-date {
  display: inline-flex; align-items: center; gap: 0.45rem; margin: 0; width: fit-content;
  font: 700 0.85rem var(--font-display); color: var(--cyan-ink);
  background: var(--cyan-tint); border: 1px solid var(--cyan-soft);
  padding: 0.32rem 0.75rem; border-radius: var(--r-pill);
}
.event-title { font-size: 1.24rem; }
.event-meta { display: flex; flex-wrap: wrap; gap: 0.4rem 1.1rem; list-style: none; font-size: 0.92rem; color: var(--muted); }
.event-meta li { display: flex; align-items: center; gap: 0.35rem; }
.event-blurb { color: var(--ink-soft); font-size: 0.97rem; }
.event-card-past { opacity: 0.94; }
.event-card-past .event-date { color: var(--muted); background: var(--surface-3); border-color: var(--line); }

/* ------------------------------------------------------------ packages */

.package-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.4rem; align-items: start; }
.package-card {
  position: relative; background: #fff; border: 2px solid var(--line);
  border-radius: var(--r-xl); padding: 1.9rem 1.6rem; display: grid; gap: 0.75rem;
  box-shadow: var(--shadow-sm);
}
.package-card.is-popular { border-color: var(--pink); box-shadow: var(--shadow-md); }
.package-flag {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--pink-mid), var(--pink-ink)); color: #fff;
  font: 800 0.74rem/1 var(--font-display); letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.45rem 0.9rem; border-radius: var(--r-pill); white-space: nowrap;
}
.package-card h3 { font-size: 1.3rem; }
.package-price { margin: 0; font: 800 1.05rem var(--font-display); color: var(--cyan-ink); }
.package-blurb { color: var(--ink-soft); font-size: 0.98rem; margin: 0; }
.tick-list { list-style: none; display: grid; gap: 0.55rem; font-size: 0.95rem; color: var(--ink-soft); }
.tick-list li { display: flex; align-items: flex-start; gap: 0.55rem; }
.tick-list .icon { color: var(--mint); margin-top: 0.18em; }

/* ------------------------------------------------------------- quotes */

.quote-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.4rem; }
.quote-card {
  margin: 0; background: linear-gradient(150deg, #fff, var(--pink-tint));
  border: 1px solid var(--pink-soft); border-radius: var(--r-xl); padding: 1.8rem;
  display: grid; gap: 1rem; box-shadow: var(--shadow-sm);
}
.quote-mark { color: var(--pink); }
.quote-mark .icon { width: 34px; height: 34px; }
.quote-card blockquote { margin: 0; font-size: 1.05rem; color: var(--ink); font-style: italic; }
.quote-card figcaption { display: grid; font-size: 0.92rem; }
.quote-card figcaption strong { font-family: var(--font-display); }
.quote-card figcaption span { color: var(--muted); }

/* -------------------------------------------------------------- values */

.value-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.25rem; }
.value-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.6rem; box-shadow: var(--shadow-sm); }
.value-card h3 { font-size: 1.14rem; margin-bottom: 0.5rem; color: var(--pink-ink); }
.value-card p { color: var(--ink-soft); font-size: 0.97rem; }

.story-aside { display: grid; gap: 1.25rem; position: sticky; top: 100px; }
.story-logo { border-radius: var(--r-xl); border: 1px solid var(--line); background: #fff; padding: 1rem; }
.story-card { background: linear-gradient(150deg, var(--cyan-tint), #fff); border: 1px solid var(--cyan-soft); border-radius: var(--r-xl); padding: 1.6rem; display: grid; gap: 0.6rem; }
.story-card h2 { font-size: 1.2rem; }
@media (max-width: 940px) { .story-aside { position: static; } }

/* ------------------------------------------------------------- gallery */

.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.1rem; }
.gallery-item { margin: 0; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line); background: #fff; box-shadow: var(--shadow-sm); }
.gallery-item img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform 0.35s var(--ease); }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item figcaption { padding: 0.8rem 1rem; font-size: 0.92rem; color: var(--ink-soft); }

/* -------------------------------------------------------- empty states */

.empty-state {
  text-align: center; padding: clamp(2.5rem, 6vw, 4rem) 1.5rem;
  border: 2px dashed var(--line-strong); border-radius: var(--r-xl);
  background: var(--surface-2); display: grid; gap: 0.7rem; justify-items: center;
}
.empty-icon { display: grid; place-items: center; width: 62px; height: 62px; border-radius: 50%; background: var(--pink-tint); color: var(--pink); }
.empty-icon .icon { width: 30px; height: 30px; }
.empty-state h3 { font-size: 1.35rem; }
.empty-state p { color: var(--muted); max-width: 42ch; }

/* ---------------------------------------------------------------- FAQ */

.faq-list { display: grid; gap: 0.75rem; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.15rem 1.4rem; cursor: pointer; list-style: none;
  font-family: var(--font-display); font-weight: 700; font-size: 1.04rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { background: var(--pink-tint); }
.faq-marker { color: var(--pink-ink); transition: transform 0.2s var(--ease); flex: none; }
.faq-item[open] .faq-marker { transform: rotate(45deg); }
.faq-answer { padding: 0 1.4rem 1.3rem; color: var(--ink-soft); }

/* --------------------------------------------------------- cta banner */

.cta-banner {
  background: linear-gradient(135deg, var(--pink-ink), var(--pink-mid) 55%, var(--cyan-ink));
  color: #fff; padding: clamp(2.6rem, 6vw, 4rem) 0;
}
.cta-banner-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.75rem; }
.cta-banner h2 { font-size: clamp(1.6rem, 3.4vw, 2.3rem); margin-bottom: 0.5rem; }
.cta-banner p { margin: 0; opacity: 0.94; max-width: 46ch; }

/* -------------------------------------------------------------- forms */

.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-xl); padding: clamp(1.5rem, 3vw, 2.2rem); box-shadow: var(--shadow-sm); }
.form-heading { font-size: 1.35rem; margin-bottom: 1.4rem; }
.field-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.1rem; }
.field-full { grid-column: 1 / -1; }
.field-half { grid-column: span 1; }
@media (max-width: 700px) { .field-grid { grid-template-columns: 1fr; } .field-half { grid-column: 1 / -1; } }

.field { display: grid; gap: 0.35rem; align-content: start; }
.field-label { font-family: var(--font-display); font-weight: 700; font-size: 0.95rem; }
.req { color: var(--red); margin-left: 0.2rem; }
.field-hint { margin: 0; font-size: 0.85rem; color: var(--muted); }
.field-error { margin: 0; font-size: 0.87rem; font-weight: 650; color: #b3261e; }

.control {
  width: 100%; padding: 0.72rem 0.95rem; font: inherit; font-size: 1rem; color: var(--ink);
  background: var(--surface-2); border: 2px solid var(--line-strong); border-radius: var(--r-md);
  transition: border-color 0.16s var(--ease), box-shadow 0.16s var(--ease), background-color 0.16s var(--ease);
}
.control:hover { border-color: var(--pink-soft); }
.control:focus {
  outline: none; background: #fff; border-color: var(--pink-mid);
  box-shadow: 0 0 0 4px rgba(240, 98, 142, 0.18);
}
.control.has-error { border-color: #b3261e; background: #fff5f4; }
textarea.control { resize: vertical; min-height: 7rem; line-height: 1.55; }
select.control { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--ink-soft) 50%), linear-gradient(135deg, var(--ink-soft) 50%, transparent 50%); background-position: calc(100% - 20px) calc(50% - 2px), calc(100% - 14px) calc(50% - 2px); background-size: 6px 6px, 6px 6px; background-repeat: no-repeat; padding-right: 2.5rem; }
.control-file { padding: 0.55rem; background: #fff; }
.control-sm { padding: 0.45rem 0.7rem; font-size: 0.92rem; }

/* Honeypot: hidden from sight AND from assistive tech, but not display:none,
   which some bots detect. */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-note { font-size: 0.87rem; color: var(--muted); margin: 1.2rem 0; }

.alert { display: flex; gap: 0.85rem; padding: 1.1rem 1.3rem; border-radius: var(--r-lg); margin-bottom: 1.5rem; border: 1px solid; }
.alert p { margin: 0.25rem 0 0; font-size: 0.95rem; }
.alert-icon .icon { width: 1.4rem; height: 1.4rem; }
.alert-success { background: #edfbf5; border-color: #a9e5cd; color: #10503a; }
.alert-error { background: #fff4f3; border-color: #f6c3bd; color: #8c1d18; }

.side-card-stack { display: grid; gap: 1.1rem; align-content: start; position: sticky; top: 100px; }
@media (max-width: 940px) { .side-card-stack { position: static; } }
.side-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.5rem; box-shadow: var(--shadow-sm); }
.side-card-tint { background: linear-gradient(150deg, var(--cyan-tint), #fff); border-color: var(--cyan-soft); }
.side-card h2 { display: flex; align-items: center; gap: 0.5rem; font-size: 1.08rem; margin-bottom: 0.7rem; }
.side-card h2 .icon { color: var(--pink-ink); }
.mini-steps { padding-left: 1.15rem; display: grid; gap: 0.4rem; font-size: 0.95rem; color: var(--ink-soft); margin-bottom: 0.8rem; }
.contact-list { list-style: none; display: grid; gap: 0.6rem; font-size: 0.95rem; }
.contact-list li { display: flex; align-items: center; gap: 0.55rem; }
.contact-list .icon { color: var(--cyan-ink); }

/* --------------------------------------------------------------- error */

.section-error { padding: clamp(4rem, 10vw, 7rem) 0; }
.error-code { font: 800 clamp(4rem, 12vw, 7rem)/1 var(--font-display); color: var(--pink-soft); margin: 0 0 0.5rem; }

/* -------------------------------------------------------------- footer */

.site-footer { background: var(--ink); color: #f3e9ef; padding: clamp(3rem, 6vw, 4.5rem) 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 0.8fr 1.1fr; gap: 2.5rem; }
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr; gap: 2rem; } }
.footer-mark { width: 76px; height: 76px; border-radius: 18px; margin-bottom: 1rem; }
.footer-blurb { color: #cbb9c4; max-width: 34ch; }
.footer-heading { font-size: 0.82rem; letter-spacing: 0.13em; text-transform: uppercase; color: var(--pink); margin-bottom: 1rem; }
.footer-links { list-style: none; display: grid; gap: 0.55rem; font-size: 0.97rem; }
.footer-links a { color: #f3e9ef; text-decoration: none; }
.footer-links a:hover { color: var(--pink); text-decoration: underline; }
.footer-contact li { display: flex; align-items: center; gap: 0.6rem; color: #cbb9c4; }
.footer-contact .icon { color: var(--cyan); flex: none; }
.social-row { display: flex; gap: 0.6rem; list-style: none; margin-top: 1.25rem; }
.social-link {
  display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.09); color: #fff; transition: background-color 0.18s var(--ease);
}
.social-link:hover { background: var(--pink-mid); color: #fff; }
.social-link .icon { width: 20px; height: 20px; }
.footer-base {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.75rem;
  margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.87rem; color: #a8939f;
}
.footer-base p { margin: 0; }
.footer-admin { color: #a8939f; text-decoration: none; }
.footer-admin:hover { color: var(--pink); }

/* ========================================================================
   Admin
   ======================================================================== */

.admin { background: var(--surface-3); }
.admin-login-page { background: linear-gradient(150deg, var(--pink-tint), var(--cyan-tint)); min-height: 100vh; }
.login-wrap { min-height: 100vh; display: grid; place-items: center; padding: 2rem 1.25rem; }
.login-card { width: min(430px, 100%); background: #fff; border-radius: var(--r-xl); padding: 2.4rem; box-shadow: var(--shadow-md); text-align: center; }
.login-logo { margin: 0 auto 1.2rem; border-radius: var(--r-lg); }
.login-card h1 { font-size: 1.65rem; margin-bottom: 0.35rem; }
.login-form { margin-top: 1.6rem; display: grid; gap: 1.1rem; text-align: left; }
.login-back { margin-top: 1.4rem; font-size: 0.9rem; }

.admin-topbar {
  position: sticky; top: 0; z-index: 40; display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: 0.75rem clamp(1rem, 3vw, 2rem); background: #fff; border-bottom: 1px solid var(--line);
}
.admin-brand { display: flex; align-items: center; gap: 0.7rem; text-decoration: none; color: inherit; }
.admin-brand img { border-radius: 10px; }
.admin-brand span { display: grid; line-height: 1.2; }
.admin-brand strong { font-family: var(--font-display); font-size: 1.02rem; }
.admin-brand small { font-size: 0.78rem; color: var(--muted); }
.admin-topbar-actions { display: flex; align-items: center; gap: 0.6rem; }
.inline-form { display: inline-flex; align-items: center; gap: 0.4rem; margin: 0; }

.admin-layout { display: grid; grid-template-columns: 258px minmax(0, 1fr); gap: 0; align-items: start; }
.admin-nav {
  position: sticky; top: 62px; align-self: start; max-height: calc(100vh - 62px); overflow-y: auto;
  padding: 1.5rem 1rem 3rem; background: #fff; border-right: 1px solid var(--line); min-height: calc(100vh - 62px);
}
.admin-nav-group { margin-bottom: 1.6rem; }
.admin-nav-group h2 { font-size: 0.72rem; letter-spacing: 0.13em; text-transform: uppercase; color: var(--muted); margin: 0 0 0.6rem 0.75rem; }
.admin-nav ul { list-style: none; display: grid; gap: 0.15rem; }
.admin-nav-link {
  display: flex; align-items: center; gap: 0.65rem; padding: 0.6rem 0.75rem; border-radius: var(--r-sm);
  color: var(--ink-soft); text-decoration: none; font-weight: 620; font-size: 0.95rem;
}
.admin-nav-link:hover { background: var(--pink-tint); color: var(--pink-ink); }
.admin-nav-link.is-active { background: linear-gradient(120deg, var(--pink-mid), var(--pink-ink)); color: #fff; }
.admin-nav-link.is-active .icon { color: #fff; }
.admin-badge {
  margin-left: auto; min-width: 22px; padding: 0.1rem 0.4rem; border-radius: var(--r-pill);
  background: var(--red); color: #fff; font-size: 0.75rem; font-weight: 800; text-align: center;
}
.admin-nav-link.is-active .admin-badge { background: rgba(255, 255, 255, 0.28); }

.admin-main { padding: clamp(1.5rem, 3vw, 2.5rem); min-width: 0; }
.admin-head { margin-bottom: 1.75rem; }
.admin-head h1 { font-size: clamp(1.6rem, 3vw, 2.1rem); margin-bottom: 0.3rem; }
.admin-empty { padding: 2rem; background: #fff; border: 2px dashed var(--line-strong); border-radius: var(--r-lg); text-align: center; }

@media (max-width: 900px) {
  .admin-layout { grid-template-columns: 1fr; }
  .admin-nav { position: static; max-height: none; min-height: 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .admin-nav ul { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); display: grid; }
  .admin-nav-group { margin-bottom: 1rem; }
}

.admin-alert { padding: 1.1rem 1.3rem; border-radius: var(--r-md); margin-bottom: 1.5rem; border: 1px solid; }
.admin-alert p { margin: 0.3rem 0 0; font-size: 0.94rem; }
.admin-alert-ok { background: #edfbf5; border-color: #a9e5cd; color: #10503a; }
.admin-alert-error { background: #fff4f3; border-color: #f6c3bd; color: #8c1d18; }
.admin-alert-warn { background: #fff8e8; border-color: #f0d9a0; color: #6b4c07; }
.admin-alert-info { background: var(--cyan-tint); border-color: var(--cyan-soft); color: #0a5875; }
.admin-alert a { color: inherit; }

.admin-panel { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.5rem; margin-bottom: 1.25rem; box-shadow: var(--shadow-sm); }
.admin-panel-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; margin-bottom: 1.25rem; flex-wrap: wrap; }
.admin-panel-head h2 { display: flex; align-items: center; gap: 0.5rem; font-size: 1.2rem; }
.admin-panel-actions { display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; }
.admin-panel-add { border-style: dashed; border-width: 2px; background: var(--surface-2); }
.admin-actions { display: flex; justify-content: flex-end; gap: 0.6rem; margin-top: 1.25rem; }
.stack { display: grid; gap: 1.25rem; }
.sub-card { background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--r-md); padding: 1.2rem; }

.metric-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 1rem; margin-bottom: 1.75rem; }
.metric {
  display: grid; gap: 0.2rem; padding: 1.4rem; background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-lg); text-decoration: none; color: inherit; box-shadow: var(--shadow-sm);
  transition: transform 0.18s var(--ease), border-color 0.18s var(--ease);
}
.metric:hover { transform: translateY(-3px); border-color: var(--pink); color: inherit; }
.metric-icon { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 12px; background: var(--pink-tint); color: var(--pink-ink); margin-bottom: 0.4rem; }
.metric strong { font: 800 1.9rem/1 var(--font-display); color: var(--pink-ink); }
.metric span:last-child { font-size: 0.9rem; color: var(--muted); }

.mini-list { list-style: none; display: grid; gap: 0.7rem; }
.mini-list li { display: flex; align-items: center; gap: 0.65rem; flex-wrap: wrap; padding-bottom: 0.7rem; border-bottom: 1px solid var(--line); }
.mini-list li:last-child { border-bottom: 0; padding-bottom: 0; }

.pill {
  font-size: 0.74rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em;
  padding: 0.22rem 0.6rem; border-radius: var(--r-pill); background: var(--surface-3); color: var(--ink-soft);
}
.pill-new { background: var(--pink-tint); color: var(--pink-ink); }
.pill-contacted { background: var(--cyan-tint); color: var(--cyan-ink); }
.pill-confirmed { background: #e8f8f1; color: #10503a; }
.pill-done { background: var(--surface-3); color: var(--muted); }
.pill-archived { background: var(--surface-3); color: var(--muted); }

.item-controls { display: flex; align-items: center; gap: 0.35rem; }
.icon-btn {
  display: grid; place-items: center; width: 36px; height: 36px; padding: 0;
  background: var(--surface-2); border: 1px solid var(--line-strong); border-radius: var(--r-sm);
  color: var(--ink-soft); cursor: pointer; font-size: 1rem;
}
.icon-btn:hover:not(:disabled) { background: var(--pink-tint); border-color: var(--pink); color: var(--pink-ink); }
.icon-btn:disabled { opacity: 0.4; cursor: not-allowed; }
.icon-btn-danger:hover:not(:disabled) { background: #fff4f3; border-color: #e88a80; color: #8c1d18; }

.admin-thumb { max-width: 220px; border-radius: var(--r-md); border: 1px solid var(--line); margin-bottom: 0.5rem; }
.checkline { display: flex; align-items: center; gap: 0.5rem; font-size: 0.92rem; }

.admin-gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 1rem; }
.admin-gallery-item { margin: 0; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.admin-gallery-item img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.admin-gallery-item figcaption { padding: 0.8rem; display: grid; gap: 0.6rem; }
.caption-form { display: flex; gap: 0.4rem; }
.caption-form .control { flex: 1; min-width: 0; }

.submission-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 0.9rem; margin: 0; }
.submission-grid dt { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.07em; color: var(--muted); font-weight: 700; }
.submission-grid dd { margin: 0.15rem 0 0; font-size: 0.97rem; }
.submission-message { margin-top: 1.25rem; padding-top: 1.25rem; border-top: 1px solid var(--line); }
.submission-message h3 { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.07em; color: var(--muted); margin-bottom: 0.4rem; }
.submission-message p { white-space: pre-wrap; color: var(--ink-soft); }
.status-form { gap: 0.4rem; }

/* --------------------------------------------------------- preferences */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .btn:hover, .offer-card:hover, .event-card:hover, .metric:hover { transform: none; }
  .gallery-item:hover img { transform: none; }
}

@media print {
  .site-header, .site-footer, .cta-banner, .scallop, .skip-link, .admin-nav, .admin-topbar { display: none !important; }
  body { background: #fff; }
  .hero, .page-hero, .section-tint { background: #fff !important; }
  a { text-decoration: underline; }
}

/* ------------------------------------------------------- privacy policy */

.policy { display: grid; gap: 2rem; }
.policy-section h2 { font-size: 1.35rem; color: var(--pink-ink); margin-bottom: 0.7rem; }
.policy-updated { margin-top: 1rem; font-size: 0.92rem; }
.policy-foot {
  margin-top: 2.5rem; padding-top: 1.75rem; border-top: 1px solid var(--line);
  color: var(--muted); font-size: 0.97rem;
}
.footer-base-links { display: flex; gap: 1.25rem; }
.footer-base-links a { color: #a8939f; text-decoration: none; }
.footer-base-links a:hover { color: var(--pink); }

/* --------------------------------------------- admin: notification status */

.check-list { list-style: none; display: grid; gap: 0.85rem; }
.check-row { display: flex; align-items: flex-start; gap: 0.7rem; font-size: 0.97rem; }
.check-dot {
  width: 11px; height: 11px; border-radius: 50%; flex: none; margin-top: 0.42em;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.04);
}
.check-dot.is-on { background: var(--mint); }
.check-dot.is-off { background: var(--line-strong); }
.send-stats { margin-top: 1.1rem; padding-top: 1rem; border-top: 1px solid var(--line); font-size: 0.92rem; }
.send-ok { color: #10503a; font-weight: 650; }
.send-bad { color: #8c1d18; font-weight: 650; }
.env-list { list-style: none; display: grid; gap: 0.5rem; margin: 0.9rem 0; font-size: 0.94rem; }
.env-list code {
  background: var(--surface-3); border: 1px solid var(--line); border-radius: 6px;
  padding: 0.1rem 0.4rem; font-size: 0.88rem;
}
.admin-alert code { background: rgba(0, 0, 0, 0.06); border-radius: 5px; padding: 0.05rem 0.35rem; }

/* ----------------------------------------------------------- follow strip */

.social-band { padding: clamp(2.2rem, 5vw, 3.4rem) 0; background: linear-gradient(180deg, #fff, var(--cyan-tint)); }
.social-band-inner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 1.5rem; text-align: left;
}
.social-band h2 { font-size: clamp(1.4rem, 2.8vw, 1.9rem); margin-bottom: 0.4rem; color: var(--pink-ink); }
.social-band p { margin: 0; color: var(--ink-soft); max-width: 46ch; }
.social-row-lg { gap: 0.75rem; }
.social-row-lg .social-link {
  width: 54px; height: 54px; background: #fff; color: var(--pink-ink);
  border: 2px solid var(--pink-soft); box-shadow: var(--shadow-sm);
}
.social-row-lg .social-link:hover { background: var(--pink-mid); border-color: var(--pink-mid); color: #fff; }
.social-row-lg .icon { width: 24px; height: 24px; }
@media (max-width: 620px) { .social-band-inner { justify-content: center; text-align: center; } }

/* socials inside a sidebar card on the contact page */
.side-card .social-row { margin-top: 1rem; }
.side-card .social-link { width: 38px; height: 38px; background: var(--surface-3); color: var(--pink-ink); }
.side-card .social-link:hover { background: var(--pink-mid); color: #fff; }

/* ------------------------------------------------- form row alignment fix */

/* Controls must line up across a row even when only some fields carry a hint.
   The label is the only thing above the input, and the hint now sits below it,
   so every control in a row starts at the same y position. */
.field-grid > .field { align-content: start; }
.field-grid > .field > .control { margin-top: auto; }
.field .field-hint { margin-top: 0.15rem; }

/* ---------------------------------------------------------- hero photos */

.hero-photos { position: relative; }
.hero-photos-1 .hero-photo-1 { margin: 0; }
.hero-photo { margin: 0; border-radius: var(--r-xl); overflow: hidden; background: var(--surface-3); box-shadow: var(--shadow-lg); border: 5px solid #fff; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-photos-1 .hero-photo-1 { aspect-ratio: 5 / 4; }
/* Two photos: the second is smaller and overlaps the first at the corner. */
.hero-photos-2 { padding: 0 0 3.5rem 0; }
.hero-photos-2 .hero-photo-1 { width: 82%; aspect-ratio: 4 / 3; margin-left: auto; }
.hero-photos-2 .hero-photo-2 {
  position: absolute; left: 0; bottom: 0; width: 46%; aspect-ratio: 1 / 1;
  transform: rotate(-3deg); z-index: 2;
}
@media (prefers-reduced-motion: reduce) { .hero-photos-2 .hero-photo-2 { transform: none; } }

.story-photos { display: grid; gap: 1rem; }
.story-photo { margin: 0; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line); background: #fff; box-shadow: var(--shadow-sm); }
.story-photo img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.story-photo figcaption { padding: 0.7rem 0.9rem; font-size: 0.9rem; color: var(--muted); }

/* --------------------------------------------------------------- merch */

.filter-bar { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2rem; justify-content: center; }
.filter-chip {
  display: inline-flex; align-items: center; gap: 0.45rem;
  padding: 0.5rem 1rem; border-radius: var(--r-pill); text-decoration: none;
  font-family: var(--font-display); font-weight: 700; font-size: 0.94rem;
  background: #fff; color: var(--ink-soft); border: 2px solid var(--line-strong);
}
.filter-chip span { font-size: 0.8rem; opacity: 0.65; }
.filter-chip:hover { border-color: var(--pink); color: var(--pink-ink); }
.filter-chip.is-on { background: linear-gradient(135deg, var(--pink-mid), var(--pink-ink)); border-color: transparent; color: #fff; }
.filter-chip.is-on span { opacity: 0.85; }

.merch-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 1.4rem; }
.merch-card {
  display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.merch-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.merch-card.is-soldout { opacity: 0.72; }
.merch-media { position: relative; aspect-ratio: 1 / 1; background: linear-gradient(140deg, var(--pink-tint), var(--cyan-tint)); display: grid; place-items: center; }
.merch-media img { width: 100%; height: 100%; object-fit: cover; }
.merch-placeholder .cat-icon { width: 64px; height: 64px; opacity: 0.55; }
.merch-type {
  position: absolute; top: 0.75rem; left: 0.75rem; background: rgba(255, 255, 255, 0.94);
  border-radius: var(--r-pill); padding: 0.25rem 0.7rem; font-size: 0.78rem; font-weight: 700;
  color: var(--pink-ink);
}
.merch-body { padding: 1.25rem; display: grid; gap: 0.6rem; flex: 1; align-content: start; }
.merch-body h3 { font-size: 1.12rem; }
.merch-blurb { color: var(--ink-soft); font-size: 0.95rem; margin: 0; }
.merch-foot { display: flex; align-items: center; justify-content: space-between; gap: 0.75rem; margin-top: auto; padding-top: 0.5rem; }
.merch-price { font: 800 1.2rem var(--font-display); color: var(--pink-ink); }
.merch-stock { font-size: 0.82rem; font-weight: 700; padding: 0.2rem 0.6rem; border-radius: var(--r-pill); background: var(--surface-3); color: var(--muted); }
.merch-stock.is-in { background: #e8f8f1; color: #10503a; }
.merch-stock.is-low { background: #fff4e5; color: #8a5300; }
.merch-stock.is-out { background: #fff4f3; color: #8c1d18; }

/* ------------------------------------------------- admin image slots */

.slot-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 1rem; margin-bottom: 1.25rem; }
.slot-item { margin: 0; border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; background: #fff; }
.slot-item img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.slot-item figcaption { display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; padding: 0.6rem 0.75rem; font-size: 0.88rem; }
.slot-full { padding: 0.9rem 1rem; background: var(--surface-3); border-radius: var(--r-md); }
.slot-form { border-top: 1px solid var(--line); padding-top: 1.25rem; }
