/* ==========================================================================
   SerUnity Kids DIY Studio — stylesheet
   A "sticker book" design system: chunky outlines, offset shadows, blobs,
   squiggles and bright colour. Tokens live in :root — change them there.

   Sections: tokens, base, doodles, layout, header, buttons, hero, cards,
             workshops, subjects, tiers, gallery, blog, testimonials,
             newsletter, forms, map, footer, utilities, motion, responsive
   ========================================================================== */

/* --- Design tokens ------------------------------------------------------ */
:root {
  /* brights */
  --sun:    #FFC531;
  --coral:  #FF6B4A;
  --pink:   #FF5C93;
  --grape:  #7B5EE8;
  --sky:    #2EC4E6;
  --lime:   #6FCF52;

  /* soft tints for backgrounds */
  --sun-t:   #FFF1C9;
  --coral-t: #FFE2DA;
  --pink-t:  #FFDDE9;
  --grape-t: #E7E0FF;
  --sky-t:   #D4F2F9;
  --lime-t:  #DFF4D6;

  /* neutrals */
  --ink:     #2B2140;
  --ink-soft:#5C5175;
  --cream:   #FFF9F0;
  --cream-2: #FFF2E2;
  --paper:   #FFFFFF;

  /* type */
  --font-display: "Fredoka", "Trebuchet MS", Verdana, sans-serif;
  --font-body: "Nunito", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* shape */
  --radius:    18px;
  --radius-lg: 28px;
  --radius-xl: 40px;
  --stroke: 3px;
  --container: 1180px;

  /* the signature chunky offset shadow */
  --pop:      6px 6px 0 var(--ink);
  --pop-sm:   4px 4px 0 var(--ink);
  --pop-lift: 9px 9px 0 var(--ink);
}

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

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

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

img, svg { max-width: 100%; display: block; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.1;
  margin: 0 0 .5em;
  font-weight: 600;
}
h1 { font-size: clamp(2.4rem, 5.6vw, 4.1rem); font-weight: 700; letter-spacing: -.01em; }
h2 { font-size: clamp(1.95rem, 4vw, 2.9rem); }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.08rem; }

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

a { color: var(--grape); font-weight: 700; text-underline-offset: 3px; }
a:hover { color: var(--coral); }

:focus-visible { outline: 3px solid var(--grape); outline-offset: 3px; border-radius: 6px; }

/* --- Doodles & decoration ----------------------------------------------- */
.blob {
  position: absolute;
  border-radius: 62% 38% 46% 54% / 52% 44% 56% 48%;
  pointer-events: none;
  z-index: 0;
}

/* squiggle underline behind a highlighted word */
.hl {
  position: relative;
  white-space: nowrap;
  z-index: 1;
}
.hl::after {
  content: "";
  position: absolute;
  left: -.08em; right: -.08em; bottom: .02em;
  height: .34em;
  background: var(--sun);
  border-radius: 999px;
  transform: rotate(-1.2deg);
  z-index: -1;
}
.hl--pink::after  { background: var(--pink-t); }
.hl--sky::after   { background: var(--sky-t); }
.hl--lime::after  { background: var(--lime-t); }
.hl--grape::after { background: var(--grape-t); }

/* rotated sticker badge */
.sticker {
  display: inline-block;
  padding: .4rem 1rem;
  border: var(--stroke) solid var(--ink);
  border-radius: 999px;
  background: var(--sun);
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .88rem;
  box-shadow: var(--pop-sm);
  transform: rotate(-2deg);
}
.sticker--coral { background: var(--coral); color: #fff; }
.sticker--sky   { background: var(--sky); }
.sticker--lime  { background: var(--lime); }
.sticker--pink  { background: var(--pink); color: #fff; }
.sticker--grape { background: var(--grape); color: #fff; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: .7rem;
}

/* wavy divider between sections */
.wave {
  display: block;
  width: 100%;
  height: 46px;
  line-height: 0;
}
.wave svg { width: 100%; height: 100%; }

/* --- Layout ------------------------------------------------------------- */
.container { width: min(100% - 2.5rem, var(--container)); margin-inline: auto; }

/* overflow:hidden keeps the decorative splats from widening the page */
.section { position: relative; overflow: hidden; padding: clamp(3.5rem, 7vw, 6rem) 0; }
.section--tight { padding: clamp(2.25rem, 4.5vw, 3.5rem) 0; }
.section--paper { background: var(--paper); }
.section--cream { background: var(--cream-2); }
.section--sun   { background: var(--sun-t); }
.section--sky   { background: var(--sky-t); }
.section--grape { background: var(--grape-t); }
.section--lime  { background: var(--lime-t); }
.section > .container { position: relative; z-index: 1; }

.section-head { max-width: 47rem; margin-bottom: 2.75rem; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head p { font-size: 1.12rem; }

.grid { display: grid; gap: 1.7rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.split--flip .split-art { order: -1; }

/* form-beside-sidebar variants — these collapse in the 900px query below */
.split--form { grid-template-columns: 1.3fr .9fr; align-items: start; }
.split--info { grid-template-columns: 1.25fr 1fr; align-items: start; }

/* --- Header / nav ------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: var(--cream);
  border-bottom: var(--stroke) solid var(--ink);
  transition: box-shadow .25s ease;
}
.site-header.is-stuck { box-shadow: 0 6px 0 rgba(43, 33, 64, .12); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  line-height: 1.05;
}
.brand:hover { color: var(--ink); }
.brand img { width: 46px; height: 46px; }
.brand small {
  display: block;
  font-family: var(--font-body);
  font-size: .63rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--coral);
  margin-top: 1px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: .2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  display: block;
  padding: .5rem .8rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1rem;
  color: var(--ink);
  text-decoration: none;
  transition: background .18s ease, transform .18s ease;
}
.nav-links a:hover { background: var(--sun-t); transform: rotate(-2deg); }
.nav-links a[aria-current="page"] { background: var(--sun); }
.nav-cta { margin-left: .4rem; }

.nav-toggle {
  display: none;
  width: 50px; height: 50px;
  border: var(--stroke) solid var(--ink);
  border-radius: 14px;
  background: var(--sun);
  box-shadow: var(--pop-sm);
  cursor: pointer;
  padding: 0;
  place-items: center;
}
/* :not(.sr-only) so the visually-hidden "Menu" label isn't styled as a bar */
.nav-toggle span:not(.sr-only) { display: block; width: 22px; height: 3px; background: var(--ink); border-radius: 3px; position: relative; transition: background .22s ease; }
.nav-toggle span:not(.sr-only)::before, .nav-toggle span:not(.sr-only)::after {
  content: ""; position: absolute; left: 0; width: 22px; height: 3px;
  background: var(--ink); border-radius: 3px; transition: transform .22s ease;
}
.nav-toggle span:not(.sr-only)::before { top: -7px; }
.nav-toggle span:not(.sr-only)::after  { top: 7px; }
.nav-toggle[aria-expanded="true"] span:not(.sr-only) { background: transparent; }
.nav-toggle[aria-expanded="true"] span:not(.sr-only)::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:not(.sr-only)::after  { transform: translateY(-7px) rotate(-45deg); }

/* --- Buttons ------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .85rem 1.6rem;
  border: var(--stroke) solid var(--ink);
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.02rem;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  box-shadow: var(--pop);
  transition: transform .14s ease, box-shadow .14s ease;
}
.btn:hover { transform: translate(-2px, -2px); box-shadow: var(--pop-lift); color: var(--ink); }
.btn:active { transform: translate(3px, 3px); box-shadow: 2px 2px 0 var(--ink); }

.btn-sun   { background: var(--sun); }
.btn-coral { background: var(--coral); color: #fff; }
.btn-coral:hover { color: #fff; }
.btn-sky   { background: var(--sky); }
.btn-lime  { background: var(--lime); }
.btn-pink  { background: var(--pink); color: #fff; }
.btn-pink:hover { color: #fff; }
.btn-grape { background: var(--grape); color: #fff; }
.btn-grape:hover { color: #fff; }
.btn-white { background: var(--paper); }

.btn-sm { padding: .55rem 1.1rem; font-size: .92rem; box-shadow: var(--pop-sm); }
.btn-lg { padding: 1rem 2rem; font-size: 1.15rem; }
.btn-block { width: 100%; }

.btn img { width: 22px; height: 22px; }

/* --- Animated icons ----------------------------------------------------- */
.anim-wiggle { animation: wiggle 2.6s ease-in-out infinite; transform-origin: 50% 80%; }
.anim-bounce { animation: bounce 2.2s ease-in-out infinite; }
.anim-float  { animation: float 4.5s ease-in-out infinite; }
.anim-spin   { animation: spinslow 14s linear infinite; }
.anim-twinkle{ animation: twinkle 2.4s ease-in-out infinite; }

@keyframes wiggle { 0%,100% { transform: rotate(-7deg); } 50% { transform: rotate(7deg); } }
@keyframes bounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@keyframes float  { 0%,100% { transform: translateY(0) rotate(-2deg); } 50% { transform: translateY(-14px) rotate(3deg); } }
@keyframes spinslow { to { transform: rotate(360deg); } }
@keyframes twinkle { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.18); opacity: .75; } }

/* --- Hero --------------------------------------------------------------- */
.hero { position: relative; overflow: hidden; padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(3rem, 7vw, 5rem); }
.hero .blob-a { width: 30rem; height: 30rem; background: var(--sun-t); left: -12rem; top: -9rem; }
.hero .blob-b { width: 26rem; height: 26rem; background: var(--sky-t); right: -9rem; bottom: -12rem; }
.hero .blob-c { width: 12rem; height: 12rem; background: var(--pink-t); right: 30%; top: -4rem; }

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}
.hero h1 { margin-bottom: .3em; }
.hero-lede { font-size: 1.2rem; max-width: 34rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2rem; }

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  margin-top: 2.2rem;
}
.fact {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .45rem 1rem .45rem .55rem;
  background: var(--paper);
  border: var(--stroke) solid var(--ink);
  border-radius: 999px;
  font-weight: 800;
  font-size: .9rem;
  color: var(--ink);
  box-shadow: var(--pop-sm);
}
.fact img { width: 26px; height: 26px; }

.hero-art { position: relative; }
.hero-frame {
  background: var(--paper);
  border: var(--stroke) solid var(--ink);
  border-radius: var(--radius-xl);
  padding: 1.3rem;
  box-shadow: var(--pop-lift);
  transform: rotate(-2deg);
}
.hero-pill {
  position: absolute;
  display: flex;
  align-items: center;
  gap: .55rem;
  padding: .6rem 1rem;
  background: var(--paper);
  border: var(--stroke) solid var(--ink);
  border-radius: 999px;
  box-shadow: var(--pop-sm);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .9rem;
  color: var(--ink);
  white-space: nowrap;
}
.hero-pill img { width: 26px; height: 26px; }
.hero-pill.p-a { left: -8%; bottom: 14%; transform: rotate(-6deg); background: var(--sun); }
.hero-pill.p-b { right: -5%; top: 6%; transform: rotate(6deg); background: var(--sky); }

/* --- Marquee ------------------------------------------------------------ */
.strip {
  background: var(--grape);
  color: #fff;
  border-top: var(--stroke) solid var(--ink);
  border-bottom: var(--stroke) solid var(--ink);
  padding: .85rem 0;
  overflow: hidden;
}
.strip-track {
  display: flex;
  gap: 2.2rem;
  white-space: nowrap;
  width: max-content;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  animation: marquee 34s linear infinite;
}
.strip-track span { display: inline-flex; align-items: center; gap: 2.2rem; }
.strip-track span::after { content: "★"; color: var(--sun); font-size: 1.1rem; }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .strip-track { animation: none; } }

/* --- Cards -------------------------------------------------------------- */
.card {
  position: relative;
  background: var(--paper);
  border: var(--stroke) solid var(--ink);
  border-radius: var(--radius-lg);
  padding: 1.7rem;
  box-shadow: var(--pop);
  transition: transform .18s ease, box-shadow .18s ease;
}
.card:hover { transform: translate(-3px, -3px) rotate(-.6deg); box-shadow: var(--pop-lift); }

.card-icon {
  width: 66px; height: 66px;
  display: grid; place-items: center;
  border: var(--stroke) solid var(--ink);
  border-radius: 20px;
  margin-bottom: 1.1rem;
}
.card-icon img { width: 36px; height: 36px; }

.bg-sun   { background: var(--sun-t); }
.bg-coral { background: var(--coral-t); }
.bg-pink  { background: var(--pink-t); }
.bg-grape { background: var(--grape-t); }
.bg-sky   { background: var(--sky-t); }
.bg-lime  { background: var(--lime-t); }
.bg-white { background: var(--paper); }

.card h3 { margin-bottom: .3em; }
.card p { font-size: 1rem; }

/* --- Workshop cards ----------------------------------------------------- */
.workshop {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: var(--stroke) solid var(--ink);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--pop);
  transition: transform .18s ease, box-shadow .18s ease;
}
.workshop:hover { transform: translate(-3px, -3px); box-shadow: var(--pop-lift); }

.workshop-art {
  aspect-ratio: 16 / 11;
  display: grid;
  place-items: center;
  padding: 1.2rem;
  border-bottom: var(--stroke) solid var(--ink);
  position: relative;
}
.workshop-art img { width: min(64%, 180px); }

.workshop-body { padding: 1.4rem 1.5rem 1.6rem; display: flex; flex-direction: column; flex: 1; }
.workshop-body h3 { margin-bottom: .3em; }
.workshop-body p { font-size: .98rem; }

.tag-row { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: .8rem; }
.tag {
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 600;
  padding: .2rem .7rem;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
}
.tag--age  { background: var(--lime-t); }
.tag--time { background: var(--sky-t); }
.tag--new  { background: var(--pink); color: #fff; }

.workshop-foot {
  margin-top: auto;
  padding-top: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .8rem;
  flex-wrap: wrap;
}
.price {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--ink);
}
.price small { font-family: var(--font-body); font-size: .8rem; font-weight: 700; color: var(--ink-soft); }

/* --- Featured workshop -------------------------------------------------- */
.featured {
  background: var(--paper);
  border: var(--stroke) solid var(--ink);
  border-radius: var(--radius-xl);
  box-shadow: var(--pop-lift);
  overflow: hidden;
}
.featured-inner {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 0;
  align-items: stretch;
}
.featured-art {
  background: var(--sun-t);
  border-right: var(--stroke) solid var(--ink);
  display: grid;
  place-items: center;
  padding: clamp(1.5rem, 4vw, 3rem);
  position: relative;
}
.featured-art img { width: min(100%, 330px); }
.featured-body { padding: clamp(1.6rem, 4vw, 2.8rem); }
.featured-body h2 { margin-bottom: .3em; }

.spec-list { list-style: none; margin: 1.3rem 0; padding: 0; display: grid; gap: .7rem; }
.spec-list li { display: flex; gap: .7rem; align-items: flex-start; font-size: 1rem; }
.spec-list img { width: 24px; height: 24px; flex: none; margin-top: .2rem; }
.spec-list strong { color: var(--ink); }

.check-list { list-style: none; margin: 1.3rem 0 0; padding: 0; display: grid; gap: .8rem; }
.check-list li { position: relative; padding-left: 2.3rem; }
.check-list li::before {
  content: "";
  position: absolute;
  left: 0; top: .3em;
  width: 1.5rem; height: 1.5rem;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--lime) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232B2140' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / .9rem no-repeat;
}

/* --- Paint splats & doodles ---------------------------------------------
   Purely decorative. Always inside a position:relative container that has
   overflow:hidden, and always behind the content (z-index 0).
   ------------------------------------------------------------------------ */
.deco {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}
.deco img { width: 100%; height: auto; }

.deco-splat { opacity: .30; }
.deco-doodle { opacity: .85; }

/* handy placements — mix and match */
.deco--tl { left: -3rem;  top: -3rem; }
.deco--tr { right: -3rem; top: -3.5rem; }
.deco--bl { left: -4rem;  bottom: -4rem; }
.deco--br { right: -3.5rem; bottom: -3.5rem; }
.deco--w6  { width: 6rem; }
.deco--w9  { width: 9rem; }
.deco--w14 { width: 14rem; }
.deco--w18 { width: 18rem; }
.deco--tilt-l { transform: rotate(-14deg); }
.deco--tilt-r { transform: rotate(12deg); }

/* Dripping paint edge. Goes on the section BELOW a coloured one, with
   --edge-color set to that section's background — the drips then hang down
   into this section. Drawn inside the box, so section overflow can be clipped. */
.drip-top { position: relative; }
.drip-top::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 20px;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 0, var(--edge-color, var(--sun-t)) 56%, transparent 57%)
    repeat-x;
  background-size: 46px 36px;
}

/* --- Upcoming workshops (one-time, dated events) ------------------------ */
.event {
  position: relative;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 0;
  background: var(--paper);
  border: var(--stroke) solid var(--ink);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--pop-lift);
  transition: transform .18s ease, box-shadow .18s ease;
}
.event:hover { transform: translate(-3px, -3px); box-shadow: 12px 12px 0 var(--ink); }

.event-art {
  border-right: var(--stroke) solid var(--ink);
  display: grid;
  place-items: center;
  padding: 1.6rem;
  position: relative;
}
.event-art img { width: min(100%, 190px); position: relative; z-index: 1; }

.event-body { padding: 1.7rem 1.9rem 1.9rem; }
.event-body h3 { font-size: 1.6rem; margin-bottom: .45em; }

/* the little emoji fact rows: 📅 date, 🕒 time, 🎨 ages */
.event-facts { list-style: none; margin: 0 0 1.1rem; padding: 0; display: grid; gap: .5rem; }
.event-facts li {
  display: flex;
  align-items: baseline;
  gap: .6rem;
  font-size: 1.02rem;
  color: var(--ink);
  font-weight: 700;
}
.event-facts .emoji { font-size: 1.15rem; line-height: 1; flex: none; }

.event-foot {
  margin-top: 1.3rem;
  padding-top: 1.2rem;
  border-top: 3px dashed var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

/* "More workshops coming soon!" placeholder */
.event-soon {
  display: grid;
  place-items: center;
  text-align: center;
  gap: .4rem;
  min-height: 15rem;
  padding: 2.5rem 1.8rem;
  border: var(--stroke) dashed var(--ink);
  border-radius: var(--radius-xl);
  background: repeating-linear-gradient(
    45deg,
    var(--cream-2), var(--cream-2) 14px,
    var(--paper) 14px, var(--paper) 28px
  );
}
.event-soon h3 { margin-bottom: .1em; }
.event-soon p { max-width: 26rem; }
.event-soon .soon-icon { font-size: 2.6rem; line-height: 1; }

/* --- Weekend classes (recurring, day + time, no date) ------------------- */
.class-list { display: grid; gap: 1.1rem; }

.class-row {
  display: grid;
  grid-template-columns: 92px 74px 1fr auto;
  align-items: center;
  gap: 1.3rem;
  background: var(--paper);
  border: var(--stroke) solid var(--ink);
  border-radius: var(--radius-lg);
  padding: 1.1rem 1.4rem;
  box-shadow: var(--pop-sm);
  transition: transform .16s ease, box-shadow .16s ease;
}
.class-row:hover { transform: translate(-3px, -3px); box-shadow: var(--pop); }

.class-day {
  align-self: stretch;
  display: grid;
  place-items: center;
  padding: .5rem .3rem;
  border: var(--stroke) solid var(--ink);
  border-radius: 14px;
  background: var(--sun);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .95rem;
  color: var(--ink);
  text-align: center;
  line-height: 1.15;
}
.class-day b { display: block; font-weight: 600; }
.class-day[data-day="Sunday"] { background: var(--sky); }

.class-icon {
  width: 74px; height: 74px;
  display: grid; place-items: center;
  border: var(--stroke) solid var(--ink);
  border-radius: 18px;
}
.class-icon img { width: 44px; height: 44px; }

.class-main h3 { font-size: 1.2rem; margin-bottom: .2em; }
.class-main p { font-size: .95rem; margin: 0 0 .45rem; }

.class-meta { display: flex; flex-wrap: wrap; gap: .4rem .9rem; font-size: .92rem; font-weight: 700; color: var(--ink); }
.class-meta span { display: inline-flex; align-items: baseline; gap: .35rem; }
.class-meta .emoji { font-size: 1.02rem; line-height: 1; }

.class-action { display: grid; gap: .4rem; justify-items: center; }
.class-action .price { font-size: 1.1rem; }

/* --- Subject chips (weekend classes) ------------------------------------ */
.subject {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.3rem;
  background: var(--paper);
  border: var(--stroke) solid var(--ink);
  border-radius: var(--radius-lg);
  box-shadow: var(--pop-sm);
  transition: transform .18s ease, box-shadow .18s ease;
}
.subject:hover { transform: translate(-3px, -3px) rotate(-1deg); box-shadow: var(--pop); }
.subject-icon {
  flex: none;
  width: 58px; height: 58px;
  display: grid; place-items: center;
  border: var(--stroke) solid var(--ink);
  border-radius: 18px;
}
.subject-icon img { width: 32px; height: 32px; }
.subject h3 { font-size: 1.12rem; margin-bottom: .1em; }
.subject p { font-size: .92rem; margin: 0; }

/* --- Pricing tiers ------------------------------------------------------ */
.tier {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: var(--stroke) solid var(--ink);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  box-shadow: var(--pop);
  position: relative;
}
.tier--featured { background: var(--sun-t); }
.tier-flag {
  position: absolute;
  top: -.9rem; right: 1.2rem;
  padding: .25rem .9rem;
  background: var(--coral);
  color: #fff;
  border: var(--stroke) solid var(--ink);
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .82rem;
  transform: rotate(3deg);
}
.tier h3 { margin-bottom: .2em; }
.tier .tier-price {
  font-family: var(--font-display);
  font-size: 2.3rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.1;
  margin: .5rem 0 .2rem;
}
.tier .tier-price small { font-family: var(--font-body); font-size: .85rem; font-weight: 700; color: var(--ink-soft); }
.tier ul { list-style: none; margin: 1.2rem 0 1.6rem; padding: 0; display: grid; gap: .6rem; font-size: .97rem; }
.tier ul li { padding-left: 1.6rem; position: relative; }
.tier ul li::before { content: "✦"; position: absolute; left: 0; color: var(--coral); font-size: 1rem; }
.tier .btn { margin-top: auto; }

/* --- Payment options ----------------------------------------------------- */
.pay-option {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: var(--stroke) solid var(--ink);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  box-shadow: var(--pop);
}
.pay-option .card-icon { margin-bottom: 1rem; }
.pay-option h3 { margin-bottom: .35em; }
.pay-option ul { list-style: none; margin: 1rem 0 0; padding: 0; display: grid; gap: .55rem; font-size: .97rem; }
.pay-option ul li { position: relative; padding-left: 1.6rem; }
.pay-option ul li::before { content: "✦"; position: absolute; left: 0; color: var(--coral); }

/* the e-Transfer address — big, selectable, hard to mistype */
.pay-id {
  display: block;
  margin: 1.1rem 0 .4rem;
  padding: .9rem 1.1rem;
  background: var(--sun-t);
  border: var(--stroke) dashed var(--ink);
  border-radius: 14px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--ink);
  word-break: break-all;
  text-align: center;
  user-select: all;
}
.pay-id-label {
  display: block;
  font-family: var(--font-display);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-align: center;
}

/* click-to-reveal wrapper */
.pay-reveal { margin: 1.1rem 0 .4rem; }
.pay-reveal .pay-id-label { margin-bottom: .6rem; }
.pay-reveal .pay-id { margin-top: 0; }

.pay-copy {
  display: block;
  margin: .6rem auto 0;
  padding: .4rem 1rem;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .88rem;
  cursor: pointer;
  box-shadow: var(--pop-sm);
  transition: transform .14s ease, background .14s ease;
}
.pay-copy:hover { transform: translate(-2px, -2px); }
.pay-copy.is-done { background: var(--lime); }

@media (max-width: 420px) {
  .pay-id { font-size: .92rem; padding: .8rem .7rem; }
}

/* --- Gallery ------------------------------------------------------------ */
.filters { display: flex; flex-wrap: wrap; gap: .6rem; justify-content: center; margin-bottom: 2.2rem; }
.filter-btn {
  padding: .5rem 1.2rem;
  border: var(--stroke) solid var(--ink);
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: .95rem;
  cursor: pointer;
  box-shadow: var(--pop-sm);
  transition: transform .14s ease, background .14s ease;
}
.filter-btn:hover { transform: translate(-2px, -2px); }
.filter-btn[aria-pressed="true"] { background: var(--sun); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
.gallery-item {
  background: var(--paper);
  border: var(--stroke) solid var(--ink);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--pop);
  transition: transform .2s ease, box-shadow .2s ease;
}
.gallery-item:nth-child(3n+1) { transform: rotate(-1.2deg); }
.gallery-item:nth-child(3n+3) { transform: rotate(1.2deg); }
.gallery-item:hover { transform: rotate(0) translate(-3px, -3px); box-shadow: var(--pop-lift); }
.gallery-item.is-hidden { display: none; }
.gallery-photo {
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  padding: 1.2rem;
  border-bottom: var(--stroke) solid var(--ink);
}
.gallery-photo img { width: min(72%, 200px); }
.gallery-cap { padding: .9rem 1.2rem 1.1rem; }
.gallery-cap strong { display: block; font-family: var(--font-display); color: var(--ink); font-size: 1.05rem; }
.gallery-cap span { font-size: .88rem; }

/* --- Blog --------------------------------------------------------------- */
.post {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: var(--stroke) solid var(--ink);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--pop);
  transition: transform .18s ease, box-shadow .18s ease;
}
.post:hover { transform: translate(-3px, -3px); box-shadow: var(--pop-lift); }
.post-art { aspect-ratio: 16 / 9; display: grid; place-items: center; padding: 1rem; border-bottom: var(--stroke) solid var(--ink); }
.post-art img { width: min(52%, 130px); }
.post-body { padding: 1.3rem 1.4rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.post-meta { font-size: .82rem; font-weight: 800; text-transform: uppercase; letter-spacing: .07em; color: var(--coral); margin-bottom: .5rem; }
.post-body h3 { font-size: 1.2rem; margin-bottom: .35em; }
.post-body p { font-size: .96rem; }
.post-body .btn { margin-top: auto; align-self: flex-start; }

.prose { max-width: 44rem; margin-inline: auto; }
.prose h2 { margin-top: 2rem; }
.prose h3 { margin-top: 1.6rem; }
.prose ul, .prose ol { padding-left: 1.4rem; display: grid; gap: .5rem; margin-bottom: 1.2rem; }
.prose img { border: var(--stroke) solid var(--ink); border-radius: var(--radius); margin: 1.5rem auto; }

/* --- Testimonials ------------------------------------------------------- */
.quote {
  background: var(--paper);
  border: var(--stroke) solid var(--ink);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  box-shadow: var(--pop);
  position: relative;
}
.quote:nth-child(2) { background: var(--sun-t); }
.quote:nth-child(3) { background: var(--sky-t); }
.quote .stars { color: var(--coral); font-size: 1.1rem; letter-spacing: .12em; margin-bottom: .6rem; }
.quote p { font-family: var(--font-display); font-size: 1.1rem; font-weight: 400; line-height: 1.5; color: var(--ink); }
.quote footer { margin-top: .9rem; font-size: .9rem; font-weight: 800; color: var(--ink-soft); }

/* --- CTA band ----------------------------------------------------------- */
.cta-band {
  position: relative;
  overflow: hidden;
  background: var(--grape);
  color: #F1ECFF;
  border: var(--stroke) solid var(--ink);
  border-radius: var(--radius-xl);
  padding: clamp(2.2rem, 5vw, 3.6rem);
  text-align: center;
  box-shadow: var(--pop-lift);
}
.cta-band .blob-x { width: 22rem; height: 22rem; background: rgba(255,255,255,.12); left: -8rem; top: -10rem; }
.cta-band .blob-y { width: 24rem; height: 24rem; background: rgba(255,197,49,.22); right: -9rem; bottom: -12rem; }
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; }
.cta-band p { max-width: 42rem; margin-inline: auto; color: #E6DDFF; font-size: 1.1rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: .9rem; justify-content: center; margin-top: 1.9rem; }

/* --- Page header (inner pages) ------------------------------------------ */
.page-head {
  position: relative;
  overflow: hidden;
  padding: clamp(2.6rem, 5.5vw, 4.2rem) 0 clamp(2.2rem, 4.5vw, 3.4rem);
  background: var(--sun-t);
  border-bottom: var(--stroke) solid var(--ink);
}
.page-head .blob-a { width: 24rem; height: 24rem; background: rgba(255,255,255,.55); right: -7rem; top: -9rem; }
.page-head .blob-b { width: 14rem; height: 14rem; background: var(--pink-t); left: -5rem; bottom: -7rem; }
.page-head-inner { position: relative; z-index: 1; max-width: 46rem; }
.page-head p { font-size: 1.14rem; margin-bottom: 0; }

/* --- Steps -------------------------------------------------------------- */
.steps { counter-reset: step; display: grid; gap: 1.7rem; }
.step { position: relative; padding-left: 4.2rem; }
.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0; top: -.2rem;
  width: 3rem; height: 3rem;
  display: grid; place-items: center;
  border: var(--stroke) solid var(--ink);
  border-radius: 50%;
  background: var(--sun);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  box-shadow: var(--pop-sm);
}
.step:nth-child(2)::before { background: var(--sky); }
.step:nth-child(3)::before { background: var(--pink); color: #fff; }
.step:nth-child(4)::before { background: var(--lime); }
.step h3 { margin-bottom: .2em; }
.step p { font-size: .98rem; }

/* --- Forms -------------------------------------------------------------- */
.form-card {
  background: var(--paper);
  border: var(--stroke) solid var(--ink);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 2.4rem);
  box-shadow: var(--pop-lift);
}

.field { margin-bottom: 1.2rem; }
.field label {
  display: block;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1rem;
  color: var(--ink);
  margin-bottom: .4rem;
}
.field .hint { font-family: var(--font-body); font-weight: 600; color: var(--ink-soft); font-size: .84rem; }

.field input, .field select, .field textarea {
  width: 100%;
  padding: .8rem 1rem;
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: var(--cream);
  border: var(--stroke) solid var(--ink);
  border-radius: 14px;
  transition: background .16s ease, box-shadow .16s ease;
}
.field textarea { min-height: 135px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  background: var(--paper);
  box-shadow: var(--pop-sm);
  outline: none;
}
.field input[type="file"] { padding: .6rem; background: var(--paper); font-size: .92rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }

.checkbox { display: flex; align-items: flex-start; gap: .7rem; font-size: .95rem; }
.checkbox input { width: 1.2rem; height: 1.2rem; margin-top: .3rem; accent-color: var(--grape); flex: none; }

.form-note { font-size: .87rem; margin-top: 1rem; }

.form-status {
  display: none;
  margin-top: 1.1rem;
  padding: .95rem 1.15rem;
  border: var(--stroke) solid var(--ink);
  border-radius: 14px;
  font-weight: 700;
  font-size: .95rem;
}
.form-status.is-visible { display: block; }
.form-status.is-ok  { background: var(--lime-t); color: var(--ink); }
.form-status.is-err { background: var(--coral-t); color: var(--ink); }

.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* --- Newsletter --------------------------------------------------------- */
.newsletter {
  background: var(--sky-t);
  border: var(--stroke) solid var(--ink);
  border-radius: var(--radius-xl);
  padding: clamp(1.8rem, 4vw, 3rem);
  box-shadow: var(--pop);
  text-align: center;
}
.newsletter-form {
  display: flex;
  gap: .8rem;
  max-width: 32rem;
  margin: 1.6rem auto 0;
}
.newsletter-form input {
  flex: 1;
  padding: .85rem 1.1rem;
  font-family: inherit;
  font-size: 1rem;
  border: var(--stroke) solid var(--ink);
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
}
.newsletter-form input:focus { outline: none; box-shadow: var(--pop-sm); }

/* --- Contact info / map -------------------------------------------------- */
.info-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.3rem; }
.info-list li { display: flex; gap: 1rem; align-items: flex-start; }
.info-icon {
  flex: none;
  width: 50px; height: 50px;
  border: var(--stroke) solid var(--ink);
  border-radius: 16px;
  display: grid; place-items: center;
}
.info-icon img { width: 26px; height: 26px; }
.info-list strong { display: block; font-family: var(--font-display); color: var(--ink); font-size: 1.02rem; }

.map-frame {
  border: var(--stroke) solid var(--ink);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--pop);
  line-height: 0;
  background: var(--sky-t);
}
.map-frame iframe { width: 100%; height: 380px; border: 0; display: block; }

/* --- FAQ ---------------------------------------------------------------- */
.faq { display: grid; gap: .9rem; }
.faq details {
  background: var(--paper);
  border: var(--stroke) solid var(--ink);
  border-radius: var(--radius);
  padding: 1.1rem 1.35rem;
  box-shadow: var(--pop-sm);
}
.faq summary {
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--ink);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-family: var(--font-display);
  font-size: 1.6rem;
  line-height: 1;
  color: var(--coral);
  flex: none;
  transition: transform .2s ease;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { margin-top: .8rem; font-size: .98rem; }

/* --- Footer ------------------------------------------------------------- */
.site-footer {
  background: var(--ink);
  color: #C6BEDB;
  border-top: var(--stroke) solid var(--ink);
  padding: clamp(3rem, 6vw, 4.5rem) 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 2.4rem;
  padding-bottom: 2.4rem;
  border-bottom: 2px solid rgba(255,255,255,.15);
}
.site-footer h4 {
  color: var(--sun);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .04em;
  margin-bottom: 1rem;
}
.site-footer a { color: #C6BEDB; text-decoration: none; font-weight: 600; }
.site-footer a:hover { color: var(--sun); }
.footer-list { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; font-size: .97rem; }
.footer-brand { display: inline-flex; align-items: center; gap: .65rem; margin-bottom: 1rem; }
.footer-brand img { width: 46px; height: 46px; }
.footer-brand strong { font-family: var(--font-display); font-size: 1.35rem; color: #fff; }
.footer-about { font-size: .97rem; max-width: 25rem; }

.social { display: flex; gap: .65rem; margin-top: 1.2rem; }
.social a {
  width: 44px; height: 44px;
  border: 2px solid rgba(255,255,255,.3);
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: grid; place-items: center;
  transition: background .18s ease, transform .18s ease;
}
.social a:hover { background: var(--sun); transform: translateY(-3px) rotate(-6deg); }
.social img { width: 21px; height: 21px; }

.footer-bottom {
  padding-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: .6rem 1.5rem;
  justify-content: space-between;
  font-size: .88rem;
}

/* --- Utilities ---------------------------------------------------------- */
.text-center { text-align: center; }
.mt-2 { margin-top: 1.5rem; }
.mt-3 { margin-top: 2.25rem; }
.mb-0 { margin-bottom: 0; }
.lede { font-size: 1.14rem; }
.muted { color: var(--ink-soft); }
.tiny { font-size: .86rem; }

.note {
  background: var(--sun-t);
  border: var(--stroke) solid var(--ink);
  border-radius: var(--radius);
  padding: 1.1rem 1.3rem;
  font-size: .95rem;
  box-shadow: var(--pop-sm);
}
.note strong { color: var(--ink); }

.split-art {
  border: var(--stroke) solid var(--ink);
  border-radius: var(--radius-xl);
  padding: clamp(1.5rem, 4vw, 3rem);
  display: grid;
  place-items: center;
  box-shadow: var(--pop);
  background: var(--sun-t);
}
.split-art img { width: min(100%, 320px); }

.skip-link {
  position: absolute;
  left: -9999px; top: 0;
  z-index: 200;
  padding: .8rem 1.2rem;
  background: var(--grape);
  color: #fff;
  font-weight: 800;
}
.skip-link:focus { left: 0; color: #fff; }

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

/* --- Motion ------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .55s ease, transform .55s cubic-bezier(.2,.7,.3,1); }
.reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .anim-wiggle, .anim-bounce, .anim-float, .anim-spin, .anim-twinkle { animation: none; }
  .btn:hover, .card:hover, .workshop:hover, .subject:hover,
  .gallery-item:hover, .post:hover, .filter-btn:hover { transform: none; }
}

/* --- Responsive --------------------------------------------------------- */
@media (max-width: 1080px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .featured-inner { grid-template-columns: 1fr; }
  .featured-art { border-right: 0; border-bottom: var(--stroke) solid var(--ink); }
  .class-row { grid-template-columns: 84px 64px 1fr; row-gap: .9rem; }
  .class-icon { width: 64px; height: 64px; }
  .class-icon img { width: 38px; height: 38px; }
  /* price and Enroll sit on one line once the row wraps */
  .class-action {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: .2rem;
    border-top: 2px dashed var(--line, rgba(43,33,64,.18));
  }
  .class-action .btn { width: auto; min-width: 8rem; }
}

/* 1080px, not 1000px: the full nav row ("Workshops & Classes" et al) needs
   ~993px of container, so the drawer has to take over before it gets that
   tight. Re-measure this if you rename a nav item. */
@media (max-width: 1080px) {
  .nav-toggle { display: grid; }
  .nav-links {
    position: fixed;
    inset: 78px 0 auto;
    flex-direction: column;
    align-items: stretch;
    gap: .2rem;
    padding: 1rem 1.25rem 1.7rem;
    background: var(--cream);
    border-bottom: var(--stroke) solid var(--ink);
    box-shadow: 0 10px 0 rgba(43,33,64,.12);
    transform: translateY(-135%);
    transition: transform .3s cubic-bezier(.2,.7,.3,1);
    max-height: calc(100vh - 78px);
    overflow-y: auto;
  }
  .nav-links.is-open { transform: translateY(0); }
  .nav-links a { padding: .8rem 1rem; font-size: 1.1rem; }
  .nav-links a:hover { transform: none; }
  .nav-cta { margin: .6rem 0 0; }
  .nav-cta .btn { width: 100%; }
}

@media (max-width: 900px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .event { grid-template-columns: 1fr; }
  .event-art { border-right: 0; border-bottom: var(--stroke) solid var(--ink); }
  .deco--w18 { width: 12rem; }
  .deco--w14 { width: 9rem; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-art { max-width: 30rem; width: 100%; margin-inline: auto; }
  .split,
  .split--form,
  .split--info { grid-template-columns: 1fr; }
  .split--flip .split-art { order: -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 640px) {
  body { font-size: 1rem; }
  :root { --pop: 5px 5px 0 var(--ink); --pop-lift: 7px 7px 0 var(--ink); }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-pill { display: none; }
  .newsletter-form { flex-direction: column; }
  .btn { width: 100%; }
  .hero-actions .btn, .cta-actions .btn, .filters .filter-btn { width: 100%; }
  .filters .filter-btn { width: auto; }
  .gallery-item, .gallery-item:nth-child(3n+1), .gallery-item:nth-child(3n+3) { transform: none; }
  .step { padding-left: 3.6rem; }
  .class-row { grid-template-columns: 56px 1fr; padding: 1.1rem; gap: .9rem; }
  /* one-line pill on phones — block flow, not grid, so the words stay together */
  .class-day { grid-column: 1 / -1; display: block; padding: .35rem .9rem; justify-self: start; }
  .class-day b { display: inline; }
  .class-icon { width: 56px; height: 56px; align-self: start; }
  .class-icon img { width: 32px; height: 32px; }
  .class-action .btn { width: auto; }
  .event-body { padding: 1.4rem 1.3rem 1.6rem; }
  .event-foot { flex-direction: column; align-items: stretch; }
  .deco-splat { opacity: .22; }
}
