/* ---------- Tokens ---------- */
:root {
  --plum: #151018;           /* near-black (primary) */
  --plum-ink: #0a060d;       /* darkest */
  --plum-soft: #4b404f;      /* muted charcoal */
  --coral: #ea1e9c;          /* hot magenta (logo pink) */
  --coral-deep: #bf147f;
  --strawberry: #dc2842;     /* logo red */
  --strawberry-deep: #a81e30;
  --leaf: #5fa03d;           /* logo green (sparingly) */
  --peach: #fce3ee;          /* soft pink blush */
  --peach-deep: #ffc6df;     /* pink accent */
  --cream: #fbf7f0;
  --cream-warm: #f5ecde;
  --mauve: #7a6276;
  --white: #ffffff;
  --ink: #151018;
  --muted: #625562;
  --line: #e8dfd4;

  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;

  --shadow-sm: 0 1px 2px rgba(26, 15, 38, 0.04), 0 2px 8px rgba(26, 15, 38, 0.04);
  --shadow: 0 2px 4px rgba(26, 15, 38, 0.05), 0 12px 32px rgba(26, 15, 38, 0.08);
  --shadow-lg: 0 4px 8px rgba(26, 15, 38, 0.06), 0 24px 60px rgba(26, 15, 38, 0.12);

  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);

  --h-font: "Fraunces", "Iowan Old Style", Georgia, serif;
  --b-font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --max: 1180px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--b-font);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--coral-deep); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--plum); }
button { font: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--h-font);
  font-weight: 500;
  font-variation-settings: "SOFT" 50, "WONK" 0;
  color: var(--plum);
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin: 0 0 0.5em;
}
h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); line-height: 1.02; letter-spacing: -0.02em; font-weight: 450; }
h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
h3 { font-size: 1.3rem; font-family: var(--b-font); font-weight: 600; color: var(--plum-ink); letter-spacing: -0.005em; }
p { margin: 0 0 1em; }
p.lead { font-size: 1.15rem; color: var(--muted); max-width: 60ch; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--b-font);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral-deep);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: "";
  width: 24px; height: 1px; background: var(--coral); display: inline-block;
}

/* ---------- Layout ---------- */
.container {
  width: 100%; max-width: var(--max);
  margin-inline: auto;
  padding-inline: clamp(1.2rem, 4vw, 2rem);
}
.section { padding-block: clamp(4rem, 9vw, 7rem); }
.section--tight { padding-block: clamp(2.5rem, 6vw, 4rem); }

.skip {
  position: absolute; left: -1000px; top: 0;
  background: var(--plum); color: var(--cream);
  padding: 0.75rem 1rem; border-radius: var(--radius-sm);
  z-index: 1000;
}
.skip:focus { left: 1rem; top: 1rem; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 247, 240, 0.85);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 200ms var(--ease);
}
.site-header.is-scrolled { border-bottom-color: var(--line); }

.nav {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 74px;
  gap: 1rem;
}
.brand {
  display: inline-flex; align-items: center; gap: 0.7rem;
  text-decoration: none; color: var(--plum);
  font-family: var(--h-font);
  font-weight: 500;
  font-size: 1.15rem;
  letter-spacing: -0.005em;
}
.brand-mark {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: var(--plum);
  color: var(--cream);
  border-radius: 50%;
  flex-shrink: 0;
  overflow: hidden;
}
.brand-mark svg { width: 22px; height: 22px; }
.brand-mark img { width: 100%; height: 100%; object-fit: cover; display: block; }
.brand-name strong { font-weight: 500; display: block; line-height: 1.1; white-space: nowrap; }
.brand-name span { font-family: var(--b-font); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mauve); font-weight: 600; white-space: nowrap; }

/* Larger brand in the header only; footer keeps the compact version */
.site-header .brand { font-size: 1.45rem; gap: 0.85rem; }
.site-header .brand-mark { width: 60px; height: 60px; }
.site-header .brand-name span { font-size: 0.82rem; }
@media (max-width: 480px) {
  .site-header .brand { font-size: 1.2rem; }
  .site-header .brand-mark { width: 48px; height: 48px; }
  .site-header .brand-name span { font-size: 0.7rem; }
}

.nav-list {
  display: flex; list-style: none; margin: 0; padding: 0;
  gap: 0.4rem; align-items: center;
}
.nav-list li { margin: 0; }
.nav-list a {
  display: inline-block;
  white-space: nowrap;
  padding: 0.55rem 0.9rem;
  color: var(--plum-ink);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 999px;
  transition: background 160ms var(--ease), color 160ms var(--ease);
}
.nav-list a:hover { background: var(--peach); color: var(--plum); }
.nav-list a.is-active { background: var(--plum); color: var(--cream); }

.nav-cta {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.6rem 1.1rem;
  background: var(--coral); color: var(--white);
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600; font-size: 0.95rem;
  transition: transform 160ms var(--ease), background 160ms var(--ease);
  margin-left: 0.4rem;
}
.nav-cta:hover { background: var(--coral-deep); color: var(--white); transform: translateY(-1px); }

.nav-toggle {
  display: none;
  background: transparent; border: 1px solid var(--line); border-radius: 999px;
  width: 44px; height: 44px; padding: 0; color: var(--plum);
  align-items: center; justify-content: center;
}
.nav-toggle[aria-expanded="true"] { background: var(--plum); color: var(--cream); border-color: var(--plum); }
.nav-toggle svg { width: 20px; height: 20px; }
.nav-toggle svg line {
  transition: transform 220ms var(--ease), opacity 150ms var(--ease);
  transform-box: fill-box;
  transform-origin: center;
}
.nav-toggle[aria-expanded="true"] line:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] line:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] line:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

/* Mobile-menu-only items, hidden on desktop */
.nav-list .nav-cta-mobile { display: none; }
.nav-list .nav-note { display: none; }

@media (max-width: 1080px) {
  .nav { position: relative; }
  .nav-toggle { display: inline-flex; }
  .nav-cta.nav-cta-desktop { display: none; }

  /* Menu = a floating plum card, same surface language as the sessions block */
  .nav-list {
    display: flex;
    position: absolute; top: calc(100% + 8px); left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--plum);
    border-radius: var(--radius-lg);
    padding: 0.6rem 1.5rem 1.5rem;
    box-shadow: 0 24px 60px rgba(10, 6, 13, 0.45);
    z-index: 60;
    max-height: calc(100dvh - 110px);
    overflow: auto;
    opacity: 0; visibility: hidden; pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 200ms var(--ease), transform 220ms var(--ease), visibility 0s 220ms;
  }
  .nav-list.is-open {
    opacity: 1; visibility: visible; pointer-events: auto;
    transform: none;
    transition: opacity 200ms var(--ease), transform 220ms var(--ease);
  }

  .nav-list li { opacity: 0; transform: translateY(-8px); transition: opacity 200ms var(--ease), transform 200ms var(--ease); }
  .nav-list.is-open li { opacity: 1; transform: none; }
  .nav-list.is-open li:nth-child(2) { transition-delay: 30ms; }
  .nav-list.is-open li:nth-child(3) { transition-delay: 60ms; }
  .nav-list.is-open li:nth-child(4) { transition-delay: 90ms; }
  .nav-list.is-open li:nth-child(5) { transition-delay: 120ms; }
  .nav-list.is-open li:nth-child(6) { transition-delay: 150ms; }
  .nav-list.is-open li:nth-child(7) { transition-delay: 180ms; }

  .nav-list li + li { border-top: 1px solid rgba(251, 247, 240, 0.1); }
  .nav-list li:has(.nav-cta-mobile) { border-top: 0; }

  .nav-list a {
    display: block;
    font-family: var(--h-font);
    font-size: 1.35rem;
    font-weight: 500;
    letter-spacing: -0.01em;
    color: var(--cream);
    padding: 0.85rem 0.15rem;
    border-radius: 0;
    transition: color 160ms var(--ease), padding-left 220ms var(--ease);
  }
  .nav-list a:hover { background: none; color: var(--peach-deep); padding-left: 0.5rem; }
  .nav-list a:focus-visible { outline: 2px solid var(--peach-deep); outline-offset: 2px; border-radius: 6px; }
  .nav-list a.is-active {
    background: none;
    color: var(--coral);
    font-style: italic;
    font-variation-settings: "SOFT" 100, "WONK" 1;
  }

  .nav-list .nav-note {
    display: block;
    padding: 1.1rem 0.15rem 1.1rem;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    color: rgba(251, 247, 240, 0.75);
  }
  .nav-list .nav-note strong {
    display: block;
    color: var(--peach-deep);
    font-weight: 600;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 0.15rem;
  }

  .nav-list .nav-cta-mobile {
    display: flex; justify-content: center;
    font-family: var(--b-font);
    font-style: normal;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0;
    padding: 0.95rem 1.1rem;
    border-radius: 999px;
    background: var(--coral);
    color: var(--white);
  }
  .nav-list .nav-cta-mobile:hover { background: var(--coral-deep); color: var(--white); padding-left: 1.1rem; }

  /* Dim the page behind the open menu */
  body::before {
    content: ""; position: fixed; inset: 0; z-index: 40;
    background: rgba(10, 6, 13, 0.45);
    opacity: 0; pointer-events: none;
    transition: opacity 220ms var(--ease);
  }
  body.nav-open::before { opacity: 1; pointer-events: auto; }
  body.nav-open { overflow: hidden; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.95rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
  border: 1px solid transparent;
  transition: transform 160ms var(--ease), background 160ms var(--ease), box-shadow 160ms var(--ease);
  will-change: transform;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--coral); color: var(--white); box-shadow: 0 6px 20px rgba(232, 84, 107, 0.3); }
.btn-primary:hover { background: var(--coral-deep); color: var(--white); }
.btn-secondary {
  background: transparent; color: var(--plum);
  border-color: var(--plum);
}
.btn-secondary:hover { background: var(--plum); color: var(--cream); }
.btn-ghost {
  background: var(--white); color: var(--plum); box-shadow: var(--shadow-sm);
}
.btn-ghost:hover { background: var(--peach); color: var(--plum); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding-block: clamp(3.5rem, 7vw, 6rem) clamp(4rem, 8vw, 7rem);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
@media (max-width: 860px) { .hero-grid { grid-template-columns: 1fr; } }

.hero h1 { font-size: clamp(2.1rem, 4.8vw, 3.4rem); }
.hero h1 .accent {
  color: var(--coral);
  font-style: italic;
  font-variation-settings: "SOFT" 100, "WONK" 1;
  font-weight: 400;
}
.hero-pills {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  margin: 1.5rem 0 2rem;
}
.pill {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.45rem 0.9rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.85rem; font-weight: 500;
  color: var(--plum-ink);
}
.pill-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--coral);
  flex-shrink: 0;
}

.hero-cta {
  display: flex; flex-wrap: wrap; gap: 0.8rem;
  margin-bottom: 2rem;
}

.hero-meta {
  display: flex; gap: 1.5rem; flex-wrap: wrap;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}
.hero-meta strong { display: block; color: var(--plum); font-family: var(--h-font); font-size: 1.5rem; font-weight: 500; letter-spacing: -0.02em; }

/* Hero visual */
.hero-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(160deg, var(--peach-deep) 0%, var(--coral) 55%, var(--plum) 100%);
  box-shadow: var(--shadow-lg);
}
.hero-visual svg.skater {
  position: absolute;
  inset: 0; width: 100%; height: 100%;
}
.hero-visual img.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-blob {
  position: absolute; pointer-events: none;
  width: 520px; height: 520px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  z-index: -1;
}
.hero-blob--peach { background: var(--peach-deep); top: -140px; right: -100px; }
.hero-blob--coral { background: var(--coral); bottom: -220px; left: -120px; opacity: 0.22; }

/* Strawberry accent pill dot for a little club DNA */
.pill-dot--strawberry { background: var(--strawberry); }

/* ---------- Cards & Sessions ---------- */
.sessions {
  background: var(--plum);
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 3.5rem);
  position: relative;
  overflow: hidden;
}
.sessions h2, .sessions h3 { color: var(--cream); }
.sessions .eyebrow { color: var(--peach-deep); }
.sessions .eyebrow::before { background: var(--peach-deep); }

.session-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}
.session-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 1.6rem;
  transition: transform 200ms var(--ease), background 200ms var(--ease);
}
.session-card:hover { transform: translateY(-3px); background: rgba(255, 255, 255, 0.1); }
.session-card .day {
  display: flex; align-items: baseline; gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.session-card .day strong {
  font-family: var(--h-font); font-size: 1.8rem; color: var(--cream); font-weight: 500;
}
.session-card .day span {
  font-size: 0.9rem; color: var(--peach-deep); letter-spacing: 0.05em;
}
.session-card .time {
  font-size: 1.05rem; color: var(--cream); opacity: 0.95; margin-bottom: 1rem;
}
.session-card .price {
  display: flex; gap: 1rem; padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.9rem;
}
.session-card .price div { color: rgba(255, 255, 255, 0.75); }
.session-card .price strong { display: block; color: var(--cream); font-size: 1.1rem; font-family: var(--h-font); font-weight: 500; }
.session-card .tag {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  background: var(--coral);
  color: var(--white);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-left: auto;
}

/* ---------- Features / Why ---------- */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.feature {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem;
  transition: transform 200ms var(--ease), box-shadow 200ms var(--ease);
}
.feature:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.feature-icon {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  background: var(--peach);
  border-radius: 14px;
  color: var(--plum);
  margin-bottom: 1rem;
}
.feature-icon svg { width: 24px; height: 24px; }
.feature h3 { margin-bottom: 0.4rem; }
.feature p { color: var(--muted); font-size: 0.95rem; margin: 0; }

/* ---------- Page header ---------- */
.page-header {
  padding-block: clamp(3rem, 6vw, 5rem) clamp(2.5rem, 5vw, 4rem);
  text-align: left;
  position: relative;
}
.page-header h1 { max-width: 18ch; }
.page-header p { max-width: 60ch; color: var(--muted); font-size: 1.1rem; }

/* ---------- Team ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}
.person {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem;
  transition: transform 200ms var(--ease), box-shadow 200ms var(--ease);
}
.person:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.person-avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--peach) 0%, var(--coral) 100%);
  display: grid; place-items: center;
  color: var(--plum);
  font-family: var(--h-font);
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 1rem;
}
.person--muted .person-avatar { background: linear-gradient(135deg, var(--peach) 0%, var(--peach-deep) 100%); }
.person-role {
  font-size: 0.82rem;
  color: var(--coral-deep);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  margin: 0 0 0.25rem;
}
.person-name {
  font-family: var(--h-font);
  font-size: 1.35rem;
  color: var(--plum);
  margin: 0 0 0.5rem;
  font-weight: 500;
}
.person a { font-size: 0.9rem; color: var(--plum-soft); word-break: break-word; }

/* ---------- FAQs ---------- */
.faq {
  max-width: 780px;
  margin-inline: auto;
}
.faq details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 0.8rem;
  overflow: hidden;
  transition: box-shadow 200ms var(--ease);
}
.faq details[open] { box-shadow: var(--shadow); }
.faq summary {
  padding: 1.3rem 1.5rem;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--plum-ink);
  cursor: pointer;
  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(--h-font);
  font-size: 1.6rem;
  color: var(--coral);
  line-height: 1;
  transition: transform 200ms var(--ease);
  flex-shrink: 0;
}
.faq details[open] summary::after { content: "−"; }
.faq-body { padding: 0 1.5rem 1.5rem; color: var(--muted); }
.faq-body p:last-child { margin-bottom: 0; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}
.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem;
}
.contact-card h3 { margin-bottom: 0.75rem; }
.contact-card a { display: block; color: var(--plum); font-weight: 500; margin-bottom: 0.25rem; }
.contact-card .label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--mauve); font-weight: 600; margin-bottom: 0.5rem; }

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  aspect-ratio: 16 / 9;
  margin-top: 2rem;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ---------- Sponsor ---------- */
.sponsor-logo {
  display: block;
  justify-self: center;
  align-self: center;
}
.sponsor-logo img {
  width: clamp(180px, 24vw, 250px);
  height: auto;
  transition: transform 200ms var(--ease);
}
.sponsor-logo:hover img { transform: scale(1.03); }
@media (max-width: 860px) {
  .sponsor-logo { justify-self: start; }
  .sponsor-logo img { width: 200px; }
}

/* ---------- Quick links ---------- */
.links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}
.link-card {
  display: flex; flex-direction: column; gap: 0.4rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem;
  text-decoration: none;
  color: var(--ink);
  transition: transform 200ms var(--ease), box-shadow 200ms var(--ease);
}
.link-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); color: var(--ink); }
.link-card .link-kind {
  font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--coral-deep); font-weight: 600;
}
.link-card h3 { margin: 0; }
.link-card h3::after { content: " ↗"; color: var(--coral); font-size: 0.9em; }
.link-card p { margin: 0; color: var(--muted); font-size: 0.95rem; }
.link-card .link-url {
  margin-top: auto; padding-top: 0.9rem;
  font-size: 0.85rem; color: var(--mauve); font-weight: 500;
  word-break: break-all;
}

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--coral) 0%, var(--coral-deep) 100%);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(2.5rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 2rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}
@media (max-width: 720px) { .cta-band { grid-template-columns: 1fr; } }
.cta-band h2 { color: var(--white); margin: 0 0 0.5rem; }
.cta-band p { color: rgba(255, 255, 255, 0.9); margin: 0; }
.cta-band .btn-ghost { background: var(--white); justify-self: start; }
.cta-band .btn-ghost:hover { background: var(--peach); }
.cta-band::after {
  content: ""; position: absolute; right: -100px; top: -100px;
  width: 320px; height: 320px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--plum);
  color: rgba(251, 247, 240, 0.85);
  padding-block: clamp(3rem, 6vw, 4.5rem) 2rem;
  margin-top: clamp(3rem, 6vw, 5rem);
}
.site-footer a { color: var(--cream); text-decoration-color: rgba(251, 247, 240, 0.3); }
.site-footer a:hover { text-decoration-color: var(--coral); color: var(--peach-deep); }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}
@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-col h4 {
  font-family: var(--b-font);
  font-size: 0.8rem;
  color: var(--peach-deep);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 0.5rem; font-size: 0.95rem; }
.footer-brand p { color: rgba(251, 247, 240, 0.7); max-width: 34ch; font-size: 0.95rem; }
.footer-brand .brand { color: var(--cream); margin-bottom: 1rem; }
.footer-brand .brand-mark {
  background: var(--cream);
  color: var(--plum);
  box-shadow: 0 0 0 2px rgba(251, 247, 240, 0.15);
}
.footer-brand .brand-name span { color: var(--peach-deep); }
.footer-base {
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(251, 247, 240, 0.15);
  font-size: 0.88rem; color: rgba(251, 247, 240, 0.6);
  flex-wrap: wrap;
}
.site-footer a.social,
a.social {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.5rem 0.9rem;
  background: #1877f2;
  border-radius: 999px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: background 160ms var(--ease);
}
.site-footer a.social:hover,
a.social:hover { background: #166fe5; color: #ffffff; }
.social svg { width: 16px; height: 16px; }
.socials { display: flex; gap: 0.6rem; flex-wrap: wrap; align-items: center; }
.site-footer a.social--ig,
a.social--ig { background: linear-gradient(45deg, #feda75 0%, #fa7e1e 25%, #d62976 50%, #962fbf 75%, #4f5bd5 100%); }
.site-footer a.social--ig:hover,
a.social--ig:hover { background: linear-gradient(45deg, #feda75 0%, #fa7e1e 25%, #d62976 50%, #962fbf 75%, #4f5bd5 100%); filter: brightness(1.08); }

/* ---------- Utility ---------- */
.prose > * + * { margin-top: 1em; }
.prose h2 { margin-top: 1.8em; }
.prose h3 { margin-top: 1.4em; }
.prose ul { padding-left: 1.2em; }
.prose li { margin-bottom: 0.3em; }

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } }

.surface {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.8rem, 4vw, 2.5rem);
}

.pricing {
  display: grid; gap: 0.8rem;
}
.price-row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}
.price-row:last-child { border-bottom: 0; }
.price-row .label strong { display: block; color: var(--plum); font-family: var(--h-font); font-size: 1.2rem; font-weight: 500; }
.price-row .label span { color: var(--muted); font-size: 0.9rem; }
.price-row .amt { font-family: var(--h-font); color: var(--plum); font-size: 1.6rem; font-weight: 500; letter-spacing: -0.01em; }

.steps { counter-reset: step; }
.step { padding-left: 3.2rem; position: relative; margin-bottom: 1.4rem; }
.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute; left: 0; top: 0;
  width: 36px; height: 36px;
  background: var(--peach);
  color: var(--plum);
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--h-font);
  font-weight: 500;
  font-size: 1.15rem;
}
.step h3 { margin: 0 0 0.3rem; }
.step p { margin: 0; color: var(--muted); }

.callout {
  background: var(--peach);
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
  border-left: 4px solid var(--coral);
  color: var(--plum-ink);
}
.callout strong { color: var(--plum); }

.chip {
  display: inline-block;
  padding: 0.3rem 0.75rem;
  background: var(--peach);
  color: var(--plum);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  white-space: nowrap;
  flex-shrink: 0;
  line-height: 1.3;
}

/* ---------- Photos ---------- */
.photo-banner {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--plum);
  aspect-ratio: 16 / 7;
  box-shadow: var(--shadow);
}
.photo-banner img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.photo-banner--tall { aspect-ratio: 4 / 5; }
.photo-banner--square { aspect-ratio: 1 / 1; }
.photo-banner figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 2rem 1.5rem 1.2rem;
  background: linear-gradient(180deg, transparent, rgba(10, 6, 13, 0.75));
  color: var(--cream);
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}
.photo-card {
  display: flex; flex-direction: column;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.photo-card img {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block;
}
.photo-card--portrait img { aspect-ratio: 4 / 5; }
.photo-card .photo-body { padding: 1.25rem 1.25rem 1.4rem; }
.photo-card .photo-body h3 { margin: 0 0 0.4rem; }
.photo-card .photo-body p { margin: 0; color: var(--muted); font-size: 0.95rem; }

.photo-split {
  display: grid; gap: 1.2rem;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}
@media (max-width: 860px) {
  .photo-split { grid-template-columns: 1fr; }
  .photo-banner { aspect-ratio: 4 / 3; }
  .photo-banner--tall { aspect-ratio: 4 / 5; }
}

.events-grid {
  display: grid; gap: 1.2rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  margin-top: 1.5rem;
}
.event-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 0.4rem;
}
.event-card .event-when {
  font-family: var(--h-font);
  font-size: 0.95rem;
  color: var(--coral-deep);
  letter-spacing: 0.02em;
  margin: 0;
}
.event-card h3 { margin: 0 0 0.3rem; }
.event-card p { margin: 0; color: var(--muted); font-size: 0.95rem; }

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