/* =========================================================================
   ZEST — Meadow theme · Complete design system
   Sage + clay + ochre on warm ivory · Bricolage Grotesque + Lora
   ========================================================================= */

/* ---------- 1. Design tokens ---------- */
:root {
  /* Meadow palette */
  --deep: #384F3F;
  --deep-2: #486051;
  --deep-3: #5C7666;
  --deep-900: #24362B;

  --terra: #B8613F;
  --terra-2: #9A5031;
  --terra-soft: #E8C3AE;
  --terra-50: #F3DECE;

  --mustard: #D4A956;
  --mustard-soft: #EBCF96;
  --mustard-50: #F5E6BF;

  --cream: #F5F1E7;
  --cream-2: #EBE4D1;
  --cream-3: #DDD3B8;

  --rose: #D6BEA8;
  --sage: #B4A3C4;
  --sage-soft: #CDBED8;

  --ink: #1E2921;
  --muted: #5F6B5F;

  --line: rgba(56, 79, 63, .12);
  --line-2: rgba(56, 79, 63, .15);
  --line-footer: rgba(214, 190, 168, .15);

  /* 4/8 spacing scale */
  --s-1: 4px; --s-2: 8px; --s-3: 12px; --s-4: 16px; --s-5: 20px;
  --s-6: 24px; --s-8: 32px; --s-10: 40px; --s-12: 48px; --s-16: 64px;
  --s-20: 80px; --s-24: 96px;

  /* Radius */
  --r-sm: 4px; --r-md: 8px; --r-lg: 16px; --r-xl: 28px;

  /* Motion */
  --ease: cubic-bezier(.2, .8, .2, 1);
  --t-fast: 150ms;
  --t: 220ms;
  --t-slow: 320ms;

  --container: 1280px;
}

/* ---------- 2. Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Lora', Georgia, serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
a {
  color: var(--terra);
  text-decoration: none;
  transition: color var(--t-fast) var(--ease);
}
a:hover { color: var(--deep); }

/* ---------- 3. Typography ---------- */
h1, h2, h3, h4 {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  color: var(--deep);
  line-height: 1;
  letter-spacing: -0.03em;
  font-weight: 800;
  font-variation-settings: "opsz" 96;
}
h1 { font-size: clamp(3rem, 1.8rem + 5vw, 6.5rem); }
h2 { font-size: clamp(2.2rem, 1.4rem + 2.6vw, 3.8rem); }
h3 { font-size: clamp(1.4rem, 1.1rem + .9vw, 1.8rem); font-weight: 700; }
h4 { font-size: 1.1rem; font-weight: 700; }
p { color: var(--deep-2); }
.num { font-variant-numeric: tabular-nums; font-feature-settings: "tnum"; }

.pretitle {
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: var(--s-6);
}
.pretitle::before {
  content: "✦";
  color: var(--mustard);
  font-size: 1rem;
}

/* ---------- 4. Layout ---------- */
.container { max-width: var(--container); margin-inline: auto; padding-inline: clamp(20px, 4vw, 56px); }
.narrow { max-width: 900px; margin-inline: auto; }
section { padding-block: clamp(70px, 11vw, 140px); }
section.tight { padding-block: clamp(50px, 8vw, 90px); }

/* ---------- 5. A11y utilities ---------- */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--deep); color: var(--cream);
  padding: 10px 16px; border-radius: var(--r-sm);
  z-index: 100; font-weight: 700;
  font-family: 'Bricolage Grotesque', sans-serif;
}
.skip:focus { left: 12px; top: 12px; color: var(--cream); }
:focus-visible {
  outline: 3px solid var(--terra);
  outline-offset: 3px;
  border-radius: 4px;
}

.ic { width: 22px; height: 22px; flex-shrink: 0; }
.ic-lg { width: 28px; height: 28px; }
.ic-sm { width: 16px; height: 16px; }
.ic-xs { width: 14px; height: 14px; }

/* ---------- 6. Header ---------- */
header.site-header {
  padding: var(--s-6) 0;
  background: var(--cream);
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  transition: border-color var(--t) var(--ease),
              background var(--t) var(--ease),
              backdrop-filter var(--t) var(--ease);
}
header.site-header.scrolled {
  background: rgba(245, 241, 231, .88);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom-color: var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-6);
}
.brand {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  color: var(--deep);
  min-height: 44px;
}
.brand img { height: 52px; width: auto; }
.brand-text { line-height: 1; }
.brand-text strong { display: block; font-size: 1.3rem; letter-spacing: -0.02em; }
.brand-text span {
  display: block;
  font-size: 0.7rem;
  color: var(--muted);
  margin-top: 3px;
  font-family: 'Lora', serif;
  font-weight: 400;
  letter-spacing: 0.04em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  padding: 0;
}
.nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 14px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 500;
  font-size: 0.96rem;
  letter-spacing: -0.01em;
  color: var(--deep);
  transition: color var(--t) var(--ease);
}
.nav-links a:hover { color: var(--terra); }
.nav-links a[aria-current="page"] { color: var(--terra); }
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: var(--r-sm);
  align-items: center; justify-content: center;
  color: var(--deep);
}
@media (max-width: 980px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: absolute;
    inset: 100% 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    padding: var(--s-3) clamp(20px, 4vw, 56px) var(--s-5);
    display: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
  }
  .nav-links.is-open { display: flex; }
}

/* ---------- 7. Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  min-height: 44px;
  padding: 16px 28px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.01em;
  transition: all var(--t) var(--ease);
  border-radius: var(--r-sm);
  cursor: pointer;
}
.btn-primary {
  background: var(--terra);
  color: var(--cream);
}
.btn-primary:hover {
  background: var(--terra-2);
  color: var(--cream);
  transform: translate(-2px, -2px);
  box-shadow: 4px 4px 0 var(--deep);
}
.btn-ghost {
  background: transparent;
  color: var(--deep);
  border-bottom: 2px solid var(--deep);
  border-radius: 0;
  padding: 10px 4px;
}
.btn-ghost:hover { color: var(--terra); border-color: var(--terra); }
.btn .ic { transition: transform var(--t) var(--ease); }
.btn:hover .ic-arr { transform: translateX(3px); }

/* ---------- 8. Home hero ---------- */
.hero { padding: clamp(40px, 6vw, 80px) 0 0; position: relative; }
.hero h1 { letter-spacing: -0.04em; }
.hero h1 .em {
  font-style: italic;
  font-family: 'Lora', serif;
  font-weight: 400;
  color: var(--terra);
  letter-spacing: -0.01em;
}
.hero h1 .underline {
  background: linear-gradient(transparent 70%, var(--mustard) 70%);
  padding: 0 4px;
}
.hero-lede {
  font-size: clamp(1.15rem, 1rem + .5vw, 1.4rem);
  max-width: 60ch;
  margin-top: var(--s-10);
  color: var(--deep-2);
  line-height: 1.55;
}
.hero-cta {
  display: flex;
  gap: var(--s-8);
  align-items: center;
  flex-wrap: wrap;
  margin-top: var(--s-12);
}
.hero-band {
  margin-top: clamp(50px, 8vw, 100px);
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: 2px;
  background: var(--deep);
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--line);
}
@media (max-width: 880px) { .hero-band { grid-template-columns: 1fr; } }
.hero-band > div {
  background: var(--cream);
  padding: var(--s-10) var(--s-8);
  min-height: 460px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.hero-band .img-cell { padding: 0; overflow: hidden; background: var(--cream-2); }
.hero-band .img-cell img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  min-height: 460px;
}
@media (max-width: 880px) {
  .hero-band > div { min-height: 320px; }
  .hero-band .img-cell img { min-height: 380px; }
}
.hero-band .num-big {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: clamp(3rem, 2rem + 3vw, 5rem);
  color: var(--terra);
  letter-spacing: -0.05em;
  line-height: 1;
}
.hero-band .lbl { font-size: 0.95rem; color: var(--deep-2); max-width: 26ch; }

/* ---------- 9. Page hero (inner pages) ---------- */
.page-hero {
  padding: clamp(50px, 8vw, 100px) 0 clamp(40px, 6vw, 70px);
  position: relative;
}
.page-hero h1 { font-size: clamp(2.5rem, 1.6rem + 3.5vw, 5rem); }
.page-hero h1 em {
  font-style: italic;
  font-family: 'Lora', serif;
  font-weight: 400;
  color: var(--terra);
}
.page-hero p.lede {
  font-size: clamp(1.1rem, 1rem + .3vw, 1.3rem);
  max-width: 58ch;
  margin-top: var(--s-8);
  color: var(--deep-2);
  line-height: 1.55;
}
.crumbs {
  display: flex;
  gap: var(--s-2);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: var(--s-5);
  letter-spacing: 0.02em;
}
.crumbs a { color: var(--muted); }
.crumbs a:hover { color: var(--terra); }
.crumbs span.sep { color: var(--cream-3); }

/* ---------- 10. Story / manifesto quote section ---------- */
.story {
  padding: clamp(90px, 12vw, 160px) 0;
  background: var(--deep);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.story::before {
  content: "✦";
  position: absolute;
  font-size: 30rem;
  color: var(--terra);
  opacity: .05;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  line-height: 1;
}
.story h2, .story h3 { color: var(--cream); }
.story p { color: var(--cream); }
.story .pretitle { color: var(--mustard); }
.story .pretitle::before { color: var(--terra); }
.story-quote {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: clamp(1.7rem, 1.1rem + 2.2vw, 3.2rem);
  line-height: 1.3;
  letter-spacing: -0.01em;
  max-width: 26ch;
  position: relative;
  color: var(--cream);
}
.story-quote .hl {
  color: var(--mustard);
  font-style: normal;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
}
.story-author {
  margin-top: var(--s-10);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mustard-soft);
}

/* ---------- 11. Services list (numbered rows) ---------- */
.head-spread {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-16);
  align-items: end;
  margin-bottom: var(--s-20);
}
@media (max-width: 760px) {
  .head-spread { grid-template-columns: 1fr; gap: var(--s-6); }
}
.head-spread h2 em {
  font-style: italic;
  font-family: 'Lora', serif;
  font-weight: 400;
  color: var(--terra);
}
.head-spread p { color: var(--deep-2); font-size: 1.1rem; max-width: 52ch; }

.svc-list { border-top: 2px solid var(--deep); }
.svc-row {
  display: grid;
  grid-template-columns: auto 1fr 2fr auto;
  gap: clamp(18px, 4vw, 60px);
  padding: var(--s-10) 0;
  border-bottom: 1px solid var(--line-2);
  align-items: start;
  transition: padding var(--t) var(--ease), background var(--t) var(--ease);
  text-decoration: none;
}
.svc-row:hover {
  padding-left: var(--s-4);
  background: linear-gradient(90deg, var(--cream-2), transparent 40%);
}
@media (max-width: 760px) {
  .svc-row { grid-template-columns: auto 1fr; row-gap: var(--s-3); }
  .svc-row .svc-detail { grid-column: 1 / -1; }
  .svc-row .svc-arr { grid-column: 1 / -1; justify-self: start; margin-top: var(--s-3); }
}
.svc-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--terra);
  letter-spacing: -0.02em;
  padding-top: var(--s-1);
}
.svc-row h3 { margin-top: var(--s-1); }
.svc-row .svc-detail {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 48ch;
}
.svc-row .svc-arr {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 2px solid var(--deep);
  display: grid; place-items: center;
  color: var(--deep);
  transition: all var(--t) var(--ease);
}
.svc-row:hover .svc-arr,
.svc-row:focus-visible .svc-arr {
  background: var(--terra);
  border-color: var(--terra);
  color: var(--cream);
  transform: rotate(-45deg);
}

/* ---------- 12. Service detail blocks (services page) ---------- */
.svc-block {
  background: var(--cream);
  border-radius: var(--r-sm);
  padding: clamp(28px, 4vw, 48px);
  border: 2px solid var(--deep);
  box-shadow: 6px 6px 0 var(--deep);
  margin-bottom: var(--s-8);
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.svc-block:hover {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0 var(--deep);
}
.svc-block-head {
  display: flex;
  align-items: center;
  gap: var(--s-5);
  margin-bottom: var(--s-6);
}
.svc-block-head .ic-wrap {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--mustard);
  color: var(--deep);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.svc-block-head .ic-wrap svg { width: 28px; height: 28px; }
.svc-block-head h3 { margin: 0; }
.svc-block-head p {
  margin: var(--s-1) 0 0;
  font-size: 0.92rem;
  color: var(--muted);
  font-family: 'Bricolage Grotesque', sans-serif;
}
.svc-block ul.svc-items {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-3) var(--s-6);
  margin-top: var(--s-5);
}
@media (max-width: 700px) { .svc-block ul.svc-items { grid-template-columns: 1fr; } }
.svc-block ul.svc-items li {
  display: flex;
  align-items: flex-start;
  gap: var(--s-3);
  padding: var(--s-2) 0;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 500;
  font-size: 0.98rem;
  color: var(--deep);
  line-height: 1.5;
}
.svc-block ul.svc-items li::before {
  content: "✦";
  color: var(--terra);
  flex-shrink: 0;
  font-size: 0.9rem;
  margin-top: 2px;
}

/* ---------- 13. Numbers strip ---------- */
.num-strip {
  background: var(--cream-2);
  padding: clamp(70px, 10vw, 120px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.num-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-8);
}
@media (max-width: 820px) { .num-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .num-grid { grid-template-columns: 1fr; } }
.n-card { padding-top: var(--s-5); border-top: 3px solid var(--deep); }
.n-card .big {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: clamp(3rem, 2rem + 3vw, 5rem);
  color: var(--deep);
  letter-spacing: -0.05em;
  line-height: 0.95;
  margin-bottom: var(--s-3);
}
.n-card .big em {
  font-style: italic;
  color: var(--terra);
  font-family: 'Lora', serif;
  font-weight: 500;
}
.n-card p {
  font-size: 0.94rem;
  color: var(--muted);
  max-width: 22ch;
  font-family: 'Bricolage Grotesque', sans-serif;
}

/* ---------- 14. Audience cards ---------- */
.audience { background: var(--cream-2); }
.aud-head { text-align: center; max-width: 760px; margin: 0 auto var(--s-20); }
.aud-head h2 em {
  font-style: italic;
  font-family: 'Lora', serif;
  font-weight: 400;
  color: var(--terra);
}
.aud-head .pretitle { justify-content: center; }

.aud-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 3vw, 36px);
}
@media (max-width: 760px) { .aud-grid { grid-template-columns: 1fr; } }
.aud {
  background: var(--cream);
  border-radius: var(--r-sm);
  padding: clamp(32px, 4vw, 52px);
  border: 2px solid var(--deep);
  box-shadow: 6px 6px 0 var(--deep);
  transition: all var(--t) var(--ease);
}
.aud:hover {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0 var(--deep);
}
.aud .ribbon {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  background: var(--mustard);
  color: var(--deep);
  padding: 5px 14px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: var(--s-6);
  border-radius: 2px;
}
.aud.adults .ribbon { background: var(--rose); }
.aud h3 { font-size: clamp(1.5rem, 1.2rem + 1vw, 2rem); margin-bottom: var(--s-4); }
.aud p { color: var(--deep-2); margin-bottom: var(--s-6); max-width: 42ch; }
.aud ul { list-style: none; padding: 0; display: grid; gap: var(--s-3); }
.aud li {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 500;
  font-size: 0.98rem;
  color: var(--deep);
  padding-left: var(--s-6);
  position: relative;
  line-height: 1.4;
}
.aud li::before {
  content: "✦";
  color: var(--terra);
  position: absolute;
  left: 0; top: 0;
  font-size: 0.95rem;
}

/* ---------- 15. Team grid ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 32px);
}
@media (max-width: 960px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .team-grid { grid-template-columns: 1fr; } }

.team-card {
  background: var(--cream);
  border-radius: var(--r-sm);
  border: 2px solid var(--deep);
  box-shadow: 4px 4px 0 var(--deep);
  overflow: hidden;
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
  display: flex;
  flex-direction: column;
}
.team-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 7px 7px 0 var(--deep);
}
.team-photo {
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--cream-2), var(--mustard-soft));
  display: grid;
  place-items: center;
  color: var(--deep);
  position: relative;
  overflow: hidden;
}
.team-card:nth-child(3n+2) .team-photo {
  background: linear-gradient(135deg, var(--terra-soft), var(--cream-2));
}
.team-card:nth-child(3n+3) .team-photo {
  background: linear-gradient(135deg, var(--sage-soft), var(--cream-2));
}
.team-photo .badge {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--terra);
  display: grid; place-items: center;
  box-shadow: 0 4px 0 var(--deep);
}
.team-photo .badge svg { width: 36px; height: 36px; }
.team-info {
  padding: var(--s-6) var(--s-6) var(--s-8);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.team-info h3 {
  font-size: 1.2rem;
  margin-bottom: var(--s-2);
  font-weight: 700;
}
.team-info p {
  font-size: 0.92rem;
  color: var(--muted);
  font-family: 'Bricolage Grotesque', sans-serif;
  line-height: 1.5;
}

/* ---------- 16. Manifesto (two-column approach section) ---------- */
.manifesto-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--s-16);
  align-items: start;
}
@media (max-width: 880px) { .manifesto-grid { grid-template-columns: 1fr; } }
.manifesto-aside { padding-top: var(--s-5); }
.manifesto-aside h4 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: var(--s-5);
}
.manifesto-aside ul {
  list-style: none;
  padding: 0;
  display: grid;
  gap: var(--s-3);
  max-width: 240px;
}
.manifesto-aside li {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  color: var(--deep);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
}
.manifesto-aside .chk {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--mustard);
  color: var(--deep);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.manifesto-aside .chk svg { width: 14px; height: 14px; }

.manifesto-text {
  font-family: 'Lora', serif;
  font-size: clamp(1.3rem, 1rem + 1.2vw, 1.95rem);
  line-height: 1.45;
  color: var(--deep);
  max-width: 32ch;
}
.manifesto-text em { font-style: italic; color: var(--terra); }
.manifesto-text .lg {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-style: normal;
}

/* ---------- 17. Values grid (about page) ---------- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 32px);
}
@media (max-width: 900px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .values-grid { grid-template-columns: 1fr; } }
.value {
  padding: var(--s-8);
  background: var(--cream);
  border-radius: var(--r-sm);
  border: 2px solid var(--deep);
  box-shadow: 4px 4px 0 var(--deep);
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.value:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--deep);
}
.value .ic-wrap {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--mustard);
  color: var(--deep);
  display: grid; place-items: center;
  margin-bottom: var(--s-5);
}
.value .ic-wrap svg { width: 24px; height: 24px; }
.value h3 { font-size: 1.3rem; margin-bottom: var(--s-3); }
.value p { font-size: 0.96rem; color: var(--muted); font-family: 'Bricolage Grotesque', sans-serif; }

/* ---------- 18. Testimonial ---------- */
.testimonial {
  background: var(--terra);
  color: var(--cream);
  padding: clamp(80px, 12vw, 160px) 0;
  position: relative;
  overflow: hidden;
}
.testimonial::before {
  content: "\201C";
  position: absolute;
  font-family: 'Lora', serif;
  font-size: 30rem;
  line-height: 0.7;
  color: var(--mustard);
  opacity: 0.12;
  top: -40px; left: -20px;
  pointer-events: none;
}
.testimonial-inner { max-width: 880px; margin-inline: auto; position: relative; }
.testimonial blockquote {
  font-family: 'Lora', serif;
  font-size: clamp(1.5rem, 1.1rem + 1.6vw, 2.4rem);
  line-height: 1.4;
  color: var(--cream);
  letter-spacing: -0.005em;
  font-weight: 500;
}
.testimonial blockquote em { font-style: italic; color: var(--mustard); }
.testimonial .person {
  display: flex;
  align-items: center;
  gap: var(--s-4);
  margin-top: var(--s-10);
}
.testimonial .avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--terra);
  display: grid; place-items: center;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
}
.testimonial .person strong {
  display: block;
  font-family: 'Bricolage Grotesque', sans-serif;
  color: var(--cream);
  font-size: 1rem;
  font-weight: 700;
}
.testimonial .person span {
  display: block;
  font-size: 0.85rem;
  color: var(--rose);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 2px;
}

/* ---------- 19. CTA section ---------- */
.cta-section {
  background: var(--deep);
  color: var(--cream);
  padding: clamp(80px, 12vw, 140px) 0;
}
.cta-section h2 { color: var(--cream); }
.cta-section h2 em {
  font-family: 'Lora', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--mustard);
}
.cta-grid {
  display: grid;
  grid-template-columns: 1.5fr auto;
  gap: var(--s-10);
  align-items: end;
}
@media (max-width: 760px) { .cta-grid { grid-template-columns: 1fr; } }
.cta-section p {
  margin-top: var(--s-6);
  max-width: 56ch;
  font-size: 1.15rem;
  color: var(--rose);
}
.cta-section .btn-primary { background: var(--terra); color: var(--cream); }
.cta-section .btn-primary:hover {
  background: var(--terra-2);
  color: var(--cream);
  box-shadow: 4px 4px 0 var(--mustard);
}

/* ---------- 20. FAQ ---------- */
.faq-group { margin-bottom: var(--s-12); }
.faq-group h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.1rem;
  color: var(--terra);
  margin-bottom: var(--s-5);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  padding-bottom: var(--s-3);
  border-bottom: 2px solid var(--deep);
}
.faq-list { display: grid; gap: var(--s-3); }
.faq {
  background: var(--cream);
  border: 2px solid var(--deep);
  border-radius: var(--r-sm);
  overflow: hidden;
  transition: box-shadow var(--t) var(--ease);
}
.faq[open] { box-shadow: 4px 4px 0 var(--deep); }
.faq summary {
  list-style: none;
  padding: var(--s-5) var(--s-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
  cursor: pointer;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  color: var(--deep);
  font-size: 1.02rem;
  min-height: 44px;
  line-height: 1.4;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .plus {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--mustard);
  color: var(--deep);
  display: grid; place-items: center;
  flex-shrink: 0;
  transition: transform var(--t) var(--ease), background var(--t) var(--ease), color var(--t) var(--ease);
}
.faq[open] summary .plus {
  background: var(--terra);
  color: var(--cream);
  transform: rotate(45deg);
}
.faq .ans {
  padding: 0 var(--s-6) var(--s-6);
  color: var(--deep-2);
  font-size: 0.98rem;
  line-height: 1.65;
}
.faq .ans a { color: var(--terra); text-decoration: underline; }

/* ---------- 21. Contact form + info ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(28px, 4vw, 48px);
}
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-info {
  background: var(--cream);
  border: 2px solid var(--deep);
  border-radius: var(--r-sm);
  box-shadow: 4px 4px 0 var(--deep);
  padding: clamp(28px, 4vw, 40px);
  align-self: start;
}
.contact-info h3 { margin-bottom: var(--s-5); }
.contact-item {
  display: flex;
  gap: var(--s-4);
  align-items: flex-start;
  padding: var(--s-4) 0;
  border-bottom: 1px dashed var(--line-2);
}
.contact-item:last-of-type { border-bottom: 0; }
.contact-item .ic-wrap {
  width: 40px; height: 40px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--mustard);
  color: var(--deep);
  display: grid; place-items: center;
}
.contact-item .ic-wrap svg { width: 20px; height: 20px; }
.contact-item strong {
  display: block;
  font-family: 'Bricolage Grotesque', sans-serif;
  color: var(--deep);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: var(--s-1);
  font-weight: 700;
}
.contact-item a,
.contact-item span.val {
  display: block;
  color: var(--deep-2);
  font-size: 1rem;
  line-height: 1.5;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 500;
}
.contact-item a:hover { color: var(--terra); }

.contact-form {
  background: var(--cream);
  border: 2px solid var(--deep);
  border-radius: var(--r-sm);
  box-shadow: 4px 4px 0 var(--deep);
  padding: clamp(28px, 4vw, 44px);
}
.contact-form h3 { margin-bottom: var(--s-2); }
.contact-form .intro {
  color: var(--muted);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.96rem;
  margin-bottom: var(--s-6);
}
.field { margin-bottom: var(--s-5); }
.field label {
  display: block;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--deep);
  margin-bottom: var(--s-2);
  letter-spacing: 0.04em;
}
.field label .req { color: var(--terra); }
.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 13px 16px;
  font: inherit;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1rem;
  color: var(--deep);
  background: var(--cream-2);
  border: 2px solid transparent;
  border-radius: var(--r-sm);
  transition: border-color var(--t) var(--ease), background var(--t) var(--ease);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 0;
  border-color: var(--terra);
  background: var(--cream);
}
.field textarea { resize: vertical; min-height: 140px; line-height: 1.5; }
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-4);
}
@media (max-width: 540px) { .field-row { grid-template-columns: 1fr; } }
.field-help {
  margin-top: var(--s-2);
  font-size: 0.82rem;
  color: var(--muted);
  font-family: 'Bricolage Grotesque', sans-serif;
}

/* ---------- 22. Map ---------- */
.map-wrap {
  margin-top: var(--s-10);
  border: 2px solid var(--deep);
  border-radius: var(--r-sm);
  box-shadow: 4px 4px 0 var(--deep);
  overflow: hidden;
  background: var(--cream-2);
}
.map-wrap iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
}

/* ---------- 23. Footer ---------- */
footer.site-footer {
  background: var(--deep-900);
  color: var(--rose);
  padding: var(--s-16) 0 var(--s-6);
}
.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: var(--s-10);
  padding-bottom: var(--s-8);
  border-bottom: 1px solid var(--line-footer);
}
@media (max-width: 900px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .foot-grid { grid-template-columns: 1fr; } }
.foot-grid h4 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mustard);
  margin-bottom: var(--s-4);
  font-weight: 700;
}
.foot-grid ul { list-style: none; padding: 0; display: grid; gap: var(--s-3); }
.foot-grid a,
.foot-grid li {
  color: var(--cream);
  font-size: 0.95rem;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 400;
}
.foot-grid a:hover { color: var(--mustard); }
.foot-brand .brand { color: var(--cream); }
.foot-brand .brand-text strong { color: var(--cream); }
.foot-brand .brand-text span { color: var(--rose); }
.foot-brand p {
  color: var(--rose);
  font-size: 0.95rem;
  margin-top: var(--s-5);
  max-width: 38ch;
  font-family: 'Lora', serif;
}
.foot-bottom {
  padding-top: var(--s-5);
  display: flex;
  justify-content: space-between;
  opacity: 0.6;
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: var(--s-3);
  font-family: 'Bricolage Grotesque', sans-serif;
}

/* ---------- 24. Success toast (form) ---------- */
.toast {
  position: fixed;
  bottom: 24px; right: 24px;
  background: var(--deep);
  color: var(--cream);
  padding: 14px 22px;
  border-radius: var(--r-sm);
  box-shadow: 4px 4px 0 var(--terra);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  z-index: 100;
  transform: translateY(100px);
  opacity: 0;
  transition: transform var(--t) var(--ease), opacity var(--t) var(--ease);
  display: flex;
  align-items: center;
  gap: var(--s-3);
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast svg { width: 20px; height: 20px; color: var(--mustard); }

/* ---------- 25. Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
  html { scroll-behavior: auto; }
}
