/* ============================================================
   Support Mates — clean, airy, photo-led. Poppins. No base64 images.
   ============================================================ */
:root {
  --orange: #ff7821;
  --orange-dk: #e2630f;
  --blue: #2652a3;
  --green: #00a66b;
  --pink: #fea4be;
  --yellow: #fdcf0d;
  --ink: #1e1e1e;
  --body: #52575f;
  --muted: #8b9099;
  --cream: #fdf8f4;
  --tint-orange: #fff1e6;
  --tint-blue: #eef2fb;
  --tint-green: #e6f7f0;
  --paper: #fff;
  --line: #ede8e2;
  --font: "Poppins", system-ui, sans-serif;
  --maxw: 1180px;
  --r: 20px;
  --shadow: 0 16px 40px -24px rgba(30,30,30,.28);
  --shadow-lg: 0 28px 56px -30px rgba(30,30,30,.38);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--body); background: var(--paper); line-height: 1.7; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 40px; }
h1, h2, h3, h4 { font-family: var(--font); color: var(--ink); line-height: 1.15; font-weight: 700; letter-spacing: -.02em; }

/* ── TOP BAR ── */
.topbar {
  background: var(--ink);
  color: rgba(255,255,255,.8);
  text-align: center;
  padding: 10px 20px;
  font-size: .84rem;
  font-weight: 500;
  letter-spacing: .01em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.topbar a { color: #fff; font-weight: 600; border-bottom: 1px solid rgba(255,255,255,.35); transition: border-color .15s; }
.topbar a:hover { border-color: #fff; }
.topbar-sep { opacity: .35; }

/* ── NAV ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.nav .wrap { display: flex; align-items: center; justify-content: space-between; height: 76px; max-width: 1340px; }
.nav .logo img { height: 44px; width: auto; }
.nav nav ul { list-style: none; display: flex; gap: 4px; align-items: center; }
.nav nav > ul > li { position: relative; }
.nav nav > ul > li > a {
  font-weight: 500;
  font-size: .93rem;
  color: var(--ink);
  padding: 8px 14px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
  transition: color .15s, background .15s;
}
/* 8 items + CTA need breathing room on mid-size screens */
@media (max-width: 1380px) {
  .nav nav > ul > li > a { font-size: .88rem; padding: 8px 9px; }
  .nav .nav-cta { padding: 9px 15px !important; }
}
.nav nav > ul > li > a:hover { color: var(--orange); background: var(--tint-orange); }
.nav .chevron { width: 14px; height: 14px; transition: transform .2s; }
.nav .has-drop:hover .chevron { transform: rotate(180deg); }
.has-drop-toggle { cursor: pointer; }
.has-drop.open > a .chevron { transform: rotate(180deg); }
.nav .nav-cta {
  background: var(--orange) !important;
  color: #fff !important;
  padding: 9px 20px !important;
  border-radius: 999px !important;
  font-weight: 600 !important;
  margin-left: 8px;
}
.nav .nav-cta:hover { background: var(--orange-dk) !important; }
/* current-page indicator (skip the CTA pill — it's already styled) */
.nav nav a[aria-current="page"]:not(.nav-cta) { color: var(--orange); }
.nav nav > ul > li > a[aria-current="page"]:not(.nav-cta) {
  text-underline-offset: 6px;
  text-decoration: underline 2.5px var(--orange);
}
/* Free 12-Week Plan — the lead-gen item, bolder so it pops in the menu */
.nav nav > ul > li > a[href$="free-12-week-plan.html"] { font-weight: 700; }

/* dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 230px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  box-shadow: var(--shadow-lg);
  padding: 10px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity .18s, transform .18s;
  list-style: none;
}
/* invisible bridge across the gap so the menu doesn't close as the cursor moves down */
.dropdown::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -12px;
  height: 14px;
}
.has-drop:hover .dropdown,
.has-drop:focus-within .dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
/* override the horizontal flex inherited from `.nav nav ul` so the
   services menu stacks vertically as a normal dropdown (one item per row) */
.nav nav ul.dropdown {
  flex-direction: column;
  align-items: stretch;
  gap: 2px;
}
.dropdown li a {
  display: block;
  padding: 10px 16px;
  border-radius: 10px;
  font-size: .9rem;
  font-weight: 500;
  white-space: nowrap;
  color: var(--ink);
  transition: background .15s, color .15s;
}
.dropdown li a:hover { background: var(--tint-orange); color: var(--orange); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .22s, opacity .22s;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 600;
  font-size: .97rem;
  padding: 14px 28px;
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background .18s, transform .18s, box-shadow .18s;
  box-shadow: 0 10px 24px -12px rgba(255,120,33,.7);
}
.btn:hover { background: var(--orange-dk); transform: translateY(-2px); box-shadow: 0 14px 28px -12px rgba(255,120,33,.75); }
.btn--white { background: #fff; color: var(--orange); box-shadow: 0 10px 24px -12px rgba(0,0,0,.18); }
.btn--white:hover { background: #fff; color: var(--orange-dk); }
.btn--outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,.65); box-shadow: none; }
.btn--outline-white:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); box-shadow: none; }
.btn--ghost:hover { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--dark { background: var(--ink); color: #fff; box-shadow: 0 12px 26px -14px rgba(0,0,0,.5); }
.btn--dark:hover { background: #000; color: #fff; }

/* ── BUTTON EMOJI INTERACTIONS ── */
.btn-fx-wrap { position: relative; display: inline-flex; }
.btn-pop {
  position: absolute;
  height: auto;
  pointer-events: none;
  opacity: 0;
  z-index: 5;
  filter: drop-shadow(0 6px 10px rgba(30,30,30,.18));
  transition: opacity .25s ease, transform .4s cubic-bezier(.34,1.56,.64,1);
}
.btn-pop--heart { width: 48px; top: -32px; right: -14px; transform: scale(.3) rotate(-20deg); transform-origin: bottom left; }
.btn-fx-wrap:hover .btn-pop--heart, .btn-fx-wrap:focus-within .btn-pop--heart { opacity: 1; transform: scale(1) rotate(-8deg); }
.btn-pop--peace { width: 46px; top: -30px; right: -12px; transform: scale(.3) rotate(16deg); transform-origin: bottom left; }
.btn-fx-wrap:hover .btn-pop--peace, .btn-fx-wrap:focus-within .btn-pop--peace { opacity: 1; transform: scale(1) rotate(6deg); }
.btn-pop--point { width: 54px; left: -48px; top: 50%; transform: translateY(-50%) translateX(16px) scale(.4) rotate(8deg); transform-origin: right center; }
.btn-fx-wrap:hover .btn-pop--point, .btn-fx-wrap:focus-within .btn-pop--point { opacity: 1; transform: translateY(-50%) translateX(0) scale(1) rotate(0deg); }
/* click star-burst (created by JS, lives on <body>) */
.burst-star {
  position: fixed;
  width: 26px;
  height: auto;
  pointer-events: none;
  z-index: 9999;
  opacity: 1;
  transition: transform .6s cubic-bezier(.2,.7,.2,1), opacity .65s ease;
}
@media (prefers-reduced-motion: reduce) { .btn-pop { transition: opacity .2s ease; } }

/* ── EYEBROW ── */
.eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}
.eyebrow--blue { color: var(--blue); }
.eyebrow--orange { color: var(--orange); }

/* ── HERO (contained, refined) ── */
.hero { background: linear-gradient(180deg, #fff 0%, var(--cream) 100%); overflow: hidden; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.18fr;
  gap: 56px;
  align-items: center;
  padding-top: 64px;
  padding-bottom: 80px;
}
.hero-copy { max-width: 540px; }
.hero-copy .eyebrow { color: var(--orange); background: var(--tint-orange); padding: 6px 14px; border-radius: 999px; }
.hero-copy h1 {
  font-size: clamp(2.6rem, 4.6vw, 4.2rem);
  color: var(--ink);
  font-weight: 400;
  line-height: 1.06;
  margin-bottom: 20px;
}
.hero-copy h1 strong { font-weight: 800; }
.hero-lead {
  color: var(--body);
  font-size: 1.13rem;
  max-width: 470px;
  margin-bottom: 32px;
  line-height: 1.65;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
/* contained rounded photo + accent + floating badge */
.hero-figure { position: relative; }
.hero-photo {
  position: relative;
  aspect-ratio: 5/4;
  z-index: 1;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: rotate(2.5deg);
  transition: transform .5s cubic-bezier(.2,.7,.2,1);
}
.hero-figure:hover .hero-photo { transform: rotate(0deg); }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 28%; }
.hero-accent {
  position: absolute;
  right: -28px;
  bottom: -30px;
  width: 64%;
  height: 72%;
  background: var(--tint-orange);
  border-radius: 32px;
  z-index: 0;
  transform: rotate(-5deg);
}

/* ── USP CARDS ── */
.usps { background: var(--cream); padding: 56px 0 64px; }
.usp-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.usp-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 30px 26px;
  box-shadow: 0 2px 12px -8px rgba(30,30,30,.12);
  border-top: 3px solid var(--orange);
  transition: transform .28s cubic-bezier(.2,.7,.2,1), box-shadow .28s ease;
}
.usp-card:nth-child(1) { border-top-color: var(--orange); }
.usp-card:nth-child(2) { border-top-color: var(--blue); }
.usp-card:nth-child(3) { border-top-color: var(--green); }
.usp-card:nth-child(4) { border-top-color: #c9960a; }
.usp-card:hover { transform: translateY(-8px) scale(1.035); box-shadow: var(--shadow-lg); }
.usp-ico {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: transform .3s cubic-bezier(.34,1.56,.64,1);
}
.usp-card:hover .usp-ico { transform: scale(1.15) rotate(-8deg); }
.usp-ico svg { width: 27px; height: 27px; }
.usp-card:nth-child(1) .usp-ico { background: var(--tint-orange); color: var(--orange); }
.usp-card:nth-child(2) .usp-ico { background: var(--tint-blue); color: var(--blue); }
.usp-card:nth-child(3) .usp-ico { background: var(--tint-green); color: var(--green); }
.usp-card:nth-child(4) .usp-ico { background: #fef9e6; color: #c9960a; }
.usp-card h3 { font-size: 1.12rem; color: var(--ink); margin-bottom: 8px; }
.usp-card p { font-size: .92rem; line-height: 1.6; color: var(--body); }
/* when a usp-card is a clickable button (e.g. What's On free-session cards) */
button.usp-card { font: inherit; width: 100%; text-align: left; color: inherit; cursor: pointer; }
.usp-card:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; }
.usp-try {
  display: inline-block;
  margin-top: 14px;
  font-size: .82rem;
  font-weight: 700;
  color: var(--orange);
  opacity: 0;
  transform: translateY(-2px);
  transition: opacity .2s ease, transform .2s ease;
}
.usp-card:hover .usp-try, .usp-card:focus-visible .usp-try { opacity: 1; transform: none; }
/* activities that aren't part of the free trial — express interest instead */
.usp-try--interest { color: var(--blue); }
.usp-grid-note {
  margin-top: 26px;
  max-width: 760px;
  font-size: .92rem;
  line-height: 1.6;
  color: var(--muted);
}

/* free-session offer line (What's On hero) */
.offer-line {
  margin: 4px 0 30px;
  max-width: 470px;
  padding-left: 14px;
  border-left: 3px solid var(--orange);
  font-size: .98rem;
  line-height: 1.6;
  color: var(--body);
}
.offer-line strong { color: var(--ink); }

/* CTA band secondary link */
.cta-band-actions { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.cta-band-alt { color: rgba(255,255,255,.92); text-decoration: underline; text-underline-offset: 3px; font-size: .92rem; font-weight: 600; }
.cta-band-alt:hover { color: #fff; }

/* ── SECTION DEFAULTS ── */
.section { padding: 96px 0; }
.section.tint { background: var(--cream); }
.section-hd { text-align: center; margin-bottom: 56px; }
.section-hd h2 { font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 400; }
.section-hd h2 strong { font-weight: 800; }
.section-foot { text-align: center; margin-top: 52px; }

/* ── SERVICE GRID ── */
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .22s, box-shadow .22s;
  box-shadow: 0 2px 12px -6px rgba(30,30,30,.1);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-img { aspect-ratio: 4/3; overflow: hidden; }
.service-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.service-card:hover .service-img img { transform: scale(1.06); }
.service-body { padding: 24px; flex: 1; display: flex; flex-direction: column; border-top: 3px solid var(--accent, var(--orange)); }
.service-body h3 { font-size: 1.1rem; color: var(--ink); margin-bottom: 8px; }
.service-body p { font-size: .9rem; color: var(--body); line-height: 1.6; flex: 1; }
.service-link { display: inline-block; margin-top: 16px; font-size: .88rem; font-weight: 700; color: var(--accent-ink, var(--accent, var(--orange))); }
/* service-card as a clickable button (e.g. Group Activities free-session cards) */
button.service-card { font: inherit; text-align: left; width: 100%; color: inherit; cursor: pointer; padding: 0; }
button.service-card:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; }

/* ── Career streams (Careers — Room to grow): clean parallel-path rows ── */
#pathways .section-note { max-width: 660px; margin-left: auto; margin-right: auto; }
.streams { list-style: none; display: flex; flex-direction: column; gap: 14px; max-width: 760px; margin: 12px auto 0; padding: 0; }
.stream-card {
  background: #fff; border: 1px solid var(--line); border-left: 5px solid var(--accent, var(--orange));
  border-radius: 14px; padding: 22px 28px; box-shadow: 0 4px 16px -10px rgba(30,30,30,.18);
  transition: transform .2s ease, box-shadow .2s ease;
}
.stream-card:hover { transform: translateX(4px); box-shadow: 0 8px 22px -12px rgba(30,30,30,.28); }
.stream-card h3 { font-size: 1.12rem; color: var(--ink); margin-bottom: 5px; }
.stream-card p { font-size: .92rem; line-height: 1.6; color: var(--body); margin: 0; }
@media (max-width: 680px) { .stream-card { padding: 20px 22px; } }

/* ── Typeform / form pages ── */
.section-hd h1 { font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 400; line-height: 1.12; color: var(--ink); }
.section-hd h1 strong { font-weight: 800; }
.section-hd .lead { max-width: 580px; margin: 16px auto 0; color: var(--body); font-size: 1.05rem; line-height: 1.65; font-style: normal; }
.form-wrap { max-width: 720px; margin: 0 auto; }
.form-embed { width: 100%; min-height: 480px; }
.form-placeholder {
  border: 2px dashed var(--line); border-radius: var(--r); background: #fff;
  padding: 60px 32px; text-align: center; color: var(--body); line-height: 1.6;
}
.form-placeholder strong { display: block; color: var(--ink); font-size: 1.15rem; margin-bottom: 10px; }
.form-placeholder a, .form-alt a { color: var(--orange); font-weight: 600; }
.form-alt { text-align: center; margin-top: 26px; color: var(--muted); font-size: .95rem; }

/* ── 12-week-plan invitation popup ── */
#planPopup { position: fixed; inset: 0; z-index: 300; display: flex; align-items: center; justify-content: center; padding: 20px; opacity: 0; transition: opacity .3s ease; }
#planPopup.show { opacity: 1; }
.plan-popup-overlay { position: absolute; inset: 0; background: rgba(25,18,12,.45); }
.plan-popup-card {
  position: relative; background: #fff; border-radius: 22px; border-top: 4px solid var(--orange);
  max-width: 420px; width: 100%; padding: 34px 30px 24px; text-align: center;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,.35);
  transform: translateY(16px) scale(.97); transition: transform .32s cubic-bezier(.2,.7,.2,1);
}
#planPopup.show .plan-popup-card { transform: none; }
.plan-popup-emoji { width: 54px; height: auto; margin: 0 auto 12px; filter: drop-shadow(0 6px 10px rgba(30,30,30,.15)); }
.plan-popup-card h3 { font-size: 1.35rem; color: var(--ink); margin-bottom: 10px; }
.plan-popup-card p { font-size: .95rem; line-height: 1.6; color: var(--body); margin-bottom: 18px; }
.plan-popup-card .btn { width: 100%; justify-content: center; }
.plan-popup-later { display: block; margin: 12px auto 0; background: none; border: 0; color: var(--muted); font: inherit; font-size: .85rem; cursor: pointer; text-decoration: underline; text-underline-offset: 3px; }
.plan-popup-x { position: absolute; top: 10px; right: 14px; background: none; border: 0; font-size: 26px; line-height: 1; color: var(--muted); cursor: pointer; padding: 6px; }
.plan-popup-x:hover, .plan-popup-later:hover { color: var(--ink); }
@media (prefers-reduced-motion: reduce) { #planPopup, .plan-popup-card { transition: none; } }
@media (max-width: 480px) { #planPopup { align-items: flex-end; padding: 12px; } .plan-popup-card { padding: 28px 22px 18px; } }

/* ── Form card: frames the embedded Typeform so it clearly reads as "the form" ── */
.form-card {
  background: var(--tint-orange);
  border: 1px solid #ffe0c7;
  border-radius: var(--r);
  padding: 26px;
  box-shadow: 0 12px 32px -20px rgba(30,30,30,.22);
}
.form-card-hd { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; text-align: left; }
.form-card-arrow {
  flex: none; width: 44px; height: 44px; border-radius: 50%;
  background: var(--orange); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 18px -8px rgba(255,120,33,.7);
  animation: formArrowBob 1.8s ease-in-out infinite;
}
.form-card-arrow svg { width: 20px; height: 20px; }
@keyframes formArrowBob { 0%, 100% { transform: translateY(-2px); } 50% { transform: translateY(4px); } }
@media (prefers-reduced-motion: reduce) { .form-card-arrow { animation: none; } }
.form-card-hd h2 { font-size: 1.12rem; color: var(--ink); line-height: 1.3; }
.form-card-hd p { font-size: .86rem; color: var(--body); margin: 2px 0 0; }
.form-embed-frame { background: #fff; border-radius: 14px; overflow: hidden; border: 1px solid var(--line); }
.form-card .form-alt { margin-top: 16px; margin-bottom: 0; }
.form-card .form-alt + .form-alt { margin-top: 5px; }
.form-alt--minor { font-size: .84rem; }
@media (max-width: 600px) { .form-card { padding: 16px; } }

/* ── Contact page ── */
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 48px; max-width: 980px; margin: 0 auto; align-items: start; }
.contact-h2 { font-size: 1.4rem; color: var(--ink); margin-bottom: 4px; }
.contact-methods { list-style: none; display: flex; flex-direction: column; gap: 22px; margin: 24px 0 30px; padding: 0; }
.contact-method { display: flex; gap: 15px; align-items: flex-start; }
.contact-ico { flex: none; width: 46px; height: 46px; border-radius: 13px; display: flex; align-items: center; justify-content: center; background: var(--tint-orange); color: var(--orange); }
.contact-ico svg { width: 22px; height: 22px; }
.contact-method:nth-child(2) .contact-ico { background: var(--tint-blue); color: var(--blue); }
.contact-method:nth-child(3) .contact-ico { background: var(--tint-green); color: var(--green); }
.contact-method:nth-child(4) .contact-ico { background: #ffe6ee; color: #cf5f8c; }
.contact-method h3 { font-size: .76rem; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); font-weight: 700; margin-bottom: 3px; }
.contact-method a, .contact-method p { font-size: 1.05rem; color: var(--ink); font-weight: 600; line-height: 1.4; margin: 0; }
.contact-method a:hover { color: var(--orange); }
.contact-social-label { display: block; font-size: .76rem; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); font-weight: 700; margin-bottom: 12px; }
.contact-social-row { display: flex; gap: 12px; }
.contact-social-row a { width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; color: var(--ink); transition: color .15s, border-color .15s, transform .15s; }
.contact-social-row a:hover { color: var(--orange); border-color: var(--orange); transform: translateY(-2px); }
.contact-social-row svg { width: 19px; height: 19px; }
@media (max-width: 760px) { .contact-grid { grid-template-columns: 1fr; gap: 36px; } }

/* ── FEATURE SECTIONS (white/cream + contained tilted photo + playful accents) ── */
.feature { padding: 100px 0; overflow: hidden; }
.feature--squad { background: #fff; }
.feature--mates { background: var(--cream); }
.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.feature--flip .feature-figure { order: -1; }
.feature-copy { max-width: 480px; }
.feature--flip .feature-copy { margin-left: auto; }
.feature-copy h2 { font-size: clamp(2rem, 3.8vw, 2.7rem); font-weight: 400; line-height: 1.12; margin-bottom: 18px; }
.feature-copy h2 strong { font-weight: 800; }
.feature-copy p { color: var(--body); font-size: 1.04rem; line-height: 1.7; margin-bottom: 16px; }
.feature-copy .btn { margin-top: 14px; }
.feature-list { list-style: none; margin: 22px 0 28px; }
.feature-list li {
  padding: 10px 0 10px 32px;
  position: relative;
  border-bottom: 1px solid var(--line);
  font-size: .96rem;
  color: var(--body);
}
.feature-list li:last-child { border-bottom: 0; }
.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 13px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--tint-green) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300a66b' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12l4 4 10-11'/%3E%3C/svg%3E") center/11px no-repeat;
}
/* figure: contained tilted photo with a soft colour blob + scattered accents */
.feature-figure { position: relative; padding: 26px; }
.feature-img {
  position: relative;
  z-index: 2;
  aspect-ratio: 5/4;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  rotate: -2.5deg;
  transition: rotate .5s cubic-bezier(.2,.7,.2,1);
  animation: floatA 7.5s ease-in-out infinite;
}
.feature--flip .feature-img { rotate: 2.5deg; }
.feature-figure:hover .feature-img { rotate: 0deg; }
.feature-img img { width: 100%; height: 100%; object-fit: cover; }
.feature--mates .feature-img img { object-position: center 22%; }
.feature-blob {
  position: absolute;
  z-index: 1;
  width: 86%;
  height: 86%;
  right: -22px;
  bottom: -22px;
  border-radius: 46% 54% 57% 43% / 54% 46% 54% 46%;
  animation: floatB 10s ease-in-out infinite;
}
.feature--flip .feature-blob { right: auto; left: -22px; }
.feature-blob--blue { background: #d7e3fa; }
.feature-blob--orange { background: #ffd9bd; }
/* playful brand emoji characters + dots floating around the photo */
.fx { position: absolute; z-index: 3; pointer-events: none; height: auto; filter: drop-shadow(0 6px 10px rgba(30,30,30,.12)); }
.fx-hand { width: 58px; }
.st-sm { width: 18px; } .st-md { width: 27px; } .st-lg { width: 37px; }
.fc { position: absolute; z-index: 3; border-radius: 50%; pointer-events: none; }
.fc-sm { width: 10px; height: 10px; } .fc-md { width: 15px; height: 15px; }
.c-orange { background: var(--orange); } .c-green { background: var(--green); } .c-blue { background: var(--blue); }
.c-pink { background: var(--pink); } .c-yellow { background: var(--yellow); }
/* rotations (compose with the translate-based float) */
.rt-a { rotate: 12deg; } .rt-b { rotate: -10deg; } .rt-c { rotate: 20deg; } .rt-d { rotate: -18deg; } .rt-e { rotate: 7deg; }
/* float timing variants (each out of phase) */
.flA { animation: floatA 7s ease-in-out infinite; }
.flB { animation: floatB 8.5s ease-in-out -1.2s infinite; }
.flC { animation: floatC 6s ease-in-out -.6s infinite; }
.flD { animation: floatD 7.6s ease-in-out -2.1s infinite; }
.flE { animation: floatE 9s ease-in-out -3s infinite; }
/* hero-specific slots — hero-figure has no inner padding, so shapes hug the photo corners directly.
   The hero photo is much larger than feature images, so its doodles scale up to match. */
.hero-figure .fx-hand { width: 74px; }
.hero-figure .st-lg { width: 46px; }
.hero-figure .st-md { width: 34px; }
.hero-figure .st-sm { width: 24px; }
.hero-figure .fc-md { width: 19px; height: 19px; }
.hero-figure .fc-sm { width: 13px; height: 13px; }
/* top-left cluster */
.hero-figure .hfx-1 { top: -32px; left: 22px; }      /* shaka — peeking over the top-left corner */
.hero-figure .hfx-2 { top: 56px; left: -36px; }      /* pink star beside it */
.hero-figure .hfx-5 { top: -48px; left: 128px; }     /* yellow star along the top edge */
.hero-figure .hfx-7 { top: -14px; left: -20px; }     /* small blue dot on the corner diagonal */
/* bottom-right cluster */
.hero-figure .hfx-6 { bottom: -28px; right: 20px; }  /* rock hand — anchoring the corner */
.hero-figure .hfx-3 { bottom: 108px; right: -30px; } /* orange star up the right edge */
.hero-figure .hfx-4 { bottom: -16px; right: 122px; } /* green dot along the bottom edge */
@media (max-width: 600px) {
  .hero-figure .fx-hand { width: 48px; }
  .hero-figure .st-lg { width: 32px; }
  .hero-figure .st-md { width: 23px; }
  .hero-figure .st-sm { width: 17px; }
  .hero-figure .fc-md { width: 15px; height: 15px; }
  .hero-figure .hfx-1 { top: -20px; left: 10px; }
  .hero-figure .hfx-2 { top: 52px; left: 2px; }
  .hero-figure .hfx-6 { bottom: -16px; right: 10px; }
  .hero-figure .hfx-3 { bottom: 50px; right: 2px; }
  .hero-figure .hfx-4 { bottom: -8px; right: 78px; }
}
/* position slots — two diagonal clusters (top-left + bottom-right of the photo), comfortably spaced */
/* top-left cluster */
.sl-1 { top: -38px; left: -38px; }
.sl-2 { top: 6px; left: -62px; }
.sl-3 { top: -58px; left: 48px; }
.sl-4 { top: 56px; left: -54px; }
/* bottom-right cluster */
.sl-5 { bottom: -38px; right: 42px; }
.sl-6 { bottom: 20px; right: -58px; }
.sl-7 { bottom: 70px; right: -40px; }
.sl-8 { bottom: -36px; right: 84px; }
.sl-9 { bottom: -32px; right: -32px; }
/* gentle, independent floating (each element out of phase) */
@keyframes floatA { 0%, 100% { translate: 0 0; } 50% { translate: 0 -11px; } }
@keyframes floatB { 0%, 100% { translate: 0 0; } 50% { translate: 0 9px; } }
@keyframes floatC { 0%, 100% { translate: 0 0; } 50% { translate: 7px -8px; } }
@keyframes floatD { 0%, 100% { translate: 0 0; } 50% { translate: -9px 7px; } }
@keyframes floatE { 0%, 100% { translate: 0 0; } 50% { translate: 5px 6px; } }

/* ── LIFE AT SUPPORT MATES — looping swipe carousel ── */
.photo-carousel-section { padding: 80px 0 24px; background: #fff; }
.photo-carousel-hd { text-align: center; margin-bottom: 36px; }
.photo-carousel-hd h2 { font-size: clamp(1.9rem, 3.8vw, 2.7rem); font-weight: 400; }
.photo-carousel-hd h2 strong { font-weight: 800; }
.photo-carousel-hd p { color: var(--muted); margin-top: 8px; font-size: 1rem; }
.photo-carousel { position: relative; }
.photo-carousel-track {
  display: flex;
  gap: 24px;
  padding: 34px 44px 56px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.photo-carousel-track::-webkit-scrollbar { display: none; }
.photo-slide {
  flex: 0 0 calc(25% - 18px);
  scroll-snap-align: center;
  aspect-ratio: 4/5;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .4s ease, box-shadow .4s ease;
}
.photo-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.photo-slide.t1 { transform: rotate(-3deg) translateY(0); }
.photo-slide.t2 { transform: rotate(2deg) translateY(18px); }
.photo-slide.t3 { transform: rotate(-2deg) translateY(8px); }
.photo-slide.t4 { transform: rotate(3deg) translateY(22px); }
.photo-slide:hover { transform: rotate(0deg) translateY(0) scale(1.04); box-shadow: var(--shadow-lg); z-index: 2; }
.photo-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-60%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  transition: background .18s, color .18s, transform .18s;
  color: var(--ink);
}
.photo-arrow svg { width: 20px; height: 20px; }
.photo-arrow:hover { background: var(--orange); color: #fff; border-color: var(--orange); transform: translateY(-60%) scale(1.06); }
.photo-arrow--prev { left: 8px; }
.photo-arrow--next { right: 8px; }

/* ── FAMILY SENTIMENTS (compact, paraphrased) ── */
.section-note { color: var(--muted); font-size: .92rem; margin-top: 4px; font-style: italic; }
.senti-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1080px;
  margin: 0 auto;
}
.senti {
  background: #fff;
  border-radius: 16px;
  padding: 28px 26px;
  border-top: 3px solid var(--sc, var(--orange));
  box-shadow: 0 2px 14px -8px rgba(30,30,30,.12);
  display: flex;
  flex-direction: column;
  transition: rotate .3s ease, box-shadow .3s ease;
}
/* gentle polaroid tilt, straightening on hover — echoes the photo language */
.senti:nth-child(odd) { rotate: -1deg; }
.senti:nth-child(even) { rotate: 1.1deg; }
.senti:hover { rotate: 0deg; box-shadow: 0 8px 22px -10px rgba(30,30,30,.2); }
.senti--orange { --sc: var(--orange); }
.senti--blue { --sc: var(--blue); }
.senti--green { --sc: var(--green); }
.senti--pink { --sc: var(--pink); --sc-ink: #cf5f8c; }
.senti--yellow { --sc: #c9960a; }
/* brand-emoji "quote mark" */
.senti-emoji { width: 26px; height: auto; margin-bottom: 12px; filter: drop-shadow(0 3px 5px rgba(30,30,30,.12)); }
.senti p {
  font-size: .98rem;
  line-height: 1.6;
  color: var(--ink);
  font-weight: 500;
  flex: 1;
}
.senti figcaption {
  margin-top: 18px;
  font-size: .78rem;
  font-weight: 700;
  color: var(--sc-ink, var(--sc, var(--orange)));
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* ── FAQ ── */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: 16px;
  margin-bottom: 12px;
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
}
.faq-item.open { border-color: var(--orange); box-shadow: 0 4px 20px -10px rgba(255,120,33,.25); }
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  cursor: pointer;
  font-family: var(--font);
  font-weight: 600;
  color: var(--ink);
  font-size: 1rem;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}
.faq-icon { flex: none; width: 22px; height: 22px; position: relative; }
.faq-icon::before, .faq-icon::after {
  content: "";
  position: absolute;
  background: var(--orange);
  border-radius: 2px;
  transition: transform .25s ease;
}
.faq-icon::before { top: 10px; left: 3px; right: 3px; height: 2px; }
.faq-icon::after { left: 10px; top: 3px; bottom: 3px; width: 2px; }
.faq-item.open .faq-icon::after { transform: scaleY(0); }
.faq-a { display: grid; grid-template-rows: 1fr; transition: grid-template-rows .3s ease; }
.js .faq-item:not(.open) .faq-a { grid-template-rows: 0fr; }
.faq-a-inner { overflow: hidden; }
.faq-a p { padding: 0 24px 22px; color: var(--body); font-size: .95rem; line-height: 1.75; }

/* ── CTA BAND ── */
.cta-band {
  position: relative;
  overflow: hidden;
  background: linear-gradient(115deg, var(--orange-dk, #e2660f) 0%, var(--orange) 32%, #ff9a52 52%, var(--orange) 72%, var(--orange-dk, #e2660f) 100%);
  background-size: 320% 320%;
  animation: ctaShift 12s ease-in-out infinite;
  padding: 72px 0;
}
@keyframes ctaShift { 0%, 100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
@media (prefers-reduced-motion: reduce) { .cta-band { animation: none; } }
.cta-band-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-band h2 { font-size: clamp(1.7rem, 3.2vw, 2.3rem); color: #fff; font-weight: 700; }
.cta-band p { color: rgba(255,255,255,.8); margin-top: 8px; font-size: 1.05rem; }

/* ── FOOTER ── */
.footer { background: var(--ink); color: rgba(255,255,255,.65); padding: 72px 0 0; }
.footer-top { display: grid; grid-template-columns: 1fr 2fr; gap: 64px; padding-bottom: 56px; }
.footer-brand img { filter: brightness(0) invert(1); margin-bottom: 18px; }
.footer-brand p { font-size: .9rem; line-height: 1.7; }
.footer-social { display: flex; gap: 12px; margin-top: 24px; }
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  transition: background .18s, color .18s;
}
.footer-social a:hover { background: var(--orange); color: #fff; }
.footer-social svg { width: 16px; height: 16px; }
.footer-nav { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.footer-nav h4 { color: #fff; font-size: .85rem; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 18px; }
.footer-nav a { display: block; font-size: .9rem; padding: 4px 0; color: rgba(255,255,255,.55); transition: color .15s; }
.footer-nav a:hover { color: #fff; }
.footer-base {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 22px 40px;
  font-size: .82rem;
  color: rgba(255,255,255,.35);
  text-align: center;
}
.footer-legal { display: flex; justify-content: center; flex-wrap: wrap; gap: 6px 22px; margin-top: 8px; }
.footer-legal a { color: rgba(255,255,255,.5); transition: color .15s; }
.footer-legal a:hover { color: #fff; }

/* ── Legal / policy pages ── */
.legal-prose { max-width: 780px; margin: 0 auto; font-size: .95rem; }
.legal-prose h2 { font-size: 1.35rem; margin: 40px 0 14px; }
.legal-prose h3 { font-size: 1.08rem; margin: 30px 0 10px; }
.legal-prose p { margin-bottom: 14px; line-height: 1.75; }
.legal-prose b { color: var(--ink); }
.legal-prose ul, .legal-prose ol { margin: 0 0 16px 24px; }
.legal-prose li { margin-bottom: 8px; line-height: 1.7; }
.legal-prose a { color: var(--orange); font-weight: 600; }
.legal-updated { color: var(--muted); font-size: .85rem; font-style: italic; margin-bottom: 28px; }

/* ── ABOUT: founder's note (polaroid) ── */
.founder-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 64px; align-items: center; }
.founder-figure { position: relative; display: flex; justify-content: center; padding: 28px; }
.founder-copy { max-width: 520px; }
.founder-copy h2 { font-size: clamp(2rem, 3.8vw, 2.7rem); font-weight: 400; margin-bottom: 18px; }
.founder-copy h2 strong { font-weight: 800; }
.founder-copy p { color: var(--body); font-size: 1.04rem; line-height: 1.75; margin-bottom: 16px; }
.polaroid {
  position: relative;
  z-index: 2;
  background: #fff;
  padding: 14px;
  border-radius: 3px;
  box-shadow: 0 24px 46px -20px rgba(30,30,30,.45);
  transform: rotate(-3deg);
  transition: transform .5s cubic-bezier(.2,.7,.2,1);
  max-width: 370px;
}
.founder-figure:hover .polaroid { transform: rotate(0deg); }
.polaroid img { width: 100%; display: block; border-radius: 1px; filter: saturate(.9) contrast(.97); }
.polaroid-caption { font-family: "Caveat", cursive; font-size: 1.55rem; color: var(--ink); text-align: center; padding: 14px 6px 6px; line-height: 1; }
/* two clusters — each heart paired with a star */
.founder-heart-a { width: 30px; top: -14px; left: 3%; }
.founder-star-a { top: 24px; left: 14%; right: auto; }
.founder-heart-b { width: 22px; bottom: 8%; right: 2%; }
.founder-star-b { bottom: 22%; right: 12%; left: auto; }
.founder .feature-blob { width: 72%; height: 74%; left: 4%; bottom: -8px; right: auto; background: var(--tint-blue); }

/* ── ABOUT: differentiators (5 cards — centred wrap so the last row balances) ── */
.about-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 22px; max-width: 1080px; margin: 0 auto; }
.about-grid .usp-card { flex: 0 1 330px; }
/* exact brand colours across all five (incl. pink + charcoal) */
.about-grid .usp-card:nth-child(1) { border-top-color: var(--orange); }
.about-grid .usp-card:nth-child(2) { border-top-color: var(--blue); }
.about-grid .usp-card:nth-child(3) { border-top-color: var(--green); }
.about-grid .usp-card:nth-child(4) { border-top-color: var(--pink); }
.about-grid .usp-card:nth-child(5) { border-top-color: #393939; }
.about-grid .usp-card:nth-child(4) .usp-ico { background: #ffe6ee; color: #cf5f8c; }
.about-grid .usp-card:nth-child(5) .usp-ico { background: #ececef; color: #393939; }

/* ── ABOUT: values (brand-emoji badges, distinct from the icon cards) ── */
.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 960px; margin: 0 auto; }
.value-row {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px 26px;
  box-shadow: 0 2px 12px -9px rgba(30,30,30,.18);
  transition: transform .22s ease, box-shadow .22s ease;
}
.value-row:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.value-emoji { width: 52px; height: auto; flex: none; filter: drop-shadow(0 6px 10px rgba(30,30,30,.12)); }
.value-text h3 { font-size: 1.15rem; color: var(--ink); margin-bottom: 5px; }
.value-text p { color: var(--body); font-size: .96rem; line-height: 1.6; }
.about-closing { max-width: 700px; margin: 56px auto 0; text-align: center; font-size: 1.12rem; line-height: 1.75; color: var(--body); }

/* ── ABOUT: vision band (clearly moving brand gradient + drifting glow) ── */
.vision {
  position: relative;
  overflow: hidden;
  padding: 92px 0;
  background: linear-gradient(120deg, #112a64 0%, #2652a3 30%, #3f7ae0 50%, #2453ab 70%, #112a64 100%);
  background-size: 360% 360%;
  animation: visionShift 11s ease-in-out infinite;
}
@keyframes visionShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.vision::before {
  content: "";
  position: absolute;
  inset: -25%;
  background: radial-gradient(circle at 35% 40%, rgba(125,178,255,.55), rgba(125,178,255,0) 50%);
  animation: visionGlow 13s ease-in-out infinite;
  pointer-events: none;
}
@keyframes visionGlow {
  0%, 100% { transform: translate(-10%, -8%) scale(1); }
  50% { transform: translate(12%, 10%) scale(1.18); }
}
.vision .wrap { position: relative; z-index: 1; max-width: 920px; text-align: center; }
.vision-eyebrow { color: rgba(255,255,255,.85); font-size: .8rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 18px; }
.vision-quote { color: #fff; font-size: clamp(1.45rem, 3.2vw, 2.3rem); line-height: 1.42; font-weight: 400; font-style: italic; }
.vision-quote strong { font-weight: 800; }
@media (prefers-reduced-motion: reduce) { .vision { animation: none; } .vision::before { animation: none; } }

/* ── MATES WAY: 12-week journey timeline ── */
.timeline { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; max-width: 1000px; margin: 0 auto; }
.timeline::before {
  content: "";
  position: absolute;
  top: 60px;
  left: 17%;
  right: 17%;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--blue), var(--green));
  z-index: 0;
}
.phase {
  position: relative;
  z-index: 1;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 0 26px 30px;
  text-align: center;
  box-shadow: 0 2px 14px -9px rgba(30,30,30,.16);
}
.phase-badge {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin: -32px auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 1.4rem;
  box-shadow: 0 10px 22px -10px rgba(30,30,30,.4);
}
.phase--1 .phase-badge { background: var(--orange); }
.phase--2 .phase-badge { background: var(--blue); }
.phase--3 .phase-badge { background: var(--green); }
.phase-weeks { font-size: .78rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.phase h3 { font-size: 1.3rem; color: var(--ink); margin-bottom: 10px; }
.phase p { font-size: .95rem; line-height: 1.6; color: var(--body); }

/* ── THE MATES WAY — 6-step scroll-revealed journey ── */
.journey { position: relative; list-style: none; max-width: 900px; margin: 8px auto 0; padding: 0; }
.journey::before {
  content: ""; position: absolute; top: 12px; bottom: 12px; left: 50%; width: 3px;
  transform: translateX(-50%); border-radius: 3px;
  background: linear-gradient(var(--orange), var(--blue), var(--green), var(--pink), #c9960a, #393939);
  opacity: .22;
}
.journey-list { list-style: none; margin: 0; padding: 0; }
/* coloured fill that grows as you scroll through the journey */
.journey-progress {
  position: absolute; top: 12px; bottom: 12px; left: 50%; width: 3px;
  margin-left: -1.5px; border-radius: 3px;
  background: linear-gradient(var(--orange), var(--blue), var(--green), var(--pink), #c9960a, #393939);
  clip-path: inset(0 0 100% 0);
  z-index: 1;
}
.journey-step { position: relative; z-index: 2; width: 50%; padding-bottom: 44px; box-sizing: border-box; }
.journey-step:last-child { padding-bottom: 0; }
.journey-step:nth-child(odd) { left: 0; padding-right: 52px; }
.journey-step:nth-child(even) { left: 50%; padding-left: 52px; }
.journey-marker {
  position: absolute; top: 2px; width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.1rem; color: #fff;
  background: var(--accent, var(--orange)); box-shadow: 0 6px 16px -6px rgba(30,30,30,.4);
  z-index: 2;
}
.journey-step:nth-child(odd) .journey-marker { right: -24px; }
.journey-step:nth-child(even) .journey-marker { left: -24px; }
.journey-card {
  display: block;
  background: #fff; border: 1px solid var(--line); border-top: 3px solid var(--accent, var(--orange));
  border-radius: 18px; padding: 20px 24px; box-shadow: 0 6px 20px -12px rgba(30,30,30,.22);
}
.journey-kicker { font-size: 1.18rem; font-weight: 800; color: var(--accent-ink, var(--accent, var(--orange))); margin-bottom: 2px; }
.journey-weeks { font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.journey-card h3 { font-size: 1.08rem; color: var(--ink); margin-bottom: 8px; }
.journey-card > p { font-size: .92rem; line-height: 1.6; color: var(--body); }
.journey-tags { list-style: none; display: flex; flex-wrap: wrap; gap: 7px; margin: 14px 0 0; padding: 0; }
.journey-tags li { font-size: .74rem; font-weight: 600; color: var(--ink); background: #f2f2f5; border-radius: 999px; padding: 4px 11px; }
/* scroll reveal — alternate slide-in direction (overrides base .reveal transform) */
.reveal.journey-step { opacity: 0; transition: opacity .55s ease, transform .55s cubic-bezier(.2,.7,.2,1); }
.reveal.journey-step:nth-child(odd) { transform: translateX(-26px); }
.reveal.journey-step:nth-child(even) { transform: translateX(26px); }
.reveal.journey-step.in { opacity: 1; transform: none; }
@media (max-width: 760px) {
  .journey { max-width: 460px; }
  .journey::before { left: 23px; }
  .journey-step,
  .journey-step:nth-child(odd),
  .journey-step:nth-child(even) { width: 100%; left: 0; padding: 0 0 32px 64px; }
  .journey-step:last-child { padding-bottom: 0; }
  .journey-step:nth-child(odd) .journey-marker,
  .journey-step:nth-child(even) .journey-marker { left: 0; right: auto; }
  .reveal.journey-step:nth-child(odd),
  .reveal.journey-step:nth-child(even) { transform: translateX(-22px); }
  .reveal.journey-step.in { transform: none; }
}

/* ── MATES WAY: what's included checklist ── */
.included-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px 44px; max-width: 940px; margin: 0 auto; }
.included-item { display: flex; gap: 16px; align-items: flex-start; }
.included-check { width: 38px; height: 38px; border-radius: 50%; background: var(--tint-green); color: var(--green); display: flex; align-items: center; justify-content: center; flex: none; }
.included-check svg { width: 20px; height: 20px; }
.included-item h3 { font-size: 1.06rem; color: var(--ink); margin-bottom: 4px; }
.included-item p { font-size: .94rem; line-height: 1.58; color: var(--body); }

/* ── WHAT'S ON: weekly schedule ── */
.schedule { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.day-col { background: #fff; border: 1px solid var(--line); border-top: 4px solid var(--orange); border-radius: 16px; overflow: hidden; box-shadow: 0 2px 12px -9px rgba(30,30,30,.16); }
.day-col--1 { border-top-color: var(--orange); }
.day-col--2 { border-top-color: var(--blue); }
.day-col--3 { border-top-color: var(--green); }
.day-col--4 { border-top-color: var(--pink); }
.day-col--5 { border-top-color: #393939; }
.day-name { font-weight: 800; color: var(--ink); font-size: 1.05rem; padding: 18px 18px 14px; }
/* slots are clickable buttons (claim a free first session) */
.slot {
  display: block;
  width: 100%;
  text-align: left;
  font: inherit;
  color: inherit;
  background: #fff;
  border: none;
  border-top: 1px solid var(--line);
  padding: 14px 18px;
  cursor: pointer;
  transition: background .18s ease;
}
.slot:hover, .slot:focus-visible { background: var(--tint-orange); }
.slot:focus-visible { outline: 2px solid var(--orange); outline-offset: -2px; }
.slot-time { font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); margin-bottom: 5px; }
.slot-activity { font-weight: 600; color: var(--ink); font-size: .92rem; line-height: 1.3; margin-bottom: 3px; }
.slot-note { font-size: .82rem; color: var(--body); line-height: 1.45; }
.slot-try {
  display: block;
  margin-top: 8px;
  font-size: .76rem;
  font-weight: 700;
  color: var(--orange);
  opacity: 0;
  transform: translateY(-2px);
  transition: opacity .18s ease, transform .18s ease;
}
.slot:hover .slot-try, .slot:focus-visible .slot-try { opacity: 1; transform: none; }

/* ── WHAT'S ON: booklet callout (clickable thumbnail) ── */
.booklet {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 40px;
  margin: 48px auto 0;
  max-width: 960px;
  background: var(--tint-orange);
  border-radius: var(--r);
  padding: 28px;
}
.booklet-thumb {
  position: relative;
  display: block;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 9;
  transition: transform .3s ease, box-shadow .3s ease;
}
.booklet-thumb:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.booklet-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .45s ease; }
.booklet-thumb:hover img { transform: scale(1.05); }
.booklet-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  color: var(--orange-dk);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px -4px rgba(30,30,30,.3);
}
.booklet-badge svg { width: 18px; height: 18px; }
.booklet-text h3 { font-size: 1.35rem; color: var(--ink); margin-bottom: 8px; }
.booklet-text p { color: var(--body); font-size: .98rem; line-height: 1.6; margin-bottom: 18px; }

/* ── SCROLL REVEAL ── */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.js .reveal.in { opacity: 1; transform: none; }
.js .reveal.delay-1 { transition-delay: .1s; }
.js .reveal.delay-2 { transition-delay: .2s; }
.js .reveal.delay-3 { transition-delay: .3s; }
/* photo figures ease in with a slight scale for a more crafted feel */
.js .reveal.hero-figure, .js .reveal.feature-figure, .js .reveal.founder-figure { transform: translateY(22px) scale(.965); }
.js .reveal.hero-figure.in, .js .reveal.feature-figure.in, .js .reveal.founder-figure.in { transform: none; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .photo-slide { flex: 0 0 calc(33.333% - 16px); }
  .senti-grid { grid-template-columns: repeat(2, 1fr); }
  .usp-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: repeat(2, 1fr); }
  .schedule { grid-template-columns: repeat(3, 1fr); }
}

/* feature sections stack on smaller screens */
@media (max-width: 900px) {
  .feature { padding: 64px 0; }
  .feature-grid { grid-template-columns: 1fr; gap: 44px; }
  .feature--flip .feature-figure { order: -1; }
  .feature-copy, .feature--flip .feature-copy { max-width: none; margin: 0; }
  .feature-figure { max-width: 520px; margin: 0 auto; }
  .founder-grid { grid-template-columns: 1fr; gap: 36px; }
  .founder-figure { order: -1; }
  .founder-copy { max-width: none; }
  .vision { padding: 64px 0; }
  .timeline { grid-template-columns: 1fr; gap: 40px; max-width: 440px; }
  .timeline::before { display: none; }
  .phase-badge { margin-top: -32px; }
  /* once stacked: tame the blob, hide far accents, pull the corner ones in so nothing clips */
  .feature-blob { width: 74%; height: 76%; right: -10px; bottom: -10px; }
  .feature--flip .feature-blob { left: -10px; right: auto; }
  .hide-sm { display: none; }
  .fx-hand { width: 46px; }
  .st-lg { width: 30px; } .st-md { width: 24px; }
  /* keep the two clusters, pulled tight to the corners */
  .sl-1 { top: -22px; left: -14px; }
  .sl-4 { top: 22px; left: -16px; }
  .sl-7 { bottom: 30px; right: -14px; }
  .sl-8 { bottom: -18px; right: 14px; }
  .sl-9 { bottom: -18px; right: -14px; }
}

/* nav collapses to the hamburger below 1080px — 8 items + CTA don't fit narrower */
@media (max-width: 1080px) {
  .nav nav ul { display: none; }
  .nav-toggle { display: flex; }
  .nav.open nav ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: #fff;
    padding: 16px 24px 20px;
    gap: 4px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    z-index: 99;
  }
  .nav.open .has-drop { width: 100%; }
  .nav.open .dropdown {
    position: static; display: none; opacity: 1; pointer-events: auto; transform: none;
    background: transparent; border: none; box-shadow: none; min-width: 0;
    padding: 2px 0 6px 14px;
  }
  .nav.open .has-drop.open .dropdown { display: flex; }
}

@media (max-width: 860px) {
  .wrap { padding: 0 24px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; padding-top: 48px; padding-bottom: 56px; }
  .hero-figure { order: -1; }
  .hero-copy { max-width: none; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-nav { grid-template-columns: repeat(2, 1fr); }
  .schedule { grid-template-columns: repeat(2, 1fr); }
  .booklet { grid-template-columns: 1fr; }
  .cta-band-inner { flex-direction: column; align-items: flex-start; }
  .photo-slide { flex: 0 0 calc(50% - 12px); }
  .photo-carousel-track { padding: 30px 24px 50px; }
}

@media (max-width: 600px) {
  .section { padding: 64px 0; }
  .service-grid { grid-template-columns: 1fr; }
  .hero-copy h1 { font-size: 2.5rem; }
  .footer-nav { grid-template-columns: 1fr; }
  .topbar { gap: 6px; font-size: .78rem; }
  .photo-slide { flex: 0 0 calc(78% - 12px); }
  .senti-grid { grid-template-columns: 1fr; }
  .usp-grid { grid-template-columns: 1fr; }
  .about-grid .usp-card { flex: 0 1 100%; }
  .values-grid { grid-template-columns: 1fr; gap: 28px; }
  .included-grid { grid-template-columns: 1fr; gap: 22px; }
  .schedule { grid-template-columns: 1fr; }
  /* shrink the floating shapes/hands further on phones so clusters breathe */
  .fx-hand { width: 36px; }
  .st-lg { width: 24px; } .st-md { width: 19px; } .st-sm { width: 14px; }
  .fc-md { width: 12px; height: 12px; } .fc-sm { width: 8px; height: 8px; }
  /* phone layout: anchor the visible shapes to the photo's edges/corners,
     spaced apart and kept clear of the screen edge (no overlap, no edge-hugging) */
  .sl-1 { top: -8px; left: 10px; bottom: auto; right: auto; }     /* hand — top-left corner */
  .sl-4 { top: 92px; left: 4px; bottom: auto; right: auto; }      /* star — left edge, lower */
  .sl-7 { top: 58px; right: 6px; bottom: auto; left: auto; }      /* star — right edge, upper */
  .sl-8 { bottom: 6px; right: 62px; top: auto; left: auto; }      /* dot — bottom edge */
  .sl-9 { bottom: -8px; right: 10px; top: auto; left: auto; }     /* hand — bottom-right corner */
}

/* On touch devices (no hover) / phones, always show the activity "try / express interest" cues */
@media (hover: none), (max-width: 600px) {
  .slot-try, .usp-try { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .js .reveal { opacity: 1; transform: none; }
}

:focus-visible { outline: 3px solid var(--orange); outline-offset: 2px; }
