/* =============================================================
   SPLAT CRAFT & POP — Stylesheet
   Mobile-first, BEM naming, WCAG 2.0 AA
   ============================================================= */

/* ─── Custom Properties ─────────────────────────────────────── */
:root {
  /* Colours — simple, non-clashing palette */
  --clr-pink:        #D41B5F;   /* Primary hot pink — white text on this = 5:1 ✓ */
  --clr-pink-bg:     #FFF0F5;   /* Very light blush for section bg */
  --clr-yellow:      #F5A623;   /* Warm amber — use as bg only, dark text on top */
  --clr-yellow-bg:   #FFFBEE;   /* Very light yellow for section bg */
  --clr-teal:        #0097A7;   /* Deep teal accent */
  --clr-teal-bg:     #E0F7FA;   /* Very light teal */
  --clr-dark:        #1A1A2E;   /* Near-black navy — page text & footer */
  --clr-muted:       #5A5A78;   /* Secondary text */
  --clr-bg:          #FFFDF9;   /* Warm white page background */
  --clr-white:       #FFFFFF;
  --clr-logo-bg:     #F7EBED;   /* Soft pink for logo bg */

  /* Typography */
  --font-display: 'Baloo 2', cursive;
  --font-body:    'Nunito', sans-serif;

  /* Spacing scale */
  --space-xs:  0.5rem;    /*  8px */
  --space-sm:  1rem;      /* 16px */
  --space-md:  1.5rem;    /* 24px */
  --space-lg:  2.5rem;    /* 40px */
  --space-xl:  4rem;      /* 64px */
  --space-2xl: 6rem;      /* 96px */

  /* Border radii */
  --radius-sm:  0.5rem;
  --radius-md:  1rem;
  --radius-lg:  1.5rem;
  --radius-pill: 9999px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.16);

  /* Transitions */
  --transition: 0.2s ease;
}

/* ─── Reset & Base ───────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 100%; /* 16px base */
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--clr-dark);
  background-color: var(--clr-bg);
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* Respect user motion preference */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ─── Focus styles ───────────────────────────────────────────── */
:focus-visible {
  outline: 3px solid var(--clr-pink);
  outline-offset: 3px;
  border-radius: 3px;
}

/* ─── Skip link ──────────────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  padding: 0.75rem 1.25rem;
  background: var(--clr-pink);
  color: var(--clr-white);
  font-weight: 700;
  border-radius: var(--radius-sm);
  z-index: 9999;
  transition: top var(--transition);
}

.skip-link:focus {
  top: 1rem;
}

/* ─── Typography helpers ─────────────────────────────────────── */
h1, h2, h3 {
  font-family: var(--font-display);
  line-height: 1.15;
  color: var(--clr-dark);
}

h1 { font-size: clamp(2.4rem, 6vw, 3.75rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 4vw, 2.75rem); font-weight: 800; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); font-weight: 700; }

p {
  max-width: 65ch;
  color: var(--clr-muted);
}

strong { color: var(--clr-dark); }

/* ─── Label badge ────────────────────────────────────────────── */
.label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clr-white);
  background: var(--clr-pink);
  padding: 0.3rem 0.9rem;
  border-radius: var(--radius-pill);
  margin-bottom: var(--space-sm);
}

/* Light variant for dark backgrounds */
.label--light {
  background: rgba(245, 166, 35, 0.25);
  color: var(--clr-yellow);
}

/* ─── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.85rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
  white-space: nowrap;
}

.btn:focus-visible {
  outline: 3px solid var(--clr-pink);
  outline-offset: 3px;
}

/* Primary — pink */
.btn--primary {
  background: var(--clr-pink);
  color: var(--clr-white); /* contrast 5:1 ✓ */
  border-color: var(--clr-pink);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 27, 95, 0.35);
}

/* Ghost — outlined */
.btn--ghost {
  background: transparent;
  color: var(--clr-dark);
  border-color: var(--clr-dark);
}

.btn--ghost:hover {
  background: var(--clr-dark);
  color: var(--clr-white);
}

/* Ghost on dark backgrounds */
.btn--ghost-light {
  background: transparent;
  color: var(--clr-white);
  border-color: var(--clr-white);
}

.btn--ghost-light:hover {
  background: var(--clr-white);
  color: var(--clr-dark);
}

/* Modifiers */
.btn--sm {
  padding: 0.5rem 1.1rem;
  font-size: 0.875rem;
}

.btn--full {
  width: 100%;
}

/* ─── Navigation ─────────────────────────────────────────────── */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--clr-white);
  /* background: var(--clr-logo-bg); */
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  transition: box-shadow var(--transition);
}

.header--scrolled {
  box-shadow: var(--shadow-sm);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 72rem;
  margin: 0 auto;
  padding: 0.4rem 1.5rem;
  gap: var(--space-md);
}

/* Logo — left */
.nav__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.nav__logo-img {
  height: 80px;
  width: auto;
  display: block;
}

/* Hamburger toggle (mobile) */
.nav__toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-sm);
}

.nav__toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--clr-dark);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
  transform-origin: center;
}

/* Animated hamburger → X */
.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Nav menu — mobile first (collapsed) */
.nav__menu {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--clr-white);
  border-top: 1px solid rgba(0, 0, 0, 0.07);
  padding: var(--space-sm) var(--space-md);
  gap: 0.25rem;
  box-shadow: var(--shadow-md);
}

.nav__menu.is-open {
  display: flex;
}

.nav__link {
  display: block;
  padding: 0.6rem 0.75rem;
  font-weight: 600;
  color: var(--clr-dark);
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}

.nav__link:hover {
  color: var(--clr-pink);
  background: var(--clr-pink-bg);
}

.nav__link--cta {
  display: inline-flex;
  margin-top: 0.5rem;
  padding: 0.6rem 1.25rem;
  background: var(--clr-pink);
  color: var(--clr-white);
  border-radius: var(--radius-pill);
  font-weight: 700;
  align-self: flex-start;
}

.nav__link--cta:hover {
  background: #b81650;
  color: var(--clr-white);
}

/* Desktop nav */
@media (min-width: 48rem) {
  .nav__logo-img {
    height: 100px;
  }

  .nav__toggle {
    display: none;
  }

  .nav__menu {
    display: flex;
    flex-direction: row;
    align-items: center;
    position: static;
    background: none;
    border: none;
    padding: 0;
    box-shadow: none;
  }

  .nav__link {
    padding: 0.4rem 0.75rem;
    font-size: 0.95rem;
  }

  .nav__link--cta {
    margin-top: 0;
    padding: 0.55rem 1.25rem;
  }
}

/* ─── Hero ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--clr-bg);
  padding: var(--space-xl) 1.5rem var(--space-2xl);
}

/* Blob lava-lamp keyframes — each blob drifts, rotates AND morphs shape */
@keyframes blob-drift-yellow {
  0%   { transform: rotate(15deg)  translate(0, 0);       border-radius: 67% 33% 47% 53% / 37% 55% 45% 63%; }
  20%  { transform: rotate(22deg)  translate(14px, -18px); border-radius: 55% 45% 60% 40% / 50% 42% 58% 50%; }
  45%  { transform: rotate(8deg)   translate(-10px, 12px); border-radius: 40% 60% 38% 62% / 58% 36% 64% 42%; }
  70%  { transform: rotate(20deg)  translate(6px, -8px);   border-radius: 62% 38% 52% 48% / 44% 60% 40% 56%; }
  100% { transform: rotate(15deg)  translate(0, 0);       border-radius: 67% 33% 47% 53% / 37% 55% 45% 63%; }
}

@keyframes blob-drift-teal {
  0%   { transform: rotate(-20deg) translate(0, 0);        border-radius: 40% 60% 70% 30% / 50% 40% 60% 50%; }
  25%  { transform: rotate(-11deg) translate(-14px, -10px); border-radius: 55% 45% 50% 50% / 38% 62% 42% 58%; }
  55%  { transform: rotate(-28deg) translate(10px, 16px);  border-radius: 35% 65% 62% 38% / 60% 35% 65% 40%; }
  80%  { transform: rotate(-15deg) translate(-4px, -12px); border-radius: 50% 50% 44% 56% / 46% 54% 48% 52%; }
  100% { transform: rotate(-20deg) translate(0, 0);        border-radius: 40% 60% 70% 30% / 50% 40% 60% 50%; }
}

@keyframes blob-drift-pink {
  0%   { transform: rotate(10deg)  translate(0, 0);        border-radius: 55% 45% 35% 65% / 55% 65% 35% 45%; }
  30%  { transform: rotate(18deg)  translate(12px, -14px); border-radius: 40% 60% 55% 45% / 65% 45% 55% 35%; }
  65%  { transform: rotate(3deg)   translate(-8px, 10px);  border-radius: 65% 35% 42% 58% / 42% 58% 62% 38%; }
  100% { transform: rotate(10deg)  translate(0, 0);        border-radius: 55% 45% 35% 65% / 55% 65% 35% 45%; }
}

/* Decorative blob shapes */
.hero__decorations {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero__blob {
  position: absolute;
  border-radius: 60% 40% 55% 45% / 45% 55% 40% 60%;
  opacity: 0.55;
  will-change: transform, border-radius;
}

.hero__blob--yellow {
  width: 380px;
  height: 340px;
  background: var(--clr-yellow);
  top: -80px;
  right: -60px;
  transform: rotate(15deg);
  border-radius: 67% 33% 47% 53% / 37% 55% 45% 63%;
  opacity: 0.45;
  animation: blob-drift-yellow 11s ease-in-out infinite;
}

.hero__blob--teal {
  width: 200px;
  height: 220px;
  background: var(--clr-teal);
  bottom: 60px;
  right: 15%;
  transform: rotate(-20deg);
  border-radius: 40% 60% 70% 30% / 50% 40% 60% 50%;
  opacity: 0.35;
  animation: blob-drift-teal 9s ease-in-out 2s infinite;
}

.hero__blob--pink {
  width: 130px;
  height: 120px;
  background: var(--clr-pink);
  top: 30%;
  left: -30px;
  transform: rotate(10deg);
  border-radius: 55% 45% 35% 65% / 55% 65% 35% 45%;
  opacity: 0.30;
  animation: blob-drift-pink 13s ease-in-out 4s infinite;
}

.hero__dot {
  position: absolute;
  border-radius: 50%;
}

.hero__dot--1 {
  width: 18px;
  height: 18px;
  background: var(--clr-pink);
  top: 25%;
  right: 30%;
  opacity: 0.6;
}

.hero__dot--2 {
  width: 12px;
  height: 12px;
  background: var(--clr-teal);
  bottom: 30%;
  right: 20%;
  opacity: 0.7;
}

.hero__dot--3 {
  width: 24px;
  height: 24px;
  background: var(--clr-yellow);
  top: 15%;
  left: 20%;
  opacity: 0.55;
}

/* Hero layout */
.hero__content {
  position: relative;
  z-index: 1;
  max-width: 36rem;
  margin: 0 auto;
  text-align: center;
}

.hero__eyebrow {
  font-size: 1rem;
  font-weight: 700;
  color: var(--clr-pink);
  max-width: none;
  margin-bottom: var(--space-xs);
}

.hero__heading {
  margin-bottom: var(--space-md);
  color: var(--clr-dark);
}

.hero__tagline {
  font-size: 1.1rem;
  line-height: 1.7;
  margin: 0 auto var(--space-lg);
  max-width: 50ch;
  color: var(--clr-muted);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
}

/* Hero photo (hidden on mobile to keep it clean) */
.hero__visual {
  display: none;
}

/* Desktop hero: two-column layout */
@media (min-width: 56rem) {
  .hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: var(--space-xl);
    max-width: 72rem;
    margin: 0 auto;
    padding: var(--space-2xl) 3rem;
  }

  .hero__decorations {
    /* Let blobs exist in the right half */
    left: 50%;
  }

  .hero__blob--pink {
    display: none; /* Not needed with two-col layout */
  }

  .hero__content {
    text-align: left;
    max-width: none;
    margin: 0;
  }

  .hero__tagline {
    margin-left: 0;
  }

  .hero__actions {
    justify-content: flex-start;
  }

  .hero__visual {
    display: block;
    position: relative;
    z-index: 1;
  }

  .hero__photo-wrap {
    width: 100%;
    max-width: 420px;
    aspect-ratio: 5/6;
    border-radius: 40% 60% 55% 45% / 50% 45% 55% 50%;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin: 0 auto;
  }

  .hero__photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

/* ─── About ──────────────────────────────────────────────────── */
.about {
  padding: var(--space-xl) 1.5rem;
  background: var(--clr-white);
}

.about__inner {
  max-width: 72rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.about__text h2 {
  margin-bottom: var(--space-sm);
}

.about__text p {
  margin-bottom: var(--space-sm);
}

.about__text p:last-of-type {
  margin-bottom: var(--space-md);
}

.about__features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.about__feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  color: var(--clr-dark);
}

.about__feature-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
  width: 2rem;
  text-align: center;
}

/* About visual */
.about__visual {
  position: relative;
  order: -1; /* Photo above text on mobile */
}

.about__image-wrap {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.about__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__badge {
  position: absolute;
  bottom: -16px;
  right: 20px;
  background: var(--clr-pink);
  color: var(--clr-white);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  line-height: 1.1;
}

.about__badge-number {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
}

.about__badge-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.85;
}

@media (min-width: 56rem) {
  .about__inner {
    flex-direction: row;
    align-items: center;
    gap: var(--space-2xl);
  }

  .about__visual {
    flex: 0 0 42%;
    order: 0;
  }

  .about__text {
    flex: 1;
  }
}

/* ─── Sessions ───────────────────────────────────────────────── */
.sessions {
  padding: var(--space-xl) 1.5rem;
  background: var(--clr-yellow-bg);
}

.sessions__inner {
  max-width: 72rem;
  margin: 0 auto;
}

.sessions__intro {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.sessions__heading {
  margin-bottom: var(--space-xs);
}

.sessions__subtext {
  margin: 0 auto;
  max-width: 55ch;
  color: var(--clr-muted);
}

/* Session cards grid */
.sessions__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

@media (min-width: 36rem) {
  .sessions__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 72rem) {
  .sessions__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Individual session card */
.session-card {
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  padding: var(--space-md) var(--space-md) var(--space-lg);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}

.session-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

/* Coloured top accent bar */
.session-card__accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.session-card__accent--yellow { background: var(--clr-yellow); }
.session-card__accent--pink   { background: var(--clr-pink); }
.session-card__accent--teal   { background: var(--clr-teal); }

.session-card__icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  line-height: 1;
  margin-top: var(--space-xs);
}

.session-card__title {
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
  color: var(--clr-dark);
}

.session-card__age {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--clr-pink);
  margin-bottom: 0.75rem;
}

.session-card__desc {
  font-size: 0.95rem;
  color: var(--clr-muted);
  flex: 1;
  max-width: none;
  margin-bottom: var(--space-md);
}

.session-card__link {
  font-weight: 700;
  color: var(--clr-pink);
  font-size: 0.95rem;
  transition: gap var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: auto;
}

.session-card__link:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ─── Gallery ────────────────────────────────────────────────── */
.gallery {
  padding: var(--space-xl) 1.5rem;
  background: var(--clr-dark);
}

.gallery__inner {
  max-width: 72rem;
  margin: 0 auto;
}

.gallery__intro {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.gallery__heading {
  color: var(--clr-white);
  margin-bottom: var(--space-xs);
}

.gallery__subtext {
  color: rgba(255, 255, 255, 0.65);
  margin: 0 auto;
  max-width: 50ch;
}

/* Gallery grid */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 200px;
  gap: 8px;
}

/* Tall items span 2 rows */
.gallery__item--tall {
  grid-row: span 2;
}

/* Wide items span 2 columns */
.gallery__item--wide {
  grid-column: span 2;
}

@media (min-width: 48rem) {
  .gallery__grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 240px;
    gap: 10px;
  }
}

.gallery__item {
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.gallery__btn {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.gallery__btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(212, 27, 95, 0);
  transition: background var(--transition);
}

.gallery__btn:hover::after {
  background: rgba(212, 27, 95, 0.25);
}

.gallery__btn:focus-visible {
  outline: 3px solid var(--clr-pink);
  outline-offset: 0;
  border-radius: var(--radius-sm);
}

.gallery__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.gallery__btn:hover .gallery__img {
  transform: scale(1.04);
}

/* ─── Lightbox ───────────────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(10, 10, 20, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.lightbox[hidden] {
  display: none;
}

.lightbox__content {
  max-width: min(92vw, 900px);
  max-height: 90vh;
  margin: 0;
}

.lightbox__img {
  max-width: 100%;
  max-height: 88vh;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  object-fit: contain;
}

.lightbox__close,
.lightbox__prev,
.lightbox__next {
  position: fixed;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--clr-white);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  transition: background var(--transition);
  z-index: 501;
}

.lightbox__close {
  top: 1rem;
  right: 1rem;
  font-size: 1rem;
}

.lightbox__prev {
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.75rem;
}

.lightbox__next {
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.75rem;
}

.lightbox__close:hover,
.lightbox__prev:hover,
.lightbox__next:hover {
  background: rgba(255, 255, 255, 0.25);
}

.lightbox__close:focus-visible,
.lightbox__prev:focus-visible,
.lightbox__next:focus-visible {
  outline: 3px solid var(--clr-yellow);
  outline-offset: 2px;
}

/* ─── Clothing Recommendations ───────────────────────────────── */
.clothing {
  padding: var(--space-xl) 1.5rem;
  background: var(--clr-teal-bg);
}

.clothing__inner {
  max-width: 72rem;
  margin: 0 auto;
}

.clothing__intro {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.clothing__heading {
  margin-bottom: var(--space-xs);
}

.clothing__subtext {
  margin: 0 auto;
  max-width: 62ch;
  color: var(--clr-muted);
}

/* Do / Don't split checklist */
.clothing__checklist {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

@media (min-width: 42rem) {
  .clothing__checklist {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
  }
}

.clothing__check-col {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

/* Column headers */
.clothing__check-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem var(--space-md);
}

.clothing__check-col--dont .clothing__check-header {
  background: var(--clr-pink);
}

.clothing__check-col--do .clothing__check-header {
  background: var(--clr-teal);
}

.clothing__check-mark {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--clr-white);
  line-height: 1;
  flex-shrink: 0;
}

.clothing__check-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--clr-white);
  margin: 0;
}

/* List body */
.clothing__check-list {
  background: var(--clr-white);
  padding: var(--space-sm) var(--space-md);
  display: flex;
  flex-direction: column;
  gap: 0;
}

.clothing__check-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.925rem;
  font-weight: 600;
  color: var(--clr-dark);
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.clothing__check-item:last-child {
  border-bottom: none;
}

/* Bullet dot — coloured per column */
.clothing__check-item::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.clothing__check-col--dont .clothing__check-item::before {
  background: var(--clr-pink);
}

.clothing__check-col--do .clothing__check-item::before {
  background: var(--clr-teal);
}

/* Affiliate disclosure */
.clothing__disclosure {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: rgba(0, 151, 167, 0.08);
  border: 1px solid rgba(0, 151, 167, 0.3);
  border-radius: var(--radius-md);
  padding: var(--space-sm) var(--space-md);
  margin-bottom: var(--space-lg);
}

.clothing__disclosure-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
  line-height: 1.5;
}

.clothing__disclosure p {
  font-size: 0.875rem;
  color: var(--clr-dark);
  max-width: none;
  margin: 0;
  line-height: 1.6;
}

/* Picks heading row */
.clothing__picks-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: var(--space-md);
}

.clothing__picks-title {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--clr-dark);
  margin: 0;
}

.clothing__ad-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--clr-yellow);
  color: var(--clr-dark); /* contrast ~6.5:1 ✓ */
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  line-height: 1.4;
}

/* Product grid */
.clothing__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

@media (min-width: 36rem) {
  .clothing__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 56rem) {
  .clothing__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Product card */
.clothing-card {
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}

.clothing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.clothing-card__img-wrap {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--clr-yellow-bg) 0%, var(--clr-teal-bg) 100%);
}

.clothing-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.clothing-card__icon {
  font-size: 3.5rem;
  line-height: 1;
}

.clothing-card__body {
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.clothing-card__name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--clr-dark);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.clothing-card__desc {
  font-size: 0.9rem;
  color: var(--clr-muted);
  flex: 1;
  max-width: none;
  margin-bottom: var(--space-md);
  line-height: 1.6;
}

.clothing-card__btn {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: auto;
}

.clothing-card__ad-badge {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--clr-yellow);
  color: var(--clr-dark); /* contrast ~6.5:1 ✓ */
  padding: 0.15rem 0.4rem;
  border-radius: 3px;
  line-height: 1.3;
  flex-shrink: 0;
}

/* ─── Events ─────────────────────────────────────────────────── */
.events {
  padding: var(--space-xl) 1.5rem;
  background: var(--clr-white);
}

.events__inner {
  max-width: 72rem;
  margin: 0 auto;
}

.events__intro {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.events__heading {
  margin-bottom: var(--space-xs);
}

.events__subtext {
  margin: 0 auto;
  max-width: 50ch;
}

/* Events list */
.events__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 56rem) {
  .events__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Event card */
.event-card {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  background: var(--clr-bg);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  transition: box-shadow var(--transition), transform var(--transition);
}

.event-card:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

/* Date chip */
.event-card__date {
  flex-shrink: 0;
  background: var(--clr-pink);
  color: var(--clr-white);
  border-radius: var(--radius-md);
  width: 54px;
  height: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.event-card__day {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
}

.event-card__month {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.9;
}

.event-card__info {
  flex: 1;
}

.event-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.15rem;
  color: var(--clr-dark);
}

.event-card__meta {
  font-size: 0.85rem;
  color: var(--clr-muted);
  max-width: none;
  margin-bottom: 0.2rem;
}

.event-card__location {
  font-size: 0.82rem;
  color: var(--clr-muted);
  max-width: none;
}

.event-card__action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.event-card__spaces {
  font-size: 0.72rem;
  font-weight: 700;
  text-align: center;
  color: var(--clr-teal);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.event-card__spaces--urgent {
  color: var(--clr-pink);
}

.event-card__spaces--full {
  color: var(--clr-muted);
}

/* ─── Contact ────────────────────────────────────────────────── */
.contact {
  padding: var(--space-xl) 1.5rem;
  background: var(--clr-pink-bg);
}

.contact__inner {
  max-width: 72rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

@media (min-width: 56rem) {
  .contact__inner {
    flex-direction: row;
    align-items: flex-start;
    gap: var(--space-2xl);
  }

  .contact__info {
    flex: 0 0 38%;
  }

  .contact__form {
    flex: 1;
  }
}

.contact__heading {
  margin-bottom: var(--space-sm);
}

.contact__info p {
  margin-bottom: var(--space-md);
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: var(--space-lg);
}

.contact__details li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--clr-dark);
}

.contact__details a {
  color: var(--clr-pink);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contact__details a:hover {
  color: #a81449;
}

/* Social icons */
.contact__social {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--clr-white);
  color: var(--clr-dark);
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.1);
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.social-link:hover {
  background: var(--clr-pink);
  color: var(--clr-white);
  transform: translateY(-2px);
  border-color: var(--clr-pink);
}

/* ─── Form ───────────────────────────────────────────────────── */
.form {
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.form__field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form__label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--clr-dark);
}

.form__required {
  color: var(--clr-pink);
}

.form__input {
  padding: 0.75rem 1rem;
  border: 2px solid rgba(0, 0, 0, 0.12);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--clr-dark);
  background: var(--clr-bg);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
}

.form__input:focus {
  border-color: var(--clr-teal);
  box-shadow: 0 0 0 3px rgba(0, 151, 167, 0.18);
}

/* CSS-first invalid state (shown only after user interaction) */
.form__input:user-invalid {
  border-color: var(--clr-pink);
}

/* JS-driven invalid state */
.form__input--invalid {
  border-color: var(--clr-pink);
  box-shadow: 0 0 0 3px rgba(212, 27, 95, 0.15);
}

.form__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%231A1A2E' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form__textarea {
  resize: vertical;
  min-height: 100px;
}

.form__error {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--clr-pink);
  min-height: 1.1em;
  display: block;
}

/* Success message */
.form__success-msg {
  background: #e8f5e9;
  color: #1b5e20;
  border: 1px solid #a5d6a7;
  border-radius: var(--radius-sm);
  padding: var(--space-sm);
  font-size: 0.95rem;
  margin-top: var(--space-xs);
}

.form__success-msg[hidden] {
  display: none;
}

/* ─── Footer ─────────────────────────────────────────────────── */
.footer {
  background: var(--clr-dark);
  color: rgba(255, 255, 255, 0.75);
  padding: var(--space-xl) 1.5rem;
}

.footer__inner {
  max-width: 72rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  align-items: center;
  text-align: center;
}

@media (min-width: 56rem) {
  .footer__inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    text-align: left;
  }
}

.footer__logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--clr-white);
  margin-bottom: 0.5rem;
}

.footer__tagline {
  font-size: 0.9rem;
  max-width: none;
}

.footer__nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  justify-content: center;
}

@media (min-width: 56rem) {
  .footer__nav ul {
    flex-direction: column;
    gap: 0.5rem;
    justify-content: flex-start;
  }
}

.footer__nav a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  font-weight: 600;
  transition: color var(--transition);
}

.footer__nav a:hover {
  color: var(--clr-white);
}

.footer__copy {
  font-size: 0.82rem;
  max-width: none;
  line-height: 1.7;
}
