/* ==========================================================================
   May's Play Days — Childminding in Bolton
   style.css
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design tokens
   -------------------------------------------------------------------------- */
:root {
  /* Brand */
  --pink:        #ff176f;  /* brand accent: large headings, icons, decoration */
  --pink-ink:    #d4004f;  /* accessible pink for body-size text, links, buttons (5.3:1 on white) */
  --pink-dark:   #b00042;
  --pink-soft:   #fff0f2;
  --pink-softer: #fff7f8;
  --green:       #16813b;  /* dark green */
  --green-leaf:  #4b8b3b;  /* leaf green */
  --green-dark:  #0f6b2f;
  --green-soft:  #f2f7e9;
  --green-softer:#f8fbf2;

  /* Neutrals */
  --cream:       #fffaf5;  /* warm cream */
  --cream-2:     #fff6ef;
  --ink:         #17223b;  /* dark navy body text */
  --ink-soft:    #5a6274;
  --white:       #ffffff;
  --line:        #f2e6ea;

  /* Type */
  --font-body:   'Nunito Sans', 'Segoe UI', system-ui, sans-serif;
  --font-head:   'Nunito', 'Nunito Sans', system-ui, sans-serif;
  --font-script: 'Dancing Script', 'Segoe Script', cursive;

  /* Spacing scale (4/8pt rhythm) */
  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-5: 24px;
  --sp-6: 32px;
  --sp-7: 48px;
  --sp-8: 64px;

  /* Radius */
  --r-sm: 12px;
  --r-md: 16px;
  --r-lg: 20px;
  --r-xl: 24px;

  /* Elevation — deliberately subtle */
  --shadow-sm: 0 2px 10px rgba(23, 34, 59, .04);
  --shadow-md: 0 4px 20px rgba(23, 34, 59, .06);
  --shadow-lg: 0 10px 34px rgba(23, 34, 59, .08);

  /* Layout */
  --wrap: 1440px;
  --gutter: 24px;
  --gap: 16px;

  /* Motion */
  --ease-out: cubic-bezier(.22, .61, .36, 1);
  --dur: 220ms;

  /* Layers */
  --z-nav: 60;
  --z-float: 70;
  --z-skip: 100;
}

/* --------------------------------------------------------------------------
   2. Base
   -------------------------------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--pink-ink); text-decoration: none; }
a:hover { color: var(--pink-dark); text-decoration: underline; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.2;
  margin: 0 0 .5em;
  color: var(--ink);
}

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

/* Visible focus for keyboard users on every interactive element */
:focus-visible {
  outline: 3px solid var(--pink-ink);
  outline-offset: 3px;
  border-radius: 6px;
}

.skip-link {
  position: absolute;
  left: 50%;
  top: -80px;
  transform: translateX(-50%);
  z-index: var(--z-skip);
  padding: 12px 22px;
  background: var(--pink-ink);
  color: #fff;
  font-weight: 700;
  border-radius: 0 0 var(--r-md) var(--r-md);
  transition: top var(--dur) var(--ease-out);
}
.skip-link:focus { top: 0; color: #fff; text-decoration: none; }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.script {
  font-family: var(--font-script);
  font-weight: 700;
  color: var(--pink);
  line-height: 1.15;
}
.script.green { color: var(--green); }

.eyebrow {
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--green);
  margin-bottom: .6rem;
}
.eyebrow.pink { color: var(--pink-ink); }

.lead { font-size: 1.06rem; color: var(--ink-soft); }
.center { text-align: center; }

section { padding: var(--sp-6) 0; }
section.tight { padding: var(--sp-5) 0; }
section.flush-bottom { padding-bottom: 0; }
.bg-pink  { background: var(--pink-softer); }
.bg-green { background: var(--green-softer); }
.bg-cream { background: var(--cream-2); }

.section-head { max-width: 780px; margin: 0 auto var(--sp-5); text-align: center; }
.section-head .script { font-size: clamp(1.9rem, 3.4vw, 2.7rem); margin-bottom: .2em; }
.section-head p { color: var(--ink-soft); }

/* --------------------------------------------------------------------------
   3. Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;             /* comfortable touch target */
  padding: 12px 26px;
  border: 0;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  background: var(--pink-ink);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: background var(--dur) var(--ease-out), transform var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out);
}
.btn:hover { color: var(--white); background: var(--pink-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); text-decoration: none; }
.btn:active { transform: translateY(0) scale(.98); }
.btn[disabled], .btn[aria-disabled="true"] { opacity: .45; pointer-events: none; }
.btn--green { background: var(--green); }
.btn--green:hover { background: var(--green-dark); }
.btn--ghost { background: var(--white); color: var(--pink-ink); box-shadow: inset 0 0 0 2px var(--pink-ink); }
.btn--ghost:hover { background: var(--pink-ink); color: var(--white); }
.btn--sm { min-height: 40px; padding: 8px 16px; font-size: .86rem; }
.btn--grey { background: #6f7689; }
.btn--grey:hover { background: #5a6072; }
.btn--danger { background: #b3261e; }
.btn--danger:hover { background: #8f1d17; }
.btn svg { width: 20px; height: 20px; fill: currentColor; flex: none; }
.btn svg.stroke { fill: none; stroke: currentColor; }

.btn-row { display: flex; flex-wrap: wrap; gap: var(--sp-3); }

/* --------------------------------------------------------------------------
   4. Header
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-nav);
  background: rgba(255, 250, 245, .97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: var(--sp-2) var(--sp-6);
  padding: var(--sp-3) 0;
}

.brand { display: flex; align-items: center; gap: var(--sp-3); grid-row: span 2; }
.brand:hover { text-decoration: none; }
.brand img { width: 68px; height: 68px; flex: none; }
.brand > span,
.brand__name,
.brand__sub,
.brand__tag { display: block; }
.brand__name {
  font-family: var(--font-script);
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--pink);
  line-height: 1;
}
.brand__sub {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: .05em;
  color: var(--green);
  text-transform: uppercase;
  line-height: 1.15;
}
.brand__tag {
  font-size: .55rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 700;
}

.header-top { display: flex; align-items: center; justify-content: space-between; gap: var(--sp-5); }
.header-tag {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  font-family: var(--font-script);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--pink);
}
.header-tag svg { width: 18px; height: 18px; fill: var(--pink); }
.header-hearts { display: flex; align-items: center; gap: 10px; }
.header-hearts svg { width: 26px; height: 26px; }

.header-bottom { display: flex; align-items: center; gap: var(--sp-3); }

.nav { display: flex; align-items: center; gap: var(--sp-3); flex: 1; }
.nav__list {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  list-style: none;
  margin: 0;
  padding: 5px;
  background: var(--pink-soft);
  border-radius: 999px;
}
.nav__list a {
  display: block;
  padding: 11px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .95rem;
  color: var(--ink);
  white-space: nowrap;
  transition: background var(--dur) var(--ease-out), color var(--dur) var(--ease-out);
}
.nav__list a:hover { background: rgba(255, 23, 111, .12); color: var(--pink-dark); text-decoration: none; }
.nav__list a[aria-current="page"] { background: var(--pink); color: var(--white); }
.nav > .btn { margin-left: auto; }

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: var(--r-sm);
  background: var(--pink-soft);
  cursor: pointer;
  padding: 13px;
}
.nav-toggle span {
  display: block;
  height: 2.5px;
  border-radius: 2px;
  background: var(--pink-ink);
  margin: 4px 0;
  transition: transform var(--dur) var(--ease-out), opacity var(--dur) var(--ease-out);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* --------------------------------------------------------------------------
   5. Hero
   -------------------------------------------------------------------------- */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: stretch;
  background: linear-gradient(112deg, var(--cream) 0%, var(--pink-soft) 52%, var(--green-soft) 100%);
}
.hero__text {
  padding: var(--sp-6) var(--sp-7) var(--sp-6) max(var(--gutter), calc((100vw - var(--wrap)) / 2 + var(--gutter)));
  align-self: center;
}
.hero h1 {
  font-size: clamp(2.3rem, 4.5vw, 4.25rem);
  font-weight: 900;
  letter-spacing: -.015em;
  margin-bottom: .32em;
}
.hero h1 .pink { color: var(--pink); }
.hero h1 .green { color: var(--green); }
.hero .lead { max-width: 30rem; }

.hero__media { position: relative; overflow: hidden; min-height: 420px; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
/* Soft gradient overlay so the photo melts into the copy column */
.hero__media::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 240, 242, .95) 0%, rgba(255, 240, 242, .5) 11%, rgba(255, 250, 245, .1) 28%, rgba(255, 250, 245, 0) 46%),
    linear-gradient(200deg, rgba(255, 23, 111, .08) 0%, rgba(255, 23, 111, 0) 44%, rgba(22, 129, 59, .12) 100%);
}
.hero__media::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 30%;
  background: linear-gradient(0deg, rgba(255, 247, 248, .8), rgba(255, 247, 248, 0));
}

/* Inner-page hero */
.page-hero { padding: var(--sp-6) 0 var(--sp-5); }
.page-hero__grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: var(--sp-6); align-items: center; }
.page-hero__grid.with-rail { grid-template-columns: 1.05fr 1fr .55fr; }
.page-hero h1 {
  font-family: var(--font-script);
  font-size: clamp(2.6rem, 5.6vw, 4rem);
  color: var(--pink);
  margin-bottom: .08em;
}
.page-hero h2.sub {
  font-family: var(--font-script);
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  color: var(--green);
  font-weight: 700;
  margin-bottom: .6em;
}
.page-hero__media { position: relative; border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-lg); }
.page-hero__media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.page-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(200deg, rgba(255, 23, 111, .08), rgba(255, 23, 111, 0) 45%, rgba(22, 129, 59, .12));
}
.page-hero__rail { display: grid; gap: var(--sp-4); align-content: center; }

/* --------------------------------------------------------------------------
   6. Credential badges, pills, blobs
   -------------------------------------------------------------------------- */
.badges {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--sp-3);
  margin: var(--sp-5) 0;
  padding: 0;
  list-style: none;
}
.badge {
  background: var(--white);
  border-radius: var(--r-md);
  padding: var(--sp-3) 10px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.badge svg { width: 30px; height: 30px; margin: 0 auto 8px; display: block; }
.badge span { display: block; font-family: var(--font-head); font-weight: 800; font-size: .85rem; line-height: 1.25; }

.pill-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-weight: 800;
  font-size: .88rem;
}

.blob {
  display: grid;
  place-content: center;
  text-align: center;
  border-radius: 50%;
  aspect-ratio: 1;
  background: var(--green-soft);
  font-family: var(--font-script);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--green);
  padding: var(--sp-5);
  line-height: 1.45;
}
.blob.pink { background: var(--pink-soft); color: var(--pink-ink); }

.note-paint {
  background: var(--pink-soft);
  border-radius: 40% 60% 55% 45% / 55% 45% 60% 40%;
  padding: var(--sp-5);
  text-align: center;
  font-family: var(--font-script);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--pink-ink);
  line-height: 1.35;
}

.ofsted-chip {
  display: inline-grid;
  place-items: center;
  padding: 9px 14px;
  border-radius: 8px;
  background: #16255c;
  color: #fff;
  text-align: center;
  line-height: 1.15;
  flex: none;
}
.ofsted-chip b { font-family: var(--font-head); font-size: .95rem; }
.ofsted-chip small { font-size: .62rem; opacity: .9; }
.ofsted-chip .stars-y { color: #ffd23f; font-size: .7rem; letter-spacing: 1px; }

/* --------------------------------------------------------------------------
   7. Benefits strip
   -------------------------------------------------------------------------- */
.features { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: var(--sp-5); text-align: center; }
.features--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.feature svg { width: 46px; height: 46px; margin: 0 auto var(--sp-3); display: block; }
.feature h3 { font-size: 1.05rem; margin-bottom: .35em; }
.feature p { font-size: .93rem; color: var(--ink-soft); }

/* --------------------------------------------------------------------------
   8. Cards, panels, grids
   -------------------------------------------------------------------------- */
.grid { display: grid; gap: var(--gap); }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

/* Home: activities + testimonial + CTA */
.grid-activities { grid-template-columns: 1.5fr 1fr 1fr; align-items: start; }
/* Qualification badges inside a panel */
.badges--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); margin: 0; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-6); align-items: start; }
.split--wide-left  { grid-template-columns: 1.35fr 1fr; }
.split--wide-right { grid-template-columns: 1fr 1.25fr; }

.card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: var(--sp-5);
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out);
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.card svg { width: 40px; height: 40px; margin-bottom: var(--sp-3); }
.card h3 { font-size: 1.08rem; }
.card p { font-size: .94rem; color: var(--ink-soft); margin: 0; }
.card.center svg { margin-inline: auto; }

.panel { border-radius: var(--r-xl); padding: var(--sp-5); }
.panel--pink  { background: var(--pink-soft); }
.panel--green { background: var(--green-soft); }
.panel--white { background: var(--white); box-shadow: var(--shadow-sm); }
.panel .script { font-size: clamp(1.4rem, 2.5vw, 1.9rem); margin-bottom: .3em; }
.panel p, .quote-card p, .quote-card blockquote { font-size: .95rem; }

.info {
  display: flex;
  gap: var(--sp-4);
  background: var(--white);
  border-radius: var(--r-md);
  padding: var(--sp-4);
  box-shadow: var(--shadow-sm);
}
.info svg { width: 34px; height: 34px; flex: none; }
.info h3 { font-size: 1rem; margin-bottom: .2em; }
.info p { font-size: .92rem; color: var(--ink-soft); margin: 0; }

.ticks { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--sp-3); }
.ticks li { display: flex; align-items: flex-start; gap: 11px; font-weight: 700; font-size: .96rem; }
.ticks li::before {
  content: "";
  flex: none;
  width: 22px; height: 22px;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--green) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/13px no-repeat;
}

.eyfs { display: grid; gap: var(--sp-3); }
.eyfs__item { display: flex; gap: var(--sp-3); align-items: flex-start; background: var(--white); border-radius: var(--r-md); padding: var(--sp-3) var(--sp-4); }
.eyfs__item svg { width: 28px; height: 28px; flex: none; margin-top: 2px; }
.eyfs__item h4 { font-size: .97rem; margin: 0 0 .15em; }
.eyfs__item p { font-size: .87rem; color: var(--ink-soft); margin: 0; }

/* --------------------------------------------------------------------------
   9. Activity circles & photo cards
   -------------------------------------------------------------------------- */
.thumbs { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: var(--sp-5); text-align: center; }
.thumbs--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.thumb { display: block; color: inherit; }
.thumb:hover { text-decoration: none; }
.thumb img {
  width: 100%;
  aspect-ratio: 1;
  height: auto;
  object-fit: cover;
  border-radius: 50%;
  border: 5px solid var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease-out);
}
.thumb:hover img { transform: scale(1.04); }
.thumb span { display: block; margin-top: var(--sp-3); font-family: var(--font-head); font-weight: 800; font-size: .93rem; }

.photo-card { position: relative; border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-sm); background: var(--white); margin: 0; }
.photo-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.photo-card figcaption {
  padding: var(--sp-3);
  text-align: center;
  background: var(--green-soft);
  font-family: var(--font-script);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--green);
}
.photo-card--overlay { display: block; height: 100%; }
.photo-card--overlay img { aspect-ratio: auto; height: 100%; min-height: 240px; }
.photo-card--overlay figcaption {
  position: absolute;
  top: var(--sp-4);
  right: var(--sp-4);
  max-width: 58%;
  padding: 0;
  background: none;
  color: var(--ink);
  font-size: 1.45rem;
  line-height: 1.25;
  text-align: right;
  text-shadow: 0 1px 10px rgba(255, 255, 255, .95), 0 0 22px rgba(255, 255, 255, .92);
}

/* --------------------------------------------------------------------------
   10. Testimonials & quote ribbon
   -------------------------------------------------------------------------- */
.quote-card { background: var(--green-soft); border-radius: var(--r-xl); padding: var(--sp-5); }
.quote-card.pink { background: var(--pink-soft); }
.quote-card blockquote { margin: 0 0 var(--sp-3); }
.stars { color: var(--pink); letter-spacing: 3px; font-size: 1.15rem; margin: 0; }
.quote-card cite { display: block; margin-top: 8px; font-style: normal; font-weight: 800; color: var(--ink-soft); font-size: .9rem; }

.ribbon-wrap { display: grid; grid-template-columns: 1fr minmax(0, 880px) 1fr; align-items: center; gap: var(--sp-3); }
.ribbon { background: var(--pink-soft); border-radius: 46% 54% 52% 48% / 62% 38% 62% 38%; padding: var(--sp-6) var(--sp-6); text-align: center; }
.ribbon p {
  font-family: var(--font-script);
  font-weight: 700;
  font-size: clamp(1.4rem, 3.1vw, 2.15rem);
  color: var(--pink);
  margin: 0;
  line-height: 1.35;
}
.leaf-art { width: 100%; max-width: 200px; height: auto; }
.leaf-art.right { margin-left: auto; }

.deco-rainbow { width: 190px; height: auto; }
.deco-sun { width: 96px; height: auto; }
.deco-house { width: 150px; height: auto; }

/* --------------------------------------------------------------------------
   11. Contact & forms
   -------------------------------------------------------------------------- */
.contact-lines { display: grid; gap: 2px; }
.contact-line { display: flex; align-items: center; gap: var(--sp-4); padding: var(--sp-3) 2px; }
.contact-line svg { width: 32px; height: 32px; flex: none; }
.contact-line a,
.contact-line strong { font-family: var(--font-head); font-size: 1.1rem; font-weight: 800; color: var(--ink); word-break: break-word; }
.contact-line a:hover { color: var(--pink-ink); }
.contact-line small { display: block; font-weight: 500; color: var(--ink-soft); font-size: .86rem; }

form .field { margin-bottom: var(--sp-4); }
form label { display: block; font-size: .87rem; font-weight: 800; margin-bottom: 6px; color: var(--ink); }
form label .req { color: var(--pink-ink); }
form input,
form select,
form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 15px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--white);
  border: 1.5px solid #e3d8dd;
  border-radius: var(--r-sm);
  transition: border-color var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out);
}
form input:focus,
form select:focus,
form textarea:focus { outline: none; border-color: var(--pink-ink); box-shadow: 0 0 0 4px rgba(212, 0, 79, .14); }
form textarea { min-height: 128px; resize: vertical; }
form .field.has-error input,
form .field.has-error select,
form .field.has-error textarea { border-color: #b3261e; }
.field-error { display: none; margin: 6px 0 0; font-size: .84rem; font-weight: 700; color: #b3261e; }
.field.has-error .field-error { display: block; }
.field-hint { margin: 6px 0 0; font-size: .82rem; color: var(--ink-soft); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-3); }

.form-note { margin-top: var(--sp-4); padding: var(--sp-3) var(--sp-4); border-radius: var(--r-sm); font-size: .92rem; font-weight: 700; display: none; }
.form-note.is-visible { display: block; }
.form-note.ok { background: var(--green-soft); color: var(--green-dark); }
.form-note.err { background: #fbe5e4; color: #8f1d17; }

.map-card { border-radius: var(--r-md); overflow: hidden; border: 1px solid var(--line); }
.map-card iframe { display: block; width: 100%; height: 215px; border: 0; }

/* --------------------------------------------------------------------------
   12. Reviews & admin
   -------------------------------------------------------------------------- */
.review-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--gap); }
.review { background: var(--white); border-radius: var(--r-xl); padding: var(--sp-5); box-shadow: var(--shadow-sm); }
.review__stars { color: var(--pink); letter-spacing: 2px; font-size: 1.05rem; margin: 0 0 8px; }
.review blockquote { margin: 0; font-size: .95rem; }
.review__meta { margin-top: var(--sp-3); font-size: .85rem; font-weight: 800; color: var(--ink-soft); }
.review__meta span { font-weight: 500; }
.empty-note { grid-column: 1 / -1; padding: var(--sp-5); text-align: center; border-radius: var(--r-xl); background: var(--pink-softer); color: var(--ink-soft); }

.rating { display: flex; flex-direction: row-reverse; justify-content: flex-end; gap: var(--sp-1); }
.rating input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.rating label { font-size: 2rem; line-height: 1; color: #e8d9df; cursor: pointer; margin: 0; padding: 0 2px; transition: color .15s var(--ease-out); }
.rating input:checked ~ label,
.rating label:hover,
.rating label:hover ~ label { color: var(--pink); }
.rating input:focus-visible + label { outline: 3px solid var(--pink-ink); outline-offset: 2px; border-radius: 4px; }

.admin-page { background: var(--cream-2); min-height: 100vh; }
.login-card { max-width: 440px; margin: 8vh auto; }
.admin-bar { display: flex; flex-wrap: wrap; gap: var(--sp-3); align-items: center; justify-content: space-between; margin-bottom: var(--sp-5); }
.stats { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: var(--sp-3); margin-bottom: var(--sp-5); }
.stat { background: var(--white); border-radius: var(--r-md); padding: var(--sp-4); box-shadow: var(--shadow-sm); }
.stat b { display: block; font-family: var(--font-head); font-size: 1.9rem; color: var(--pink-ink); line-height: 1.1; }
.stat span { font-size: .84rem; color: var(--ink-soft); font-weight: 700; }

.tag { display: inline-block; padding: 3px 11px; border-radius: 999px; font-size: .72rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.tag--pending  { background: #ffeec2; color: #6b4a00; }
.tag--approved { background: var(--green-soft); color: var(--green-dark); }
.tag--rejected { background: #fbe0de; color: #8f1d17; }

.admin-item { display: flex; flex-wrap: wrap; gap: var(--sp-4); justify-content: space-between; align-items: flex-start; background: var(--white); border-radius: var(--r-md); padding: var(--sp-4); margin-bottom: var(--sp-3); box-shadow: var(--shadow-sm); }
.admin-item__body { flex: 1 1 340px; }
.admin-item__body blockquote { margin: 8px 0 0; font-size: .94rem; }
.admin-item__actions { display: flex; flex-wrap: wrap; gap: var(--sp-2); align-items: flex-start; }

.banner { padding: var(--sp-3) var(--sp-4); border-radius: var(--r-md); font-size: .89rem; font-weight: 700; margin-bottom: var(--sp-4); }
.banner--warn  { background: #ffeec2; color: #6b4a00; }
.banner--info  { background: var(--green-soft); color: var(--green-dark); }
.banner--error { background: #fbe0de; color: #8f1d17; }

.admin-tabs { display: flex; gap: var(--sp-2); flex-wrap: wrap; margin-bottom: var(--sp-4); }
.admin-tabs button {
  border: 0;
  border-radius: 999px;
  min-height: 44px;
  padding: 9px 20px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: .9rem;
  background: var(--pink-soft);
  color: var(--ink);
  cursor: pointer;
}
.admin-tabs button[aria-selected="true"] { background: var(--pink-ink); color: #fff; }

/* --------------------------------------------------------------------------
   13. Hills & footer
   -------------------------------------------------------------------------- */
.cta-band { padding: 0 0 var(--sp-6); }
.cta-band__inner { background: var(--green-soft); border-radius: var(--r-xl); padding: var(--sp-7) var(--sp-6); text-align: center; }
.cta-band .script { font-size: clamp(1.7rem, 3.6vw, 2.3rem); }
.cta-band p { max-width: 560px; margin: 0 auto var(--sp-5); color: var(--ink-soft); }

.hills { position: relative; margin-top: -14px; line-height: 0; }
.hills__art { display: block; width: 100%; height: auto; }
.hills__leaf { position: absolute; bottom: 8px; width: clamp(90px, 14vw, 210px); height: auto; }
.hills__leaf.left  { left: 1%; }
.hills__leaf.right { right: 1%; }

.site-footer { background: var(--green); color: rgba(255, 255, 255, .95); }
.site-footer__inner { display: flex; align-items: center; justify-content: center; gap: var(--sp-5); padding: var(--sp-4) 0; }
.site-footer__inner > svg { width: 26px; height: 26px; fill: #fff; flex: none; }
.footer-items { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 6px 16px; font-size: .84rem; text-align: center; }
.footer-items a { color: #fff; }
.footer-items span::after { content: "|"; margin-left: 16px; opacity: .55; }
.footer-items span:last-child::after { content: ""; margin: 0; }

.wa-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: var(--z-float);
  width: 58px;
  height: 58px;
  display: grid;
  place-content: center;
  border-radius: 50%;
  background: #1da851;
  box-shadow: 0 8px 24px rgba(23, 34, 59, .22);
  transition: transform var(--dur) var(--ease-out);
}
.wa-float:hover { transform: scale(1.07); }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }

/* --------------------------------------------------------------------------
   13b. Mobile slider (benefits strip)
   Desktop keeps the grid; phones get a looping, swipeable carousel
   showing two items per slide.
   -------------------------------------------------------------------------- */
.slider-dots { display: none; }

@media (max-width: 620px) {
  .features--slider {
    display: flex;
    grid-template-columns: none;
    gap: 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin-inline: calc(-1 * var(--gutter));
    padding-inline: var(--gutter);
  }
  .features--slider::-webkit-scrollbar { display: none; }
  .features--slider > .feature {
    flex: 0 0 50%;
    min-width: 0;
    padding-inline: var(--sp-2);
    scroll-snap-align: start;
  }

  .slider-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--sp-2);
    margin-top: var(--sp-4);
  }
  .slider-dots button {
    width: 44px;              /* full touch target … */
    height: 44px;
    padding: 0;
    border: 0;
    background: none;
    cursor: pointer;
    display: grid;
    place-content: center;
  }
  .slider-dots button::before {
    content: "";               /* … with a small visible dot */
    display: block;
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: #f0d3dd;
    transition: width var(--dur) var(--ease-out), background var(--dur) var(--ease-out);
  }
  .slider-dots button[aria-current="true"]::before { width: 26px; background: var(--pink); }
}

@media (prefers-reduced-motion: reduce) {
  .features--slider { scroll-behavior: auto; }
}

/* --------------------------------------------------------------------------
   14. Motion
   -------------------------------------------------------------------------- */
.js .reveal { opacity: 0; transform: translateY(16px); transition: opacity .5s var(--ease-out), transform .5s var(--ease-out); }
.js .reveal.is-in { opacity: 1; transform: none; }

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

/* --------------------------------------------------------------------------
   15. Responsive — 1024 / 768 / 375
   -------------------------------------------------------------------------- */
@media (max-width: 1240px) {
  .header-tag { font-size: 1.2rem; }
  .nav__list a { padding: 10px 13px; font-size: .9rem; }
  .brand img { width: 58px; height: 58px; }
  .brand__name { font-size: 1.8rem; }
  .brand__sub { font-size: .92rem; }
  .page-hero__grid.with-rail { grid-template-columns: 1fr 1fr; }
  .page-hero__rail { grid-column: 1 / -1; grid-auto-flow: column; }
}

@media (max-width: 1024px) {
  :root { --gutter: 20px; }
  .features { grid-template-columns: repeat(3, 1fr); }
  .thumbs { grid-template-columns: repeat(3, 1fr); }
  .review-grid { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .hero h1 { font-size: clamp(2.1rem, 5vw, 3rem); }
}

/* The full nav no longer fits beside the logo below this width */
@media (max-width: 1080px) {
  .site-header__inner { grid-template-columns: 1fr auto; padding: var(--sp-3) 0; }
  .brand { grid-row: auto; }
  .header-top { display: none; }
  .nav-toggle { display: block; }
  .header-bottom {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    padding: var(--sp-3) var(--gutter) var(--sp-4);
    box-shadow: var(--shadow-md);
    display: none;
  }
  .header-bottom.is-open { display: block; }
  .nav { flex-direction: column; align-items: stretch; gap: var(--sp-3); }
  .nav__list { flex-direction: column; align-items: stretch; background: transparent; padding: 0; gap: 2px; }
  .nav__list a { padding: 14px 16px; border-radius: var(--r-sm); font-size: 1rem; }
  .nav > .btn { margin-left: 0; width: 100%; }

  /* Hero: text first, image second */
  .hero { grid-template-columns: 1fr; }
  .hero__text { padding: var(--sp-6) var(--gutter) var(--sp-5); order: 1; }
  .hero__media { order: 2; min-height: 0; }
  .hero__media img { aspect-ratio: 4/3; }
  .hero__media::before {
    background: linear-gradient(180deg, rgba(255, 240, 242, .5) 0%, rgba(255, 250, 245, 0) 26%),
                linear-gradient(200deg, rgba(255, 23, 111, .06), rgba(22, 129, 59, .1));
  }

  .page-hero__grid,
  .page-hero__grid.with-rail,
  .split, .split--wide-left, .split--wide-right,
  .grid-2, .grid-3, .grid-4,
  .grid-activities,
  .review-grid,
  .form-row { grid-template-columns: 1fr; }
  .page-hero__rail { grid-auto-flow: row; }

  .ribbon-wrap { grid-template-columns: 1fr; }
  .leaf-art { display: none; }
  section { padding: var(--sp-5) 0; }
}

@media (max-width: 620px) {
  .badges { grid-template-columns: repeat(2, 1fr); }
  .features, .features--4 { grid-template-columns: repeat(2, 1fr); }
  .thumbs, .thumbs--4 { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .panel, .cta-band__inner { padding: var(--sp-5) var(--sp-4); }
  .brand img { width: 50px; height: 50px; }
  .brand__name { font-size: 1.5rem; }
  .brand__sub { font-size: .8rem; }
  .brand__tag { font-size: .48rem; }
  .btn-row .btn { width: 100%; }
  .hills__leaf { display: none; }
  .footer-items { font-size: .78rem; gap: 4px 12px; }
  .footer-items span::after { margin-left: 12px; }
  .photo-card--overlay figcaption { font-size: 1.2rem; }
}
