:root {
  --forest: #14352a;
  --forest-2: #1d4637;
  --forest-3: #2c5c48;
  --moss: #6b8f3e;
  --paper: #fbf8f1;
  --cream: #f3ecdc;
  --ink: #1a201c;
  --muted: #56605a;
  --amber: #e7a033;
  --amber-dark: #b97614;
  --water: #3f7f8c;
  --line: rgba(20, 53, 42, 0.14);
  --line-light: rgba(255, 255, 255, 0.16);
  --radius: 10px;
  --shadow: 0 1px 2px rgba(20, 53, 42, 0.06), 0 8px 24px rgba(20, 53, 42, 0.08);
  --display: "Barlow Condensed", "Roboto Condensed", "Arial Narrow", "Liberation Sans Narrow", sans-serif;
  --body: "Source Sans 3", "Segoe UI", system-ui, sans-serif;
  --wrap: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 1.0625rem;
  line-height: 1.65;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--forest-3); }
a:hover { color: var(--amber-dark); }
:focus-visible { outline: 3px solid var(--amber); outline-offset: 2px; }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.005em;
  margin: 0 0 0.5em;
  color: var(--forest);
}
h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.6rem; }
h4 { font-size: 1.25rem; }
p { margin: 0 0 1em; }

.wrap { width: min(var(--wrap), 100% - 32px); margin-inline: auto; }
.narrow { max-width: 760px; }
.skip { position: absolute; left: -999px; }
.skip:focus { left: 16px; top: 16px; z-index: 100; background: #fff; padding: 8px 12px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--display); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.95rem;
  color: var(--amber-dark); margin-bottom: 14px;
}
.eyebrow::before { content: ""; width: 28px; height: 3px; background: currentColor; }
.on-dark .eyebrow { color: var(--amber); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--display); font-weight: 700; font-size: 1.15rem;
  text-transform: uppercase; letter-spacing: 0.06em;
  padding: 14px 26px; border-radius: 6px; border: 2px solid transparent;
  text-decoration: none; cursor: pointer; transition: transform .15s, background .15s, color .15s;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--amber); color: var(--forest); }
.btn-primary:hover { background: #f0b04a; color: var(--forest); }
.btn-ghost { border-color: currentColor; color: var(--forest); background: transparent; }
.on-dark .btn-ghost { color: #fff; }
.btn-ghost:hover { background: rgba(255,255,255,0.08); }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }

/* Header */
.topbar { background: var(--forest); color: rgba(255,255,255,0.82); font-size: 0.9rem; }
.topbar .wrap { display: flex; justify-content: space-between; gap: 16px; padding: 7px 0; flex-wrap: wrap; }
.topbar a { color: #fff; font-weight: 600; text-decoration: none; }
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 248, 241, 0.96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 76px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--forest); }
.brand svg { width: 46px; height: 46px; flex: none; }
.brand-name { font-family: var(--display); font-weight: 700; font-size: 1.45rem; line-height: 1; text-transform: uppercase; letter-spacing: 0.02em; }
.brand-sub { display: block; font-family: var(--body); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em; color: var(--muted); text-transform: uppercase; margin-top: 3px; }
.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  font-family: var(--display); font-weight: 600; font-size: 1.12rem; text-transform: uppercase; letter-spacing: 0.05em;
  color: var(--forest); text-decoration: none; padding: 8px 12px; border-radius: 6px; white-space: nowrap;
}
.nav a:hover, .nav a[aria-current="page"] { background: var(--cream); color: var(--forest); }
.nav .btn { margin-left: 10px; padding: 10px 18px; font-size: 1.05rem; }
.nav-toggle { display: none; }

@media (max-width: 1120px) {
  .nav-toggle {
    display: inline-flex; align-items: center; gap: 8px; background: var(--forest); color: #fff; border: 0;
    font-family: var(--display); font-weight: 700; font-size: 1.05rem; text-transform: uppercase; letter-spacing: 0.06em;
    padding: 10px 14px; border-radius: 6px; cursor: pointer;
  }
  .nav { display: none; position: absolute; left: 0; right: 0; top: 100%; flex-direction: column; align-items: stretch; gap: 0;
    background: var(--paper); border-bottom: 1px solid var(--line); padding: 8px 16px 18px; box-shadow: var(--shadow); }
  .nav.open { display: flex; }
  .nav a { padding: 12px 8px; border-bottom: 1px solid var(--line); border-radius: 0; }
  .nav .btn { margin: 14px 0 0; border-radius: 6px; }
  .brand-sub { display: none; }
}

/* Hero */
.hero {
  position: relative; overflow: hidden; color: #fff;
  background: var(--forest);
  padding: clamp(56px, 8vw, 104px) 0 0;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: url("/assets/topo.svg") center/1400px auto repeat;
  opacity: 0.22;
}
.hero .wrap { position: relative; display: grid; grid-template-columns: 1.05fr 1fr; gap: 40px; align-items: end; }
.hero h1 { color: #fff; }
.hero h1 em { font-style: normal; color: var(--amber); }
.hero-lede { font-size: 1.22rem; color: rgba(255,255,255,0.86); max-width: 560px; margin-bottom: 28px; }
.hero-copy { padding-bottom: clamp(48px, 7vw, 96px); }
.hero-proof { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 30px; padding: 0; list-style: none; font-weight: 600; color: rgba(255,255,255,0.9); }
.hero-proof li { display: flex; align-items: center; gap: 8px; }
.hero-proof li::before { content: ""; width: 9px; height: 9px; border-radius: 50%; background: var(--amber); }
.hero-art { align-self: end; }
.hero-art svg { width: 100%; height: auto; }

.page-hero { position: relative; overflow: hidden; background: var(--forest); color: #fff; padding: clamp(48px, 7vw, 84px) 0 clamp(40px, 6vw, 68px); }
.page-hero::before { content: ""; position: absolute; inset: 0; background: url("/assets/topo.svg") center/1400px auto repeat; opacity: 0.18; }
.page-hero .wrap { position: relative; }
.page-hero h1 { color: #fff; max-width: 900px; }
.page-hero p { color: rgba(255,255,255,0.85); font-size: 1.18rem; max-width: 720px; }
.crumbs { font-size: 0.9rem; margin-bottom: 16px; color: rgba(255,255,255,0.7); }
.crumbs a { color: rgba(255,255,255,0.9); }
.crumbs span { margin: 0 6px; }

/* Stat band */
.stats { background: var(--amber); color: var(--forest); }
.stats .wrap { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: 24px 20px; border-left: 1px solid rgba(20,53,42,0.2); }
.stat:first-child { border-left: 0; }
.stat b { display: block; font-family: var(--display); font-size: 2.6rem; line-height: 1; }
.stat span { font-weight: 600; font-size: 0.95rem; }

/* Sections */
.section { padding: clamp(64px, 8vw, 104px) 0; }
.section.tight { padding: clamp(44px, 6vw, 72px) 0; }
.section.cream { background: var(--cream); }
.section.dark { background: var(--forest); color: rgba(255,255,255,0.88); }
.section.dark h2, .section.dark h3 { color: #fff; }
.section-head { max-width: 760px; margin-bottom: 44px; }
.section-head p { color: var(--muted); font-size: 1.15rem; }
.section.dark .section-head p { color: rgba(255,255,255,0.78); }
.lead { font-size: 1.2rem; color: var(--muted); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* Service cards */
.svc-card {
  position: relative; display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 24px 22px; text-decoration: none; color: var(--ink);
  box-shadow: var(--shadow); transition: transform .15s, border-color .15s;
}
.svc-card:hover { transform: translateY(-3px); border-color: var(--amber); color: var(--ink); }
.svc-card .icon { width: 58px; height: 58px; margin-bottom: 16px; }
.svc-card h3 { margin-bottom: 8px; }
.svc-card p { color: var(--muted); font-size: 1rem; flex: 1; }
.svc-card .more { font-family: var(--display); font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--amber-dark); }
.svc-card .tag { position: absolute; top: 18px; right: 18px; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--forest-3); background: var(--cream); padding: 3px 8px; border-radius: 4px; }

/* Audience strip */
.who { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line-light); border: 1px solid var(--line-light); border-radius: var(--radius); overflow: hidden; }
.who div { background: var(--forest); padding: 26px 22px; }
.who h3 { font-size: 1.4rem; margin-bottom: 6px; }
.who p { font-size: 0.98rem; margin: 0; color: rgba(255,255,255,0.75); }

/* Checklists */
.checks { list-style: none; padding: 0; margin: 0 0 1.2em; }
.checks li { position: relative; padding-left: 32px; margin-bottom: 10px; }
.checks li::before {
  content: ""; position: absolute; left: 0; top: 5px; width: 20px; height: 20px; border-radius: 4px;
  background: var(--moss) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12.5l4.5 4.5L19 7.5'/%3E%3C/svg%3E") center/14px no-repeat;
}
.section.dark .checks li::before { background-color: var(--amber); }

/* Process */
.steps { counter-reset: step; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.step { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 22px 22px; }
.step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  display: block; font-family: var(--display); font-weight: 700; font-size: 2.4rem; color: var(--amber); line-height: 1; margin-bottom: 10px;
}
.step h3 { font-size: 1.4rem; }
.step p { color: var(--muted); margin: 0; font-size: 1rem; }

/* Feature / trust callout */
.callout { background: var(--forest); color: rgba(255,255,255,0.88); border-radius: var(--radius); padding: clamp(28px, 4vw, 44px); position: relative; overflow: hidden; }
.callout::before { content: ""; position: absolute; inset: 0; background: url("/assets/topo.svg") center/900px auto repeat; opacity: 0.14; }
.callout > * { position: relative; }
.callout h2, .callout h3 { color: #fff; }
.callout .big { font-family: var(--display); font-weight: 700; font-size: clamp(3.4rem, 7vw, 5.4rem); line-height: 0.9; color: var(--amber); }

/* Figure illustrations */
.figure { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 18px; box-shadow: var(--shadow); }
.figure figcaption { font-size: 0.9rem; color: var(--muted); padding: 10px 4px 0; }
.photo { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.photo img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; }

/* Pricing */
.price-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.price-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 28px; box-shadow: var(--shadow); }
.price-card.feature { border: 2px solid var(--amber); }
.price-card h3 { margin-bottom: 4px; }
.price-card .from { font-family: var(--display); font-weight: 700; font-size: 2.3rem; color: var(--forest); line-height: 1.1; margin: 10px 0 4px; }
.price-card .from small { font-family: var(--body); font-size: 1rem; font-weight: 600; color: var(--muted); }
.price-card table { width: 100%; border-collapse: collapse; margin-top: 16px; font-size: 1rem; }
.price-card td { padding: 10px 0; border-top: 1px solid var(--line); }
.price-card td:last-child { text-align: right; font-weight: 700; color: var(--forest); white-space: nowrap; }
.note { font-size: 0.95rem; color: var(--muted); }
.badge { display: inline-block; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; background: var(--amber); color: var(--forest); padding: 3px 9px; border-radius: 4px; }

/* Areas */
.area-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 12px; list-style: none; padding: 0; margin: 0; }
.area-list a {
  display: flex; justify-content: space-between; align-items: center; gap: 10px;
  background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 14px 16px;
  text-decoration: none; color: var(--forest); font-family: var(--display); font-weight: 700; font-size: 1.3rem;
}
.area-list a small { font-family: var(--body); font-weight: 600; font-size: 0.82rem; color: var(--muted); }
.area-list a:hover { border-color: var(--amber); }
.section.dark .area-list a { background: var(--forest-2); border-color: var(--line-light); color: #fff; }
.section.dark .area-list a small { color: rgba(255,255,255,0.65); }

/* FAQ */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer; list-style: none; padding: 20px 40px 20px 0; position: relative;
  font-family: var(--display); font-weight: 700; font-size: 1.4rem; color: var(--forest);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 6px; top: 14px; font-size: 1.9rem; color: var(--amber-dark); }
.faq details[open] summary::after { content: "–"; }
.faq details > div { padding: 0 0 20px; color: var(--muted); max-width: 780px; }

/* Article */
.prose { max-width: 760px; }
.prose h2 { font-size: 2.1rem; margin-top: 1.6em; }
.prose h3 { margin-top: 1.4em; }
.prose ul, .prose ol { padding-left: 1.3em; }
.prose li { margin-bottom: 0.5em; }
.post-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.post-card { display: block; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 24px; text-decoration: none; color: var(--ink); box-shadow: var(--shadow); }
.post-card:hover { border-color: var(--amber); color: var(--ink); }
.post-card .kicker { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--amber-dark); }
.post-card h3 { margin: 8px 0; }
.post-card p { color: var(--muted); margin: 0; font-size: 1rem; }

/* Quote form */
.quote { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(28px, 5vw, 60px); align-items: start; }
.quote-side h2 { color: #fff; }
.quote-side p { color: rgba(255,255,255,0.82); }
.form-card { background: #fff; color: var(--ink); border-radius: var(--radius); padding: clamp(22px, 3vw, 34px); box-shadow: 0 20px 50px rgba(0,0,0,0.25); }
.form-card h3 { margin-bottom: 4px; }
.form-card .sub { color: var(--muted); font-size: 0.98rem; margin-bottom: 18px; }
.fields { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { display: flex; flex-direction: column; gap: 5px; }
.field.full { grid-column: 1 / -1; }
.field label { font-weight: 700; font-size: 0.9rem; color: var(--forest); }
.field label .opt { font-weight: 400; color: var(--muted); }
.field input, .field select, .field textarea {
  font: inherit; font-size: 1rem; color: var(--ink);
  padding: 11px 12px; border: 1.5px solid #cfd3cc; border-radius: 6px; background: #fdfcf9; width: 100%;
}
.field textarea { min-height: 110px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--forest-3); box-shadow: 0 0 0 3px rgba(231,160,51,0.35); }
.form-card .btn { width: 100%; margin-top: 18px; }
.fineprint { font-size: 0.85rem; color: var(--muted); margin: 12px 0 0; text-align: center; }
.hp { position: absolute; left: -9999px; }

/* CTA band */
.cta-band { background: var(--amber); padding: 44px 0; }
.cta-band .wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.cta-band h2 { margin: 0; font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
.cta-band .btn-primary { background: var(--forest); color: #fff; }
.cta-band .btn-primary:hover { background: var(--forest-2); color: #fff; }

/* Footer */
.site-footer { background: #0e271f; color: rgba(255,255,255,0.72); padding: 64px 0 28px; font-size: 0.98rem; }
.site-footer a { color: rgba(255,255,255,0.86); text-decoration: none; }
.site-footer a:hover { color: var(--amber); }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; }
.site-footer h4 { color: #fff; text-transform: uppercase; letter-spacing: 0.08em; font-size: 1.05rem; margin-bottom: 14px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 8px; }
.site-footer .brand { color: #fff; margin-bottom: 14px; }
.foot-bottom { margin-top: 44px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.1); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 0.88rem; }

/* Mobile action bar */
.mobile-bar { display: none; }
@media (max-width: 760px) {
  .mobile-bar {
    display: grid; grid-auto-flow: column; grid-auto-columns: 1fr; gap: 8px;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom)); background: var(--forest);
    box-shadow: 0 -6px 20px rgba(0,0,0,0.18);
  }
  .mobile-bar .btn { padding: 12px 10px; font-size: 1.05rem; }
  body { padding-bottom: 74px; }
}

/* Responsive */
@media (max-width: 980px) {
  .hero .wrap, .grid-2, .quote { grid-template-columns: 1fr; }
  .hero-copy { padding-bottom: 12px; }
  .grid-4, .who { grid-template-columns: repeat(2, 1fr); }
  .grid-3, .steps, .post-list { grid-template-columns: 1fr 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .stats .wrap { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(3) { border-left: 0; }
  .stat:nth-child(n+3) { border-top: 1px solid rgba(20,53,42,0.2); }
}
@media (max-width: 640px) {
  body { font-size: 1rem; }
  .grid-3, .grid-4, .steps, .who, .price-grid, .post-list, .fields, .foot-grid { grid-template-columns: 1fr; }
  .topbar .hours, .topbar .tagline { display: none; }
  .brand-name { font-size: 1.2rem; }
  .brand svg { width: 38px; height: 38px; }
  .stat b { font-size: 2.1rem; }
}
@media (prefers-reduced-motion: reduce) { * { transition: none !important; } html { scroll-behavior: auto; } }
