/* ============================================================
   BRIGHT BEGINNINGS — DESIGN SYSTEM
   Palette: warm amber (brand/logo colour) + a soft sage green
   for outdoor/nature moments, on a cream base. Baloo 2 for
   headings (rounded, friendly — echoes the giraffe mark)
   paired with Inter for body copy.
   ============================================================ */

:root {
  /* Colour */
  --amber:        #F5A623;
  --amber-deep:   #B4640A;
  --amber-ink:    #7A4508;
  --cream:        #FFFBF2;
  --cream-deep:   #FBF1DD;
  --sage:         #6E9B7B;
  --sage-tint:    #EDF3EC;
  --ink:          #3A322A;
  --ink-soft:     #6B6157;
  --white:        #FFFFFF;
  --border:       #EDE0C4;
  --error:        #C0392B;

  /* Type */
  --font-display: 'Baloo 2', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  /* Layout */
  --max-w: 1180px;
  --max-w-narrow: 760px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --shadow-soft: 0 10px 30px -18px rgba(122, 69, 8, 0.35);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
@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; scroll-behavior: auto !important; }
}
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
ul, ol { list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.2; color: var(--amber-ink); }
h1 { font-size: clamp(2.1rem, 4.5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); }
h3 { font-size: 1.25rem; }
p  { max-width: 68ch; }
button { font-family: inherit; }

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

.skip-link {
  position: absolute; left: -999px; top: 0; background: var(--ink); color: var(--white);
  padding: 0.75rem 1.25rem; z-index: 1000; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

:focus-visible {
  outline: 3px solid var(--amber-deep);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-weight: 600; font-size: 0.95rem; padding: 0.85rem 1.6rem; border-radius: 999px;
  border: 2px solid transparent; cursor: pointer; text-decoration: none; white-space: nowrap;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}
.btn-primary { background: var(--amber); color: #4A2A05; }
.btn-primary:hover { background: var(--amber-deep); color: var(--white); transform: translateY(-1px); }
.btn-outline { border-color: var(--amber); color: var(--amber-ink); background: transparent; }
.btn-outline:hover { background: var(--amber); color: #4A2A05; }
.btn-secondary { background: var(--sage); color: var(--white); }
.btn-secondary:hover { background: #587D63; }
.btn-block { width: 100%; }
.btn:disabled { opacity: 0.55; cursor: not-allowed; transform: none; }

/* ---------- Header / Nav ---------- */
.site-header { background: var(--white); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 200; }
.header-inner { max-width: var(--max-w); margin: 0 auto; padding: 0.75rem 1.5rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.brand { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; }
.brand-logo { border-radius: 10px; }
.brand-name { font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; color: var(--amber-ink); }
.main-nav { margin-left: auto; }
.main-nav ul { display: flex; gap: 1.6rem; }
.main-nav a { font-size: 0.92rem; font-weight: 600; text-decoration: none; color: var(--ink-soft); padding: 0.4rem 0.1rem; border-bottom: 2px solid transparent; }
.main-nav a:hover, .main-nav a.active { color: var(--amber-ink); border-color: var(--amber); }
.header-actions { display: flex; align-items: center; gap: 0.9rem; }
.header-phone { display: none; align-items: center; gap: 0.4rem; font-weight: 600; font-size: 0.9rem; text-decoration: none; color: var(--ink); }
.header-phone svg { color: var(--amber-deep); }
.btn-enquire { display: none; }

.nav-toggle { display: flex; flex-direction: column; justify-content: center; gap: 5px; width: 40px; height: 40px; background: none; border: none; cursor: pointer; }
.nav-toggle span { display: block; width: 22px; height: 2.5px; background: var(--ink); border-radius: 2px; transition: transform 0.2s ease, opacity 0.2s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.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(-7.5px) rotate(-45deg); }

.main-nav { display: none; }
.mobile-nav { background: var(--cream-deep); border-top: 1px solid var(--border); padding: 1rem 1.5rem 1.5rem; }
.mobile-nav ul { display: flex; flex-direction: column; }
.mobile-nav a { display: block; padding: 0.75rem 0.2rem; font-weight: 600; text-decoration: none; color: var(--ink); border-bottom: 1px solid var(--border); }
.mobile-phone { display: block; margin-top: 1rem; font-weight: 700; color: var(--amber-ink); text-decoration: none; }

@media (min-width: 900px) {
  .main-nav { display: block; }
  .mobile-nav, .nav-toggle { display: none; }
  .header-phone { display: inline-flex; }
  .btn-enquire { display: inline-flex; }
}

/* ---------- Layout helpers ---------- */
.section { padding: clamp(3rem, 6vw, 5.5rem) 1.5rem; }
.section-inner { max-width: var(--max-w); margin: 0 auto; }
.section-inner.narrow { max-width: var(--max-w-narrow); }
.section-eyebrow { display: inline-block; color: var(--sage); font-weight: 700; font-size: 0.85rem; margin-bottom: 0.6rem; }
.section-head { margin-bottom: 2.5rem; }
.section-head p { color: var(--ink-soft); margin-top: 0.75rem; font-size: 1.05rem; }
.bg-cream { background: var(--cream); }
.bg-white { background: var(--white); }
.bg-tint  { background: var(--cream-deep); }
.bg-sage  { background: var(--sage-tint); }

/* ---------- Hero ---------- */
.hero { padding: clamp(2.5rem, 6vw, 5rem) 1.5rem; }
.hero-inner { max-width: var(--max-w); margin: 0 auto; display: grid; gap: 2.5rem; align-items: center; grid-template-columns: 1fr; }
.hero-copy h1 { margin-bottom: 1.1rem; }
.hero-copy p { font-size: 1.15rem; color: var(--ink-soft); margin-bottom: 1.8rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 2rem; }
.hero-badge { font-size: 0.8rem; font-weight: 600; background: var(--white); border: 1px solid var(--border); padding: 0.4rem 0.85rem; border-radius: 999px; color: var(--amber-ink); }
.hero-art { position: relative; }
.hero-art img { border-radius: var(--radius-lg); }
.hero-shape { position: absolute; border-radius: 50%; background: var(--amber); opacity: 0.15; z-index: -1; }

@media (min-width: 900px) {
  .hero-inner { grid-template-columns: 1.1fr 0.9fr; }
}

/* ---------- Why-choose-us / feature list (no card-kit shadows; simple icon rows) ---------- */
.feature-grid { display: grid; gap: 2rem; grid-template-columns: 1fr; }
.feature-item { display: flex; gap: 1rem; align-items: flex-start; }
.feature-icon { flex: none; width: 46px; height: 46px; border-radius: 12px; background: var(--amber); display: flex; align-items: center; justify-content: center; color: #4A2A05; font-weight: 700; }
.feature-item h3 { margin-bottom: 0.4rem; }
.feature-item p { color: var(--ink-soft); font-size: 0.98rem; }
@media (min-width: 700px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Service cards (used sparingly — homepage childcare offering) ---------- */
.card-grid { display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
.service-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 1.75rem; }
.service-card .card-icon { font-size: 1.6rem; margin-bottom: 0.75rem; }
.service-card h3 { margin-bottom: 0.5rem; }
.service-card p { color: var(--ink-soft); font-size: 0.95rem; }
@media (min-width: 700px) { .card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 600px) { .card-grid.cols-2 { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Activities grid ---------- */
.activity-grid { display: grid; gap: 1.25rem; grid-template-columns: repeat(2, 1fr); }
.activity-card { background: var(--white); border-radius: var(--radius-md); padding: 1.4rem; border: 1px solid var(--border); }
.activity-card .dot { width: 34px; height: 34px; border-radius: 50%; background: var(--sage-tint); color: var(--sage); display: flex; align-items: center; justify-content: center; margin-bottom: 0.75rem; font-weight: 700; }
.activity-card h3 { font-size: 1.05rem; margin-bottom: 0.35rem; }
.activity-card p { font-size: 0.9rem; color: var(--ink-soft); }
@media (min-width: 700px) { .activity-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1000px) { .activity-grid { grid-template-columns: repeat(4, 1fr); } }

/* ---------- Testimonials ---------- */
.testimonial-row { display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
.testimonial { background: var(--white); border-left: 4px solid var(--amber); border-radius: 0 var(--radius-md) var(--radius-md) 0; padding: 1.6rem 1.8rem; }
.testimonial p.quote { font-size: 1.02rem; color: var(--ink); margin-bottom: 0.9rem; }
.testimonial .name { font-weight: 700; font-size: 0.85rem; color: var(--amber-ink); }
@media (min-width: 800px) { .testimonial-row { grid-template-columns: repeat(3, 1fr); } }

/* ---------- Badges (trust) ---------- */
.badge-row { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1.5rem; }
.badge { background: var(--sage-tint); color: #3E5F47; font-weight: 600; font-size: 0.82rem; padding: 0.5rem 0.95rem; border-radius: 999px; }

/* ---------- FAQ (accordion) ---------- */
.faq-list { border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item summary { cursor: pointer; list-style: none; padding: 1.1rem 0.2rem; font-weight: 700; font-family: var(--font-display); display: flex; justify-content: space-between; align-items: center; gap: 1rem; color: var(--ink); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.4rem; color: var(--amber-deep); flex: none; }
.faq-item[open] summary::after { content: '\2212'; }
.faq-item .faq-answer { padding: 0 0.2rem 1.2rem; color: var(--ink-soft); max-width: 70ch; }

/* ---------- Areas served list ---------- */
.area-pills { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.area-pill { background: var(--white); border: 1px solid var(--border); padding: 0.5rem 1rem; border-radius: 999px; font-size: 0.88rem; font-weight: 600; color: var(--amber-ink); }

/* ---------- Pricing table ---------- */
.price-table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--border); }
.price-table th, .price-table td { text-align: left; padding: 1rem 1.2rem; border-bottom: 1px solid var(--border); }
.price-table th { font-family: var(--font-display); color: var(--amber-ink); font-size: 0.9rem; background: var(--cream-deep); }
.price-table tr:last-child td { border-bottom: none; }
.price-figure { font-family: var(--font-display); font-size: 1.6rem; color: var(--amber-ink); }

/* ---------- CTA band ---------- */
.cta-band { background: var(--amber); border-radius: var(--radius-lg); padding: clamp(2rem, 5vw, 3.5rem); text-align: center; margin: 0 auto; max-width: var(--max-w); }
.cta-band h2 { color: #4A2A05; }
.cta-band p { color: #5C3A0A; max-width: 60ch; margin: 0.75rem auto 1.6rem; }
.cta-band .btn-primary { background: #4A2A05; color: var(--white); }
.cta-band .btn-primary:hover { background: #341E03; }

/* ---------- Breadcrumbs ---------- */
.breadcrumbs { max-width: var(--max-w); margin: 0 auto; padding: 1rem 1.5rem 0; }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 0.4rem; font-size: 0.82rem; color: var(--ink-soft); }
.breadcrumbs li:not(:last-child)::after { content: '/'; margin-left: 0.4rem; color: var(--border); }
.breadcrumbs a { text-decoration: none; color: var(--ink-soft); }
.breadcrumbs a:hover { color: var(--amber-deep); }

/* ---------- Page header banner (inner pages) ---------- */
.page-banner { padding: 2.5rem 1.5rem 1rem; max-width: var(--max-w); margin: 0 auto; }
.page-banner h1 { margin-bottom: 0.6rem; }
.page-banner p { color: var(--ink-soft); font-size: 1.05rem; }

/* ---------- Content prose pages (about, privacy, terms) ---------- */
.prose h2 { margin-top: 2.2rem; margin-bottom: 0.75rem; }
.prose h2:first-child { margin-top: 0; }
.prose p { margin-bottom: 1rem; color: var(--ink); }
.placeholder-note { display: inline-block; background: #FCEFD9; border: 1px dashed var(--amber-deep); color: var(--amber-ink); font-size: 0.82rem; padding: 0.2rem 0.55rem; border-radius: 6px; margin-left: 0.35rem; }

/* ---------- Footer ---------- */
.site-footer { background: #2E2013; color: #E9DFC9; margin-top: 3rem; }
.footer-inner { max-width: var(--max-w); margin: 0 auto; padding: 2.4rem 1.5rem 1.5rem; display: grid; gap: 1.6rem; grid-template-columns: 1fr; }
.footer-brand { display: flex; gap: 0.9rem; }
.footer-logo { border-radius: 10px; flex: none; }
.footer-business-name { font-family: var(--font-display); font-weight: 700; color: var(--white); margin-bottom: 0.3rem; }
.footer-desc { font-size: 0.85rem; color: #C9BC9C; }
.footer-col h2 { font-family: var(--font-display); font-size: 0.92rem; color: var(--amber); margin-bottom: 0.7rem; }
.footer-col address, .footer-col p { font-style: normal; font-size: 0.88rem; margin-bottom: 0.4rem; color: #DCD1B6; }
.footer-col a { text-decoration: none; color: #DCD1B6; }
.footer-col a:hover { color: var(--amber); }
.footer-links li { margin-bottom: 0.45rem; font-size: 0.88rem; }
.hours-list .hours-row { display: flex; justify-content: space-between; font-size: 0.85rem; margin-bottom: 0.35rem; gap: 1rem; color: #DCD1B6; }
/* Explore links repeat the main nav, which mobile users just used to get
   here — dropped on small screens to keep the footer short; still shown
   at desktop widths where there's room for it alongside the other columns. */
.footer-col-explore { display: none; }
@media (min-width: 700px) {
  .footer-inner { grid-template-columns: 1.3fr repeat(4, 1fr); padding: 3.5rem 1.5rem 2rem; gap: 2.2rem; }
  .footer-col-explore { display: block; }
}
.social-links { display: flex; gap: 0.9rem; margin-top: 0.8rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 1.1rem 1.5rem; text-align: center; font-size: 0.8rem; color: #B7AA8A; }
.footer-bottom p { max-width: none; margin: 0 auto; }

/* ---------- 404 ---------- */
.error-page { text-align: center; padding: 5rem 1.5rem; max-width: 560px; margin: 0 auto; }
.error-page .error-code { font-family: var(--font-display); font-size: 5rem; color: var(--amber); }

/* ============================================================
   MULTI-STEP ENQUIRY FORM
   ============================================================ */
.enquiry-wrap { max-width: 720px; margin: 0 auto; }
.enquiry-card {
  background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--border);
  box-shadow: var(--shadow-soft); padding: clamp(1.5rem, 4vw, 2.75rem);
}
.step-progress { display: flex; gap: 0.5rem; margin-bottom: 1.75rem; }
.step-progress .dot { flex: 1; height: 6px; border-radius: 999px; background: var(--border); transition: background 0.2s ease; }
.step-progress .dot.done, .step-progress .dot.current { background: var(--amber); }
.step-label { font-size: 0.85rem; color: var(--ink-soft); margin-bottom: 1.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.02em; }

/* Reset the browser's default fieldset chrome (an inset border/padding on
   every <fieldset>) — this was showing up as an unwanted box around each
   step; the .enquiry-card above provides the actual visual container. */
.form-step { display: none; border: 0; margin: 0; padding: 0; min-width: 0; }
.form-step.active { display: block; animation: stepIn 0.25s ease; }
@keyframes stepIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }

.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; font-weight: 600; margin-bottom: 0.5rem; font-size: 0.92rem; }
.form-group .hint { font-size: 0.82rem; color: var(--ink-soft); margin-top: 0.35rem; }
.form-group input[type="text"], .form-group input[type="email"], .form-group input[type="tel"], .form-group input[type="number"], .form-group input[type="date"], .form-group textarea {
  width: 100%; padding: 0.85rem 1rem; border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-family: inherit; font-size: 1rem; background: var(--white); color: var(--ink);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.form-group input:focus, .form-group textarea:focus {
  border-color: var(--amber-deep); outline: none;
  box-shadow: 0 0 0 3px rgba(180, 100, 10, 0.12);
}
.form-group textarea { min-height: 110px; resize: vertical; }
.field-error { color: var(--error); font-size: 0.83rem; margin-top: 0.35rem; display: none; }
.form-group.has-error input, .form-group.has-error textarea { border-color: var(--error); }
.form-group.has-error .field-error { display: block; }

.day-picker { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0.6rem; }
.day-toggle { position: relative; }
.day-toggle input { position: absolute; opacity: 0; width: 100%; height: 100%; cursor: pointer; margin: 0; }
.day-toggle .day-face {
  display: flex; align-items: center; justify-content: center; text-align: center;
  padding: 0.9rem 0.3rem; border-radius: var(--radius-sm); border: 2px solid var(--border);
  font-weight: 700; font-size: 0.82rem; color: var(--ink-soft); background: var(--white);
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.day-toggle input:checked + .day-face { border-color: var(--amber); background: var(--amber); color: #4A2A05; }
.day-toggle input:hover + .day-face { border-color: var(--amber-deep); }
.day-toggle input:focus-visible + .day-face { outline: 3px solid var(--amber-deep); outline-offset: 2px; }

.day-time-rows { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.9rem; }
.day-time-row { display: none; align-items: center; gap: 0.8rem; background: var(--cream-deep); border-radius: var(--radius-sm); padding: 0.9rem 1.1rem; flex-wrap: wrap; }
.day-time-row.active { display: flex; animation: stepIn 0.2s ease; }
.day-time-row .day-name { font-weight: 700; min-width: 90px; }
.day-time-row label { font-size: 0.78rem; color: var(--ink-soft); display: block; margin-bottom: 0.25rem; }
.day-time-row input[type="time"] { padding: 0.5rem 0.6rem; border-radius: 8px; border: 1.5px solid var(--border); font-family: inherit; background: var(--white); }

.radio-card-group { display: grid; gap: 0.6rem; grid-template-columns: 1fr; }
@media (min-width: 500px) { .radio-card-group.cols-3 { grid-template-columns: repeat(3, 1fr); } }
.radio-card { position: relative; }
.radio-card input { position: absolute; opacity: 0; width: 100%; height: 100%; margin: 0; cursor: pointer; }
.radio-card .radio-face { display: block; padding: 0.9rem 1rem; border-radius: var(--radius-sm); border: 2px solid var(--border); font-weight: 600; text-align: center; background: var(--white); transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease; }
.radio-card input:checked + .radio-face { border-color: var(--sage); background: var(--sage-tint); color: #3E5F47; }
.radio-card input:hover + .radio-face { border-color: var(--sage); }
.radio-card input:focus-visible + .radio-face { outline: 3px solid var(--amber-deep); outline-offset: 2px; }

/* Term-time-only toggle — same chip language as the day/funding pickers
   above, instead of a bare, unstyled browser checkbox. */
.toggle-chip { position: relative; display: inline-block; cursor: pointer; }
.toggle-chip input { position: absolute; opacity: 0; width: 100%; height: 100%; margin: 0; cursor: pointer; }
.toggle-chip .toggle-face {
  display: inline-flex; align-items: center; gap: 0.65rem; padding: 0.75rem 1.2rem 0.75rem 0.9rem;
  border-radius: 999px; border: 2px solid var(--border); font-weight: 600; font-size: 0.9rem;
  color: var(--ink-soft); background: var(--white); transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.toggle-box {
  width: 18px; height: 18px; border-radius: 5px; border: 2px solid var(--border); background: var(--white);
  flex: none; position: relative; transition: background 0.15s ease, border-color 0.15s ease;
}
.toggle-box::after {
  content: ''; position: absolute; left: 4px; top: 0; width: 5px; height: 9px;
  border: solid var(--white); border-width: 0 2px 2px 0; transform: rotate(40deg); opacity: 0; transition: opacity 0.1s ease;
}
.toggle-chip input:checked + .toggle-face { border-color: var(--sage); background: var(--sage-tint); color: #3E5F47; }
.toggle-chip input:checked + .toggle-face .toggle-box { background: var(--sage); border-color: var(--sage); }
.toggle-chip input:checked + .toggle-face .toggle-box::after { opacity: 1; }
.toggle-chip input:hover + .toggle-face { border-color: var(--sage); }
.toggle-chip input:focus-visible + .toggle-face { outline: 3px solid var(--amber-deep); outline-offset: 2px; }

.funding-note { background: var(--sage-tint); border-radius: var(--radius-sm); padding: 0.9rem 1.1rem; font-size: 0.88rem; color: #3E5F47; margin-top: 1rem; display: none; }
.funding-note.visible { display: block; animation: stepIn 0.2s ease; }

.form-nav { display: flex; justify-content: space-between; align-items: center; gap: 1rem; margin-top: 2.25rem; padding-top: 1.5rem; border-top: 1px solid var(--border); }
.form-nav .spacer { flex: 1; }

.summary-list { background: var(--cream-deep); border-radius: var(--radius-md); padding: 1.4rem 1.6rem; margin-bottom: 1.6rem; }
.summary-list h3 { font-size: 0.95rem; margin-bottom: 0.6rem; color: var(--amber-ink); }
.summary-list .summary-row { display: flex; justify-content: space-between; gap: 1rem; padding: 0.4rem 0; font-size: 0.92rem; border-bottom: 1px solid var(--border); }
.summary-list .summary-row:last-child { border-bottom: none; }
.summary-list .summary-section { margin-bottom: 1.1rem; }
.summary-list .summary-section:last-child { margin-bottom: 0; }

.honeypot-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-confirmation { text-align: center; padding: 2.5rem 1rem; }
.form-confirmation .icon { font-size: 3rem; margin-bottom: 1rem; }
.form-alert { background: #FCEAEA; border: 1px solid var(--error); color: var(--error); padding: 0.9rem 1.1rem; border-radius: var(--radius-sm); margin-bottom: 1.4rem; font-size: 0.9rem; }

/* Contact info tiles on contact page */
.contact-tiles { display: grid; gap: 1.2rem; grid-template-columns: 1fr; margin-bottom: 2.5rem; }
.contact-tile { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 1.3rem; }
.contact-tile h3 { font-size: 0.9rem; color: var(--amber-ink); margin-bottom: 0.3rem; }
.contact-tile p, .contact-tile a { font-size: 0.95rem; text-decoration: none; }
@media (min-width: 700px) { .contact-tiles { grid-template-columns: repeat(4, 1fr); } }
