:root {
  --ink: #17201c;
  --ink-soft: #39453f;
  --paper: #f6f4ef;
  --paper-deep: #ece9e1;
  --white: #fffefa;
  --green: #244c3e;
  --green-dark: #17372d;
  --sage: #b7c4b8;
  --line: rgba(23, 32, 28, 0.16);
  --max: 1180px;
  --shadow: 0 22px 60px rgba(23, 32, 28, 0.09);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px max(24px, calc((100vw - var(--max)) / 2));
  background: rgba(246, 244, 239, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(23, 32, 28, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--ink);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 18px;
  font-weight: 400;
}

.brand-name { font-size: 17px; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}

.site-nav a:hover { opacity: .66; }
.nav-cta {
  padding: 11px 16px;
  border: 1px solid var(--ink);
}
.nav-toggle { display: none; }

.section-shell {
  width: min(calc(100% - 48px), var(--max));
  margin-inline: auto;
}

.section { padding: 110px 0; }

.hero {
  min-height: 760px;
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(300px, .75fr);
  gap: 80px;
  align-items: center;
  padding-top: 86px;
  padding-bottom: 86px;
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

h1, h2, h3, p { margin-top: 0; }

h1, h2 {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.04;
}

h1 {
  max-width: 830px;
  margin-bottom: 30px;
  font-size: clamp(3.7rem, 7vw, 6.8rem);
}

h2 {
  max-width: 820px;
  margin-bottom: 24px;
  font-size: clamp(2.3rem, 4vw, 4.2rem);
}

h3 {
  margin-bottom: 16px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.45rem;
  font-weight: 400;
  line-height: 1.2;
}

.hero-intro {
  max-width: 720px;
  margin-bottom: 36px;
  color: var(--ink-soft);
  font-size: 1.17rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 19px;
  border: 1px solid var(--ink);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}

.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--green); color: var(--white); border-color: var(--green); }
.button-primary:hover { background: var(--green-dark); }
.button-secondary { background: transparent; }
.button-secondary:hover { background: var(--white); }

.hero-panel {
  padding: 34px;
  background: var(--green);
  color: var(--white);
  box-shadow: var(--shadow);
}

.panel-label {
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,.25);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.hero-panel ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hero-panel li {
  display: flex;
  gap: 18px;
  padding: 23px 0;
  border-bottom: 1px solid rgba(255,255,255,.18);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.2rem;
}

.hero-panel li:last-child { border-bottom: 0; }
.hero-panel li span {
  color: var(--sage);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
}

.statement-band {
  padding: 72px 0;
  background: var(--ink);
  color: var(--white);
}

.narrow { max-width: 940px; }
.statement-band p {
  margin: 0;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.8rem, 3.4vw, 3.1rem);
  line-height: 1.22;
  letter-spacing: -0.03em;
}

.section-heading { max-width: 860px; margin-bottom: 56px; }
.section-heading > p:last-child { max-width: 740px; color: var(--ink-soft); font-size: 1.05rem; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-card {
  min-height: 410px;
  padding: 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.28);
}

.service-card:hover { background: var(--white); }
.service-number {
  margin-bottom: 46px;
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
}

.service-card > p { color: var(--ink-soft); }
.service-card ul {
  padding: 18px 0 0 18px;
  margin: 24px 0 0;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
}
.service-card li { margin: 7px 0; }

.experience-section {
  background: var(--paper-deep);
}

.experience-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 88px;
}

.experience-list { border-top: 1px solid var(--line); }
.experience-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
}
.experience-item > span {
  color: var(--green);
  font-size: 11px;
  font-weight: 700;
}
.experience-item p { margin: 0; color: var(--ink-soft); }

.credibility-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 70px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.credibility-strip div { padding: 26px 22px 26px 0; }
.credibility-strip strong {
  display: block;
  margin-bottom: 8px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.4rem;
  font-weight: 400;
}
.credibility-strip span { color: var(--ink-soft); font-size: 13px; }

.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.approach-card {
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--line);
}
.approach-card p { margin: 0; color: var(--ink-soft); }

.why-section {
  padding: 100px 0;
  background: var(--green);
  color: var(--white);
}
.why-section .eyebrow { color: var(--sage); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
}
.why-copy { align-self: end; font-size: 1.08rem; }
.why-copy p:last-child { margin-bottom: 0; }

.contact-section { padding-top: 100px; padding-bottom: 100px; }
.contact-card {
  display: grid;
  grid-template-columns: 1.45fr .55fr;
  gap: 70px;
  padding: 58px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.contact-card h2 { font-size: clamp(2.3rem, 4vw, 3.8rem); }
.contact-card p { max-width: 700px; color: var(--ink-soft); }
.contact-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: 16px;
}
.text-link {
  display: flex;
  justify-content: space-between;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  font-weight: 700;
}
.contact-actions small { color: #6d756f; }

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 28px;
  padding-top: 30px;
  padding-bottom: 38px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 12px;
}
.footer-brand { color: var(--ink); }

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

@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-template-columns: 1fr; min-height: auto; gap: 40px; }
  .hero-panel { max-width: 620px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .experience-grid, .why-grid, .contact-card { grid-template-columns: 1fr; gap: 46px; }
  .credibility-strip { grid-template-columns: repeat(2, 1fr); }
  .approach-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .site-header { padding-inline: 20px; }
  .nav-toggle {
    display: inline-flex;
    border: 1px solid var(--ink);
    background: transparent;
    padding: 9px 12px;
    font: inherit;
    font-size: 13px;
    font-weight: 700;
  }
  .site-nav {
    display: none;
    position: absolute;
    top: 78px;
    left: 16px;
    right: 16px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 14px 12px; }
  .nav-cta { margin-top: 4px; }
  .section-shell { width: min(calc(100% - 32px), var(--max)); }
  .section { padding: 78px 0; }
  .hero { padding-top: 68px; padding-bottom: 68px; }
  h1 { font-size: clamp(3rem, 15vw, 4.8rem); }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { min-height: auto; }
  .credibility-strip { grid-template-columns: 1fr; }
  .contact-card { padding: 34px 26px; }
  .site-footer { grid-template-columns: 1fr; align-items: start; }
}
