/* ==========================================================================
   Little Learners Nursery Crofton — design system
   Palette taken from the nursery logo: honey/amber wordmark + ABC blocks
   (blue, green, pink). Warm cream paper, deep warm ink for text.
   ========================================================================== */

:root {
  /* Brand */
  --honey:        #F2A100;
  --honey-deep:   #C97F00;
  --honey-soft:   #FFEFCE;
  --blue:         #2D9CF0;
  --blue-soft:    #E3F2FE;
  --green:        #3FBF3F;
  --green-soft:   #E4F7E4;
  --pink:         #EE3EC0;
  --pink-soft:    #FDE6F7;

  /* Neutrals — warm, never cold grey */
  --ink:          #2A2721;
  --ink-soft:     #5B554B;
  --ink-faint:    #8B8375;
  --paper:        #FFFBF3;
  --paper-2:      #FFF6E7;
  --white:        #FFFFFF;
  --line:         #EFE4D2;

  /* Type */
  --font-head: 'Baloo 2', 'Segoe UI', system-ui, sans-serif;
  --font-body: 'Nunito Sans', 'Segoe UI', system-ui, -apple-system, sans-serif;

  /* Space + shape */
  --r-sm: 10px;
  --r-md: 18px;
  --r-lg: 28px;
  --r-xl: 40px;
  --shadow-sm: 0 2px 8px rgba(42, 39, 33, .06);
  --shadow-md: 0 8px 28px rgba(42, 39, 33, .09);
  --shadow-lg: 0 22px 60px rgba(42, 39, 33, .14);
  --wrap: 1140px;
}

/* ── Reset ─────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: var(--honey-deep); }
button { font: inherit; }

/* Accessible focus — visible on every interactive element */
:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--ink); color: #fff; padding: 12px 20px;
  border-radius: 0 0 var(--r-sm) 0; font-weight: 700; text-decoration: none;
}
.skip-link:focus { left: 0; }

/* ── Typography ────────────────────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 700; line-height: 1.15; color: var(--ink); }
h1 { font-size: clamp(2.1rem, 5.4vw, 3.6rem); letter-spacing: -.02em; }
h2 { font-size: clamp(1.7rem, 3.8vw, 2.6rem); letter-spacing: -.01em; }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.5rem); }
p  { color: var(--ink-soft); }
.lead { font-size: clamp(1.08rem, 2vw, 1.28rem); color: var(--ink-soft); }

.eyebrow {
  display: inline-block; font-family: var(--font-head); font-weight: 700;
  font-size: .82rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--honey-deep); margin-bottom: .6rem;
}
.u-center { text-align: center; }
.u-center p { margin-left: auto; margin-right: auto; }
.measure { max-width: 62ch; }

/* Hand-drawn underline used on key headline words */
.squiggle { position: relative; white-space: nowrap; }
.squiggle::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -.12em; height: .32em;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 12' preserveAspectRatio='none'%3E%3Cpath d='M2 8c22-6 44-6 58-3s38 5 58-2' stroke='%23F2A100' stroke-width='5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center / 100% 100%;
  z-index: -1;
}

/* ── Layout ────────────────────────────────────────────────────────────── */
.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }
.section { padding: clamp(3.5rem, 8vw, 6.5rem) 0; }
.section--tight { padding: clamp(2.5rem, 5vw, 4rem) 0; }
.section--cream { background: var(--paper-2); }
.section--ink { background: var(--ink); }
.section--ink h2, .section--ink h3 { color: #fff; }
.section--ink p { color: #D8D2C6; }
/* Cards keep their light background inside a dark section, so their text must
   stay dark — otherwise white-on-white. */
.section--ink .card h3 { color: var(--ink); }
.section--ink .card p  { color: var(--ink-soft); }

.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } }

.stack > * + * { margin-top: 1rem; }
.mt-1 { margin-top: .5rem; }  .mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; } .mt-4 { margin-top: 2.5rem; }

/* ── Buttons ───────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--font-head); font-weight: 700; font-size: 1.02rem;
  padding: .85rem 1.7rem; border-radius: 999px; border: 2px solid transparent;
  text-decoration: none; cursor: pointer; transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--primary { background: var(--honey); color: #3A2B00; box-shadow: 0 6px 0 var(--honey-deep); }
.btn--primary:hover { background: #FFB01A; box-shadow: 0 8px 0 var(--honey-deep); }
.btn--primary:active { box-shadow: 0 3px 0 var(--honey-deep); }
.btn--ghost { background: var(--white); color: var(--ink); border-color: var(--line); box-shadow: var(--shadow-sm); }
.btn--ghost:hover { border-color: var(--honey); }
.btn--ink { background: var(--ink); color: #fff; }
.btn--ink:hover { background: #3d382f; }
.btn--lg { font-size: 1.12rem; padding: 1rem 2.1rem; }
.btn-row { display: flex; gap: .9rem; flex-wrap: wrap; }
.u-center .btn-row { justify-content: center; }

/* ── Header ────────────────────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 251, 243, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s, box-shadow .2s;
}
.site-header.is-stuck { border-bottom-color: var(--line); box-shadow: var(--shadow-sm); }
.nav { display: flex; align-items: center; gap: 1.2rem; padding: .7rem 0; }
.nav__logo { flex: none; }
.nav__logo img { height: 46px; width: auto; }
.nav__links { display: flex; align-items: center; gap: .3rem; margin-left: auto; }
.nav__links a {
  font-family: var(--font-head); font-weight: 600; font-size: 1rem; color: var(--ink);
  text-decoration: none; padding: .5rem .8rem; border-radius: 999px; transition: background .15s, color .15s;
}
.nav__links a:hover { background: var(--honey-soft); color: var(--honey-deep); }
.nav__links a[aria-current="page"] { background: var(--honey-soft); color: var(--honey-deep); }
.nav__cta { display: flex; align-items: center; gap: .7rem; }
.nav__phone {
  display: inline-flex; align-items: center; gap: .45rem; font-family: var(--font-head);
  font-weight: 700; color: var(--ink); text-decoration: none; white-space: nowrap;
  /* Comfortable thumb target — this is the main action on a phone */
  padding: .6rem .3rem; min-height: 44px;
}
.nav__phone svg { flex: none; }   /* stop the icon collapsing when space is tight */
.nav__phone:hover { color: var(--honey-deep); }
.nav__toggle {
  display: none; background: var(--white); border: 2px solid var(--line);
  border-radius: 12px; padding: .7rem .75rem; cursor: pointer; margin-left: auto;
  min-height: 46px; min-width: 46px;
}
.nav__toggle span { display: block; width: 22px; height: 2.5px; background: var(--ink); border-radius: 2px; }
.nav__toggle span + span { margin-top: 5px; }

@media (max-width: 1080px) {
  .nav__toggle { display: block; }
  .nav__links {
    position: fixed; inset: 64px 0 auto 0; flex-direction: column; align-items: stretch;
    background: var(--paper); padding: 1rem 1.25rem 1.75rem; gap: .2rem;
    border-bottom: 1px solid var(--line); box-shadow: var(--shadow-md);
    transform: translateY(-130%); transition: transform .28s cubic-bezier(.4,0,.2,1);
    max-height: calc(100vh - 64px); overflow-y: auto;
  }
  .nav__links.is-open { transform: translateY(0); }
  .nav__links a { padding: .8rem 1rem; font-size: 1.1rem; }
  .nav__links .btn { margin-top: .6rem; }
  .nav__cta .btn { display: none; }
}

/* ── Hero ──────────────────────────────────────────────────────────────── */
.hero { position: relative; padding: clamp(2.5rem, 6vw, 5rem) 0 clamp(3rem, 7vw, 5rem); overflow: hidden; }
.hero__inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 3.5rem); align-items: center; }
@media (max-width: 900px) { .hero__inner { grid-template-columns: 1fr; } }
.hero h1 { margin-bottom: 1.1rem; }
.hero .lead { margin-bottom: 1.8rem; }

.hero__art { position: relative; }
.hero__blob {
  position: absolute; inset: -12% -8% -12% -8%; z-index: 0;
  background: radial-gradient(60% 60% at 30% 30%, var(--honey-soft), transparent 70%),
              radial-gradient(50% 50% at 75% 65%, var(--blue-soft), transparent 70%);
  filter: blur(6px);
}
.hero__card { position: relative; z-index: 1; }

/* Floating info chips around hero art */
.chip {
  position: absolute; z-index: 2; background: var(--white); border-radius: 999px;
  padding: .55rem 1rem; box-shadow: var(--shadow-md); font-weight: 700; font-size: .92rem;
  display: inline-flex; align-items: center; gap: .5rem; white-space: nowrap;
}
.chip svg { flex: none; }
.chip--1 { top: 6%; left: -4%; animation: float 6s ease-in-out infinite; }
.chip--2 { bottom: 12%; right: -3%; animation: float 6s ease-in-out infinite .8s; }
.chip--3 { bottom: -3%; left: 8%; animation: float 6s ease-in-out infinite 1.6s; }
@media (max-width: 620px) { .chip--1 { left: 0; } .chip--2 { right: 0; } .chip--3 { display: none; } }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

/* ── Trust strip ───────────────────────────────────────────────────────── */
.trust {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1px; background: var(--line); border: 1px solid var(--line);
  border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm);
}
.trust > div { background: var(--white); padding: 1.4rem 1.2rem; text-align: center; }
.trust strong { display: block; font-family: var(--font-head); font-size: 1.6rem; color: var(--ink); line-height: 1.1; }
.trust span { font-size: .9rem; color: var(--ink-faint); }

/* ── Cards ─────────────────────────────────────────────────────────────── */
.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 1.9rem; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease;
}
.card--hover:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card h3 { margin-bottom: .5rem; }
.card p { font-size: 1rem; }

.icon-badge {
  width: 56px; height: 56px; border-radius: 18px; display: grid; place-items: center;
  margin-bottom: 1.1rem; flex: none;
}
.icon-badge--honey { background: var(--honey-soft); color: var(--honey-deep); }
.icon-badge--blue  { background: var(--blue-soft);  color: #1173BE; }
.icon-badge--green { background: var(--green-soft); color: #2A8F2A; }
.icon-badge--pink  { background: var(--pink-soft);  color: #C21F9B; }

/* Room cards */
.room {
  position: relative; overflow: hidden; border-radius: var(--r-lg);
  border: 1px solid var(--line); background: var(--white); box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
}
.room__top { padding: 1.6rem 1.6rem 1.2rem; color: #2A2721; }
.room--babies .room__top { background: var(--blue-soft); }
.room--toddlers .room__top { background: var(--green-soft); }
.room--preschool .room__top { background: var(--honey-soft); }
.room__age { font-family: var(--font-head); font-weight: 700; font-size: .85rem; letter-spacing: .1em; text-transform: uppercase; opacity: .75; }
.room__body { padding: 1.4rem 1.6rem 1.8rem; }
.room__body ul { margin: 0; padding-left: 1.1rem; color: var(--ink-soft); font-size: .98rem; }
.room__body li + li { margin-top: .4rem; }

/* ── Ofsted / quote ────────────────────────────────────────────────────── */
.quote-band { position: relative; }
.quote {
  font-family: var(--font-head); font-size: clamp(1.35rem, 3.2vw, 2.1rem); line-height: 1.35;
  color: #fff; max-width: 24ch;
}
.quote-cite { color: #B9B2A4; font-size: .95rem; margin-top: 1.1rem; }
.quote-cite a { color: var(--honey); }

.ofsted-badge {
  display: inline-flex; flex-direction: column; align-items: center; justify-content: center;
  background: var(--white); border-radius: var(--r-lg); padding: 1.5rem 2rem; box-shadow: var(--shadow-lg);
  border: 3px solid var(--green);
}
.ofsted-badge .rating { font-family: var(--font-head); font-size: 2.6rem; color: #2A8F2A; line-height: 1; }
.ofsted-badge .label { font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-faint); font-weight: 700; }

/* ── Timeline (a day with us) ──────────────────────────────────────────── */
.timeline { position: relative; padding-left: 2.4rem; }
.timeline::before {
  content: ''; position: absolute; left: .72rem; top: .5rem; bottom: .5rem;
  width: 3px; background: repeating-linear-gradient(var(--honey) 0 8px, transparent 8px 16px);
  border-radius: 3px;
}
.tl-item { position: relative; padding-bottom: 1.6rem; }
.tl-item::before {
  content: ''; position: absolute; left: -2.4rem; top: .35rem; width: 15px; height: 15px;
  border-radius: 50%; background: var(--white); border: 3px solid var(--honey);
}
.tl-time { font-family: var(--font-head); font-weight: 700; color: var(--honey-deep); font-size: .95rem; }
.tl-item h4 { font-size: 1.1rem; margin: .1rem 0 .25rem; }
.tl-item p { font-size: .98rem; margin: 0; }

/* ── FAQ ───────────────────────────────────────────────────────────────── */
.faq { border: 1px solid var(--line); border-radius: var(--r-md); background: var(--white); overflow: hidden; }
.faq + .faq { margin-top: .8rem; }
.faq summary {
  cursor: pointer; padding: 1.15rem 1.4rem; font-family: var(--font-head); font-weight: 600;
  font-size: 1.08rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+'; font-size: 1.6rem; color: var(--honey-deep); line-height: 1; flex: none; transition: transform .2s;
}
.faq[open] summary::after { transform: rotate(45deg); }
.faq summary:hover { background: var(--paper-2); }
.faq__body { padding: 0 1.4rem 1.35rem; }
.faq__body p { margin: 0; }
.faq__body p + p { margin-top: .7rem; }

/* ── Forms ─────────────────────────────────────────────────────────────── */
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-family: var(--font-head); font-weight: 600; margin-bottom: .35rem; font-size: 1rem; }
.field .hint { font-family: var(--font-body); font-weight: 400; color: var(--ink-faint); font-size: .88rem; }
.input, select.input, textarea.input {
  width: 100%; padding: .85rem 1rem; border: 2px solid var(--line); border-radius: var(--r-sm);
  background: var(--white); font-family: inherit; font-size: 1rem; color: var(--ink); transition: border-color .15s;
}
.input:hover { border-color: #E0D2B8; }
.input:focus { border-color: var(--honey); outline: none; box-shadow: 0 0 0 3px var(--honey-soft); }
textarea.input { resize: vertical; min-height: 110px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

.form-note { font-size: .88rem; color: var(--ink-faint); }
.form-status { border-radius: var(--r-md); padding: 1rem 1.2rem; font-weight: 600; margin-top: 1rem; display: none; }
.form-status.is-ok  { display: block; background: var(--green-soft); color: #1F7A1F; border: 1px solid #B7E6B7; }
.form-status.is-err { display: block; background: #FDECEC; color: #B3261E; border: 1px solid #F5C6C4; }

/* ── Funding calculator ────────────────────────────────────────────────── */
.calc { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 2.5rem); align-items: start; }
@media (max-width: 900px) { .calc { grid-template-columns: 1fr; } }
.calc__panel { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(1.4rem, 3vw, 2rem); box-shadow: var(--shadow-sm); }
.choice-list { display: flex; flex-direction: column; gap: .6rem; }
.choice {
  display: flex; gap: .8rem; align-items: flex-start; border: 2px solid var(--line);
  border-radius: var(--r-md); padding: .85rem 1rem; cursor: pointer; background: var(--white); transition: border-color .15s, background .15s;
}
.choice:hover { border-color: #E0D2B8; }
.choice input { margin-top: .35rem; width: 18px; height: 18px; accent-color: var(--honey-deep); flex: none; }
.choice:has(input:checked) { border-color: var(--honey); background: #FFFCF5; }
.choice b { display: block; font-family: var(--font-head); font-size: 1rem; }
.choice span { font-size: .88rem; color: var(--ink-faint); line-height: 1.45; }
.check-row { display: flex; align-items: center; gap: .6rem; font-weight: 600; cursor: pointer; margin-top: 1rem; }
.check-row input { width: 18px; height: 18px; accent-color: var(--honey-deep); }

.result-hero {
  background: linear-gradient(135deg, #2A8F2A, #46C93A); color: #fff;
  border-radius: var(--r-lg); padding: clamp(1.5rem, 4vw, 2.2rem); text-align: center; box-shadow: var(--shadow-md);
}
.result-hero .big { font-family: var(--font-head); font-size: clamp(2rem, 6vw, 3rem); line-height: 1.05; }
.result-hero .sub { opacity: .95; margin-top: .5rem; font-size: 1rem; }
.result-hero .sub b { color: #FFF3C9; }

.breakdown { width: 100%; border-collapse: collapse; font-size: 1rem; }
.breakdown td { padding: .7rem .2rem; border-bottom: 1px dashed var(--line); color: var(--ink-soft); }
.breakdown td:last-child { text-align: right; font-variant-numeric: tabular-nums; white-space: nowrap; font-weight: 600; color: var(--ink); }
.breakdown tr.is-saving td { color: #2A8F2A; }
.breakdown tr.is-total td { border-bottom: none; padding-top: 1rem; font-family: var(--font-head); font-size: 1.25rem; color: var(--ink); font-weight: 700; }
.breakdown tr.is-was td { color: var(--ink-faint); font-size: .92rem; border-bottom: none; padding-top: 0; }
.breakdown tr.is-was td:last-child { text-decoration: line-through; font-weight: 400; color: var(--ink-faint); }

.pill {
  display: inline-block; background: var(--green-soft); color: #2A8F2A; font-weight: 700;
  border-radius: 999px; padding: .15rem .7rem; font-size: .82rem;
}
.pill--honey { background: var(--honey-soft); color: var(--honey-deep); }

.tl-mini { display: grid; gap: .5rem; }
.tl-mini div { display: flex; gap: .8rem; font-size: .96rem; align-items: baseline; }
.tl-mini .when { font-family: var(--font-head); font-weight: 700; color: var(--honey-deep); flex: none; min-width: 6.5rem; }

/* Narrow phones: let the funding timeline stack rather than squeeze */
@media (max-width: 430px) {
  .tl-mini div { flex-direction: column; gap: .1rem; }
  .tl-mini .when { min-width: 0; }
  .breakdown td { font-size: .94rem; padding: .6rem .1rem; }
}

/* ── Price cards ───────────────────────────────────────────────────────── */
.price-card { text-align: center; }
.price-card .price { font-family: var(--font-head); font-size: 2.6rem; color: var(--ink); line-height: 1; }
.price-card .price small { font-size: 1rem; color: var(--ink-faint); font-weight: 400; }
.price-card .per { color: var(--ink-faint); font-size: .95rem; }

/* ── Footer ────────────────────────────────────────────────────────────── */
.site-footer { background: var(--ink); color: #C9C2B5; padding: clamp(3rem, 6vw, 4.5rem) 0 2rem; }
.site-footer h4 { color: #fff; font-size: 1.05rem; margin-bottom: .9rem; }
.site-footer a { color: #C9C2B5; text-decoration: none; }
.site-footer a:hover { color: var(--honey); text-decoration: underline; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 2.2rem; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer ul { list-style: none; padding: 0; }
.site-footer li + li { margin-top: .35rem; }
/* Footer links get real height so they are easy to hit on a phone */
.site-footer li a { display: inline-block; padding: .38rem 0; }
.footer-logo { background: #fff; padding: .8rem 1rem; border-radius: var(--r-md); display: inline-block; }
.footer-logo img { height: 42px; }
.footer-bottom {
  margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid #423C33;
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: .88rem; color: #948C7E;
}

/* ── CTA band ──────────────────────────────────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, var(--honey) 0%, #FFC247 100%);
  border-radius: var(--r-xl); padding: clamp(2rem, 5vw, 3.5rem); text-align: center;
  position: relative; overflow: hidden;
}
.cta-band h2 { color: #3A2B00; }
.cta-band p { color: #6B5200; }
.cta-band::before, .cta-band::after {
  content: ''; position: absolute; border-radius: 50%; background: rgba(255,255,255,.25);
}
.cta-band::before { width: 220px; height: 220px; top: -90px; right: -60px; }
.cta-band::after  { width: 150px; height: 150px; bottom: -70px; left: -40px; }
.cta-band > * { position: relative; z-index: 1; }

/* ── Scroll reveal ─────────────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* ── Misc helpers ──────────────────────────────────────────────────────── */
.tick-list { list-style: none; padding: 0; }
.tick-list li { position: relative; padding-left: 2rem; margin-bottom: .8rem; color: var(--ink-soft); }
.tick-list li::before {
  content: ''; position: absolute; left: 0; top: .28em; width: 20px; height: 20px; border-radius: 50%;
  background: var(--green-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232A8F2A' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") no-repeat center / 13px;
}
.note-box { background: var(--blue-soft); border-left: 4px solid var(--blue); border-radius: 0 var(--r-md) var(--r-md) 0; padding: 1.1rem 1.3rem; }
.note-box p { color: #16527F; margin: 0; font-size: .98rem; }

.page-head { background: var(--paper-2); padding: clamp(2.5rem, 6vw, 4rem) 0 clamp(2rem, 5vw, 3rem); border-bottom: 1px solid var(--line); }
.page-head h1 { margin-bottom: .7rem; }
.page-head .lead { max-width: 60ch; }

.breadcrumb { font-size: .9rem; color: var(--ink-faint); margin-bottom: .8rem; }
.breadcrumb a { color: var(--ink-faint); text-decoration: none; }
.breadcrumb a:hover { color: var(--honey-deep); text-decoration: underline; }

/* Photo slot: looks deliberate while awaiting real photography */
.photo-slot {
  border-radius: var(--r-lg); overflow: hidden; position: relative;
  background: linear-gradient(135deg, var(--honey-soft), var(--blue-soft));
  min-height: 260px; display: grid; place-items: center; box-shadow: var(--shadow-md);
}
.photo-slot img { width: 100%; height: 100%; object-fit: cover; }
