/* ==========================================================================
   WindowHaus — shared stylesheet
   Brand: Forest Green / Charcoal / Off White / Sage / Warm Grey
   Headings: Sora — Body: Inter
   ========================================================================== */

:root {
  --forest: #17402B;
  --forest-dark: #0f2d1e;
  --charcoal: #2A2A2A;
  --off-white: #F6F4F0;
  --sage: #DDE3DB;
  --warm-grey: #B7B780;
  --white: #FFFFFF;

  --text-body: var(--charcoal);
  --text-muted: #5b5b5b;
  --border-subtle: rgba(42, 42, 42, 0.12);

  --font-head: "Sora", sans-serif;
  --font-body: "Inter", sans-serif;

  --container-w: 1200px;
  --radius: 4px;
  --shadow-card: 0 2px 4px rgba(23, 64, 43, 0.06), 0 12px 32px rgba(23, 64, 43, 0.06);
  --transition: 180ms ease;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
[id] { scroll-margin-top: 100px; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--off-white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }
input, textarea, select { font-family: inherit; font-size: 1rem; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--forest);
  line-height: 1.15;
  margin: 0 0 0.6em;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.1rem, 4.4vw, 3.4rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 600; }
p { margin: 0 0 1em; color: var(--text-muted); }

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

section { padding: 88px 0; }
@media (max-width: 720px) { section { padding: 56px 0; } }

.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--forest);
  background: var(--sage);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 18px;
}

.section-head { max-width: 640px; margin: 0 0 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { font-size: 1.05rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--forest); color: var(--white); }
.btn-primary:hover { background: var(--forest-dark); }
.btn-outline { background: transparent; color: var(--forest); border-color: var(--forest); }
.btn-outline:hover { background: var(--forest); color: var(--white); }
.btn-outline-light { background: transparent; color: var(--off-white); border-color: rgba(246,244,240,0.5); }
.btn-outline-light:hover { background: var(--off-white); color: var(--forest); border-color: var(--off-white); }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(246, 244, 240, 0.92);
  backdrop-filter: saturate(160%) blur(8px);
  border-bottom: 1px solid var(--border-subtle);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}
.brand { display: flex; align-items: center; height: 100%; }
.brand img { height: 40px; width: auto; }
.brand .icon-only { display: none; height: 34px; }

.main-nav { display: flex; align-items: center; gap: 36px; }
.main-nav ul { display: flex; gap: 32px; }
.main-nav a {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--charcoal);
  position: relative;
  padding: 4px 0;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: -4px;
  height: 2px;
  background: var(--forest);
  transition: right var(--transition);
}
.main-nav a:hover::after, .main-nav a.active::after { right: 0; }
.main-nav a.active { color: var(--forest); }

.header-ctas { display: flex; align-items: center; gap: 12px; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--forest); display: block; border-radius: 2px; }

@media (max-width: 980px) {
  .main-nav { display: none; }
  .header-ctas .btn-outline { display: none; }
  .nav-toggle { display: flex; }
  .brand img:not(.icon-only) { display: none; }
  .brand .icon-only { display: block; }

  .main-nav.mobile-open {
    display: flex;
    position: fixed;
    inset: 84px 0 0 0;
    background: var(--off-white);
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 24px;
    gap: 28px;
    overflow-y: auto;
  }
  .main-nav.mobile-open ul { flex-direction: column; gap: 22px; width: 100%; }
  .main-nav.mobile-open a { font-size: 1.15rem; }
  .main-nav.mobile-open .header-ctas-mobile { display: flex; flex-direction: column; gap: 12px; width: 100%; margin-top: 8px; }
}
.header-ctas-mobile { display: none; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 660px;
  padding: 72px 0;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Source photo is a wide (~16:9) night shot with the branded van on the
     right — bias the crop right-of-centre so the van and its livery never
     get cut off, whichever way the section's live aspect ratio crops it. */
  object-position: 72% 55%;
  display: block;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  /* Darkest over the text (left), fading out so the photo reads clearly
     on the right-hand side of the section. */
  background: linear-gradient(92deg,
    rgba(15,15,15,0.94) 0%,
    rgba(15,15,15,0.87) 22%,
    rgba(15,15,15,0.60) 44%,
    rgba(15,15,15,0.28) 64%,
    rgba(15,15,15,0.06) 84%,
    rgba(15,15,15,0) 100%
  );
}
.hero .container { position: relative; z-index: 2; }
.hero-content { max-width: 560px; }
.hero .eyebrow { background: rgba(221,227,219,0.14); color: var(--sage); }
.hero h1 { color: var(--off-white); }
.hero h1 .accent { color: var(--sage); }
.hero .subhead { font-size: 1.15rem; line-height: 1.6; color: rgba(246,244,240,0.85); max-width: 520px; margin-bottom: 40px; text-shadow: 0 1px 12px rgba(0,0,0,0.3); }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

@media (max-width: 768px) {
  .hero { min-height: 520px; padding: 100px 0 64px; }
  .hero-content { max-width: none; }
  .hero-bg-img { object-position: 90% 50%; }
  .hero-overlay {
    /* Less horizontal room on mobile for the gradient to resolve in, so
       fall back to a stronger, full-width scrim instead of a left-right fade. */
    background: linear-gradient(180deg,
      rgba(15,15,15,0.90) 0%,
      rgba(15,15,15,0.80) 50%,
      rgba(15,15,15,0.92) 100%
    );
  }
}
@media (max-width: 600px) {
  .hero-ctas { flex-direction: column; align-items: stretch; }
}

/* ---------- Trust bar ---------- */
.trust-bar { background: var(--forest); padding: 0; }
.trust-bar ul {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  max-width: var(--container-w);
  margin: 0 auto;
}
.trust-bar li {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 36px 16px;
  color: var(--sage);
  border-right: 1px solid rgba(246,244,240,0.14);
  transition: background var(--transition);
}
.trust-bar li:hover { background: rgba(246,244,240,0.05); }
.trust-bar li:last-child { border-right: none; }
.trust-bar svg { width: 28px; height: 28px; stroke: var(--sage); }
.trust-bar span { font-family: var(--font-head); font-weight: 600; font-size: 0.85rem; letter-spacing: 0.01em; color: var(--off-white); }
@media (max-width: 900px) {
  .trust-bar ul { grid-template-columns: repeat(3, 1fr); }
  .trust-bar li:nth-child(3) { border-right: none; }
}
@media (max-width: 560px) {
  .trust-bar ul { grid-template-columns: repeat(2, 1fr); }
  .trust-bar li:nth-child(odd) { border-right: 1px solid rgba(246,244,240,0.14); }
  .trust-bar li:nth-child(even) { border-right: none; }
}

/* ---------- How it works ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  counter-reset: step;
}
.step { position: relative; padding: 32px 24px 24px; background: var(--white); border-radius: var(--radius); border: 1px solid var(--border-subtle); }
.step-num {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--forest);
  background: var(--sage);
  width: 34px; height: 34px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.step h3 { margin-bottom: 8px; }
.step p { margin-bottom: 0; font-size: 0.94rem; }
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }

/* How it works — homepage 3-step redesign (open layout, no cards) */
.hiw-steps {
  display: grid;
  grid-template-columns: 1fr 64px 1fr 64px 1fr;
  align-items: start;
}
.hiw-step { text-align: left; }
.hiw-top {
  display: flex;
  align-items: center;
  gap: 16px;
  height: 56px;
  margin-bottom: 20px;
}
.hiw-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(23, 64, 43, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hiw-icon svg { width: 20px; height: 20px; stroke: var(--forest); }
.hiw-num {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.9rem, 3.4vw, 2.5rem);
  line-height: 1;
  color: var(--forest);
  letter-spacing: -0.02em;
}
.hiw-step h3 { margin-bottom: 10px; }
.hiw-step p { margin-bottom: 0; font-size: 0.96rem; max-width: 300px; }

.hiw-connector {
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: rgba(23, 64, 43, 0.35);
}
.hiw-connector::before, .hiw-connector::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(23, 64, 43, 0.2);
}
.hiw-connector svg { width: 18px; height: 18px; flex-shrink: 0; }

@media (max-width: 860px) {
  .hiw-steps { grid-template-columns: 1fr; row-gap: 36px; }
  .hiw-connector { height: auto; width: 100%; flex-direction: column; padding: 4px 0; }
  .hiw-connector::before, .hiw-connector::after { width: 1px; height: 16px; flex: none; }
  .hiw-connector svg { transform: rotate(90deg); }
  .hiw-step p { max-width: none; }
}

/* ---------- Services ---------- */
.services-wrap { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: start; }
.services-list { display: grid; gap: 22px; margin-top: 12px; }
.services-list li { display: flex; gap: 14px; }
.services-list .tick {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--off-white);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem;
  margin-top: 2px;
}
.services-list strong { display: block; color: var(--charcoal); font-family: var(--font-head); font-size: 0.98rem; margin-bottom: 2px; }
.services-note {
  background: var(--forest);
  color: var(--sage);
  border-radius: var(--radius);
  padding: 32px;
}
.services-note h3 { color: var(--off-white); }
.services-note p { color: var(--sage); }
.services-note p:last-child { margin-bottom: 0; }
@media (max-width: 900px) { .services-wrap { grid-template-columns: 1fr; } }

/* ---------- Product grid ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition), transform var(--transition);
}
.product-card:hover { box-shadow: var(--shadow-card); transform: translateY(-3px); }
.product-media {
  aspect-ratio: 4 / 3;
  background: var(--sage);
  display: flex; align-items: center; justify-content: center;
  padding: 28px;
}
.product-media svg { width: 100%; height: 100%; max-width: 160px; }
.product-body { padding: 22px 24px 26px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.product-body .tagline { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--warm-grey); font-family: var(--font-head); font-weight: 600; }
.product-body p { font-size: 0.94rem; margin-bottom: 4px; flex: 1; }
.product-body .btn { align-self: flex-start; margin-top: 6px; }
@media (max-width: 980px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .product-grid { grid-template-columns: 1fr; } }

.product-grid.teaser { grid-template-columns: repeat(4, 1fr); }
.product-card-teaser { cursor: pointer; }
.product-body-teaser { padding: 18px 20px; text-align: center; }
.product-body-teaser h3 { margin: 0; font-size: 1.02rem; }
@media (max-width: 1080px) { .product-grid.teaser { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 620px) { .product-grid.teaser { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Gallery (before/after) ---------- */
.gallery-featured { display: flex; justify-content: center; }
.ba-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  background: var(--white);
  box-shadow: var(--shadow-card);
  max-width: 820px;
  width: 100%;
}
.ba-images { display: grid; grid-template-columns: 1fr 1fr; }
.ba-images img {
  aspect-ratio: 1 / 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ba-caption { padding: 22px 28px 28px; font-size: 1.02rem; color: var(--text-muted); text-align: center; }
.gallery-note { margin-top: 24px; font-size: 0.85rem; color: var(--text-muted); font-style: italic; text-align: center; }

/* ---------- Delivery section (home) ---------- */
.delivery-wrap {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px;
  align-items: center;
  background: var(--sage);
  border-radius: 8px;
  padding: 56px;
}
.delivery-wrap .btn { margin-top: 8px; }
@media (max-width: 900px) {
  .delivery-wrap { grid-template-columns: 1fr; padding: 36px 24px; }
  .delivery-wrap .uk-map { order: -1; }
}

.uk-map { display: flex; justify-content: center; }
.uk-map svg { width: 100%; max-width: 320px; }

/* ---------- Trust signals ---------- */
.trust-signals { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.trust-statement {
  background: var(--white);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
}
.trust-statement h3 { margin-bottom: 10px; }
.trust-statement p { font-size: 0.92rem; color: var(--text-muted); margin: 0; }
.checklist { display: grid; gap: 16px; }
.checklist li { display: flex; align-items: center; gap: 12px; font-family: var(--font-head); font-weight: 600; color: var(--charcoal); }
.checklist .tick {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--forest); color: var(--off-white);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; flex-shrink: 0;
}
@media (max-width: 800px) { .trust-signals { grid-template-columns: 1fr; } }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: var(--forest);
  color: var(--off-white);
  border-radius: 8px;
  padding: 56px;
  text-align: center;
}
.cta-banner h2 { color: var(--off-white); }
.cta-banner p { color: var(--sage); max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-banner .hero-ctas { justify-content: center; }

/* ---------- Footer ---------- */
.site-footer { background: var(--charcoal); color: var(--sage); padding-top: 64px; }
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(246,244,240,0.12);
}
.footer-brand { display: inline-flex; align-items: center; margin-bottom: 16px; background: var(--off-white); border-radius: var(--radius); padding: 10px 16px; }
.footer-brand img { height: 32px; display: block; }
.footer-col h4 { font-family: var(--font-head); color: var(--off-white); font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 18px; }
.footer-col ul { display: grid; gap: 12px; }
.footer-col a { font-size: 0.92rem; color: var(--sage); transition: color var(--transition); }
.footer-col a:hover { color: var(--off-white); }
.footer-desc { font-size: 0.92rem; max-width: 320px; color: var(--sage); }
.footer-ctas { display: flex; gap: 12px; margin-top: 8px; flex-wrap: wrap; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 0; font-size: 0.82rem; color: rgba(221,227,219,0.7);
  flex-wrap: wrap; gap: 8px;
}
@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ---------- Forms (Quote / Contact) ---------- */
.form-card {
  background: var(--white);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  padding: 44px;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-family: var(--font-head); font-weight: 600; font-size: 0.88rem; color: var(--charcoal); }
.form-field .optional { color: var(--text-muted); font-weight: 400; font-size: 0.82rem; }
.form-field input, .form-field textarea, .form-field select {
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 13px 14px;
  background: var(--off-white);
  color: var(--charcoal);
  transition: border-color var(--transition);
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  outline: none;
  border-color: var(--forest);
}
.form-field textarea { resize: vertical; min-height: 120px; }
.checkbox-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.checkbox-item { display: flex; align-items: center; gap: 10px; font-size: 0.92rem; }
.checkbox-item input { width: 17px; height: 17px; accent-color: var(--forest); }


.form-note {
  display: flex; gap: 12px; align-items: flex-start;
  background: var(--sage);
  border-radius: var(--radius);
  padding: 16px 18px;
  font-size: 0.86rem;
  color: var(--forest);
  margin-bottom: 28px;
}
.form-note svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: 1px; }

.form-status {
  display: none;
  margin-top: 18px;
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: 0.92rem;
}
.form-status.show { display: block; }
.form-status.success { background: #e4f1e6; color: #1a5c2a; }
.form-status.error { background: #fbe6e4; color: #a33; }
.form-status.loading { background: var(--sage); color: var(--forest); }

.quote-layout { display: grid; grid-template-columns: 1fr 340px; gap: 40px; align-items: start; }
.quote-side { display: grid; gap: 20px; position: sticky; top: 108px; }
.side-card {
  background: var(--white);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 26px;
}
.side-card h3 { margin-bottom: 14px; }
.side-card ol, .side-card ul { display: grid; gap: 10px; }
.side-card li { font-size: 0.9rem; color: var(--text-muted); display: flex; gap: 10px; }
.side-card .num {
  font-family: var(--font-head); font-weight: 700; color: var(--forest);
  background: var(--sage); width: 22px; height: 22px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 0.75rem; flex-shrink: 0;
}
@media (max-width: 980px) {
  .quote-layout { grid-template-columns: 1fr; }
  .quote-side { position: static; }
}

/* ---------- Delivery checker ---------- */
.checker-card {
  background: var(--white);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  padding: 40px;
  max-width: 620px;
}
.checker-form { display: flex; gap: 12px; }
.checker-form input { flex: 1; }
@media (max-width: 560px) { .checker-form { flex-direction: column; } }
.checker-result {
  margin-top: 20px;
  padding: 18px 20px;
  border-radius: var(--radius);
  display: none;
  align-items: flex-start;
  gap: 12px;
  font-family: var(--font-head);
  font-weight: 600;
}
.checker-result.show { display: flex; }
.checker-result.yes { background: #e4f1e6; color: #1a5c2a; }
.checker-result.no { background: #fbe6e4; color: #a33; }
.checker-result svg { width: 22px; height: 22px; flex-shrink: 0; margin-top: 1px; }
.checker-result-body { display: flex; flex-direction: column; gap: 10px; }
.checker-result-links { display: flex; gap: 18px; flex-wrap: wrap; }
.checker-result-links a { text-decoration: underline; text-underline-offset: 3px; }
.checker-result.yes .checker-result-links a { color: #1a5c2a; }
.checker-result.no .checker-result-links a { color: #a33; }

/* ---------- Thank you page ---------- */
.thankyou-section {
  background: linear-gradient(180deg, var(--sage) 0%, var(--off-white) 55%);
  padding: 96px 0 120px;
  min-height: 56vh;
  display: flex;
  align-items: center;
}
.thankyou-card {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 56px 48px;
  box-shadow: var(--shadow-card);
}
.thankyou-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.thankyou-icon svg { width: 34px; height: 34px; stroke: var(--white); }
.thankyou-card .eyebrow { margin-bottom: 20px; }
.thankyou-card h1 { font-size: clamp(1.6rem, 3vw, 2.1rem); margin-bottom: 16px; }
.thankyou-card > p { font-size: 1.08rem; color: var(--text-muted); max-width: 460px; margin: 0 auto 24px; }
.thankyou-note {
  font-size: 0.88rem;
  color: var(--text-muted);
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin: 0 0 32px;
}
.thankyou-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
@media (max-width: 600px) {
  .thankyou-section { padding: 72px 0 80px; }
  .thankyou-card { padding: 40px 24px; }
  .thankyou-ctas { flex-direction: column; align-items: stretch; }
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero { background: var(--sage); padding: 64px 0 56px; }
.page-hero .container { max-width: 800px; }
.page-hero p { font-size: 1.05rem; }
.breadcrumb { font-size: 0.85rem; color: var(--forest); margin-bottom: 14px; font-family: var(--font-head); font-weight: 600; }
.breadcrumb a { opacity: 0.7; }
.breadcrumb a:hover { opacity: 1; }

/* ---------- FAQ chatbot widget ---------- */
#wh-chatbot { position: fixed; bottom: 24px; right: 24px; z-index: 900; font-family: var(--font-body); }
.wh-chat-toggle {
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--forest); color: var(--off-white);
  display: flex; align-items: center; justify-content: center;
  border: none; box-shadow: 0 8px 24px rgba(23,64,43,0.35);
  transition: transform var(--transition);
}
.wh-chat-toggle:hover { transform: scale(1.06); }
.wh-chat-toggle svg { width: 26px; height: 26px; }
.wh-chat-window {
  position: absolute;
  bottom: 76px; right: 0;
  width: 340px;
  max-width: calc(100vw - 32px);
  max-height: 70vh;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.2);
  display: none;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
}
.wh-chat-window.open { display: flex; }
.wh-chat-header {
  background: var(--forest); color: var(--off-white);
  padding: 16px 18px; display: flex; align-items: center; justify-content: space-between;
}
.wh-chat-header strong { font-family: var(--font-head); font-size: 0.95rem; }
.wh-chat-header span { font-size: 0.76rem; color: var(--sage); display: block; margin-top: 2px; }
.wh-chat-close { background: none; border: none; color: var(--off-white); font-size: 1.3rem; line-height: 1; }
.wh-chat-body { padding: 16px; overflow-y: auto; flex: 1; display: flex; flex-direction: column; gap: 10px; background: var(--off-white); }
.wh-msg { max-width: 88%; padding: 10px 14px; border-radius: 10px; font-size: 0.87rem; line-height: 1.4; }
.wh-msg.bot { background: var(--white); border: 1px solid var(--border-subtle); align-self: flex-start; border-bottom-left-radius: 2px; }
.wh-msg.user { background: var(--forest); color: var(--off-white); align-self: flex-end; border-bottom-right-radius: 2px; }
.wh-chat-options { display: flex; flex-direction: column; gap: 8px; padding: 4px 16px 16px; background: var(--off-white); }
.wh-chat-options button {
  text-align: left;
  background: var(--white);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 0.84rem;
  color: var(--forest);
  font-weight: 600;
  transition: background var(--transition), border-color var(--transition);
}
.wh-chat-options button:hover { background: var(--sage); border-color: var(--forest); }

/* ---------- Misc utility ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}
