/* ─────────────────────────────────────────────────────────────
   Little Legacies Academy
   Warm editorial minimalism. The brand is bright — blue, red,
   green, yellow — so the page itself stays quiet and lets the
   colour come from the photographs and small accents. A parent
   choosing childcare wants calm and legible, not confetti.
   ───────────────────────────────────────────────────────────── */

:root {
  /* Canvas — sampled from the client's own poster artwork */
  --bone:      #FFFDF1;
  --bone-2:    #FBF7E6;
  --white:     #FFFFFF;

  /* Ink — warm brown rather than black, to match the brand */
  --ink:       #3D2415;
  --ink-2:     #5C3A21;
  --muted:     #8B7461;
  --line:      rgba(61, 36, 21, 0.13);
  --line-soft: rgba(61, 36, 21, 0.07);

  /* Brand accents, deepened from the poster for text contrast */
  --blue:      #3E7F9C;
  --blue-ink:  #2C5D74;
  --red:       #CE4038;
  --red-ink:   #A32F29;
  --green:     #6E9634;
  --green-ink: #55742A;
  --yellow:    #E3A81B;
  --yellow-ink:#8A6100;

  /* Pale washes for tags and tinted sections */
  --blue-pale:   #E7F1F6;
  --red-pale:    #FBECEA;
  --green-pale:  #EFF3E5;
  --yellow-pale: #FCF3DC;

  --radius:    10px;
  --radius-lg: 16px;

  --wrap:      1180px;
  --gut:       clamp(1.25rem, 4vw, 2.5rem);
  --sec:       clamp(4rem, 3rem + 5vw, 7.5rem);

  --t-fast:    150ms;
  --t-norm:    280ms;
  --ease:      cubic-bezier(0.16, 1, 0.3, 1);

  --sans: 'Figtree', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --serif: 'Fraunces', Georgia, 'Times New Roman', serif;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
}

body {
  margin: 0;
  background: var(--bone);
  color: var(--ink-2);
  font-family: var(--sans);
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.0625rem);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, picture, svg { max-width: 100%; }
img { display: block; height: auto; }
picture { display: contents; }

h1, h2, h3 {
  font-family: var(--serif);
  color: var(--ink);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin: 0;
  font-optical-sizing: auto;
}

h1 { font-size: clamp(2.35rem, 1.55rem + 3.4vw, 4rem); }
h2 { font-size: clamp(1.9rem, 1.35rem + 2.4vw, 3.1rem); }
h3 { font-size: clamp(1.1rem, 1.02rem + 0.4vw, 1.3rem); line-height: 1.25; letter-spacing: -0.015em; }

h1 em, h2 em {
  font-style: italic;
  font-weight: 500;
  color: var(--red);
}

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

a { color: inherit; }

ul, ol { margin: 0; padding: 0; list-style: none; }

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

.sec { padding-block: var(--sec); }

.alt-sec {
  background: var(--bone-2);
  border-block: 1px solid var(--line-soft);
  padding-block: var(--sec);
}

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--ink);
  color: var(--bone);
  padding: 0.75rem 1.25rem;
  border-radius: 0 0 var(--radius) 0;
  font-weight: 600;
}
.skip:focus { left: 0; }

:where(a, button, summary, details):focus-visible {
  outline: 2.5px solid var(--blue);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ── Type helpers ────────────────────────────────────────────── */

.eyebrow {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 0.9rem;
}
.eyebrow.on-tint { color: rgba(255, 253, 241, 0.72); }

.lede {
  font-size: clamp(1.05rem, 1rem + 0.42vw, 1.28rem);
  line-height: 1.62;
  color: var(--ink-2);
  max-width: 40ch;
}

.sec-head { max-width: 46rem; margin-bottom: clamp(2.25rem, 1.5rem + 2.5vw, 3.5rem); }
.sec-head p:not(.eyebrow) { margin-top: 1.1rem; color: var(--muted); max-width: 44ch; }

.sec-more { margin-top: 2rem; }

.prose { max-width: 44rem; }
.prose h2 { margin: 2.75rem 0 1.1rem; }
.prose h2:first-child { margin-top: 0; }
.prose p { color: var(--ink-2); }

/* Tags — the one place pill shapes are allowed */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 999px;
  padding: 0.4rem 0.95rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 1.5rem;
  border: 1px solid transparent;
}
.tag-ic { width: 1rem; height: 1rem; }
.tag-red    { background: var(--red-pale);    color: var(--red-ink);    border-color: rgba(206, 64, 56, 0.18); }
.tag-blue   { background: var(--blue-pale);   color: var(--blue-ink);   border-color: rgba(62, 127, 156, 0.2); }
.tag-green  { background: var(--green-pale);  color: var(--green-ink);  border-color: rgba(110, 150, 52, 0.22); }
.tag-yellow { background: var(--yellow-pale); color: var(--yellow-ink); border-color: rgba(227, 168, 27, 0.28); }

.ic { width: 1.25rem; height: 1.25rem; flex: none; }

/* ── Buttons ─────────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0.7rem 1.15rem;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background-color var(--t-fast) ease,
              border-color var(--t-fast) ease,
              color var(--t-fast) ease,
              transform var(--t-fast) ease;
}
.btn.lg { padding: 0.9rem 1.5rem; font-size: 1rem; }
.btn:active { transform: scale(0.98); }

.btn-dark { background: var(--ink); color: var(--bone); }
.btn-dark:hover { background: var(--ink-2); }

.btn-wa { background: var(--green); color: #fff; }
.btn-wa:hover { background: var(--green-ink); }

.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { background: var(--white); border-color: var(--ink); }

.band .btn-ghost { color: var(--bone); border-color: rgba(255, 253, 241, 0.3); }
.band .btn-ghost:hover { background: rgba(255, 253, 241, 0.1); border-color: rgba(255, 253, 241, 0.55); }

/* ── Header ──────────────────────────────────────────────────── */

.hdr {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 253, 241, 0.88);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line-soft);
}

.hdr-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  flex: none;
}
.brand img {
  width: 2.6rem;
  height: auto;
  border-radius: 6px;
}
.brand-txt { display: flex; flex-direction: column; line-height: 1.15; }
.brand-txt strong {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.brand-txt em {
  font-style: normal;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav { display: flex; align-items: center; gap: 1.75rem; }
.nav > ul { display: flex; align-items: center; gap: 1.4rem; }
.nav a {
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-2);
  padding: 0.35rem 0;
  border-bottom: 1.5px solid transparent;
  transition: color var(--t-fast) ease, border-color var(--t-fast) ease;
}
.nav a:hover { color: var(--ink); border-bottom-color: var(--line); }
.nav a[aria-current="page"] { color: var(--ink); border-bottom-color: var(--red); font-weight: 600; }
.nav-act .btn { padding: 0.55rem 0.95rem; font-size: 0.88rem; }

.burger {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}
.burger span {
  display: block;
  width: 17px;
  height: 1.6px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform var(--t-norm) var(--ease), opacity var(--t-fast) ease;
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(5.6px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5.6px) rotate(-45deg); }

/* ── Hero ────────────────────────────────────────────────────── */

.hero {
  position: relative;
  padding-block: clamp(2.75rem, 2rem + 4vw, 5.5rem) var(--sec);
  overflow: hidden;
}
/* A single soft warm light spot so the section is not a flat field */
.hero::before {
  content: '';
  position: absolute;
  inset: -30% -10% auto -20%;
  height: 90%;
  background:
    radial-gradient(60% 60% at 22% 30%, rgba(227, 168, 27, 0.13), transparent 70%),
    radial-gradient(50% 50% at 78% 12%, rgba(62, 127, 156, 0.1), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hero-in {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
  gap: clamp(2rem, 1rem + 4vw, 4rem);
  align-items: center;
}
.hero h1 { margin-bottom: 1.4rem; }
.hero .lede { margin-bottom: 2rem; }

.hero-act { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 2.25rem; }

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}
.hero-meta li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--muted);
}
.hero-meta .ic { width: 1.05rem; height: 1.05rem; color: var(--blue); }

.hero-fig { margin: 0; position: relative; }
.hero-fig img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-soft);
}
.hero-fig figcaption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  background: rgba(255, 253, 241, 0.94);
  color: var(--ink);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  border: 1px solid var(--line-soft);
}

/* ── Programme hero ──────────────────────────────────────────── */

.phero {
  padding-block: 1.25rem clamp(2.75rem, 2rem + 4vw, 5rem);
  border-bottom: 1px solid var(--line-soft);
}
.phero-green  { background: linear-gradient(180deg, var(--green-pale) 0%, var(--bone) 100%); }
.phero-blue   { background: linear-gradient(180deg, var(--blue-pale) 0%, var(--bone) 100%); }
.phero-yellow { background: linear-gradient(180deg, var(--yellow-pale) 0%, var(--bone) 100%); }
.phero-red    { background: linear-gradient(180deg, var(--red-pale) 0%, var(--bone) 100%); }

.phero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(2rem, 1rem + 4vw, 3.75rem);
  align-items: center;
  margin-top: 1.75rem;
}
.phero h1 { margin-bottom: 1.35rem; }
.phero .lede { max-width: 46ch; }
.phero .hero-act { margin-top: 2rem; margin-bottom: 0; }
.phero-fig { margin: 0; }
.phero-fig img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-soft);
}

.crumbs ol { display: flex; flex-wrap: wrap; gap: 0.4rem; font-size: 0.8rem; color: var(--muted); }
.crumbs li + li::before { content: '/'; margin-right: 0.4rem; opacity: 0.5; }
.crumbs a { text-decoration: none; }
.crumbs a:hover { text-decoration: underline; }

/* ── Strip ───────────────────────────────────────────────────── */

.strip {
  border-block: 1px solid var(--line-soft);
  background: var(--bone-2);
  padding-inline: var(--gut);
}
/* The 1px-gap trick paints the grid's own background through the gaps, so
   the grid must not also carry the wrap's horizontal padding — otherwise
   the line colour shows as a dark band down both edges of the section. */
.strip-in {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line-soft);
  padding-inline: 0;
}
.strip-in > div {
  background: var(--bone-2);
  padding: 1.75rem clamp(0.75rem, 2vw, 1.5rem);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.strip-in strong {
  font-family: var(--serif);
  font-size: clamp(1.05rem, 0.95rem + 0.5vw, 1.4rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.strip-in span { font-size: 0.82rem; color: var(--muted); }

/* ── Offer: lead panel + ruled index ─────────────────────────── */
/* Never a grid of identical cards. One programme carries the weight,
   the rest are a ruled index. */

.offer {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(1.75rem, 1rem + 3vw, 3.25rem);
  align-items: stretch;
}

.offer-lead {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 30rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: var(--bone);
  border: 1px solid var(--line-soft);
  isolation: isolate;
}
.offer-lead-media { position: absolute; inset: 0; z-index: -2; }
.offer-lead-media img { width: 100%; height: 100%; object-fit: cover; }
.offer-lead::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to top, rgba(30, 16, 8, 0.88) 0%, rgba(30, 16, 8, 0.55) 42%, rgba(30, 16, 8, 0.12) 100%);
}
.offer-lead-body {
  display: flex;
  flex-direction: column;
  padding: clamp(1.5rem, 1rem + 2vw, 2.5rem);
}
.offer-lead .offer-n {
  font-family: var(--serif);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: rgba(255, 253, 241, 0.55);
  margin-bottom: 0.6rem;
}
.offer-kicker {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 0.5rem;
}
.offer-lead-name {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 1.4rem + 2vw, 2.9rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--bone);
}
.offer-lead .offer-ages {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 253, 241, 0.65);
  margin-top: 0.4rem;
}
.offer-lead-blurb {
  margin-top: 0.9rem;
  color: rgba(255, 253, 241, 0.86);
  font-size: 0.98rem;
  line-height: 1.6;
  max-width: 34ch;
}
.offer-go {
  margin-top: 1.5rem;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--bone);
  display: inline-flex;
  gap: 0.45rem;
}
.offer-go span { transition: transform var(--t-norm) var(--ease); }
.offer-lead:hover .offer-go span { transform: translateX(5px); }
.offer-lead-media img { transition: transform 600ms var(--ease); }
.offer-lead:hover .offer-lead-media img { transform: scale(1.03); }

.offer-list { display: flex; flex-direction: column; border-top: 1px solid var(--line); }
.offer-list li { border-bottom: 1px solid var(--line); }
.offer-list a {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: start;
  gap: clamp(0.9rem, 2vw, 1.6rem);
  padding: clamp(1.35rem, 1rem + 1.2vw, 1.9rem) 0.75rem;
  text-decoration: none;
  transition: background-color var(--t-norm) ease, padding-inline var(--t-norm) var(--ease);
}
.offer-list a:hover { background: var(--bone-2); padding-inline: 1.15rem 0.75rem; }
.offer-list .offer-n {
  font-family: var(--serif);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--muted);
  padding-top: 0.35rem;
}
.offer-txt { display: flex; flex-direction: column; min-width: 0; }
.offer-name {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 1.1rem + 0.7vw, 1.6rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.15;
}
.offer-list .offer-ages {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--blue);
  margin-top: 0.35rem;
}
.offer-blurb { margin-top: 0.55rem; font-size: 0.94rem; color: var(--muted); line-height: 1.6; }
.offer-arrow {
  color: var(--muted);
  padding-top: 0.3rem;
  transition: transform var(--t-norm) var(--ease), color var(--t-fast) ease;
}
.offer-list a:hover .offer-arrow { transform: translateX(5px); color: var(--red); }

.offer-list.wide { border-top: 1px solid var(--line); }

/* ── Why: bento, not a card grid ─────────────────────────────── */
/* Four values of genuinely equal importance, but four identical boxes
   read as flat and generic. A pinwheel bento — two wide cells, two
   narrow, each with its own tint — gives the block rhythm without
   pretending one value outranks another. */

.why {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.75rem, 1.5vw, 1.15rem);
}
.why li {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 1rem + 1.8vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  min-width: 0;
  transition: transform var(--t-norm) var(--ease), box-shadow var(--t-norm) ease;
}
.why li:hover { transform: translateY(-2px); box-shadow: 0 2px 10px rgba(61, 36, 21, 0.05); }

.why li:nth-child(1) { grid-column: span 2; background: var(--blue-pale); }
.why li:nth-child(2) { grid-column: span 1; background: var(--yellow-pale); }
.why li:nth-child(3) { grid-column: span 1; background: var(--green-pale); }
.why li:nth-child(4) { grid-column: span 2; background: var(--red-pale); }

/* The two wide cells carry bigger type, so the block has scale contrast
   rather than four headings at one size. */
.why li:nth-child(1) h3, .why li:nth-child(4) h3 {
  font-size: clamp(1.35rem, 1.1rem + 1.1vw, 1.9rem);
}
.why li:nth-child(1) p, .why li:nth-child(4) p { font-size: 1rem; max-width: 38ch; }

.why-ic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: var(--radius);
  background: rgba(255, 253, 241, 0.75);
  margin-bottom: 0.35rem;
}
.why li:nth-child(1) .why-ic { color: var(--blue-ink); }
.why li:nth-child(2) .why-ic { color: var(--yellow-ink); }
.why li:nth-child(3) .why-ic { color: var(--green-ink); }
.why li:nth-child(4) .why-ic { color: var(--red-ink); }
.why p { color: var(--ink-2); font-size: 0.94rem; }

/* ── Split ───────────────────────────────────────────────────── */

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 1rem + 4vw, 4rem);
  align-items: center;
}
.split-tight { align-items: start; }
.split-fig { margin: 0; }
.split-fig img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-soft);
}
.split-txt h2 { margin-bottom: 1.1rem; }
.split-txt p { color: var(--ink-2); }

.ticks { display: flex; flex-direction: column; gap: 0.7rem; margin-top: 1.6rem; }
.ticks li { display: flex; align-items: flex-start; gap: 0.65rem; font-size: 0.95rem; font-weight: 500; color: var(--ink-2); }
.ticks .ic { color: var(--green); width: 1.1rem; height: 1.1rem; margin-top: 0.28rem; }

.addr { display: flex; align-items: flex-start; gap: 0.7rem; margin-top: 1.5rem; font-weight: 500; }
.addr .ic { color: var(--red); margin-top: 0.32rem; }

/* ── Steps ───────────────────────────────────────────────────── */

/* Editorial list with large ghost numerals — deliberately NOT hairline-ruled,
   so it cannot be mistaken for the ruled programme index further down the
   same page. Two listings on one page must not share a pattern. */
.steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.75rem, 1rem + 2.5vw, 3.25rem) clamp(2rem, 1rem + 3vw, 4rem);
}
.steps li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: clamp(0.9rem, 2vw, 1.5rem);
  align-items: start;
  min-width: 0;
}
.steps-n {
  font-family: var(--serif);
  font-size: clamp(2rem, 1.5rem + 1.6vw, 2.9rem);
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: var(--red);
  opacity: 0.28;
  font-variant-numeric: tabular-nums;
}
.steps h3 { margin-bottom: 0.45rem; }
.steps p { color: var(--muted); font-size: 0.95rem; }

/* Inside the narrow contact-page column it stacks to one column. */
.steps-plain { grid-template-columns: minmax(0, 1fr); gap: 1.6rem; margin-top: 1.75rem; }
.steps-plain .steps-n { font-size: clamp(1.6rem, 1.3rem + 1vw, 2.1rem); }

/* ── Gallery ─────────────────────────────────────────────────── */

.gal {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-areas: 'a b' 'a c';
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
}
.gal figure { margin: 0; }
.gal-a { grid-area: a; }
.gal-b { grid-area: b; }
.gal-c { grid-area: c; }
.gal img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-soft);
}
.gal-a img { aspect-ratio: 1 / 1; }
.gal-b img, .gal-c img { aspect-ratio: 16 / 9; }

/* ── Areas ───────────────────────────────────────────────────── */

.areas { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.areas li {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.45rem 1rem;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--ink-2);
  background: var(--bone);
}

/* ── Hours ───────────────────────────────────────────────────── */

.hours {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--bone);
  padding: clamp(1.5rem, 1rem + 1.6vw, 2.25rem);
}
.hours h3 { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 1.25rem; }
.hours h3 .ic { color: var(--blue); }
.hours dl { display: flex; flex-direction: column; }
.hours dl > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line-soft);
}
.hours dl > div:first-child { border-top: 1px solid var(--line-soft); }
.hours dt { font-weight: 500; color: var(--ink-2); }
.hours dd { margin: 0; font-weight: 600; color: var(--ink); font-variant-numeric: tabular-nums; }
.hours .closed dt, .hours .closed dd { color: var(--muted); font-weight: 500; }
.hours-note { margin-top: 1.25rem; font-size: 0.88rem; color: var(--muted); }

/* ── Contact cards ───────────────────────────────────────────── */

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.cc {
  background: var(--bone);
  padding: clamp(1.5rem, 1rem + 1.6vw, 2.1rem);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  transition: background-color var(--t-norm) ease;
}
.cc:hover { background: var(--white); }
.cc-ic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: var(--radius);
  background: var(--blue-pale);
  color: var(--blue-ink);
  margin-bottom: 0.3rem;
}
/* The copy says WhatsApp is answered fastest, so it should not look like
   one of four equal options. */
.cc-wa { background: var(--green-pale); }
.cc-wa:hover { background: #E9F0DC; }
.cc-wa .cc-ic { background: rgba(255, 253, 241, 0.8); color: var(--green-ink); }
.cc-wa p { color: var(--ink-2); }
.cc-wa .cc-link { border-bottom-color: rgba(110, 150, 52, 0.35); }
.cc-wa .cc-link:hover { color: var(--green-ink); border-bottom-color: var(--green-ink); }
.cc p { color: var(--muted); font-size: 0.92rem; flex: 1; }
.cc-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
  text-decoration: none;
  word-break: break-word;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border-bottom: 1.5px solid var(--line);
  padding-bottom: 0.35rem;
  transition: border-color var(--t-fast) ease, color var(--t-fast) ease;
}
.cc-link span { transition: transform var(--t-norm) var(--ease); }
.cc-link:hover { color: var(--red); border-bottom-color: var(--red); }
.cc-link:hover span { transform: translateX(4px); }

/* ── FAQ ─────────────────────────────────────────────────────── */

.faq { border-top: 1px solid var(--line); max-width: 52rem; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.35rem 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1rem + 0.35vw, 1.22rem);
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--ink);
  line-height: 1.35;
  transition: color var(--t-fast) ease;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--red); }
.plus {
  position: relative;
  width: 1rem;
  height: 1rem;
  flex: none;
  margin-top: 0.3rem;
}
.plus::before, .plus::after {
  content: '';
  position: absolute;
  inset: 50% 0 auto 0;
  height: 1.6px;
  background: var(--ink);
  transition: transform var(--t-norm) var(--ease);
}
.plus::after { transform: rotate(90deg); }
.faq details[open] .plus::after { transform: rotate(0deg); }
.faq .ans { padding: 0 0 1.5rem; max-width: 60ch; }
.faq .ans p { color: var(--muted); }

/* ── Band ────────────────────────────────────────────────────── */

.band {
  background: var(--ink);
  color: var(--bone);
  padding-block: clamp(3rem, 2rem + 4vw, 5rem);
}
.band-in {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: clamp(1.75rem, 1rem + 3vw, 3.5rem);
  align-items: center;
}
.band h2 { color: var(--bone); margin-bottom: 1rem; }
.band h2 em { color: var(--yellow); }
.band p:not(.eyebrow) { color: rgba(255, 253, 241, 0.72); max-width: 46ch; }
.band-act { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: flex-end; }

/* ── Footer ──────────────────────────────────────────────────── */

.foot {
  background: var(--bone-2);
  border-top: 1px solid var(--line-soft);
  padding-top: clamp(3rem, 2rem + 3vw, 4.5rem);
}
.foot-in {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) repeat(3, minmax(0, 1fr));
  gap: clamp(2rem, 1rem + 3vw, 3rem);
  padding-bottom: 3rem;
}
/* Grid children need this or a long unbroken string — the email address —
   burst its track and takes the whole page into horizontal scroll. */
.foot-in > * { min-width: 0; }
.foot-contact a, .foot ul a { overflow-wrap: anywhere; }
.foot-brand .brand { margin-bottom: 1.1rem; }
.foot-blurb { font-size: 0.92rem; color: var(--muted); max-width: 34ch; }
.foot h3 {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}
.foot ul { display: flex; flex-direction: column; gap: 0.65rem; }
.foot ul a { font-size: 0.93rem; text-decoration: none; color: var(--ink-2); transition: color var(--t-fast) ease; }
.foot ul a:hover { color: var(--red); text-decoration: underline; }
.foot-contact li { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.93rem; color: var(--ink-2); }
.foot-contact .ic { width: 1.05rem; height: 1.05rem; margin-top: 0.35rem; color: var(--muted); }

.foot-base {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
  padding-block: 1.5rem;
  border-top: 1px solid var(--line-soft);
}
.foot-base p { margin: 0; font-size: 0.85rem; color: var(--muted); }
/* The credit inherits the footer's own size and colour so it reads as part
   of the site rather than an advert bolted on. */
.foot-credit a { color: inherit; text-decoration: none; border-bottom: 1px solid var(--line); }
.foot-credit a:hover { color: var(--ink); border-bottom-color: var(--ink); }

/* ── Floating WhatsApp ───────────────────────────────────────── */

.fab {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--green);
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.75rem 1.1rem;
  border-radius: 999px;
  box-shadow: 0 2px 14px rgba(61, 36, 21, 0.16);
  transition: background-color var(--t-fast) ease, transform var(--t-fast) ease;
}
.fab:hover { background: var(--green-ink); }
.fab:active { transform: scale(0.97); }

/* ── Demo expiry bar ─────────────────────────────────────────── */

.demo-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: var(--ink);
  color: var(--bone);
  font-size: 0.86rem;
  font-weight: 500;
  padding: 0.7rem 1.25rem;
  text-align: center;
}
.demo-bar button {
  background: transparent;
  border: 0;
  color: inherit;
  font-size: 1.15rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  opacity: 0.7;
}
.demo-bar button:hover { opacity: 1; }

/* ── Scroll entry ────────────────────────────────────────────── */

.js-on .rise { opacity: 0; transform: translateY(12px); }
.js-on .rise.in {
  opacity: 1;
  transform: none;
  transition: opacity 600ms var(--ease), transform 600ms var(--ease);
}
.js-on .rise.d1.in { transition-delay: 80ms; }
.js-on .rise.d2.in { transition-delay: 160ms; }
.js-on .rise.d3.in { transition-delay: 240ms; }
.js-on .rise.d4.in { transition-delay: 320ms; }

/* ── Responsive ──────────────────────────────────────────────── */

@media (max-width: 980px) {
  .hero-in, .phero-grid, .split, .band-in, .offer { grid-template-columns: minmax(0, 1fr); }
  .hero-fig, .phero-fig { order: -1; }
  .split-fig img { aspect-ratio: 16 / 10; }
  .band-act { justify-content: flex-start; }
  .offer-lead { min-height: 24rem; }
  .foot-in { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .foot-brand { grid-column: 1 / -1; }
}

@media (max-width: 860px) {
  .burger { display: inline-flex; }
  .nav {
    position: fixed;
    inset: 4.25rem 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--bone);
    border-bottom: 1px solid var(--line);
    padding: 0.5rem var(--gut) 1.5rem;
    max-height: calc(100dvh - 4.25rem);
    overflow-y: auto;
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--t-norm) ease, transform var(--t-norm) var(--ease), visibility var(--t-norm);
  }
  .nav.open { transform: none; opacity: 1; visibility: visible; }
  .nav > ul { flex-direction: column; align-items: stretch; gap: 0; }
  .nav > ul a {
    display: block;
    padding: 0.95rem 0;
    font-size: 1.02rem;
    border-bottom: 1px solid var(--line-soft);
  }
  .nav a[aria-current="page"] { border-bottom-color: var(--red); }
  .nav-act { margin-top: 1.25rem; }
  .nav-act .btn { width: 100%; padding: 0.85rem 1rem; font-size: 0.98rem; }
}

@media (max-width: 860px) {
  .why { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .why li:nth-child(n) { grid-column: span 2; }
}

@media (max-width: 720px) {
  .steps { grid-template-columns: minmax(0, 1fr); gap: 1.75rem; }
  .strip-in { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gal { grid-template-areas: 'a a' 'b c'; }
  .gal-a img { aspect-ratio: 16 / 10; }
  .fab span { display: none; }
  .fab { padding: 0.85rem; }
  .offer-list a { grid-template-columns: auto minmax(0, 1fr); }
  .offer-arrow { display: none; }
}

@media (max-width: 520px) {
  .foot-in { grid-template-columns: minmax(0, 1fr); }
  .hours dl > div { flex-direction: column; gap: 0.15rem; }
  .band-act .btn { width: 100%; }
  .hero-act .btn { flex: 1 1 100%; }
}

/* ── Reduced motion ──────────────────────────────────────────── */

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

/* ── Print ───────────────────────────────────────────────────── */

@media print {
  .hdr, .fab, .band, .demo-bar, .burger { display: none !important; }
  body { background: #fff; color: #000; }
  .js-on .rise { opacity: 1; transform: none; }
}
