/* ── FONTS ── */
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('fonts/nunito-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191,
    U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ── TOKENS ── */
:root {
  --color-accent:       #c96a40;
  --color-accent-dark:  #a0522d;
  --color-accent-light: #f5e0d0;
  --color-sage:         #7aab82;
  --color-sage-dark:    #527a58;
  --color-sage-light:   #e5f0e7;
  --color-cream:        #fdf8f4;
  --color-white:        #ffffff;
  --color-slate:        #3a3a3a;
  --color-slate-light:  #6b6b6b;
  --color-border:       #e8ddd5;
  --color-error:        #b22;
  --color-error-light:  #fde8e8;
  --color-success-light:#e4f7e4;

  --font: 'Nunito', system-ui, sans-serif;

  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;

  --shadow-sm: 0 2px 8px rgba(0,0,0,.06);
  --shadow-md: 0 6px 24px rgba(0,0,0,.10);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.14);

  --transition: 0.25s ease;
  --max-w: 1100px;
  --nav-h: 72px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--color-slate);
  background: var(--color-white);
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: var(--font); cursor: pointer; border: none; background: none; }

/* ── NAV ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(253,248,244,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow var(--transition);
}
.nav.scrolled {
  box-shadow: 0 2px 16px rgba(201,106,64,.15);
  border-bottom-color: transparent;
}
.nav__inner {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}
.nav__logo-link {
  display: flex;
  align-items: center;
  height: var(--nav-h);
  flex-shrink: 0;
}
.nav__logo-wrap {
  display: flex;
  align-items: center;
  height: var(--nav-h);
}
.nav__logo {
  height: calc(var(--nav-h) - 24px);
  width: auto;
  max-width: min(280px, 34vw);
  display: block;
  margin: 0;
}
.nav__links {
  display: flex;
  gap: 0.25rem;
  align-items: center;
  margin-left: auto;
}
.nav__links a {
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-slate);
  transition: background var(--transition), color var(--transition);
}
.nav__links a:hover,
.nav__links a.active {
  background: var(--color-accent-light);
  color: var(--color-accent-dark);
}
.nav__cta {
  background: var(--color-accent) !important;
  color: var(--color-white) !important;
  border-radius: var(--radius-sm) !important;
  padding: 0.5rem 1.1rem !important;
}
.nav__cta:hover { background: var(--color-accent-dark) !important; }
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: 8px;
  transition: background var(--transition);
}
.nav__burger:hover { background: var(--color-accent-light); }
.nav__burger span {
  display: block;
  width: 24px;
  height: 2.5px;
  border-radius: 2px;
  background: var(--color-slate);
  transition: transform var(--transition), opacity var(--transition);
}
.nav__burger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ── HERO ── */
.hero {
  position: relative;
  background: linear-gradient(160deg, #f4b896 0%, #e07850 50%, #c96a40 100%);
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: center;
  text-align: center;
  padding: 4rem 1.5rem 8rem;
  overflow: hidden;
}
.hero::before,
.hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(6px);
}
.hero::before {
  width: 340px;
  height: 340px;
  top: -80px;
  left: -100px;
  background: radial-gradient(circle, rgba(255,255,255,0.22) 0%, rgba(255,255,255,0) 70%);
}
.hero::after {
  width: 280px;
  height: 280px;
  right: -60px;
  bottom: 40px;
  background: radial-gradient(circle, rgba(255,235,220,0.24) 0%, rgba(255,235,220,0) 72%);
}
.hero__inner {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(255,255,255,0.25);
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 50px;
  padding: 0.35rem 1.1rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255,255,255,0.95);
  margin-bottom: 1.5rem;
  letter-spacing: 0.03em;
}
.hero__badge-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--color-white);
  text-shadow: 0 2px 12px rgba(100,30,0,.2);
  margin-bottom: 1.25rem;
}
.hero p {
  font-size: 1.15rem;
  font-weight: 600;
  color: rgba(255,255,255,0.92);
  max-width: 540px;
  margin: 0 auto 2.2rem;
}
.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero__actions .btn {
  min-width: 210px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.8rem;
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-weight: 800;
  font-size: 1rem;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--primary {
  background: rgba(255,255,255,0.2);
  color: var(--color-white);
  border: 2px solid rgba(255,255,255,0.7);
  box-shadow: 0 4px 16px rgba(0,0,0,.12);
}
.btn--primary:hover { background: rgba(255,255,255,0.32); }
.btn--ghost {
  background: rgba(255,255,255,0.12);
  color: var(--color-white);
  border: 2px solid rgba(255,255,255,0.45);
}
.btn--ghost:hover { background: rgba(255,255,255,0.22); }
.btn--accent {
  background: var(--color-accent);
  color: var(--color-white);
  box-shadow: 0 4px 16px rgba(201,106,64,.3);
}
.btn--accent:hover { background: var(--color-accent-dark); }
.btn--sage {
  background: var(--color-sage);
  color: var(--color-white);
  box-shadow: 0 4px 16px rgba(122,171,130,.3);
}
.btn--sage:hover { background: var(--color-sage-dark); }
.btn--wa-large {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1.8rem;
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-weight: 800;
  font-size: 1rem;
  background: #25d366;
  color: var(--color-white);
  box-shadow: 0 4px 16px rgba(37,211,102,.35);
  transition: transform var(--transition), box-shadow var(--transition);
  margin-top: 1.5rem;
}
.btn--wa-large:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(37,211,102,.45);
}

/* cloud wave at bottom of hero */
.hero__wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  line-height: 0;
}
.hero__wave svg { display: block; width: 100%; }

/* ── SECTIONS ── */
.section { padding: 5rem 1.5rem; }
.section--cream { background: var(--color-cream); }
.section--white { background: var(--color-white); }
.section--terra { background: var(--color-accent-light); }
.section--wave  {
  position: relative;
  padding-bottom: 7rem; /* clear the wave SVG at bottom */
}

/* ── WAVE DIVIDERS ── */
.wave-divider {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  line-height: 0;
  pointer-events: none;
}
.wave-divider svg { display: block; width: 100%; }
.container { max-width: var(--max-w); margin: 0 auto; }
.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent-dark);
  background: var(--color-accent-light);
  border-radius: 50px;
  padding: 0.3rem 0.9rem;
  margin-bottom: 0.75rem;
}
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--color-slate);
  margin-bottom: 0.75rem;
  line-height: 1.25;
}
.section-title span { color: var(--color-accent-dark); }
.section-sub {
  font-size: 1.05rem;
  color: var(--color-slate-light);
  max-width: 600px;
  margin-bottom: 2.5rem;
}
.section-head--programmes { margin-bottom: 2.5rem; }
.section-head--gallery,
.section-head--location { margin-bottom: 2rem; }
.section-sub--center {
  margin-left: auto;
  margin-right: auto;
}
.section-sub--gallery {
  margin: 0 auto 2.5rem;
}
.section-sub--location {
  margin: 0 auto 0.5rem;
}
.section-title--contact-form {
  margin-bottom: 2rem;
}

/* ── WELCOME ── */
.welcome-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.welcome-quote {
  font-size: 1.05rem;
  color: var(--color-slate-light);
  font-style: italic;
  border-left: 3px solid var(--color-accent-light);
  padding-left: 1.25rem;
  margin: 1.25rem 0;
  line-height: 1.7;
}
.welcome-detail {
  font-size: 1rem;
  color: var(--color-slate-light);
  margin-bottom: 1.5rem;
}
.welcome-sign {
  font-size: 1rem;
  color: var(--color-slate);
  line-height: 1.6;
}
.welcome__aside {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.welcome__stat-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  border: 2px solid var(--color-border);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.welcome__stat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.welcome__stat-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--color-accent-light);
  color: var(--color-accent-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.welcome__stat-icon-svg {
  width: 24px;
  height: 24px;
}
.welcome__stat-card h3 {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
  color: var(--color-slate);
}
.welcome__stat-card p {
  font-size: 0.9rem;
  color: var(--color-slate-light);
  line-height: 1.55;
}

/* ── PROGRAMMES ── */
.programmes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
  align-items: start;
}
.prog-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--color-border);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.prog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.prog-card--daycare  { border-top: 4px solid var(--color-accent); }
.prog-card--aftercare { border-top: 4px solid var(--color-sage); }
.prog-card__header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}
.prog-card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  flex-shrink: 0;
}
.prog-card__icon-svg {
  width: 30px;
  height: 30px;
  color: var(--color-accent-dark);
}
.prog-card__icon-svg--sage {
  color: var(--color-sage-dark);
}
.prog-card__icon--terracotta { background: var(--color-accent-light); }
.prog-card__icon--sage       { background: var(--color-sage-light); }
.prog-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--color-slate);
  margin-bottom: 0.35rem;
  line-height: 1.3;
}
.prog-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.2rem 0.65rem;
  border-radius: 50px;
}
.prog-tag--terracotta { background: var(--color-accent-light); color: var(--color-accent-dark); }
.prog-tag--sage       { background: var(--color-sage-light);   color: var(--color-sage-dark); }
.prog-card__desc {
  font-size: 0.95rem;
  color: var(--color-slate-light);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.prog-card__hours {
  background: var(--color-cream);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex-grow: 1;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
}
.hours-day  { font-weight: 700; color: var(--color-slate); }
.hours-time { color: var(--color-slate-light); }
.prog-card__cta {
  width: 100%;
  justify-content: center;
  margin-top: 1.5rem;
}

/* ── GALLERY ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.gallery-block {
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--color-white);
}
.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}
.gallery-block:hover .gallery-img {
  transform: scale(1.04);
}
.gallery-note {
  text-align: center;
  font-size: 0.9rem;
  color: var(--color-slate-light);
  margin-top: 1.5rem;
  font-style: italic;
}

/* ── MAP ── */
.location-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: stretch;
  margin-top: 2rem;
}
.map-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--color-border);
  background: var(--color-white);
}
.map-wrap iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: none;
}
.location-card {
  background: var(--color-cream);
  border: 2px solid rgba(255,255,255,0.45);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.location-card__label {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-accent-dark);
  margin-bottom: 0.75rem;
}
.location-card h3 {
  font-size: 1.5rem;
  line-height: 1.2;
  color: var(--color-slate);
  margin-bottom: 1rem;
}
.location-card__address {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.6;
  color: var(--color-slate);
  margin-bottom: 1rem;
}
.location-card__note {
  color: var(--color-slate-light);
  margin-bottom: 1.5rem;
}
.location-card .btn {
  align-self: flex-start;
}

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.contact-panel {
  background: rgba(255,255,255,0.72);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 2rem;
}
.contact-panel--info {
  background: linear-gradient(180deg, rgba(255,255,255,0.78), rgba(245,224,208,0.42));
}
.contact-panel .section-sub:last-of-type {
  margin-bottom: 1.75rem;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  margin-bottom: 1.5rem;
}
.contact-detail__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--color-accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-detail__icon--wa { background: #e9f9f0; }
.contact-detail__icon-svg {
  width: 24px;
  height: 24px;
  color: #168f46;
}
.contact-detail h4 {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-slate-light);
  margin-bottom: 0.2rem;
}
.contact-wa-link {
  font-size: 1rem;
  font-weight: 700;
  color: #168f46;
}
.contact-wa-link:hover { text-decoration: underline; }
.contact-phone {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-slate);
  margin-top: 0.2rem;
}

/* ── FORM ── */
.form-group { margin-bottom: 1.2rem; }
.form-required { color: var(--color-accent); }
.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--color-slate);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 0.97rem;
  color: var(--color-slate);
  background: var(--color-white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(201,106,64,.15);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.btn--full {
  width: 100%;
  justify-content: center;
}
.form-msg {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 700;
  display: none;
}
.form-msg.success { display: block; background: var(--color-success-light); color: #2d7a2d; }
.form-msg.error   { display: block; background: var(--color-error-light);   color: var(--color-error); }
.form-group--honey { display: none; }
button[disabled] {
  opacity: 0.7;
  cursor: not-allowed;
}

/* ── FOOTER ── */
.footer {
  background: var(--color-slate);
  color: rgba(255,255,255,0.75);
  padding: 3.5rem 1.5rem 2rem;
}
.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.8fr 1.25fr 0.95fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer__wordmark {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--color-white);
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}
.footer__about {
  font-size: 0.88rem;
  line-height: 1.65;
  max-width: 300px;
  margin-bottom: 1rem;
}
.footer__contact-quick a {
  font-size: 0.9rem;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.footer__contact-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.footer__contact-quick a:hover { color: var(--color-white); }
.footer h4 {
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-white);
  margin-bottom: 1rem;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer__links a {
  font-size: 0.9rem;
  transition: color var(--transition);
}
.footer__links--programmes a {
  white-space: nowrap;
  font-size: 0.84rem;
}
.footer__links a:hover { color: var(--color-accent-light); }
.footer__bottom {
  max-width: var(--max-w);
  margin: 1.5rem auto 0;
  font-size: 0.82rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer__bottom a {
  color: rgba(255,255,255,0.9);
  font-weight: 700;
  transition: color var(--transition);
}
.footer__bottom a:hover { color: var(--color-white); }

/* ── WHATSAPP FAB ── */
.wa-fab {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 200;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  transition: transform var(--transition), box-shadow var(--transition);
}
.wa-fab:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 28px rgba(37,211,102,.55);
}
.wa-fab svg { width: 30px; height: 30px; fill: #fff; }

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── UTILITY ── */
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .welcome-grid  { grid-template-columns: 1fr; gap: 2.5rem; }
  .location-grid { grid-template-columns: 1fr; }
  .contact-grid  { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__links--programmes a { white-space: normal; }
}

@media (max-width: 640px) {
  :root { --nav-h: 64px; }

  .nav__inner { gap: 0.75rem; }
  .nav__logo { max-width: min(220px, 52vw); }

  .nav__links {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    width: 100%;
    background: var(--color-white);
    flex-direction: column;
    padding: 1rem 1.5rem 1.5rem;
    box-shadow: var(--shadow-md);
    gap: 0.25rem;
    border-bottom: 2px solid var(--color-border);
  }
  .nav__links.open { display: flex; }
  .nav__links a { padding: 0.65rem 1rem; border-radius: var(--radius-sm); }
  .nav__burger { display: flex; }

  .hero {
    min-height: auto;
    padding: 2.75rem 1.25rem 6rem;
  }
  .hero__badge {
    margin-bottom: 1.1rem;
    font-size: 0.8rem;
  }
  .hero h1 {
    font-size: clamp(2rem, 10vw, 2.8rem);
    line-height: 1.12;
  }
  .hero p {
    font-size: 1rem;
    max-width: 30ch;
    margin-bottom: 1.75rem;
  }
  .hero__actions {
    gap: 0.75rem;
  }
  .hero__actions .btn {
    width: min(100%, 320px);
    justify-content: center;
  }
  .section { padding: 3.5rem 1.25rem; }
  .section--wave { padding-bottom: 5.5rem; }

  .programmes-grid { grid-template-columns: 1fr; }
  .gallery-grid    { grid-template-columns: repeat(2, 1fr); }
  .contact-panel   { padding: 1.5rem; }
  .location-card   { padding: 1.5rem; }
  .map-wrap iframe { height: 340px; }
  .contact-grid    { gap: 2.5rem; }
  .wa-fab {
    width: 52px;
    height: 52px;
    right: 1rem;
    bottom: 1rem;
  }
  .wa-fab svg {
    width: 28px;
    height: 28px;
  }

  .footer__inner  { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 420px) {
  .nav__logo { max-width: min(190px, 50vw); }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .hero {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .hero__actions { flex-direction: column; align-items: center; }
  .hero__actions .btn { min-width: 0; }
  .location-card h3 { font-size: 1.3rem; }
  .location-card__address { font-size: 1rem; }
}
