/* =========================================================
   Danni's Out of School Care — site stylesheet
   Palette taken from the logo: navy wordmark + 6-band rainbow
   ========================================================= */

:root {
  --navy: #1f3c88;
  --navy-dark: #162b63;
  --red: #e63329;
  --orange: #f7941d;
  --yellow: #f9d21c;
  --green: #3aaa35;
  --blue: #2f7fd1;
  --purple: #8b5bb1;

  --ink: #1e2540;
  --ink-soft: #4b5370;
  --line: #e6e9f2;
  --paper: #ffffff;
  --cream: #fff9f0;
  --sky: #f3f7fd;
  --mint: #f1faf2;
  --lilac: #f7f2fb;

  --rainbow: linear-gradient(90deg, var(--red) 0 16.6%, var(--orange) 16.6% 33.3%, var(--yellow) 33.3% 50%, var(--green) 50% 66.6%, var(--blue) 66.6% 83.3%, var(--purple) 83.3% 100%);
  --rainbow-soft: linear-gradient(135deg, #ffd9d6, #ffe6c7, #fff5c2, #d6f3d5, #d4e6fb, #e8dcf3);

  --font-head: "Fredoka", "Nunito", system-ui, sans-serif;
  --font-body: "Nunito", system-ui, -apple-system, "Segoe UI", sans-serif;

  --radius: 18px;
  --radius-lg: 28px;
  --shadow-sm: 0 2px 8px rgba(31, 60, 136, .06);
  --shadow: 0 10px 30px rgba(31, 60, 136, .10);
  --shadow-lg: 0 20px 50px rgba(31, 60, 136, .16);

  --container: 1180px;
  --header-h: 96px;
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
/* overflow-x: clip (not hidden) stops the off-screen mobile menu widening the
   page without turning body into a scroll container, so sticky/fixed still work. */
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
}
body.nav-open { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); text-decoration-thickness: 1.5px; text-underline-offset: 3px; }
a:hover { color: var(--blue); }
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.15;
  color: var(--navy);
  margin: 0 0 .6em;
  letter-spacing: -.01em;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 700; }
h2 { font-size: clamp(1.75rem, 3.4vw, 2.5rem); }
h3 { font-size: 1.35rem; }
p { margin: 0 0 1.1em; }
ul, ol { margin: 0 0 1.1em; padding-left: 1.3em; }
address { font-style: normal; }
.icon { width: 1.25em; height: 1.25em; vertical-align: -.25em; flex-shrink: 0; }

.container { width: min(100% - 2.5rem, var(--container)); margin-inline: auto; }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip-link { position: absolute; left: 1rem; top: -100px; background: var(--navy); color: #fff; padding: .6rem 1rem; border-radius: 8px; z-index: 1000; }
.skip-link:focus { top: 1rem; }
:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; border-radius: 6px; }

.rainbow-bar { height: 6px; background: var(--rainbow); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-head); font-weight: 600; font-size: 1rem;
  padding: .8rem 1.5rem; border-radius: 999px; border: 2px solid transparent;
  text-decoration: none; cursor: pointer; line-height: 1.2;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--orange); color: #1a1a1a; box-shadow: 0 6px 18px rgba(247, 148, 29, .35); }
.btn--primary:hover { background: #ff9f2e; color: #1a1a1a; box-shadow: 0 10px 24px rgba(247, 148, 29, .45); }
.btn--navy { background: var(--navy); color: #fff; box-shadow: 0 6px 18px rgba(31, 60, 136, .3); }
.btn--navy:hover { background: var(--navy-dark); color: #fff; }
.btn--outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn--outline:hover { background: var(--navy); color: #fff; }
.btn--light { background: #fff; color: var(--navy); box-shadow: 0 6px 18px rgba(0, 0, 0, .15); }
.btn--light:hover { color: var(--navy-dark); }
.btn--lg { font-size: 1.15rem; padding: 1rem 2rem; }
.btn[disabled] { opacity: .7; cursor: wait; transform: none; }

/* ---------- Top bar ---------- */
.topbar { background: var(--navy); color: #fff; font-size: .9rem; font-weight: 600; }
.topbar__inner { display: flex; flex-wrap: wrap; gap: .4rem 1.75rem; align-items: center; min-height: 40px; padding: .3rem 0; }
.topbar a { color: #fff; text-decoration: none; display: inline-flex; align-items: center; gap: .4rem; }
.topbar a:hover { color: var(--yellow); }
.topbar__badge { margin-left: auto; display: inline-flex; align-items: center; gap: .4rem; color: #cfe0ff; }
@media (max-width: 720px) { .topbar__badge { display: none; } }

/* ---------- Header / nav ---------- */
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(255, 255, 255, .96); backdrop-filter: blur(8px); transition: box-shadow .2s; }
.site-header.is-stuck { box-shadow: var(--shadow-sm); }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; min-height: var(--header-h); }
.brand img { width: clamp(130px, 16vw, 200px); height: auto; background: #fff; }
.site-nav { display: flex; align-items: center; gap: 1.25rem; }
.site-nav__list { list-style: none; margin: 0; padding: 0; display: flex; gap: .15rem; }
.site-nav__list a {
  display: block; padding: .55rem .8rem; border-radius: 999px;
  font-family: var(--font-head); font-weight: 500; font-size: 1rem;
  color: var(--ink); text-decoration: none; position: relative; transition: background .15s, color .15s;
}
.site-nav__list a:hover { background: var(--sky); color: var(--navy); }
.site-nav__list a[aria-current="page"] { color: var(--navy); background: var(--sky); font-weight: 600; }
.nav-toggle { display: none; background: none; border: 2px solid var(--line); border-radius: 12px; padding: .5rem; color: var(--navy); cursor: pointer; }
.nav-toggle .icon { width: 1.7rem; height: 1.7rem; display: block; }
.nav-toggle__close { display: none; }
.nav-toggle[aria-expanded="true"] .nav-toggle__open { display: none; }
.nav-toggle[aria-expanded="true"] .nav-toggle__close { display: block; }

@media (max-width: 1100px) {
  .nav-toggle { display: inline-flex; position: relative; z-index: 110; }
  /* backdrop-filter on the header makes position:fixed children size to the
     header bar, so the overlay is built as a full-viewport panel instead. */
  .site-nav {
    position: absolute; left: 0; top: var(--header-h); z-index: 90;
    width: 100vw; max-width: 100%; min-height: calc(100dvh - var(--header-h));
    flex-direction: column; justify-content: flex-start; align-items: center; gap: 1.25rem;
    padding: 1rem 1.5rem 2rem;
    background: #fff;
    transform: translateX(110%); visibility: hidden;
    transition: transform .25s ease, visibility 0s linear .25s;
  }
  .site-nav.is-open { transform: none; visibility: visible; transition-delay: 0s; }
  .site-nav__list { flex-direction: column; align-items: center; gap: .4rem; }
  .site-nav__list a { font-size: 1.4rem; padding: .6rem 1.4rem; }
  .site-nav__cta { font-size: 1.15rem; padding: 1rem 2rem; }
  body.nav-open .site-header {
    background: #fff;
    backdrop-filter: none;
    min-height: 100dvh;
  }
}

/* ---------- Hero (home) ---------- */
.hero { position: relative; overflow: hidden; background: var(--sky); padding: clamp(3rem, 7vw, 6rem) 0; }
.hero::before, .hero::after { content: ""; position: absolute; z-index: 0; border-radius: 50%; filter: blur(40px); opacity: .55; pointer-events: none; }
.hero::before { width: 520px; height: 520px; background: #ffe0a3; top: -200px; right: -120px; }
.hero::after { width: 420px; height: 420px; background: #d5c5f0; bottom: -220px; left: -100px; }
.hero__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.1fr .9fr; gap: 3rem; align-items: center; }
.hero__eyebrow { display: inline-flex; align-items: center; gap: .5rem; background: #fff; color: var(--navy); font-weight: 700; font-size: .9rem; padding: .4rem 1rem; border-radius: 999px; box-shadow: var(--shadow-sm); margin-bottom: 1.25rem; }
.hero__eyebrow .icon { color: var(--orange); }
.hero h1 { margin-bottom: 1rem; }
.hero h1 .accent { background: var(--rainbow); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero__lead { font-size: 1.2rem; color: var(--ink-soft); max-width: 36rem; margin-bottom: 1.75rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .9rem; align-items: center; }
.hero__trust { display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid rgba(31, 60, 136, .12); font-weight: 700; font-size: .95rem; color: var(--navy); }
.hero__trust span { display: inline-flex; align-items: center; gap: .4rem; }
.hero__trust .icon { color: var(--green); }
.hero__visual { position: relative; width: 100%; min-width: 0; }
.hero__image {
  display: block; width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover;
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
}
.hero__sticker { position: absolute; background: #fff; border-radius: 16px; padding: .75rem 1rem; box-shadow: var(--shadow); font-family: var(--font-head); font-weight: 600; color: var(--navy); display: flex; align-items: center; gap: .6rem; }
.hero__sticker--1 { left: -1.25rem; bottom: 2rem; transform: rotate(-3deg); }
.hero__sticker--2 { right: -.75rem; top: 1.5rem; transform: rotate(3deg); }
.hero__sticker .icon { width: 1.6rem; height: 1.6rem; }
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { max-width: 520px; width: 100%; margin-inline: auto; }
  .hero__sticker--1 { left: .25rem; }
  .hero__sticker--2 { right: .25rem; }
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero { position: relative; overflow: hidden; padding: clamp(2.5rem, 6vw, 4.5rem) 0; color: #fff; background: var(--navy); }
.page-hero::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 85% 20%, rgba(255, 255, 255, .18), transparent 40%), radial-gradient(circle at 10% 90%, rgba(247, 148, 29, .35), transparent 45%); pointer-events: none; }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; margin-bottom: .5rem; }
.page-hero__lead { font-size: 1.2rem; max-width: 42rem; color: #dfe8fb; margin: 0; }
.breadcrumb { font-size: .9rem; color: #c7d5f5; margin-bottom: 1rem; }
.breadcrumb a { color: #fff; }
.page-hero--red { background: linear-gradient(135deg, #c92a21, var(--red)); }
.page-hero--orange { background: linear-gradient(135deg, #d97a0c, var(--orange)); }
.page-hero--green { background: linear-gradient(135deg, #2b8a28, var(--green)); }
.page-hero--blue { background: linear-gradient(135deg, var(--navy), var(--blue)); }
.page-hero--purple { background: linear-gradient(135deg, #6b3f91, var(--purple)); }

/* ---------- Sections ---------- */
.section { padding: clamp(3rem, 6vw, 5.5rem) 0; }
.section--tight { padding: clamp(2rem, 4vw, 3.5rem) 0; }
.section--cream { background: var(--cream); }
.section--sky { background: var(--sky); }
.section--mint { background: var(--mint); }
.section--lilac { background: var(--lilac); }
.section__head { max-width: 46rem; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section__head--center { margin-inline: auto; text-align: center; }
.eyebrow { display: inline-block; font-family: var(--font-head); font-weight: 600; font-size: .9rem; letter-spacing: .08em; text-transform: uppercase; color: var(--orange); margin-bottom: .6rem; }
.eyebrow--red { color: var(--red); }
.eyebrow--green { color: var(--green); }
.eyebrow--blue { color: var(--blue); }
.eyebrow--purple { color: var(--purple); }
.lead { font-size: 1.2rem; color: var(--ink-soft); }
.prose { max-width: 46rem; }
.prose h2, .prose h3 { margin-top: 1.6em; }
.prose h2:first-child, .prose h3:first-child { margin-top: 0; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split--reverse > :first-child { order: 2; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } .split--reverse > :first-child { order: 0; } }

.grid { display: grid; gap: 1.5rem; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1000px) { .grid--4 { grid-template-columns: repeat(2, 1fr); } .grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; } }

/* ---------- Cards ---------- */
.card {
  background: #fff; border-radius: var(--radius); padding: 1.75rem; box-shadow: var(--shadow-sm);
  border: 1px solid var(--line); position: relative; overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 6px; background: var(--rainbow); }
.card--red::before { background: var(--red); }
.card--orange::before { background: var(--orange); }
.card--yellow::before { background: var(--yellow); }
.card--green::before { background: var(--green); }
.card--blue::before { background: var(--blue); }
.card--purple::before { background: var(--purple); }
.card h3 { margin-top: .25rem; }
.card p:last-child { margin-bottom: 0; }
.card__icon {
  width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center; margin-bottom: 1rem;
  background: var(--sky); color: var(--navy);
}
.card__icon .icon { width: 30px; height: 30px; }
.card--red .card__icon { background: #fde7e5; color: var(--red); }
.card--orange .card__icon { background: #fff0dc; color: #d97a0c; }
.card--yellow .card__icon { background: #fff8d1; color: #b89600; }
.card--green .card__icon { background: #e4f6e3; color: var(--green); }
.card--blue .card__icon { background: #e2eefb; color: var(--blue); }
.card--purple .card__icon { background: #efe6f7; color: var(--purple); }
.card--link { text-decoration: none; color: inherit; display: block; }
.card--link .card__more { font-family: var(--font-head); font-weight: 600; color: var(--navy); display: inline-flex; align-items: center; gap: .4rem; margin-top: 1rem; }
.card--link:hover .card__more { color: var(--blue); }

/* Service tiles on the home page */
.service-tile { display: grid; grid-template-rows: auto 1fr; padding: 0; }
.service-tile::before { display: none; }
.service-tile .photo { border-radius: 0; }
.service-tile__body { padding: 1.75rem; }

/* ---------- Checklists / feature lists ---------- */
.checklist { list-style: none; padding: 0; margin: 0 0 1.25rem; display: grid; gap: .7rem; }
.checklist li { display: flex; gap: .7rem; align-items: flex-start; }
.checklist .icon { color: var(--green); width: 1.5rem; height: 1.5rem; margin-top: .1rem; }
.checklist--2col { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 620px) { .checklist--2col { grid-template-columns: 1fr; } }

.chips { display: flex; flex-wrap: wrap; gap: .6rem; padding: 0; margin: 0 0 1.5rem; list-style: none; }
.chips li { font-family: var(--font-head); font-weight: 600; padding: .5rem 1rem; border-radius: 999px; background: #fff; border: 2px solid var(--line); }
.chips li:nth-child(6n+1) { border-color: var(--red); color: #b3251d; }
.chips li:nth-child(6n+2) { border-color: var(--orange); color: #b8650a; }
.chips li:nth-child(6n+3) { border-color: var(--yellow); color: #8a7000; }
.chips li:nth-child(6n+4) { border-color: var(--green); color: #2b7f27; }
.chips li:nth-child(6n+5) { border-color: var(--blue); color: #235f9c; }
.chips li:nth-child(6n+6) { border-color: var(--purple); color: #6a4389; }

/* ---------- Promise strip ---------- */
.promise { background: var(--navy); color: #fff; padding: 1.25rem 0; }
.promise__inner { display: flex; flex-wrap: wrap; justify-content: center; gap: .75rem 2.5rem; font-family: var(--font-head); font-size: 1.15rem; font-weight: 600; }
.promise__inner span { display: inline-flex; align-items: center; gap: .5rem; }
.promise__inner .icon { width: 1.4rem; height: 1.4rem; }
.promise__inner span:nth-child(1) .icon { color: var(--red); }
.promise__inner span:nth-child(2) .icon { color: var(--yellow); }
.promise__inner span:nth-child(3) .icon { color: var(--green); }
.promise__inner span:nth-child(4) .icon { color: #8fc1ff; }

/* ---------- Quote banner ---------- */
.quote-banner { padding: 2.25rem 0; color: #fff; text-align: center; }
.quote-banner .container { display: flex; flex-direction: column; align-items: center; gap: .5rem; }
.quote-banner__icon { width: 2rem; height: 2rem; opacity: .85; }
.quote-banner__text { font-family: var(--font-head); font-size: clamp(1.3rem, 2.6vw, 1.85rem); font-weight: 600; margin: 0; max-width: 46rem; line-height: 1.3; }
.quote-banner--purple { background: linear-gradient(120deg, #6b3f91, var(--purple)); }
.quote-banner--blue { background: linear-gradient(120deg, var(--navy), var(--blue)); }
.quote-banner--green { background: linear-gradient(120deg, #2b8a28, var(--green)); }
.quote-banner--orange { background: linear-gradient(120deg, #d97a0c, var(--orange)); }
.quote-banner--red { background: linear-gradient(120deg, #c92a21, var(--red)); }

/* ---------- CTA ---------- */
.cta { background: var(--rainbow-soft); padding: clamp(3rem, 6vw, 4.5rem) 0; }
.cta__inner { background: var(--navy); color: #fff; border-radius: var(--radius-lg); padding: clamp(2rem, 4vw, 3.5rem); display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 2rem; box-shadow: var(--shadow-lg); }
.cta__heading { color: #fff; margin-bottom: .4rem; }
.cta__text { margin: 0; color: #dfe8fb; max-width: 34rem; font-size: 1.1rem; }
.cta__actions { display: flex; flex-direction: column; align-items: flex-start; gap: .9rem; }
.cta__phone { color: #fff; font-family: var(--font-head); font-weight: 600; font-size: 1.2rem; text-decoration: none; display: inline-flex; align-items: center; gap: .5rem; }
.cta__phone:hover { color: var(--yellow); }

/* ---------- Photo placeholders ---------- */
.photo {
  position: relative; width: 100%; border-radius: var(--radius); overflow: hidden;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .3rem;
  color: var(--navy); text-align: center; padding: 1rem;
  background: var(--rainbow-soft);
}
.photo--sky { background: linear-gradient(135deg, #d4e6fb, #e8dcf3); }
.photo--sun { background: linear-gradient(135deg, #fff5c2, #ffe6c7); }
.photo--mint { background: linear-gradient(135deg, #d6f3d5, #fff5c2); }
.photo--rose { background: linear-gradient(135deg, #ffd9d6, #e8dcf3); }
.photo__icon { width: 2.5rem; height: 2.5rem; opacity: .6; }
.photo__label { font-family: var(--font-head); font-weight: 600; font-size: 1.05rem; }
.photo__note { font-size: .8rem; opacity: .7; text-transform: uppercase; letter-spacing: .08em; font-weight: 700; }
.photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* ---------- Locations ---------- */
.location-card { padding: 0; display: grid; grid-template-columns: 1fr; }
.location-card::before { display: none; }
.location-card__map { aspect-ratio: 16/9; border: 0; width: 100%; display: block; background: var(--sky); }
.location-card__body { padding: 1.75rem; }
.location-card__badge { display: inline-flex; align-items: center; gap: .4rem; font-weight: 700; font-size: .9rem; padding: .3rem .8rem; border-radius: 999px; margin-bottom: .75rem; }
.location-card--blue .location-card__badge { background: #e2eefb; color: var(--blue); }
.location-card--green .location-card__badge { background: #e4f6e3; color: var(--green); }
.location-card address { color: var(--ink-soft); margin-bottom: 1rem; }

/* ---------- Trip / gallery grids ---------- */
.trip { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: center; padding: 2rem 0; border-bottom: 1px dashed var(--line); }
.trip:last-child { border-bottom: 0; }
.trip:nth-child(even) > :first-child { order: 2; }
.trip__icon { width: 60px; height: 60px; border-radius: 18px; display: grid; place-items: center; margin-bottom: 1rem; }
.trip__icon .icon { width: 32px; height: 32px; }
@media (max-width: 760px) { .trip { grid-template-columns: 1fr; } .trip:nth-child(even) > :first-child { order: 0; } }

.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.gallery-grid .photo { aspect-ratio: 1; padding: 0; }
@media (max-width: 760px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }

.notice { background: #fff8d1; border: 2px solid var(--yellow); border-radius: var(--radius); padding: 1.25rem 1.5rem; display: flex; gap: .9rem; align-items: flex-start; }
.notice .icon { color: #b89600; width: 1.8rem; height: 1.8rem; flex-shrink: 0; }
.notice p:last-child { margin: 0; }

/* ---------- Forms ---------- */
.form-card { background: #fff; border-radius: var(--radius-lg); padding: clamp(1.5rem, 4vw, 2.75rem); box-shadow: var(--shadow); border: 1px solid var(--line); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem 1.5rem; }
.form-grid .field--full { grid-column: 1 / -1; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
.field label, .field .field__legend { display: block; font-weight: 700; margin-bottom: .4rem; color: var(--navy); }
.field .req { color: var(--red); }
.field input[type="text"], .field input[type="email"], .field input[type="tel"], .field input[type="number"], .field input[type="date"], .field select, .field textarea {
  width: 100%; font: inherit; padding: .8rem 1rem; border-radius: 12px; border: 2px solid var(--line); background: #fff; color: var(--ink);
  transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(47, 127, 209, .15); }
.field textarea { min-height: 140px; resize: vertical; }
.field__hint { font-size: .9rem; color: var(--ink-soft); margin: .35rem 0 0; }
.field__error { color: #b3251d; font-weight: 700; font-size: .92rem; margin: .4rem 0 0; }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: var(--red); }
.was-validated .field input:invalid, .was-validated .field select:invalid, .was-validated .field textarea:invalid { border-color: var(--red); }
fieldset { border: 0; padding: 0; margin: 0; min-width: 0; }
.choice-group { display: flex; flex-wrap: wrap; gap: .75rem; }
.choice { position: relative; }
.choice input { position: absolute; opacity: 0; inset: 0; width: 100%; height: 100%; cursor: pointer; margin: 0; }
.choice span { display: inline-block; padding: .7rem 1.25rem; border-radius: 999px; border: 2px solid var(--line); font-weight: 700; transition: all .15s; }
.choice input:checked + span { background: var(--navy); border-color: var(--navy); color: #fff; }
.choice input:focus-visible + span { outline: 3px solid var(--orange); outline-offset: 3px; }
.consent { display: flex; gap: .75rem; align-items: flex-start; font-size: .95rem; }
.consent input { width: 1.3rem; height: 1.3rem; margin-top: .2rem; accent-color: var(--navy); flex-shrink: 0; }
.honeypot { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.alert { border-radius: var(--radius); padding: 1.25rem 1.5rem; margin-bottom: 1.5rem; display: flex; gap: .9rem; align-items: flex-start; }
.alert .icon { width: 1.8rem; height: 1.8rem; flex-shrink: 0; }
.alert--success { background: #e4f6e3; border: 2px solid var(--green); color: #1f5e1c; }
.alert--error { background: #fde7e5; border: 2px solid var(--red); color: #8f1d16; }
.alert p:last-child { margin: 0; }

.enquiry-layout { display: grid; grid-template-columns: 1.7fr 1fr; gap: clamp(1.5rem, 3vw, 3rem); align-items: start; }
@media (max-width: 960px) { .enquiry-layout { grid-template-columns: 1fr; } }
.contact-aside .card { margin-bottom: 1.25rem; }
.contact-aside a { text-decoration: none; font-weight: 700; display: inline-flex; align-items: center; gap: .5rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-dark); color: #d6def2; margin-top: 0; }
.site-footer a { color: #fff; }
.site-footer a:hover { color: var(--yellow); }
.site-footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1.2fr 1.2fr; gap: 2.5rem; padding: clamp(2.5rem, 5vw, 4rem) 0 2.5rem; }
@media (max-width: 960px) { .site-footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .site-footer__grid { grid-template-columns: 1fr; } }
.site-footer__brand img { background: #fff; padding: .75rem; border-radius: 14px; margin-bottom: 1rem; width: 180px; }
.site-footer__trust { font-weight: 700; color: #fff; line-height: 1.9; }
.site-footer__trust .icon { color: var(--green); }
.site-footer__heading { color: #fff; font-size: 1.15rem; margin-bottom: 1rem; }
.site-footer__links, .site-footer__contact { list-style: none; margin: 0; padding: 0; display: grid; gap: .4rem; }
.site-footer__links a, .site-footer__contact a { text-decoration: none; }
.site-footer__contact { margin-bottom: 1.25rem; }
.site-footer__contact a { display: inline-flex; align-items: center; gap: .5rem; }
.site-footer__address { margin-bottom: 1rem; line-height: 1.5; }
.site-footer__address strong { color: #fff; }
.site-footer__bottom { border-top: 1px solid rgba(255, 255, 255, .12); padding: 1rem 0; font-size: .9rem; }
.site-footer__bottom-inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: .5rem 1.5rem; }
.site-footer__bottom p { margin: 0; }

/* ---------- Back to top (mobile) ---------- */
.back-to-top {
  position: fixed; right: 1rem; bottom: 1rem; z-index: 80;
  display: none; place-items: center;
  width: 3rem; height: 3rem; border-radius: 50%;
  background: var(--navy); color: #fff; text-decoration: none;
  box-shadow: 0 8px 20px rgba(31, 60, 136, .35);
}
.back-to-top .icon { width: 1.4rem; height: 1.4rem; }
.back-to-top:hover { color: #fff; background: var(--navy-dark); }
@media (max-width: 1100px) {
  .back-to-top.is-visible { display: grid; }
  body.nav-open .back-to-top { display: none; }
}

/* ---------- Reveal animation ---------- */
[data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
[data-reveal].is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .btn, .card { transition: none; }
}

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-2 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }
.stack > * + * { margin-top: 1.25rem; }

/* ---------- Temporary "coming soon" holding page ---------- */
.soon-body {
  min-height: 100vh;
  display: flex; flex-direction: column;
  background: var(--rainbow-soft);
  background-attachment: fixed;
}
.soon {
  flex: 1;
  display: flex; flex-direction: column; align-items: center;
  gap: 1.5rem;
  padding: clamp(1.5rem, 5vw, 4rem) 1.25rem;
}
.soon__card {
  /* auto margins centre the card but collapse when it is taller than the
     viewport, so the top padding survives on short screens. */
  margin: auto;
  width: min(760px, 100%);
  background: var(--paper);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: clamp(1.75rem, 5vw, 3.25rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.soon__card::before {
  content: ""; position: absolute; inset: 0 0 auto; height: 6px; background: var(--rainbow);
}
.soon__logo { width: min(320px, 78%); height: auto; margin: .5rem auto 1.25rem; }
.soon__eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  margin: 0 0 1rem; padding: .4rem 1rem;
  font-family: var(--font-head); font-weight: 600; font-size: .95rem;
  color: var(--navy); background: var(--sky); border-radius: 999px;
}
.soon__eyebrow .icon { width: 1.1rem; height: 1.1rem; color: var(--orange); }
.soon__title { margin: 0 0 1rem; font-size: clamp(1.5rem, 4vw, 2.25rem); line-height: 1.2; }
.soon__lead { margin: 0 auto 1.75rem; max-width: 52ch; color: var(--ink-soft); }
.soon__actions { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; }

.soon__places {
  list-style: none; margin: 2rem 0 0; padding: 0;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: .75rem;
}
.soon__place {
  display: flex; flex-direction: column; gap: .15rem;
  padding: .9rem 1rem; border-radius: var(--radius);
  background: var(--sky); border-left: 5px solid var(--blue);
  text-align: left;
}
.soon__place--green { background: var(--mint); border-left-color: var(--green); }
.soon__place-name {
  display: flex; align-items: center; gap: .45rem;
  font-family: var(--font-head); font-weight: 600; color: var(--navy);
}
.soon__place-name .icon { width: 1.1rem; height: 1.1rem; flex: none; }
.soon__place-town { font-size: .9rem; color: var(--ink-soft); padding-left: 1.55rem; }

.soon__hours {
  display: flex; flex-wrap: wrap; gap: .5rem 1.75rem; justify-content: center;
  margin: 1.5rem 0 0; color: var(--ink-soft);
}
.soon__hours span { display: inline-flex; align-items: center; gap: .45rem; }
.soon__hours .icon { width: 1.15rem; height: 1.15rem; color: var(--orange); }
.soon__hours strong { color: var(--ink); }

.soon__badge {
  display: inline-flex; align-items: center; gap: .5rem;
  margin: 1.75rem 0 0; font-size: .92rem; color: var(--ink-soft);
}
.soon__badge .icon { width: 1.15rem; height: 1.15rem; color: var(--green); }
.soon__foot { margin: 0; font-size: .9rem; color: var(--ink-soft); }

@media (max-width: 560px) {
  .soon__places { grid-template-columns: 1fr; }
  .soon__actions .btn { width: 100%; justify-content: center; }
}

/* ---------- reCAPTCHA ---------- */
/* Google allows hiding the badge as long as the notice below the form is shown. */
.grecaptcha-badge { visibility: hidden; }
.recaptcha-note { margin: .75rem 0 0; font-size: .85rem; color: var(--ink-soft); }
