/* ============================================================
   Songbirds Music — kinderpopkoor Midden-Limburg
   Kleuren: turquoise (#23A396) · wit · petrol (#16434E)
   Rustig, fris, verzorgd
   ============================================================ */

:root {
  /* brand */
  --turquoise: #23a396;
  --turquoise-deep: #1b8678;
  --turquoise-soft: #6fc3b8;
  --petrol: #16434e;
  --petrol-2: #1e5a66;

  /* tints / neutrals (low chroma, calm) */
  --tint: #e9f4f1;        /* soft turquoise wash */
  --tint-2: #f1f8f6;
  --paper: #f7faf9;       /* page bg */
  --card: #ffffff;
  --line: #e2ece9;

  /* text */
  --ink: #143a43;         /* headings */
  --body: #41595d;        /* body copy */
  --muted: #587176;

  /* role tokens (overridden per direction) */
  --accent: var(--turquoise);
  --accent-ink: #ffffff;
  --bg: var(--paper);
  --hero-bg: var(--tint);
  --hero-ink: var(--ink);
  --section-alt: #ffffff;

  --radius: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;
  --shadow-sm: 0 1px 2px rgba(20,58,67,.05), 0 6px 18px rgba(20,58,67,.05);
  --shadow-md: 0 2px 6px rgba(20,58,67,.06), 0 18px 44px rgba(20,58,67,.09);

  --font-display: "Bricolage Grotesque", system-ui, sans-serif;
  --font-body: "Hanken Grotesk", system-ui, sans-serif;

  --maxw: 1200px;
  --gutter: clamp(20px, 5vw, 64px);
}

/* ---- Direction: Petrol (high contrast, petrol-dominant) ---- */
[data-direction="petrol"] {
  --hero-bg: var(--petrol);
  --hero-ink: #ffffff;
}
/* ---- Direction: Speels (soft, rounded, playful) ---- */
[data-direction="speels"] {
  --radius: 26px;
  --radius-lg: 40px;
  --hero-bg: linear-gradient(160deg, #eaf6f3 0%, #def0ec 60%, #d3ece6 100%);
}

/* ============================================================
   Achtergrond-variant: turquoise (logo-kleur) als paginakleur.
   Secties worden turquoise, tekst-op-achtergrond wit,
   kaarten blijven witte eilanden met donkere tekst.
   ============================================================ */
[data-bg="brand"] { background: var(--turquoise-deep); }
[data-bg="brand"] .hero,
[data-bg="brand"] .section--alt,
[data-bg="brand"] .section--tint { background: transparent; }

/* nav stays white in all modes (see base .nav below) */
[data-bg="brand"] .btn--ghost { background: var(--petrol); color: #fff; box-shadow: none; }
[data-bg="brand"] .btn--ghost:hover { background: var(--petrol-2); color: #fff; }
[data-bg="brand"] .btn--primary { background: #fff; color: var(--turquoise-deep); box-shadow: 0 10px 24px -10px rgba(0,0,0,.3); }
[data-bg="brand"] .btn--primary:hover { background: #f0faf8; }

/* text directly on the turquoise background -> white */
[data-bg="brand"] .hero h1,
[data-bg="brand"] .section-head h2,
[data-bg="brand"] .stack h2 { color: #fff; }
[data-bg="brand"] .hero .lede,
[data-bg="brand"] .section-head .lede,
[data-bg="brand"] .stack .lede { color: rgba(255,255,255,.9); }
[data-bg="brand"] .hero .eyebrow,
[data-bg="brand"] .section-head .eyebrow,
[data-bg="brand"] .stack .eyebrow { color: rgba(255,255,255,.9); }
[data-bg="brand"] .hero__note { color: rgba(255,255,255,.82); }
[data-bg="brand"] .feature h4 { color: #fff; }
[data-bg="brand"] .feature p { color: rgba(255,255,255,.78); }
[data-bg="brand"] .feature__ic { background: rgba(255,255,255,.16); color: #fff; }
[data-bg="brand"] .member h3 { color: #fff; }
[data-bg="brand"] .member .role { color: rgba(255,255,255,.92); }
[data-bg="brand"] .member p { color: rgba(255,255,255,.82); }
[data-bg="brand"] .price__note { color: rgba(255,255,255,.85); }
[data-bg="brand"] .price__note .ic { color: #fff; }
/* white-card islands (choir, info-card, signup form, price) keep their own dark text */

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--body);
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
.noscript { padding: 12px var(--gutter); background: #fff3cd; color: #493c12; text-align: center; }
.noscript a { text-decoration: underline; font-weight: 600; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.skip-link {
  position: fixed; top: 10px; left: 10px; z-index: 100;
  padding: 10px 16px; border-radius: 8px; background: var(--petrol); color: #fff;
  transform: translateY(-150%); transition: transform .15s ease;
}
.skip-link:focus { transform: translateY(0); }
:where(a, button, input, select, textarea):focus-visible {
  outline: 3px solid #f5c542;
  outline-offset: 3px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin: 0;
  font-weight: 700;
  text-wrap: balance;
}
p { margin: 0; text-wrap: pretty; }

[data-direction="speels"] h1,
[data-direction="speels"] h2,
[data-direction="speels"] h3 { font-family: "Fredoka", var(--font-display); letter-spacing: -0.01em; }

/* ---------- layout ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(64px, 9vw, 128px); }
.section--alt { background: var(--section-alt); }
.section--tint { background: var(--tint); }

.eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--turquoise-deep);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 20px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px; background: currentColor; border-radius: 2px;
}
.h-xl { font-size: clamp(40px, 6vw, 76px); }
.h-lg { font-size: clamp(32px, 4.4vw, 54px); }
.h-md { font-size: clamp(24px, 2.8vw, 34px); }
.lede { font-size: clamp(18px, 1.5vw, 21px); color: var(--body); max-width: 56ch; }

/* ---------- buttons ---------- */
.btn {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  border-radius: var(--radius-pill);
  padding: 15px 26px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease, color .18s;
  text-align: center;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--accent); color: var(--accent-ink); box-shadow: 0 8px 20px -8px color-mix(in oklab, var(--accent) 70%, transparent); }
.btn--primary:hover { background: var(--turquoise-deep); transform: translateY(-2px); }
.btn--ghost { background: var(--petrol); color: #fff; box-shadow: none; }
.btn--ghost:hover { background: var(--petrol-2); color: #fff; box-shadow: none; }
.btn--light { background: #fff; color: var(--petrol); }
.btn--light:hover { transform: translateY(-2px); }

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s;
}
.nav.is-scrolled { border-color: var(--line); background: rgba(255,255,255,.97); }
.nav__inner { display: flex; align-items: center; gap: 28px; height: 76px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand__mark { width: 42px; height: 42px; border-radius: 12px; object-fit: cover; box-shadow: var(--shadow-sm); }
.brand__name { font-family: var(--font-display); font-weight: 700; font-size: 20px; color: var(--ink); letter-spacing: -0.02em; line-height: 1; white-space: nowrap; }
.brand__sub { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.nav__links { display: flex; gap: 26px; margin-left: auto; }
.nav__links a { font-size: 15.5px; font-weight: 500; color: var(--body); position: relative; padding: 6px 0; }
.nav__links a:hover { color: var(--turquoise-deep); }
.nav__links a::after { content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0; background: var(--turquoise); transition: width .22s; border-radius: 2px; }
.nav__links a:hover::after, .nav__links a.is-active::after { width: 100%; }
.nav__links a.is-active { color: var(--turquoise-deep); }
.nav__cta { margin-left: 4px; }
.nav__burger { display: none; margin-left: auto; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav__burger span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; border-radius: 2px; transition: .25s; }

/* ---------- hero ---------- */
.hero { background: var(--hero-bg); position: relative; overflow: hidden; }
.hero__grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(32px, 5vw, 72px); align-items: center; padding-block: clamp(56px, 8vw, 104px); }
.hero h1 { color: var(--hero-ink); }
[data-direction="petrol"] .hero .eyebrow { color: var(--turquoise-soft); }
[data-direction="petrol"] .hero .lede { color: rgba(255,255,255,.85); }
[data-direction="petrol"] .hero .btn--ghost { background: transparent; color: #fff; box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.5); }
[data-direction="petrol"] .hero .btn--ghost:hover { box-shadow: inset 0 0 0 1.5px #fff; color: #fff; background: rgba(255,255,255,.1); }
.hero__lede { margin-top: 22px; }
.hero__cta { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }
.hero__note { margin-top: 22px; font-size: 14.5px; color: var(--muted); display: flex; align-items: center; gap: 8px; }
[data-direction="petrol"] .hero__note { color: rgba(255,255,255,.7); }
.hero__media { position: relative; }
.hero__photo { width: 100%; border-radius: 20px; object-fit: cover; display: block; box-shadow: 0 12px 48px rgba(0,0,0,.15); }
.hero__blob { position: absolute; border-radius: 50%; background: color-mix(in oklab, var(--turquoise) 22%, transparent); filter: blur(2px); }
.hero__deco-bird { position: absolute; right: -40px; top: -56px; width: 180px; opacity: .12; transform: rotate(8deg); pointer-events: none; }

/* ---------- placeholder media ---------- */
.ph {
  position: relative;
  border-radius: var(--radius-lg);
  background:
    repeating-linear-gradient(135deg, rgba(35,163,150,.10) 0 12px, rgba(35,163,150,.04) 12px 24px),
    var(--tint-2);
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--turquoise-deep);
  overflow: hidden;
}
.ph::after {
  content: attr(data-label);
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 12.5px; letter-spacing: .04em;
  background: rgba(255,255,255,.95);
  padding: 8px 14px; border-radius: 999px; font-weight: 600;
  box-shadow: var(--shadow-sm);
  text-align: center; max-width: 80%;
}
.ph--hero { aspect-ratio: 4/4.4; }
.ph--wide { aspect-ratio: 16/10; }
.over__photo { width: 100%; aspect-ratio: 16/10; object-fit: cover; object-position: center; display: block; border-radius: 16px; box-shadow: 0 12px 40px rgba(0,0,0,.13); }
.ph--portrait { aspect-ratio: 3/3.6; }
.team__photo { width: 100%; aspect-ratio: 3/3.6; object-fit: cover; object-position: center top; border-radius: 16px; display: block; box-shadow: 0 12px 40px rgba(0,0,0,.13); }
.ph--round { border-radius: 50%; aspect-ratio: 1; }

/* ---------- koortjes ---------- */
.section-head { max-width: 62ch; margin-bottom: clamp(36px, 5vw, 56px); }
.choirs { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 3vw, 32px); }
.choir {
  background: var(--card); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md); overflow: hidden;
  display: flex; flex-direction: column;
  border: 1px solid var(--line);
  transition: transform .25s ease, box-shadow .25s ease;
}
.choir:hover { transform: translateY(-4px); box-shadow: 0 24px 60px -20px rgba(20,58,67,.22); }
.choir__media { aspect-ratio: 16/10; }
.choir__media--photo { width: 100%; object-fit: cover; object-position: center top; display: block; border-radius: 0; box-shadow: none; }
.choir__media--img-wrap { position: relative; overflow: hidden; }
.choir__media--img-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.choir__badge {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(22,67,78,.58);
  backdrop-filter: blur(5px) saturate(70%);
  -webkit-backdrop-filter: blur(5px) saturate(70%);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(18px, 2.4vw, 26px);
  letter-spacing: .12em;
  text-transform: uppercase;
  text-shadow: 0 2px 10px rgba(0,0,0,.3);
}
.choir__body { padding: clamp(24px, 3vw, 34px); display: flex; flex-direction: column; gap: 14px; flex: 1; }
.tagpill { align-self: flex-start; font-size: 13px; font-weight: 600; letter-spacing: .03em; color: var(--turquoise-deep); background: var(--tint); padding: 6px 14px; border-radius: 999px; white-space: nowrap; }
.choir__meta { display: flex; flex-direction: column; gap: 8px; margin-top: 4px; padding-top: 16px; border-top: 1px solid var(--line); }
.choir__meta div { display: flex; align-items: center; gap: 10px; font-size: 15px; color: var(--body); }
.choir__meta .ic { color: var(--turquoise); flex: none; }
.choir__foot { margin-top: auto; padding-top: 8px; }
.choir__price { font-weight: 700; color: var(--ink); display: flex; align-items: center; gap: 10px; font-size: 15px; }
.choir__price-alt { font-size: 13px; color: var(--muted); font-weight: 400; }

/* ---------- split (over/repetities) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.split--rev .split__media { order: -1; }
.stack { display: flex; flex-direction: column; gap: 18px; }
.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 28px; margin-top: 10px; }
.feature { display: flex; gap: 14px; }
.feature__ic { width: 42px; height: 42px; flex: none; border-radius: 12px; background: var(--tint); color: var(--turquoise-deep); display: grid; place-items: center; }
.feature h4 { font-size: 17px; margin-bottom: 3px; }
.feature p { font-size: 14.5px; color: var(--muted); }

/* ---------- team ---------- */
.team { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 30px); }
.member { text-align: left; }
.member__media { margin-bottom: 18px; }
.member h3 { font-size: 21px; }
.member .role { color: var(--turquoise-deep); font-weight: 600; font-size: 14.5px; margin-top: 3px; }
.member p { font-size: 15px; color: var(--body); margin-top: 10px; }

/* inline text link */
.textlink { display: inline-flex; align-items: center; gap: 7px; font-weight: 600; color: var(--turquoise-deep); border-bottom: 2px solid color-mix(in oklab, var(--turquoise) 45%, transparent); padding-bottom: 1px; transition: color .18s, border-color .18s; white-space: nowrap; }
.textlink:hover { color: var(--petrol); border-color: var(--petrol); }
[data-bg="brand"] .textlink { color: #fff; border-color: rgba(255,255,255,.55); }
[data-bg="brand"] .textlink:hover { color: #fff; border-color: #fff; }

/* ---------- info / locatie ---------- */
.info-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); padding: clamp(26px, 3vw, 38px); }
.info-row { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.info-row:last-child { border-bottom: 0; padding-bottom: 0; }
.info-row:first-child { padding-top: 0; }
.info-row .ic { color: var(--turquoise); flex: none; margin-top: 2px; }
.info-row b { color: var(--ink); font-weight: 600; display: block; font-size: 16px; }
.info-row span { font-size: 15px; color: var(--body); }

/* ---------- tarieven (kaartformaat als koortjes) ---------- */
.tarief-cards { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 3vw, 32px); }
.tarief-card {
  background: var(--card); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md); overflow: hidden;
  display: flex; flex-direction: column;
  border: 1px solid var(--line);
  transition: transform .25s ease, box-shadow .25s ease;
}
.tarief-card:hover { transform: translateY(-4px); box-shadow: 0 24px 60px -20px rgba(20,58,67,.22); }
.tarief-card__media { aspect-ratio: 16/10; }
.tarief-card__body { padding: clamp(24px, 3vw, 34px); display: flex; flex-direction: column; gap: 14px; flex: 1; }
.tarief-card__meta { display: flex; flex-direction: column; gap: 8px; margin-top: 4px; padding-top: 16px; border-top: 1px solid var(--line); }
.tarief-card__meta div { display: flex; align-items: center; gap: 10px; font-size: 15px; color: var(--body); }
.tarief-card__meta .ic { color: var(--turquoise); flex: none; }
.tarief-card__price { font-weight: 700; color: var(--ink) !important; }
.tarief-card__price-alt { font-size: 13.5px; color: var(--muted); margin-left: 28px; margin-top: -4px; }
.tarief-card__foot { margin-top: auto; padding-top: 8px; }
.price__note { display: flex; align-items: center; gap: 9px; justify-content: center; margin-top: clamp(28px, 4vw, 40px); font-size: 15px; color: var(--muted); text-align: center; }
.price__note .ic { color: var(--turquoise); flex: none; }

@media (max-width: 900px) {
  .tarief-cards { grid-template-columns: 1fr; }
}

/* ---------- map ---------- */
.map-wrap { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 16/10; }
.map-wrap iframe { width: 100%; height: 100%; display: block; border: 0; }

/* ---------- socials section ---------- */
.socials-section { display: flex; align-items: center; gap: clamp(32px, 5vw, 72px); flex-wrap: wrap; }
.socials-section__text { flex: 1; min-width: 260px; }
.socials-section__links { display: flex; gap: 18px; flex-wrap: wrap; }
.social-btn { display: inline-flex; align-items: center; gap: 12px; font-family: var(--font-body); font-weight: 600; font-size: 17px; padding: 16px 28px; border-radius: var(--radius-pill); text-decoration: none; transition: transform .18s ease, box-shadow .18s ease; }
.social-btn:hover { transform: translateY(-2px); }
.social-btn--fb { background: #1877F2; color: #fff; box-shadow: 0 8px 20px -8px rgba(24,119,242,.5); }
.social-btn--fb:hover { background: #166fe5; }
.social-btn--ig { background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); color: #fff; box-shadow: 0 8px 20px -8px rgba(220,39,67,.45); }
[data-bg="brand"] .socials-section__text h2,
[data-bg="brand"] .socials-section__text .lede { color: #fff; }
[data-bg="brand"] .socials-section__text .eyebrow { color: rgba(255,255,255,.9); }

/* ---------- aanmelden / form ---------- */
.signup { background: var(--petrol); color: #fff; border-radius: var(--radius-lg); overflow: hidden; }
.signup__grid { display: grid; grid-template-columns: 0.85fr 1.15fr; }
.signup__intro { padding: clamp(34px, 4vw, 56px); }
.signup__intro h2 { color: #fff; }
.signup__intro .eyebrow { color: var(--turquoise-soft); }
.signup__intro p { color: rgba(255,255,255,.82); margin-top: 16px; }
.signup__perks { list-style: none; padding: 0; margin: 26px 0 0; display: flex; flex-direction: column; gap: 12px; }
.signup__perks li { display: flex; gap: 11px; align-items: center; font-size: 15.5px; color: rgba(255,255,255,.9); }
.signup__perks .ic { color: var(--turquoise-soft); flex: none; }
.signup__form { background: #fff; padding: clamp(30px, 4vw, 48px); }
.form-info { margin-bottom: 24px; padding: 16px 18px; border: 1px solid rgba(35,163,150,.24); border-radius: 12px; background: rgba(35,163,150,.08); color: var(--body); font-size: 14px; line-height: 1.55; }
.form-info p + p { margin-top: 8px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 14px; font-weight: 600; color: var(--ink); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--font-body); font-size: 16px; color: var(--ink);
  padding: 13px 15px; border: 1.5px solid var(--line); border-radius: 12px; background: var(--paper);
  transition: border-color .18s, box-shadow .18s; outline: none;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--turquoise); box-shadow: 0 0 0 4px rgba(35,163,150,.13); background: #fff; }
.field input.err, .field select.err { border-color: #d8745f; }
.field .msg { font-size: 12.5px; color: #c9573f; margin-top: 5px; display: none; }
.field input.err ~ .msg, .field select.err ~ .msg { display: block; }
.fieldset { margin-inline: 0; padding: 0; border: 0; }
.fieldset legend { display: block; font-size: 14px; font-weight: 600; color: var(--ink); margin-bottom: 9px; }
.choice-row { display: flex; gap: 18px; flex-wrap: wrap; }
.choice-row label, .field--check label { display: flex; align-items: flex-start; gap: 9px; color: var(--body); font-weight: 500; line-height: 1.45; }
.choice-row input, .field--check input { width: auto; flex: none; margin-top: 3px; accent-color: var(--turquoise); }
.field--check { padding: 14px 16px; border: 1px solid var(--line); border-radius: 12px; background: var(--paper); }
.field--check label { margin-bottom: 0; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 0 16px; }
.form-foot { margin-top: 6px; }
.form-privacy { margin-top: 12px; color: var(--body); font-size: 13px; line-height: 1.5; }
.form-privacy a { color: var(--turquoise-deep); font-weight: 600; text-decoration: underline; }
.form-server-err { margin: 8px 0 4px; padding: 10px 14px; background: #fff3f3; border: 1px solid #f5c2c2; border-radius: 8px; color: #b94444; font-size: 14px; line-height: 1.5; }
.form-server-err a { color: inherit; text-decoration: underline; }
.success { text-align: center; padding: 30px 10px; }
.success__check { width: 64px; height: 64px; border-radius: 50%; background: var(--tint); color: var(--turquoise-deep); display: grid; place-items: center; margin: 0 auto 18px; }
.success h3 { font-size: 26px; }
.success p { color: var(--body); margin-top: 10px; }

/* ---------- footer ---------- */
.footer { background: var(--petrol); color: rgba(255,255,255,.78); padding-block: clamp(48px, 6vw, 72px) 32px; }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer h4 { color: #fff; font-size: 15px; letter-spacing: .04em; margin-bottom: 16px; font-family: var(--font-body); text-transform: uppercase; }
.footer a { color: rgba(255,255,255,.78); font-size: 15px; display: block; padding: 5px 0; }
.footer a:hover { color: #fff; }
.footer__brand p { color: rgba(255,255,255,.7); font-size: 15px; margin-top: 14px; max-width: 34ch; }
.footer__brand .brand__name { color: #fff; }
.footer__brand .brand__sub { color: var(--turquoise-soft); }
.socials { display: flex; gap: 10px; margin-top: 18px; }
.socials a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.1); display: grid; place-items: center; padding: 0; transition: background .2s; }
.socials a:hover { background: var(--turquoise); }
.footer__bottom { padding-top: 22px; display: flex; justify-content: space-between; gap: 14px; font-size: 13.5px; color: rgba(255,255,255,.55); flex-wrap: wrap; }
.footer__cookie-note { font-size: 12px; color: rgba(255,255,255,.38); }

/* ---------- legal pages ---------- */
.legal { max-width: 820px; padding-block: clamp(48px, 8vw, 96px); }
.legal h1 { margin: 32px 0 12px; font-size: clamp(36px, 6vw, 60px); }
.legal h2 { margin: 32px 0 10px; font-size: clamp(22px, 3vw, 30px); }
.legal p + p { margin-top: 12px; }

/* ---------- scroll entrance ---------- */
/* Content stays visible without JS and for visitors who prefer reduced motion. */
.reveal { --reveal-delay: 0ms; opacity: 1; }
@media (prefers-reduced-motion: no-preference) {
  .reveal-ready .reveal {
    opacity: 0;
    transform: translateY(48px) scale(.975);
    filter: blur(3px);
    transition:
      opacity .7s ease var(--reveal-delay, 0ms),
      transform .85s cubic-bezier(.16, 1, .3, 1) var(--reveal-delay, 0ms),
      filter .6s ease var(--reveal-delay, 0ms);
    will-change: opacity, transform, filter;
  }
  .reveal-ready .reveal.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: block; }
  .nav.open .nav__links { display: flex; position: absolute; top: 76px; left: 0; right: 0; flex-direction: column; background: var(--paper); padding: 18px var(--gutter) 26px; gap: 4px; border-bottom: 1px solid var(--line); box-shadow: var(--shadow-md); }
  .nav.open .nav__links a { padding: 12px 0; font-size: 17px; border-bottom: 1px solid var(--line); }
  .nav.open .nav__cta { display: inline-flex; margin: 10px 0 0; }
  .hero__grid, .choirs, .split, .team, .signup__grid, .footer__top, .two-col, .prices { grid-template-columns: 1fr; }
  .hero__media { order: -1; max-width: 440px; }
  .split--rev .split__media { order: 0; }
  .team { grid-template-columns: 1fr 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  body { font-size: 16.5px; }
  .team { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; }
}
