/* ============================================
   Go Campers — shared stylesheet
   ============================================ */

:root {
  --forest: #2f4a3c;
  --forest-dark: #203630;
  --forest-light: #3f6650;
  --cream: #faf6ee;
  --cream-dark: #f1e9d8;
  --sand: #e7dcc4;
  --rust: #c8703e;
  --rust-dark: #a85a2e;
  --mustard: #e0a94a;
  --ink: #2a2a24;
  --ink-soft: #5a5a4f;
  --white: #ffffff;
  --line: #e2dac6;
  --ok: #4c7a5a;
  --booked: #c8703e;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 6px 24px rgba(42, 42, 36, 0.08);
  --shadow-lg: 0 16px 40px rgba(42, 42, 36, 0.14);
  --max: 1160px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--forest-dark);
  line-height: 1.2;
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(2.1rem, 4vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
h3 { font-size: 1.3rem; }

p { margin: 0 0 1em; color: var(--ink-soft); }

a { color: var(--rust); text-decoration: none; }
a:hover { text-decoration: underline; }

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

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  text-decoration: none !important;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--rust);
  color: var(--white);
  box-shadow: var(--shadow);
}
.btn-primary:hover { background: var(--rust-dark); }

.btn-outline {
  background: transparent;
  border-color: var(--forest);
  color: var(--forest);
}
.btn-outline:hover { background: var(--forest); color: var(--white); }

.btn-light {
  background: var(--white);
  color: var(--forest-dark);
}

.btn-block { width: 100%; }
.btn[disabled] { opacity: 0.55; cursor: not-allowed; transform: none; }

/* ---------- Top banner ---------- */
.top-banner {
  background: var(--forest-dark);
  color: var(--cream-dark);
  font-size: 0.85rem;
  text-align: center;
  padding: 8px 16px;
}
.top-banner a { color: var(--mustard); }

/* ---------- Header / Nav ---------- */
header.site-header {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: var(--max);
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: Georgia, serif;
  font-size: 1.4rem;
  font-weight: bold;
  color: var(--forest-dark);
}
.brand:hover { text-decoration: none; }
.brand-mark {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.brand-logo {
  height: 46px;
  width: auto;
  display: block;
}
.brand small {
  display: block;
  font-family: "Segoe UI", sans-serif;
  font-size: 0.65rem;
  font-weight: normal;
  color: var(--ink-soft);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

nav.main-nav ul {
  list-style: none;
  display: flex;
  gap: 6px;
  margin: 0;
  padding: 0;
}
nav.main-nav a {
  color: var(--ink);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 10px 14px;
  border-radius: 999px;
  transition: background 0.15s ease;
}
nav.main-nav a:hover, nav.main-nav a.active {
  background: var(--forest);
  color: var(--white);
  text-decoration: none;
}
nav.main-nav a.cta {
  background: var(--rust);
  color: var(--white);
}
nav.main-nav a.cta:hover { background: var(--rust-dark); }

/* ---- Nav dropdown (Our Vehicles) ---- */
.has-submenu { position: relative; }
.has-submenu > a::after {
  content: "▾";
  font-size: 0.7em;
  margin-left: 6px;
  vertical-align: middle;
}
/* Selector is scoped to nav.main-nav so it outranks the `nav.main-nav ul
   { display:flex }` rule above — otherwise the panel would sit permanently
   open, since a bare `.submenu` has lower specificity than that. */
nav.main-nav .submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 190px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  padding: 6px;
  z-index: 200;
}
/* Bridges the gap between the parent item and the panel, so the menu
   doesn't vanish as the pointer travels down onto it. */
nav.main-nav .submenu::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 0;
  right: 0;
  height: 8px;
}
nav.main-nav .has-submenu:hover > .submenu,
nav.main-nav .has-submenu:focus-within > .submenu { display: block; }
nav.main-nav .submenu li { width: 100%; }
nav.main-nav .submenu a {
  display: block;
  white-space: nowrap;
  font-weight: 500;
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
  padding: 9px 12px;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--forest-dark);
}

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  nav.main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
  nav.main-nav.open { display: block; }
  nav.main-nav ul {
    flex-direction: column;
    padding: 12px 24px 20px;
  }
  nav.main-nav a { display: block; }

  /* No hover on touch, so the submenu is always shown, indented under its
     parent, rather than hidden behind an interaction that can't happen. */
  nav.main-nav .has-submenu > a::after { display: none; }
  nav.main-nav .submenu {
    display: block;
    position: static;
    border: none;
    box-shadow: none;
    background: transparent;
    padding: 0;
    min-width: 0;
    border-left: 2px solid var(--line);
    margin: 2px 0 6px 14px;
  }
  nav.main-nav .submenu::before { display: none; }
  nav.main-nav .submenu a { padding: 8px 12px; font-size: 0.9rem; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background-color: var(--forest-dark);
  background-size: cover;
  background-position: center;
  color: var(--white);
  overflow: hidden;
  min-height: 640px;
  display: flex;
  align-items: center;
}
.hero-inner {
  max-width: var(--max);
  margin: 0;
  padding: 80px 24px;
  width: 100%;
  max-width: 560px;
}
.hero h1 { color: var(--white); }
.hero .eyebrow {
  display: inline-block;
  background: rgba(255,255,255,0.14);
  color: var(--mustard);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.hero p.lead { color: var(--cream-dark); font-size: 1.15rem; max-width: 46ch; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 24px; }
.hero-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}
.hero-img img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 860px) {
  .hero { min-height: 480px; }
  .hero-inner { padding: 48px 24px; }
}

/* ---------- Page header (non-home) ---------- */
.page-hero {
  background: var(--forest-dark);
  color: var(--white);
  padding: 56px 24px;
  text-align: center;
}
.page-hero h1 { color: var(--white); margin-bottom: 8px; }
.page-hero p { color: var(--cream-dark); max-width: 60ch; margin: 0 auto; }

/* ---------- Sections ---------- */
section { padding: 72px 0; }
section.tight { padding: 48px 0; }
.section-alt { background: var(--cream-dark); }
.section-forest { background: var(--forest-dark); color: var(--cream-dark); }
.section-forest h2, .section-forest h3 { color: var(--white); }
.section-forest p { color: var(--cream-dark); }

.section-head { text-align: center; max-width: 640px; margin: 0 auto 40px; }
.eyebrow-sm {
  display: inline-block;
  color: var(--rust);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

/* ---------- Cards / grids ---------- */
.grid {
  display: grid;
  gap: 24px;
}
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 860px) {
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.card .icon {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--cream-dark);
  color: var(--rust);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 14px;
}

.feature-list { list-style: none; padding: 0; margin: 0; }
.feature-list li {
  padding: 8px 0 8px 30px;
  position: relative;
  color: var(--ink-soft);
  border-bottom: 1px dashed var(--line);
}
.feature-list li:last-child { border-bottom: none; }
.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--ok);
  font-weight: bold;
}

/* ---------- Pricing ---------- */
.price-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 2px solid var(--line);
  position: relative;
}
.price-card.featured {
  border-color: var(--rust);
  transform: translateY(-8px);
}
.price-card .badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--rust);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 999px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.price-card .amount {
  font-family: Georgia, serif;
  font-size: 2.4rem;
  color: var(--forest-dark);
  margin: 10px 0;
}
.price-card .amount span { font-size: 1rem; color: var(--ink-soft); font-family: inherit; }
.price-card .note { font-size: 0.85rem; color: var(--ink-soft); }

.price-includes {
  background: var(--cream-dark);
  border-radius: var(--radius);
  padding: 28px;
  margin-top: 40px;
}

/* ---------- Forms ---------- */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 700px) {
  .form-grid { grid-template-columns: 1fr; }
}

label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 6px;
  color: var(--forest-dark);
}
input, select, textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: inherit;
  background: var(--white);
  color: var(--ink);
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--forest);
}
.field { margin-bottom: 4px; }
.checkbox-field { display: flex; align-items: flex-start; gap: 10px; }
.checkbox-field input { width: auto; margin-top: 4px; }
.checkbox-field label { font-weight: 500; color: var(--ink-soft); margin: 0; }

/* ---- Vehicle chooser (booking page, Step 1) ---- */
.vehicle-choice {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}
.vehicle-option {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 18px 20px;
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.vehicle-option:hover { border-color: var(--forest-light); }
.vehicle-option input { width: auto; margin-top: 3px; flex: none; }
.vehicle-option-body { display: flex; flex-direction: column; gap: 3px; }
.vehicle-option-body strong { font-size: 1.05rem; color: var(--forest); }
.vehicle-option-meta { font-size: 0.85rem; color: var(--ink-soft); }
/* :has() lets the whole card react to its radio; browsers without it still
   get a perfectly usable (just un-highlighted) chooser. */
.vehicle-option:has(input:checked) {
  border-color: var(--forest);
  box-shadow: var(--shadow);
}
.vehicle-option:has(input:focus-visible) { outline: 2px solid var(--rust); outline-offset: 2px; }
.hint { font-size: 0.8rem; color: var(--ink-soft); margin-top: 4px; }

.form-panel {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

/* ---------- Calendar ---------- */
.calendar-wrap {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  padding: 24px;
}
.cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.cal-header button {
  background: var(--cream-dark);
  border: none;
  width: 34px; height: 34px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  color: var(--forest-dark);
}
.cal-header button:hover { background: var(--sand); }
.cal-header a.cal-nav-link {
  background: var(--cream-dark);
  width: 34px; height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--forest-dark);
  text-decoration: none;
}
.cal-header a.cal-nav-link:hover { background: var(--sand); }
.cal-title { font-weight: 700; color: var(--forest-dark); font-family: Georgia, serif; }

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}
.cal-dow {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--ink-soft);
  text-transform: uppercase;
  padding-bottom: 6px;
}
.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  background: var(--cream);
  color: var(--ink);
}
.cal-day.empty { background: transparent; }
.cal-day.past { color: #c7c2b0; }
.cal-day.available { background: rgba(76, 122, 90, 0.12); color: var(--ok); font-weight: 600; cursor: pointer; }
.cal-day.available:hover { background: rgba(76, 122, 90, 0.25); }
.cal-day.booked { background: rgba(200, 112, 62, 0.14); color: var(--booked); text-decoration: line-through; }
/* Changeover days: van is out one part of the day, back the other — half
   coloured diagonally to show the day is bookable but shared with a
   handover. Orientation flips depending on which half is occupied. */
.cal-day.turnover-checkin {
  background: linear-gradient(
    135deg,
    rgba(200, 112, 62, 0.24) 0%,
    rgba(200, 112, 62, 0.24) 50%,
    rgba(76, 122, 90, 0.14) 50%,
    rgba(76, 122, 90, 0.14) 100%
  );
}
.cal-day.turnover-checkout {
  background: linear-gradient(
    135deg,
    rgba(76, 122, 90, 0.14) 0%,
    rgba(76, 122, 90, 0.14) 50%,
    rgba(200, 112, 62, 0.24) 50%,
    rgba(200, 112, 62, 0.24) 100%
  );
}
.cal-day.selected { background: var(--forest) !important; color: var(--white) !important; }
.cal-day.today { border: 2px solid var(--rust); }

.cal-legend { display: flex; gap: 20px; margin-top: 18px; font-size: 0.82rem; flex-wrap: wrap; }
.cal-legend span { display: inline-flex; align-items: center; gap: 6px; color: var(--ink-soft); }
.legend-dot { width: 12px; height: 12px; border-radius: 3px; display: inline-block; }
.legend-dot.available { background: rgba(76, 122, 90, 0.4); }
.legend-dot.booked { background: rgba(200, 112, 62, 0.4); }
.legend-dot.turnover {
  background: linear-gradient(
    135deg,
    rgba(200, 112, 62, 0.5) 0%,
    rgba(200, 112, 62, 0.5) 50%,
    rgba(76, 122, 90, 0.5) 50%,
    rgba(76, 122, 90, 0.5) 100%
  );
}
.legend-dot.selected { background: var(--forest); }

.cal-note {
  margin-top: 16px;
  font-size: 0.82rem;
  color: var(--ink-soft);
  background: var(--cream-dark);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
}

/* ---------- Admin dashboard ---------- */
.admin-tabs { display: flex; gap: 8px; margin: 22px 0 32px; flex-wrap: wrap; }
.admin-tabs a {
  padding: 10px 20px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--ink);
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none !important;
}
.admin-tabs a:hover { background: var(--cream-dark); }
.admin-tabs a.active { background: var(--forest); border-color: var(--forest); color: var(--white); }

.admin-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}
.admin-stat {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
}
.admin-stat .num { font-size: 1.7rem; font-weight: 700; color: var(--forest-dark); font-family: Georgia, serif; }
.admin-stat .label { font-size: 0.78rem; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.04em; margin-top: 2px; }
.admin-stat .sub { font-size: 0.82rem; color: var(--ink-soft); margin-top: 6px; }

.admin-section-title { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; margin: 36px 0 14px; }
.admin-section-title h2 { margin: 0; }
.admin-section-title a { font-size: 0.85rem; font-weight: 600; }

/* ---------- Estimate box ---------- */
.estimate-box {
  background: var(--forest-dark);
  color: var(--white);
  border-radius: var(--radius);
  padding: 26px;
  /* Not sticky: the booking pages stack this above the form in a single
     column, and a sticky box floats over the fields as you scroll. Only
     re-add sticky positioning if it returns to a side-by-side grid. */
}
.estimate-box h3 { color: var(--white); }
.estimate-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.14);
  font-size: 0.92rem;
  color: var(--cream-dark);
}
.estimate-row.total {
  border-bottom: none;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--white);
  padding-top: 14px;
}
.estimate-box .btn { margin-top: 18px; }

/* ---------- Testimonial / quote ---------- */
.quote {
  font-family: Georgia, serif;
  font-size: 1.3rem;
  font-style: italic;
  color: var(--forest-dark);
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.quote cite {
  display: block;
  margin-top: 14px;
  font-style: normal;
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.testimonial-card { display: flex; flex-direction: column; gap: 14px; }
.testimonial-stars { color: var(--rust); font-size: 0.95rem; letter-spacing: 2px; }
.testimonial-card .testimonial-text { color: var(--ink); font-size: 0.95rem; margin: 0; flex: 1; line-height: 1.6; }
.testimonial-source {
  font-size: 0.8rem;
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
  padding-top: 12px;
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
}
.testimonial-source strong { color: var(--forest-dark); }

/* ---------- FAQ accordion ---------- */
.faq-category { margin: 40px 0 16px; }
.faq-category:first-child { margin-top: 0; }
.faq-category h2, .faq-category h3 { color: var(--forest-dark); font-family: Georgia, serif; margin-bottom: 4px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  padding: 4px 22px;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--ink);
  padding: 16px 0;
  list-style: none;
  position: relative;
  padding-right: 34px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 2px;
  top: 14px;
  font-size: 1.3rem;
  line-height: 1;
  color: var(--forest);
}
.faq-item[open] summary::after { content: "\2212"; }
.faq-item p { padding-bottom: 18px; margin: 0; color: var(--ink-soft); line-height: 1.6; }
.faq-item p + p { margin-top: 10px; }
.faq-item ul { margin: 0; padding: 0 20px 18px; color: var(--ink-soft); line-height: 1.6; }
.faq-item li + li { margin-top: 4px; }
.faq-item .notice { margin: 0 0 14px; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--rust), var(--rust-dark));
  color: var(--white);
  text-align: center;
  padding: 56px 24px;
  border-radius: var(--radius);
}
.cta-band h2 { color: var(--white); }
.cta-band p { color: rgba(255,255,255,0.9); }

/* ---------- Table (T&Cs summary) ---------- */
.tc-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.tc-table th, .tc-table td {
  text-align: left;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  font-size: 0.92rem;
}
.tc-table th { background: var(--cream-dark); color: var(--forest-dark); width: 40%; }

/* ---------- Legal content ---------- */
.legal h2 { margin-top: 2em; padding-top: 12px; border-top: 1px solid var(--line); }
.legal h2:first-of-type { border-top: none; margin-top: 0; }
.legal ul { color: var(--ink-soft); }
.toc {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 40px;
}
.toc ol { columns: 2; gap: 24px; margin: 0; padding-left: 20px; }
@media (max-width: 700px) { .toc ol { columns: 1; } }
.toc a { color: var(--ink); font-size: 0.9rem; }

/* ---------- Alert / notice ---------- */
.notice {
  border-left: 4px solid var(--rust);
  background: var(--cream-dark);
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin: 20px 0;
}
.notice.success { border-color: var(--ok); }

/* ---------- Footer ---------- */
footer.site-footer {
  background: var(--forest-dark);
  color: var(--cream-dark);
  padding: 56px 0 24px;
  margin-top: 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 700px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid h2, .footer-grid h4 { color: var(--white); font-family: "Segoe UI", sans-serif; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.06em; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 8px; }
.footer-grid a { color: var(--cream-dark); }
.footer-grid a:hover { color: var(--white); }

.footer-newsletter { margin-top: 18px; }
.footer-newsletter-row { display: flex; gap: 8px; margin-top: 4px; }
.footer-newsletter-row input[type="email"] {
  flex: 1;
  min-width: 0;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 0.85rem;
}
.footer-newsletter-row input[type="email"]::placeholder { color: rgba(255, 255, 255, 0.55); }
.footer-newsletter-row input[type="email"]:focus { outline: none; border-color: var(--white); }
.footer-newsletter-row button {
  padding: 10px 18px;
  border-radius: 999px;
  border: none;
  background: var(--rust);
  color: var(--white);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  white-space: nowrap;
}
.footer-newsletter-row button:hover { background: var(--rust-dark); }
.footer-newsletter-note { font-size: 0.72rem; color: rgba(255, 255, 255, 0.5); margin-top: 8px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
}

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.small { font-size: 0.85rem; color: var(--ink-soft); }

/* Promoted from h3 to h2 for heading-order correctness — keep the h3 look. */
.form-panel h2, .card h2 { font-size: 1.3rem; }
