:root {
  --ink: #17201d;
  --muted: #5e6862;
  --paper: #f4f0e7;
  --white: #fffdf8;
  --warm: #e8dfcf;
  --forest: #19362f;
  --forest-2: #254d42;
  --accent: #b85f3f;
  --line: rgba(23, 32, 29, .14);
  --line-light: rgba(255,255,255,.18);
  --shadow: 0 24px 60px rgba(24, 35, 31, .12);
  --radius: 22px;
  --shell: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
a { color: inherit; }
img { max-width: 100%; }

.skip-link {
  position: fixed;
  left: 12px;
  top: -80px;
  z-index: 999;
  background: #fff;
  padding: 10px 14px;
  border-radius: 8px;
}
.skip-link:focus { top: 12px; }

.shell {
  width: min(calc(100% - 40px), var(--shell));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(244,240,231,.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(23,32,29,.08);
}
.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}
.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--forest);
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  letter-spacing: .06em;
}
.brand-copy { display: flex; flex-direction: column; line-height: 1.15; }
.brand-copy strong { font-size: 15px; letter-spacing: .01em; }
.brand-copy small { margin-top: 4px; color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: .12em; }
.nav { display: flex; align-items: center; gap: 27px; }
.nav > a:not(.button) { text-decoration: none; font-size: 13px; font-weight: 650; }
.nav > a:not(.button):hover { color: var(--accent); }
.nav-toggle { display: none; border: 0; background: transparent; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; }

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid var(--forest);
  border-radius: 999px;
  background: var(--forest);
  color: #fff;
  font: inherit;
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.button:hover { transform: translateY(-1px); background: var(--forest-2); border-color: var(--forest-2); }
.button-small { min-height: 42px; padding: 0 18px; font-size: 12px; }
.text-link { font-weight: 750; text-decoration: none; border-bottom: 1px solid var(--ink); padding-bottom: 3px; }
.text-link:hover { color: var(--accent); border-color: var(--accent); }

.hero {
  position: relative;
  overflow: hidden;
  padding: 95px 0 84px;
  background:
    radial-gradient(circle at 78% 12%, rgba(184,95,63,.13), transparent 27%),
    linear-gradient(180deg, var(--paper) 0%, #f7f3eb 100%);
}
.hero::after {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(25,54,47,.08);
  border-radius: 50%;
  right: -210px;
  top: 20px;
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(330px, .75fr);
  gap: 72px;
  align-items: center;
}
.eyebrow {
  margin: 0 0 17px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
}
.eyebrow.light { color: #d8b6a8; }
h1, h2, h3, blockquote {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -.035em;
}
h1 {
  margin: 0;
  max-width: 790px;
  font-size: clamp(48px, 6.1vw, 82px);
  line-height: .99;
}
.hero-lede {
  max-width: 755px;
  margin: 28px 0 0;
  color: #45514b;
  font-size: clamp(17px, 1.7vw, 20px);
  line-height: 1.68;
}
.hero-actions { display: flex; align-items: center; gap: 27px; margin-top: 33px; flex-wrap: wrap; }
.hero-note { max-width: 650px; margin: 22px 0 0; color: var(--muted); font-size: 13px; }
.hero-card {
  position: relative;
  padding: 30px;
  border: 1px solid rgba(25,54,47,.14);
  border-radius: 28px;
  background: rgba(255,253,248,.88);
  box-shadow: var(--shadow);
}
.card-kicker {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.stat-row {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 18px;
  align-items: start;
  padding: 21px 0;
  border-bottom: 1px solid var(--line);
}
.stat-row strong { font-family: Georgia, "Times New Roman", serif; font-size: 22px; font-weight: 500; line-height: 1.2; }
.stat-row span { color: var(--muted); font-size: 13px; line-height: 1.55; }
.card-foot { padding-top: 20px; color: var(--forest); font-weight: 800; font-size: 12px; }

.trust-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #efe9de; }
.trust-grid { min-height: 76px; display: grid; grid-template-columns: repeat(4, 1fr); align-items: center; gap: 20px; }
.trust-grid > div { display: flex; align-items: center; gap: 10px; font-size: 12px; font-weight: 750; text-transform: uppercase; letter-spacing: .08em; }
.dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }

.section { padding: 105px 0; }
.section-white { background: var(--white); }
.section-warm { background: var(--warm); }
.section-heading { max-width: 760px; margin-bottom: 55px; }
.section-heading.compact { margin: 0; }
.section-heading h2, .owner-section h2, .contact-copy h2 {
  margin: 0;
  font-size: clamp(38px, 4.4vw, 60px);
  line-height: 1.06;
}
.section-heading > p:last-child { max-width: 710px; color: var(--muted); font-size: 17px; margin: 22px 0 0; }

.experience-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.experience-card { min-height: 320px; padding: 31px 28px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.experience-card .number { display: block; color: var(--accent); font-size: 11px; font-weight: 800; letter-spacing: .12em; }
.experience-card h3 { margin: 42px 0 15px; font-size: 26px; line-height: 1.12; }
.experience-card p { margin: 0; color: var(--muted); font-size: 14px; }

.statement-section { background: var(--forest); color: #fff; }
.statement-grid { display: grid; grid-template-columns: .35fr 1fr; gap: 80px; }
.statement-label { color: #b9c7c2; font-size: 12px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; padding-top: 12px; }
.statement-copy blockquote { margin: 0; max-width: 850px; font-size: clamp(34px, 4vw, 56px); line-height: 1.12; }
.statement-copy p { max-width: 760px; margin: 30px 0 0; color: #c6d0cc; font-size: 16px; }

.search-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 90px; align-items: start; }
.criteria-panel { border-top: 1px solid rgba(23,32,29,.25); }
.criteria-row { display: grid; grid-template-columns: 50px 1fr; gap: 15px; padding: 24px 0; border-bottom: 1px solid rgba(23,32,29,.2); }
.criteria-row > span { font-size: 11px; font-weight: 800; color: var(--accent); letter-spacing: .08em; }
.criteria-row p { margin: 0; color: #48514c; font-size: 14px; }
.criteria-row strong { color: var(--ink); }
.open-note { margin-top: 58px; padding: 25px 28px; background: rgba(255,253,248,.58); border: 1px solid rgba(23,32,29,.14); display: flex; gap: 25px; align-items: baseline; }
.open-note strong { white-space: nowrap; }
.open-note span { color: var(--muted); }

.approach-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.approach-card { padding: 28px; border-radius: var(--radius); border: 1px solid var(--line); background: #fff; }
.icon-circle { width: 43px; height: 43px; display: grid; place-items: center; border-radius: 50%; background: var(--paper); color: var(--accent); font-weight: 850; }
.approach-card h3 { margin: 30px 0 13px; font-size: 24px; line-height: 1.15; }
.approach-card p { margin: 0; color: var(--muted); font-size: 14px; }

.owner-section { background: #142922; color: #fff; }
.owner-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; }
.owner-copy p { color: #c6d0cc; font-size: 17px; margin: 0 0 22px; }
.owner-copy p:last-child { margin-bottom: 0; }

.contact-section { background: #f7f3eb; }
.contact-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 90px; align-items: start; }
.contact-copy p:not(.eyebrow) { color: var(--muted); font-size: 16px; max-width: 460px; }
.direct-email { margin-top: 38px; padding-top: 23px; border-top: 1px solid var(--line); max-width: 430px; }
.direct-email span { display: block; color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: .12em; font-weight: 800; }
.direct-email a { display: inline-block; margin-top: 8px; font-family: Georgia, "Times New Roman", serif; font-size: 23px; text-decoration: none; }
.direct-email a:hover { color: var(--accent); }
.contact-form { padding: 34px; border: 1px solid var(--line); background: var(--white); border-radius: 26px; box-shadow: 0 20px 45px rgba(23,32,29,.07); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
label { display: block; margin-bottom: 18px; font-size: 12px; font-weight: 750; }
label span { color: var(--muted); font-weight: 500; }
input, textarea {
  width: 100%;
  margin-top: 7px;
  border: 1px solid rgba(23,32,29,.17);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  padding: 13px 14px;
  font: inherit;
  font-size: 15px;
  outline: none;
}
textarea { resize: vertical; }
input:focus, textarea:focus { border-color: var(--forest); box-shadow: 0 0 0 3px rgba(25,54,47,.08); }
.contact-form .button { width: 100%; margin-top: 2px; }
.form-note { margin: 13px 0 0; color: var(--muted); font-size: 11px; text-align: center; }
.form-honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.form-status { min-height: 20px; margin: 13px 0 0; font-size: 12px; font-weight: 700; text-align: center; }
.form-status:empty { margin-top: 0; min-height: 0; }
.form-status.success { color: var(--forest); }
.form-status.error { color: #9b3f2d; }
.contact-form .button:disabled { cursor: wait; opacity: .72; transform: none; }

.site-footer { padding: 38px 0; background: #0e1e19; color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 40px; }
.footer-brand { font-family: Georgia, "Times New Roman", serif; font-size: 22px; text-decoration: none; }
.site-footer p { margin: 4px 0 0; color: #94a39e; font-size: 11px; }
.footer-links { display: flex; gap: 20px; }
.footer-links a { color: #c2ccc8; font-size: 12px; text-decoration: none; }
.footer-links a:hover { color: #fff; }
.footer-legal { color: #778680; font-size: 11px; }

.legal-page { min-height: 100vh; background: var(--white); }
.legal-hero { padding: 78px 0 35px; background: var(--paper); border-bottom: 1px solid var(--line); }
.legal-hero h1 { font-size: clamp(42px, 5vw, 66px); }
.legal-content { max-width: 830px; padding: 65px 0 90px; }
.legal-content h2 { margin: 38px 0 10px; font-size: 27px; }
.legal-content p, .legal-content li { color: var(--muted); font-size: 15px; }
.legal-content a { color: var(--forest); }
.back-link { display: inline-block; margin-bottom: 20px; text-decoration: none; font-weight: 750; font-size: 13px; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .button { transition: none; }
}

@media (max-width: 980px) {
  .hero-grid, .search-grid, .owner-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero { padding-top: 72px; }
  .hero-card { max-width: 680px; }
  .experience-grid { grid-template-columns: repeat(2, 1fr); }
  .approach-grid { grid-template-columns: repeat(2, 1fr); }
  .statement-grid { grid-template-columns: 1fr; gap: 30px; }
  .section-heading.compact { margin-bottom: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 20px; }
}

@media (max-width: 760px) {
  .shell { width: min(calc(100% - 28px), var(--shell)); }
  .site-header { position: sticky; }
  .nav-toggle { display: block; }
  .nav {
    position: fixed;
    inset: 82px 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px 20px 26px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 40px rgba(23,32,29,.12);
  }
  .nav.open { display: flex; }
  .nav > a:not(.button) { padding: 15px 4px; border-bottom: 1px solid var(--line); }
  .nav .button { margin-top: 18px; }
  .hero { padding: 57px 0 62px; }
  h1 { font-size: clamp(43px, 13vw, 64px); }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 20px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); padding: 18px 0; }
  .trust-grid > div { min-height: 36px; }
  .section { padding: 75px 0; }
  .section-heading { margin-bottom: 40px; }
  .experience-grid { grid-template-columns: 1fr; }
  .experience-card { min-height: 0; }
  .approach-grid { grid-template-columns: 1fr; }
  .open-note { flex-direction: column; gap: 8px; }
  .open-note strong { white-space: normal; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form { padding: 24px 18px; }
  .footer-links { flex-wrap: wrap; }
}
