:root {
  /* Playful Shapes */
  --grey: #b9b9ad;
  --teal: #00687a;
  --rust: #82422f;
  --lime: #dad94c;
  --black: #111111;
  --ink: #1a1a1a;
  --ink-soft: #33332e;
  --cream: #faf8f4;
  --rule: rgba(0, 0, 0, 0.18);
  --rule-on-dark: rgba(250, 248, 244, 0.25);

  --serif: "Newsreader", "Cormorant Garamond", Georgia, serif;
  --sans: "DM Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --hand: "Caveat", "Comic Neue", cursive;

  --radius-card: 22px;
  --radius-pill: 999px;
  --section-x: 56px;
  --section-y: 80px;
  --content-max: 1280px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--grey);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.015em;
  margin: 0;
}

h2 {
  font-size: 44px;
  line-height: 1.08;
}

h3 {
  font-size: 24px;
  line-height: 1.2;
  font-weight: 500;
}

p {
  margin: 0 0 14px;
}

a {
  color: inherit;
}

section {
  position: relative; /* decorative shapes are positioned against their section */
}

.section-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  position: relative;
}

.kicker {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 14px;
}

.kicker::before {
  content: "";
  width: 11px;
  height: 11px;
  flex: none;
  background: var(--teal);
  -webkit-mask: url(assets/shapes/quatrefoil-small.svg) center/contain no-repeat;
  mask: url(assets/shapes/quatrefoil-small.svg) center/contain no-repeat;
}

.accent-hand {
  font-family: var(--hand);
  font-weight: 600;
  color: var(--rust);
  display: inline-block;
  transform: rotate(-1.5deg);
}

/* --- Bands --- */

.band-teal {
  background: var(--teal);
  color: var(--cream);
}

.band-black {
  background: var(--black);
  color: var(--cream);
}

.band-teal .kicker,
.band-black .kicker {
  color: var(--lime);
}

.band-teal .kicker::before,
.band-black .kicker::before {
  background: var(--lime);
}

.band-teal .accent-hand,
.band-black .accent-hand {
  color: var(--lime);
}

/* --- Shapes --- */

.shape {
  position: absolute;
  display: block;
  pointer-events: none;
  z-index: 3;
  background: var(--shape-color, var(--black));
  -webkit-mask: var(--shape-mask) center/contain no-repeat;
  mask: var(--shape-mask) center/contain no-repeat;
}

.shape-quatrefoil       { --shape-mask: url(assets/shapes/quatrefoil.svg);       aspect-ratio: 285 / 285; }
.shape-quatrefoil-small { --shape-mask: url(assets/shapes/quatrefoil-small.svg); aspect-ratio: 176 / 176; }
.shape-star             { --shape-mask: url(assets/shapes/star.svg);             aspect-ratio: 284 / 285; }
.shape-pinwheel         { --shape-mask: url(assets/shapes/pinwheel.svg);         aspect-ratio: 285 / 285; }
.shape-arcs             { --shape-mask: url(assets/shapes/arcs.svg);             aspect-ratio: 285 / 273; }
.shape-stack            { --shape-mask: url(assets/shapes/stack.svg);            aspect-ratio: 285 / 256; }
.shape-stack-small      { --shape-mask: url(assets/shapes/stack-small.svg);      aspect-ratio: 158 / 142; }

.shape.behind {
  z-index: 0;
}

/* --- Photo masks --- */

.photo {
  overflow: hidden;
}

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

.photo-quatrefoil {
  aspect-ratio: 1 / 1;
  -webkit-mask: url(assets/shapes/quatrefoil.svg) center/contain no-repeat;
  mask: url(assets/shapes/quatrefoil.svg) center/contain no-repeat;
}

.photo-arch {
  aspect-ratio: 4 / 5;
  border-radius: 999px 999px 26px 26px;
}

/* --- Header --- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--grey);
  border-bottom: 1px solid var(--rule);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px var(--section-x);
}

.brand {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1.2;
}

.brand strong {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 20px;
}

.brand span {
  font-size: 12px;
  color: var(--ink-soft);
}

.site-nav {
  display: flex;
  gap: 22px;
  font-size: 14px;
  font-weight: 500;
}

.site-nav a {
  text-decoration: none;
  color: var(--ink-soft);
}

.site-nav a:hover {
  color: var(--ink);
}

.nav-cta {
  background: var(--teal);
  color: var(--cream);
  text-decoration: none;
  padding: 9px 16px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 1.5px solid var(--black);
  color: var(--ink);
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  font: 600 13px var(--sans);
  cursor: pointer;
}

/* --- Buttons --- */

.button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  border-radius: var(--radius-pill);
  font-family: var(--sans);
  font-weight: 600;
  font-size: 14px;
  padding: 14px 24px;
  border: 1.5px solid transparent;
  transition: background 0.15s ease;
}

.button-primary {
  background: var(--teal);
  color: var(--cream);
}

.button-primary:hover {
  background: #005565;
}

.button-secondary {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}

.button-secondary:hover {
  background: rgba(0, 0, 0, 0.06);
}

.button-lime {
  background: var(--lime);
  color: var(--black);
}

.button-lime:hover {
  background: #cfd03f;
}

/* --- Hero --- */

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  padding: 72px var(--section-x) 64px;
  max-width: var(--content-max);
  margin: 0 auto;
  min-height: 680px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow-chip {
  display: inline-block;
  background: var(--lime);
  color: var(--black);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 24px;
}

.hero h1 {
  font-size: 64px;
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0 0 22px;
}

.hero-accent {
  display: block;
  font-size: 74px;
  line-height: 1;
  margin-top: 8px;
  transform-origin: left;
}

.hero-sub {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 40ch;
  margin: 0 0 26px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}

.hero-badges {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--ink-soft);
}

.hero-badges li {
  padding-left: 18px;
  position: relative;
}

.hero-badges li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 10px;
  height: 10px;
  background: var(--teal);
  -webkit-mask: url(assets/shapes/quatrefoil-small.svg) center/contain no-repeat;
  mask: url(assets/shapes/quatrefoil-small.svg) center/contain no-repeat;
}

.hero-stage {
  position: relative;
  height: 600px;
}

.pill-portrait {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 380px;
  height: 540px;
  transform: translate(-50%, -50%) rotate(-9deg);
  border-radius: var(--radius-pill);
  overflow: hidden;
  outline: 2px solid var(--cream);
  outline-offset: 8px;
  z-index: 2;
}

.pill-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 30%;
  transform: rotate(9deg) scale(1.2);
}

.hero-shape-stack { width: 160px; top: -6px; left: -10px; z-index: 1; }
.hero-shape-quat  { width: 84px; bottom: 40px; left: -6px; z-index: 1; }
.hero-shape-arcs  { width: 190px; bottom: -16px; right: -30px; z-index: 3; }
.hero-shape-pin   { width: 200px; top: -60px; right: -50px; z-index: 1; }

/* --- About --- */

.about {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 48px;
  align-items: center;
  padding: var(--section-y) var(--section-x);
  max-width: var(--content-max);
  margin: 0 auto;
}

.about h2 {
  margin-bottom: 16px;
}

.about .body {
  color: var(--ink-soft);
}

.pull-quote {
  margin: 18px 0 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  line-height: 1.35;
  border-left: 3px solid var(--teal);
  padding-left: 16px;
}

/* --- Why this matters --- */

.why {
  padding: 88px var(--section-x);
}

.why h2 {
  font-size: 48px;
  max-width: 20ch;
  margin-bottom: 18px;
}

.why .body {
  max-width: 58ch;
  font-size: 17px;
  color: rgba(250, 248, 244, 0.85);
}

.why-shape-pin  { width: 240px; right: -70px; top: -60px; }
.why-shape-star { width: 96px; left: 58%; bottom: -48px; }

/* --- Age cards --- */

.workshops {
  padding: var(--section-y) var(--section-x);
  max-width: var(--content-max);
  margin: 0 auto;
}

.section-head {
  margin-bottom: 28px;
}

.age-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.age-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-card);
  padding: 28px;
  min-height: 300px;
  display: flex;
  flex-direction: column;
}

.age-teal { background: var(--teal); color: var(--cream); }
.age-rust { background: var(--rust); color: var(--cream); }
.age-lime { background: var(--lime); color: var(--black); }

.age-label {
  font-family: var(--hand);
  font-size: 28px;
  margin: 0 0 6px;
  opacity: 0.85;
}

.age-card h3 {
  margin-bottom: 12px;
}

.age-card p {
  font-size: 15px;
  margin-bottom: 16px;
}

.age-mark {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 52px;
  background: currentColor;
  opacity: 0.35;
  z-index: 0;
}

.chips {
  list-style: none;
  padding: 0;
  margin: auto 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.chips li {
  border: 1px solid currentColor;
  opacity: 0.9;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-size: 12px;
}

/* --- Topics --- */

.topics {
  padding: var(--section-y) var(--section-x);
  max-width: var(--content-max);
  margin: 0 auto;
}

.topic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px 40px;
  margin-top: 32px;
}

.topic-num {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  font-family: var(--serif);
  font-size: 17px;
  color: var(--cream);
  background: var(--shape-color);
  -webkit-mask: var(--shape-mask) center/contain no-repeat;
  mask: var(--shape-mask) center/contain no-repeat;
}

.topic-num.shape-pinwheel {
  color: var(--black);
}

.topic-cell h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.topic-cell p {
  font-size: 15px;
  color: var(--ink-soft);
  margin: 0;
}

.topics-shape { width: 120px; right: 70px; top: 40px; }

/* --- Approach --- */

.approach {
  padding: var(--section-y) var(--section-x);
  max-width: var(--content-max);
  margin: 0 auto;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 32px;
}

.approach-grid article {
  position: relative;
  padding-top: 56px;
}

.approach-icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
}

.approach-grid h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.approach-grid p {
  font-size: 15px;
  color: var(--ink-soft);
}

.approach-shape { width: 160px; right: -44px; top: -44px; }

/* --- Session + safeguarding --- */

.session-band {
  padding: var(--section-y) var(--section-x);
  max-width: var(--content-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: start;
}

.session-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 22px 0 26px;
}

.session-facts dt {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 4px;
}

.session-facts dd {
  margin: 0;
  font-family: var(--serif);
  font-size: 20px;
}

.session-extras {
  list-style: none;
  padding: 0;
  margin: 0;
}

.session-extras li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
  font-size: 15px;
}

.session-extras li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 11px;
  height: 11px;
  background: var(--rust);
  -webkit-mask: url(assets/shapes/quatrefoil-small.svg) center/contain no-repeat;
  mask: url(assets/shapes/quatrefoil-small.svg) center/contain no-repeat;
}

.safeguarding-card {
  position: relative;
  z-index: 2;
  background: var(--rust);
  color: var(--cream);
  border-radius: var(--radius-card);
  padding: 30px;
}

.safeguarding-card .kicker {
  color: var(--cream);
}

.safeguarding-card .kicker::before {
  background: var(--lime);
}

.safeguarding-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.safeguarding-card p {
  font-size: 15px;
}

.safeguarding-chips {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.safeguarding-chips li {
  border: 1px solid rgba(250, 248, 244, 0.7);
  border-radius: var(--radius-pill);
  padding: 5px 12px;
  font-size: 12px;
}

.session-footnote {
  grid-column: 1 / -1;
  font-size: 13px;
  color: var(--ink-soft);
  margin: 8px 0 0;
}

.session-shape-pin   { width: 90px; left: 40%; bottom: -44px; }

/* --- Moments --- */

.moments {
  padding: var(--section-y) var(--section-x);
  max-width: var(--content-max);
  margin: 0 auto;
}

.moments-caption {
  max-width: 50ch;
  color: var(--ink-soft);
}

.moments-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 28px;
  align-items: end;
}

.moments-row figure {
  margin: 0;
  text-align: center;
}

.moments-row figcaption {
  font-family: var(--hand);
  font-size: 22px;
  color: var(--rust);
  margin-top: 14px;
  transform: rotate(-1.5deg);
}

.moments-shape-star { width: 120px; left: -58px; top: -40px; }
.moments-shape-pin  { width: 130px; right: -34px; top: 90px; }

/* --- Credentials --- */

.credentials {
  padding: var(--section-y) var(--section-x);
}

.credentials-grid {
  max-width: var(--content-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
  align-items: start;
}

.credentials-lead h2 {
  margin-bottom: 20px;
}

.cred-logo {
  display: inline-block;
  background: var(--cream);
  border-radius: 14px;
  padding: 12px 16px;
}

.cred-logo img {
  height: 56px;
}

.credentials-items article {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 14px;
  padding: 18px 0;
  border-top: 1px solid var(--rule-on-dark);
}

.cred-num {
  font-family: var(--serif);
  color: var(--lime);
  font-size: 17px;
}

.credentials-items h3 {
  font-size: 20px;
  margin-bottom: 6px;
}

.credentials-items p {
  font-size: 15px;
  color: rgba(250, 248, 244, 0.85);
  margin: 0;
}

.inline-link {
  color: var(--lime);
}

.schools-row {
  max-width: var(--content-max);
  margin: 32px auto 0;
  padding-top: 22px;
  border-top: 1px solid var(--rule-on-dark);
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
}

.schools-row .kicker {
  margin: 0;
  color: var(--cream);
}

.schools-row .kicker::before {
  background: var(--lime);
}

.schools-row ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  font-family: var(--serif);
  font-size: 19px;
}

/* --- Testimonials --- */

.testimonials {
  padding: var(--section-y) var(--section-x);
  max-width: var(--content-max);
  margin: 0 auto;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 28px;
}

.t-card {
  position: relative;
  z-index: 1;
  background: var(--cream);
  border-radius: var(--radius-card);
  padding: 30px 30px 26px;
}

.t-mark {
  display: block;
  font-family: var(--serif);
  font-size: 72px;
  line-height: 0.6;
  color: var(--rust);
  margin-bottom: 18px;
}

.t-card p {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.4;
}

.t-card footer {
  font-size: 13px;
  margin-top: 14px;
}

.t-card footer strong {
  display: block;
}

.testimonials-shape-arcs { width: 130px; right: -20px; top: -46px; }
.testimonials-shape-pin  { width: 150px; left: -50px; bottom: 10px; }

/* --- FAQ --- */

.faq {
  padding: var(--section-y) var(--section-x);
  max-width: var(--content-max);
  margin: 0 auto;
}

.faq-list {
  max-width: 760px;
  margin-top: 24px;
  border-top: 1px solid var(--rule);
}

.faq-list details {
  border-bottom: 1px solid var(--rule);
  padding: 16px 0;
}

.faq-list summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--serif);
  font-size: 20px;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-icon {
  flex: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--teal);
  position: relative;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: var(--cream);
  left: 7px;
  top: 11px;
  width: 10px;
  height: 2px;
}

.faq-icon::after {
  transform: rotate(90deg);
  transition: transform 0.2s ease;
}

details[open] .faq-icon::after {
  transform: rotate(0);
}

.faq-list details p {
  margin: 10px 0 0;
  font-size: 15px;
  color: var(--ink-soft);
  max-width: 60ch;
}

.faq-shape-star { width: 100px; right: 60px; top: -50px; }
.faq-shape-quat { width: 90px; left: -24px; bottom: -44px; }

/* --- Contact --- */

.cta {
  padding: 96px var(--section-x);
}

.cta-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}

.cta h2 {
  font-size: 46px;
  margin-bottom: 16px;
}

.cta-body {
  color: rgba(250, 248, 244, 0.85);
  max-width: 46ch;
}

.cta-email {
  font-family: var(--serif);
  font-size: 17px;
  margin-top: 14px;
}

.cta-portrait {
  position: relative;
  height: 360px;
}

.cta-arch {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(4deg);
  width: 250px;
}

.cta-shape-star { width: 70px; left: 47%; top: 24px; }
.cta-shape-quat { width: 84px; left: 6px; top: 8px; }
.cta-shape-arcs { width: 130px; right: -30px; bottom: -56px; }

/* --- Pull quote --- */

.pull-section {
  padding: 72px var(--section-x);
  text-align: center;
}

.pull-shape {
  position: static;
  display: inline-block;
  width: 30px;
  margin-bottom: 18px;
}

.pull-section blockquote {
  margin: 0 auto;
  max-width: 54ch;
  font-family: var(--serif);
  font-style: italic;
  font-size: 28px;
  line-height: 1.3;
}

/* --- Footer --- */

.site-footer {
  background: var(--black);
  color: rgba(250, 248, 244, 0.8);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 26px var(--section-x);
  font-size: 13px;
}

/* --- Responsive --- */

@media (max-width: 960px) {
  :root {
    --section-x: 28px;
    --section-y: 56px;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--grey);
    border-bottom: 1px solid var(--rule);
    padding: 8px 0;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 12px var(--section-x);
  }

  .menu-toggle {
    display: inline-block;
  }

  .nav-cta {
    display: none;
  }

  .hero,
  .about,
  .session-band,
  .credentials-grid,
  .testimonial-grid,
  .cta-inner,
  .age-grid,
  .topic-grid,
  .approach-grid,
  .moments-row,
  .session-facts {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
    padding-top: 48px;
  }

  .hero h1 {
    font-size: 44px;
  }

  .hero-accent {
    font-size: 52px;
  }

  h2 {
    font-size: 34px;
  }

  .why h2 {
    font-size: 36px;
  }

  .cta h2 {
    font-size: 34px;
  }

  .hero-stage {
    height: 460px;
  }

  .pill-portrait {
    width: 280px;
    height: 400px;
  }

  .about-photo {
    max-width: 320px;
  }

  .moments-row figure {
    max-width: 360px;
    margin: 0 auto;
  }

  .shape {
    transform: scale(0.6);
    transform-origin: center;
  }

  .hero-stage .shape,
  .age-mark,
  .approach-icon,
  .pull-shape {
    transform: none;
  }
}

@media (max-width: 480px) {
  .shape {
    display: none;
  }

  .hero-stage .shape,
  .age-mark,
  .approach-icon {
    display: block;
  }

  .pull-shape {
    display: inline-block;
  }
}
