:root {
  --ink: #171717;
  --muted: #63615d;
  --line: #ded8cc;
  --ivory: #f7f3ea;
  --paper: #fffdf8;
  --forest: #14382d;
  --forest-2: #0d2a22;
  --gold: #b4985a;
  --gold-soft: #eadfc4;
  --shadow: 0 24px 80px rgba(23, 23, 23, .12);
  --radius: 8px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}
a { color: inherit; }
img { max-width: 100%; height: auto; display: block; }
.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  background: var(--forest);
  color: #fff;
  padding: .75rem 1rem;
  z-index: 50;
}
.skip-link:focus { top: 1rem; }
.topbar {
  background: var(--forest);
  color: #f6efe0;
  text-align: center;
  padding: .55rem 1rem;
  font-size: .84rem;
  letter-spacing: .02em;
}
.site-header {
  min-height: 84px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: .72rem clamp(1.25rem, 4vw, 4rem);
  border-bottom: 1px solid rgba(222, 216, 204, .8);
  background: rgba(255, 253, 248, .92);
  backdrop-filter: blur(14px);
  position: sticky;
  top: 0;
  z-index: 20;
}
.brand, .footer-brand {
  text-decoration: none;
  color: var(--ink);
  display: inline-block;
  line-height: 0;
}
.brand-logo {
  display: block;
  width: clamp(11.5rem, 17vw, 15.5rem);
  height: auto;
}
.brand .brand-logo {
  width: clamp(9.9rem, 12vw, 12.9rem);
}
.desktop-nav {
  display: flex;
  justify-content: center;
  gap: clamp(.9rem, 2vw, 1.8rem);
  font-size: .92rem;
  color: #34322f;
}
.desktop-nav a {
  text-decoration: none;
  padding: .45rem 0;
  border-bottom: 1px solid transparent;
  white-space: nowrap;
}
.desktop-nav a:hover,
.desktop-nav a.active { border-color: var(--gold); color: var(--forest); }
.header-cta, .button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .76rem 1.05rem;
  border-radius: 999px;
  text-decoration: none;
  font-size: .9rem;
  font-weight: 700;
  border: 1px solid var(--forest);
}
.header-cta {
  background: var(--forest);
  color: #fff;
  white-space: nowrap;
}
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, .78fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  padding: clamp(4rem, 8vw, 7rem) clamp(1.25rem, 5vw, 5rem) clamp(3rem, 6vw, 5rem);
  background:
    radial-gradient(circle at 78% 18%, rgba(180, 152, 90, .18), transparent 32%),
    linear-gradient(135deg, #fffdf8 0%, #f7f3ea 100%);
}
.trust-line {
  color: var(--forest);
  font-weight: 750;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: .78rem;
  margin: 0 0 1rem;
}
h1, h2, h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: 0;
}
h1 {
  font-size: clamp(3rem, 7.2vw, 6.8rem);
  max-width: 930px;
  margin: 0;
}
.page-hero h1 { font-size: clamp(2.7rem, 5.8vw, 5.7rem); }
h2 { font-size: clamp(2rem, 3.8vw, 3.8rem); margin: 0 0 1rem; }
h3 { font-size: 1.24rem; margin: 0 0 .6rem; }
p { color: var(--muted); }
.hero-intro,
.page-hero p {
  font-size: clamp(1.08rem, 1.6vw, 1.28rem);
  max-width: 710px;
}
.cta-row, .cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  margin-top: 1.5rem;
}
.button-primary {
  background: var(--forest);
  color: #fff;
}
.button-primary:hover { background: var(--forest-2); }
.button-secondary {
  background: transparent;
  color: var(--forest);
}
.button-secondary:hover { background: #eef3ef; }
.proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin-top: 2rem;
}
.proof-row span {
  border-top: 1px solid var(--line);
  color: #504d48;
  padding-top: .5rem;
  min-width: 88px;
  font-size: .88rem;
}
.founder-card, .page-aside {
  background: #f0ece4;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: .8rem;
  box-shadow: var(--shadow);
}
.founder-card img, .page-aside img {
  border-radius: calc(var(--radius) - 2px);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
}
.founder-caption {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem .35rem .25rem;
}
.founder-caption strong { font-family: Georgia, "Times New Roman", serif; font-size: 1.25rem; }
.founder-caption span { color: var(--muted); font-size: .92rem; }
.service-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.service-card {
  background: var(--paper);
  padding: clamp(1.5rem, 3.5vw, 3.2rem);
}
.service-card h2 { font-size: clamp(1.55rem, 2.5vw, 2.35rem); }
.service-card a, .link-grid a {
  color: var(--forest);
  font-weight: 800;
  text-decoration-color: var(--gold);
  text-underline-offset: 4px;
}
.service-icon {
  display: block;
  width: 42px;
  height: 42px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  position: relative;
  margin-bottom: 1.2rem;
}
.service-icon:before, .service-icon:after {
  content: "";
  position: absolute;
  background: var(--forest);
  left: 50%;
  top: 50%;
  transform-origin: left center;
}
.service-icon:before { width: 14px; height: 2px; transform: rotate(-42deg); }
.service-icon:after { width: 11px; height: 2px; transform: rotate(50deg); }
.split-section, .page-hero, .contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .45fr);
  gap: clamp(2rem, 5vw, 5rem);
  padding: clamp(3.5rem, 7vw, 6.5rem) clamp(1.25rem, 5vw, 5rem);
  align-items: start;
}
.page-hero {
  background: linear-gradient(135deg, #fffdf8 0%, #f5efe4 100%);
  align-items: center;
}
.page-aside p { padding: .8rem .25rem .1rem; margin: 0; }
.checklist {
  border-left: 3px solid var(--gold);
  background: #fbf7ef;
  padding: clamp(1.35rem, 3vw, 2rem);
  border-radius: var(--radius);
}
.checklist ul, .site-footer ul {
  margin: 0;
  padding-left: 1.1rem;
}
.checklist li { margin: .65rem 0; color: #403d38; }
.content-band, .faq-section {
  padding: clamp(3.5rem, 7vw, 6.5rem) clamp(1.25rem, 5vw, 5rem);
  background: var(--ivory);
}
.link-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.link-grid a {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem;
  text-decoration: none;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.steps article {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.steps span {
  color: var(--gold);
  font-weight: 850;
  letter-spacing: .08em;
}
.faq-section {
  background: var(--paper);
  max-width: none;
}
.faq-section details {
  max-width: 960px;
  border-top: 1px solid var(--line);
  padding: 1.1rem 0;
}
.faq-section details:last-child { border-bottom: 1px solid var(--line); }
.faq-section summary {
  cursor: pointer;
  font-weight: 800;
  color: var(--ink);
}
.related { background: #f8f5ef; }
.final-cta {
  margin: clamp(2rem, 4vw, 4rem) clamp(1.25rem, 5vw, 5rem);
  padding: clamp(2rem, 5vw, 4rem);
  border-radius: var(--radius);
  background: var(--forest);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.final-cta p { color: #dce8e1; }
.final-cta h2 { color: #fff; }
.final-cta .button-secondary {
  color: #fff;
  border-color: rgba(255,255,255,.68);
}
.contact-direct {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.25rem;
}
.contact-direct a {
  color: var(--forest);
  font-weight: 850;
}
.contact-form {
  display: grid;
  gap: 1rem;
  background: #fbf7ef;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.25rem, 3vw, 2rem);
}
.contact-form label {
  display: grid;
  gap: .45rem;
  font-weight: 800;
  color: #302d29;
}
input, select, textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid #cfc6b7;
  border-radius: 6px;
  background: #fff;
  padding: .78rem .85rem;
  font: inherit;
  color: var(--ink);
}
textarea { resize: vertical; }
.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
}
.form-note { font-size: .9rem; margin: 0; }
.site-footer {
  background: #111;
  color: #fff;
  display: grid;
  grid-template-columns: 1.4fr .7fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  padding: clamp(3rem, 6vw, 5rem) clamp(1.25rem, 5vw, 5rem);
}
.site-footer p, .site-footer a, .fineprint { color: #d5d1c8; }
.site-footer h2 {
  color: #fff;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.footer-brand {
  color: #fff;
  padding: 0;
}
.footer-brand .brand-logo { width: min(18rem, 100%); }
.fineprint { font-size: .82rem; }
@media (max-width: 1120px) {
  .site-header { grid-template-columns: 1fr auto; }
  .brand { grid-column: 1; grid-row: 1; }
  .header-cta { grid-column: 2; grid-row: 1; justify-self: end; }
  .desktop-nav { grid-column: 1 / -1; grid-row: 2; justify-content: flex-start; overflow-x: auto; padding-bottom: .2rem; }
  .hero, .page-hero, .split-section, .contact-section, .site-footer { grid-template-columns: 1fr; }
  .service-strip, .steps { grid-template-columns: 1fr; }
  .link-grid { grid-template-columns: repeat(2, 1fr); }
  .final-cta { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 620px) {
  .site-header { gap: .5rem; }
  .header-cta { display: none; }
  .brand .brand-logo { width: 9.3rem; }
  .hero, .page-hero { padding-top: 3rem; }
  h1 { font-size: clamp(2.65rem, 14vw, 4rem); }
  .link-grid { grid-template-columns: 1fr; }
  .proof-row span { min-width: auto; flex: 1 1 40%; }
}
