:root {
  --ink: #18201d;
  --muted: #66716c;
  --paper: #f5f1e9;
  --white: #fffdf9;
  --forest: #173f35;
  --forest-light: #24594b;
  --sage: #dce7de;
  --sage-2: #edf3ed;
  --terracotta: #c85f3c;
  --terracotta-dark: #9f4328;
  --yellow: #f0c85b;
  --line: #d9ded8;
  --shadow: 0 24px 70px rgba(24, 32, 29, .10);
  --radius: 24px;
  --radius-sm: 14px;
  --container: 1180px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Avenir Next", Avenir, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

body.menu-open { overflow: hidden; }

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

p, ul, ol { margin: 0 0 1.25rem; }
h1, h2, h3, h4 {
  margin: 0 0 .8em;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -.035em;
}
h1 { font-size: clamp(2.8rem, 7vw, 5.9rem); }
h2 { font-size: clamp(2.05rem, 4vw, 3.55rem); }
h3 { font-size: clamp(1.35rem, 2.2vw, 1.85rem); }
h4 { font-size: 1.1rem; letter-spacing: -.01em; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.narrow { width: min(calc(100% - 40px), 790px); margin-inline: auto; }
.section { padding: clamp(72px, 9vw, 128px) 0; }
.section-sm { padding: clamp(48px, 6vw, 80px) 0; }
.soft-bg { background: var(--paper); }
.green-bg { background: var(--forest); color: var(--white); }
.sage-bg { background: var(--sage-2); }

.skip-link {
  position: absolute;
  z-index: 999;
  top: -80px;
  left: 20px;
  padding: 10px 16px;
  background: var(--ink);
  color: #fff;
  border-radius: 8px;
}
.skip-link:focus { top: 12px; }

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(255, 253, 249, .92);
  border-bottom: 1px solid rgba(24, 32, 29, .08);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  position: relative;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--forest);
  text-decoration: none;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -.025em;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 42px;
  color: var(--white);
  background: var(--forest);
  border-radius: 13px 13px 5px 13px;
}

.brand small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: .66rem;
  font-weight: 650;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.main-nav { display: flex; align-items: center; gap: 7px; }
.main-nav > a {
  padding: 10px 11px;
  color: #3f4a45;
  border-radius: 10px;
  font-size: .9rem;
  font-weight: 650;
  text-decoration: none;
}
.main-nav > a:hover,
.main-nav > a[aria-current="page"] { color: var(--forest); background: var(--sage-2); }
.main-nav .nav-cta { margin-left: 6px; padding-inline: 16px; color: #fff; background: var(--forest); }
.main-nav .nav-cta:hover { color: #fff; background: var(--forest-light); }

.menu-toggle {
  width: 46px;
  height: 46px;
  display: none;
  place-items: center;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 13px;
  cursor: pointer;
}
.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  width: 20px;
  height: 2px;
  display: block;
  position: relative;
  background: currentColor;
  border-radius: 2px;
  transition: transform .2s, opacity .2s;
}
.menu-toggle span::before,
.menu-toggle span::after { content: ""; position: absolute; left: 0; }
.menu-toggle span::before { top: -6px; }
.menu-toggle span::after { top: 6px; }
.menu-toggle[aria-expanded="true"] span { background: transparent; }
.menu-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 20px;
  color: var(--terracotta-dark);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.eyebrow::before { width: 27px; height: 2px; content: ""; background: var(--terracotta); }
.green-bg .eyebrow { color: #f4cf9c; }

.lead { max-width: 720px; color: #4f5a55; font-size: clamp(1.08rem, 1.8vw, 1.3rem); }
.green-bg .lead { color: #c9d8d2; }
.section-heading { max-width: 780px; margin-bottom: 44px; }
.section-heading p:last-child { margin-bottom: 0; }

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  color: #fff;
  background: var(--forest);
  border: 1px solid var(--forest);
  border-radius: 12px;
  font-size: .93rem;
  font-weight: 750;
  line-height: 1.2;
  text-decoration: none;
  transition: transform .2s, background .2s;
}
.button:hover { background: var(--forest-light); transform: translateY(-2px); }
.button.light { color: var(--forest); background: var(--white); border-color: var(--white); }
.button.ghost { color: var(--forest); background: transparent; }
.button.ghost:hover { background: var(--sage-2); }
.text-link { color: var(--forest); font-weight: 750; text-decoration-thickness: 1px; text-underline-offset: 4px; }
.text-link::after { content: " →"; }
.green-bg .text-link { color: #fff; }

.hero { padding: clamp(56px, 7vw, 100px) 0 76px; overflow: hidden; background: var(--paper); }
.hero-grid { display: grid; grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr); align-items: center; gap: clamp(35px, 6vw, 80px); }
.hero-copy { min-width: 0; position: relative; z-index: 2; }
.hero-copy h1 { max-width: 720px; }
.hero-copy .lead { max-width: 600px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-note {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: 34px;
  color: var(--muted);
  font-size: .84rem;
  line-height: 1.45;
}
.hero-note strong { color: var(--ink); }
.mini-seal { width: 43px; height: 43px; display: grid; place-items: center; flex: 0 0 43px; color: var(--terracotta); background: #fff; border-radius: 50%; box-shadow: 0 8px 24px rgba(24,32,29,.08); }
.hero-media { position: relative; min-width: 0; }
.hero-media::before {
  width: 44%;
  aspect-ratio: 1;
  position: absolute;
  z-index: 0;
  right: -10%;
  top: -13%;
  content: "";
  background: var(--yellow);
  border-radius: 50%;
}
.hero-media img { position: relative; z-index: 1; width: 100%; min-height: 520px; object-fit: cover; border-radius: 180px 28px 28px 28px; box-shadow: var(--shadow); }
.media-card {
  width: min(260px, 64%);
  position: absolute;
  z-index: 2;
  left: -28px;
  bottom: 28px;
  padding: 18px;
  background: rgba(255,253,249,.95);
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 16px;
  box-shadow: 0 18px 48px rgba(24,32,29,.16);
  backdrop-filter: blur(8px);
}
.media-card strong { display: block; color: var(--forest); font-family: Georgia, serif; font-size: 1.2rem; }
.media-card span { color: var(--muted); font-size: .76rem; }

.trust-bar { background: var(--white); border-bottom: 1px solid var(--line); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { padding: 28px 22px; border-right: 1px solid var(--line); }
.trust-item:first-child { border-left: 1px solid var(--line); }
.trust-item strong { display: block; color: var(--forest); font-family: Georgia, serif; font-size: 1.1rem; font-weight: 500; }
.trust-item span { color: var(--muted); font-size: .77rem; }

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card {
  min-height: 100%;
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 40px rgba(24,32,29,.04);
  transition: transform .25s, box-shadow .25s;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.card p { color: var(--muted); }
.card .text-link { display: inline-block; margin-top: 8px; }
.icon-box {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 26px;
  color: var(--terracotta-dark);
  background: #f8e5dc;
  border-radius: 15px;
}
.icon-box.green { color: var(--forest); background: var(--sage); }
.icon-box.yellow { color: #76580a; background: #fbefc8; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 7vw, 90px); align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.split-copy ul { padding-left: 1.2em; }
.split-copy li { margin-bottom: .6em; }

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; counter-reset: steps; }
.step {
  position: relative;
  padding: 28px 24px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 18px;
  counter-increment: steps;
}
.step::before { content: "0" counter(steps); display: block; margin-bottom: 28px; color: #f4cf9c; font-family: Georgia, serif; font-size: 1.6rem; }
.step h3 { font-size: 1.3rem; }
.step p { margin: 0; color: #c9d8d2; font-size: .92rem; }

.quote-panel { padding: clamp(34px, 6vw, 68px); background: var(--terracotta); color: #fff; border-radius: var(--radius); }
.quote-panel blockquote { max-width: 860px; margin: 0; font-family: Georgia, serif; font-size: clamp(1.6rem, 3.4vw, 3rem); line-height: 1.25; letter-spacing: -.03em; }
.quote-panel p { max-width: 760px; margin: 24px 0 0; color: #fae5dd; }

.cta-panel { display: grid; grid-template-columns: 1.3fr .7fr; gap: 30px; align-items: center; padding: clamp(34px, 6vw, 65px); background: var(--forest); color: #fff; border-radius: var(--radius); }
.cta-panel h2 { margin-bottom: .35em; }
.cta-panel p { margin: 0; color: #c9d8d2; }
.cta-actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 12px; }

.page-hero { padding: clamp(62px, 8vw, 108px) 0; background: var(--paper); }
.page-hero .wrap { display: grid; grid-template-columns: 1.15fr .55fr; gap: 60px; align-items: end; }
.page-hero h1 { max-width: 820px; font-size: clamp(2.8rem, 6vw, 5.25rem); }
.page-hero-aside { padding: 24px; color: var(--forest); background: var(--sage); border-radius: 18px; }
.page-hero-aside strong { display: block; margin-bottom: 7px; font-family: Georgia, serif; font-size: 1.2rem; }
.page-hero-aside p { margin: 0; font-size: .87rem; line-height: 1.55; }

.breadcrumb { margin-bottom: 28px; color: var(--muted); font-size: .78rem; }
.breadcrumb a { text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { margin: 0 7px; }

.article-layout { display: grid; grid-template-columns: 245px minmax(0, 760px); justify-content: space-between; gap: 70px; }
.article-nav { align-self: start; position: sticky; top: 108px; }
.article-nav strong { display: block; margin-bottom: 14px; color: var(--forest); font-size: .76rem; letter-spacing: .11em; text-transform: uppercase; }
.article-nav a { display: block; padding: 7px 0; color: var(--muted); border-bottom: 1px solid var(--line); font-size: .86rem; text-decoration: none; }
.article-nav a:hover { color: var(--terracotta-dark); }
.article-content h2 { margin-top: 1.7em; font-size: clamp(1.9rem, 3.5vw, 2.85rem); }
.article-content h2:first-child { margin-top: 0; }
.article-content h3 { margin-top: 1.6em; }
.article-content p, .article-content li { color: #45504b; }
.article-content a { color: var(--forest); font-weight: 700; text-underline-offset: 3px; }
.article-content img { width: 100%; margin: 35px 0; border-radius: 18px; }
.article-content figure { margin: 35px 0; }
.article-content figure img { margin: 0 0 10px; }
.article-content figcaption { color: var(--muted); font-size: .78rem; }

.info-box, .warning-box {
  margin: 30px 0;
  padding: 25px 27px;
  background: var(--sage-2);
  border-left: 4px solid var(--forest);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.warning-box { background: #fff3df; border-color: #d4872d; }
.info-box strong, .warning-box strong { display: block; margin-bottom: 6px; color: var(--ink); }
.info-box p:last-child, .warning-box p:last-child { margin-bottom: 0; }

.checklist { list-style: none; padding: 0; }
.checklist li { position: relative; padding: 13px 0 13px 38px; border-bottom: 1px solid var(--line); }
.checklist li::before { width: 22px; height: 22px; position: absolute; top: 15px; left: 0; content: "✓"; display: grid; place-items: center; color: #fff; background: var(--forest); border-radius: 50%; font-size: .72rem; font-weight: 900; }

.calendar-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.season-card { padding: 30px; border: 1px solid var(--line); border-radius: 20px; }
.season-card .season { color: var(--terracotta-dark); font-size: .74rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.season-card ul { padding-left: 1.1em; color: var(--muted); }

.decision-table { width: 100%; margin: 28px 0; border-collapse: collapse; font-size: .9rem; }
.decision-table th, .decision-table td { padding: 15px 13px; text-align: left; vertical-align: top; border-bottom: 1px solid var(--line); }
.decision-table th { color: var(--forest); background: var(--sage-2); }

.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 24px; }
.contact-card { padding: 35px; background: var(--paper); border-radius: var(--radius); }
.contact-list { list-style: none; padding: 0; }
.contact-list li { padding: 15px 0; border-bottom: 1px solid var(--line); }
.contact-list span { display: block; color: var(--muted); font-size: .76rem; text-transform: uppercase; letter-spacing: .08em; }
.contact-list a { color: var(--forest); font-weight: 700; text-decoration: none; }
.contact-form { padding: 35px; border: 1px solid var(--line); border-radius: var(--radius); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 18px; }
.field label { display: block; margin-bottom: 7px; font-size: .82rem; font-weight: 750; }
.field input, .field textarea, .field select {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #cfd6d1;
  border-radius: 10px;
  font: inherit;
  font-size: .9rem;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: 3px solid rgba(36,89,75,.18); border-color: var(--forest-light); }
.field textarea { min-height: 145px; resize: vertical; }

.site-footer { padding: 70px 0 28px; color: #dbe4df; background: #102d26; }
.footer-grid { display: grid; grid-template-columns: 1.1fr .7fr .7fr .9fr; gap: 45px; }
.footer-brand .brand { color: #fff; }
.footer-brand .brand-mark { color: var(--forest); background: #fff; }
.footer-brand .brand small { color: #9fb4ab; }
.footer-brand > p { max-width: 370px; margin-top: 23px; color: #aebfb8; font-size: .88rem; }
.footer-col h2 { margin-bottom: 16px; color: #fff; font-family: inherit; font-size: .76rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.footer-col a, .footer-col address, .footer-col p { display: block; margin-bottom: 8px; color: #aebfb8; font-size: .84rem; font-style: normal; text-decoration: none; }
.footer-col a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 55px; padding-top: 23px; color: #81968d; border-top: 1px solid rgba(255,255,255,.12); font-size: .74rem; }

@media (max-width: 980px) {
  .menu-toggle { display: grid; }
  .main-nav {
    position: fixed;
    inset: 78px 0 auto;
    max-height: calc(100vh - 78px);
    display: none;
    align-items: stretch;
    padding: 18px 20px 30px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 45px rgba(24,32,29,.12);
    overflow-y: auto;
  }
  .main-nav.open { display: block; }
  .main-nav > a { display: block; padding: 13px 12px; font-size: 1rem; }
  .main-nav .nav-cta { margin: 9px 0 0; text-align: center; }
  .hero-grid { grid-template-columns: minmax(0, 1fr); }
  .hero-copy { width: 100%; max-width: calc(100vw - 40px); }
  .hero-copy > * { max-width: 100%; }
  .hero-media img { min-height: 480px; border-radius: 120px 24px 24px 24px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(3) { border-left: 1px solid var(--line); border-top: 1px solid var(--line); }
  .trust-item:nth-child(4) { border-top: 1px solid var(--line); }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .page-hero .wrap { grid-template-columns: 1fr; gap: 25px; }
  .page-hero-aside { max-width: 600px; }
  .article-layout { grid-template-columns: 1fr; gap: 35px; }
  .article-nav { position: static; display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 18px; padding: 22px; background: var(--paper); border-radius: var(--radius-sm); }
  .article-nav strong { grid-column: 1 / -1; }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .container, .narrow { width: min(calc(100% - 28px), var(--container)); }
  .nav-wrap { min-height: 70px; padding-right: 58px; }
  .main-nav { top: 70px; max-height: calc(100vh - 70px); }
  .brand { min-width: 0; font-size: .9rem; }
  .brand-mark { width: 38px; height: 38px; flex-basis: 38px; }
  .brand small { display: none; }
  .eyebrow { max-width: 100%; align-items: flex-start; font-size: .66rem; line-height: 1.5; letter-spacing: .09em; }
  .eyebrow::before { flex: 0 0 27px; margin-top: .65em; }
  .menu-toggle { position: absolute; right: 0; }
  .hero-copy { max-width: calc(100vw - 28px); }
  .hero-copy h1, .hero-copy p { width: 100%; overflow-wrap: anywhere; }
  .hero-note span:last-child { min-width: 0; overflow-wrap: anywhere; }
  .hero { padding-top: 48px; }
  .hero-media img { min-height: 380px; border-radius: 70px 18px 18px 18px; }
  .media-card { left: 14px; bottom: 14px; }
  .trust-grid, .card-grid, .split, .calendar-grid, .contact-grid, .footer-grid, .cta-panel { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
  .trust-item, .trust-item:first-child, .trust-item:nth-child(3) { border-left: 0; border-right: 0; border-top: 1px solid var(--line); }
  .trust-item:first-child { border-top: 0; }
  .card { padding: 25px; }
  .steps { grid-template-columns: 1fr; }
  .cta-actions { justify-content: flex-start; }
  .article-nav { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-card, .contact-form { padding: 25px; }
  .decision-table { display: block; overflow-x: auto; white-space: nowrap; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
}

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