:root {
  --paper: #f5f3ee;
  --ink: #171817;
  --muted: #686a65;
  --line: #d7d4cc;
  --white: #fffdf8;
  --accent: #183e36;
  --accent-soft: #dce6e0;
  --max: 1180px;
  --radius: 2px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 243, 238, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(215, 212, 204, 0.85);
}

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

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

.brand-mark {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-size: 14px;
}

.brand-text {
  font-size: 16px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 14px;
}

.site-nav > a:not(.nav-cta) {
  color: #3e403d;
}

.nav-cta {
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
}

.menu-toggle {
  display: none;
  width: 36px;
  height: 36px;
  padding: 7px;
  border: 0;
  background: transparent;
}

.menu-toggle span:not(.sr-only) {
  width: 100%;
  height: 1px;
  background: var(--ink);
  display: block;
  margin: 6px 0;
}

.hero {
  padding: 108px 0 98px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(260px, 0.7fr);
  gap: 100px;
  align-items: end;
}

.eyebrow,
.section-kicker {
  margin: 0 0 20px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 11px;
  font-weight: 700;
}

.hero h1 {
  max-width: 850px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(58px, 7vw, 105px);
  line-height: 0.95;
  letter-spacing: -0.055em;
  font-weight: 400;
}

.hero-lead {
  max-width: 700px;
  margin: 38px 0 0;
  color: #454744;
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.45;
  letter-spacing: -0.02em;
}

.hero-actions {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 14px;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-dark {
  background: var(--ink);
  color: var(--white);
}

.button-dark:hover {
  background: var(--accent);
}

.text-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  border-bottom: 1px solid #b5b2ab;
  padding-bottom: 3px;
  font-size: 14px;
}

.hero-note {
  max-width: 340px;
  padding-bottom: 10px;
}

.hero-note-line {
  width: 58px;
  height: 1px;
  background: var(--ink);
  margin-bottom: 24px;
}

.hero-note p {
  margin: 0;
  color: #555752;
  font-size: 15px;
  line-height: 1.65;
}

.statement-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 72px 0;
}

.statement-grid {
  display: grid;
  grid-template-columns: 0.7fr 2fr;
  gap: 70px;
}

.statement-grid h2 {
  margin: 0;
  max-width: 900px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4.3vw, 58px);
  line-height: 1.08;
  font-weight: 400;
  letter-spacing: -0.035em;
}

.section {
  padding: 110px 0;
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 110px;
}

.section-heading h2,
.services-header h2,
.impact-card h2,
.consultation-heading h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.section-heading h2,
.services-header h2,
.consultation-heading h2 {
  font-size: clamp(38px, 4vw, 58px);
}

.body-copy {
  font-size: 18px;
  color: #40423f;
}

.body-copy p {
  margin: 0 0 24px;
}

.services {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.services-header {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 62px;
}

.services-intro {
  margin: 0 0 4px;
  color: var(--muted);
  max-width: 400px;
}

.service-list {
  border-top: 1px solid var(--line);
}

.service-row {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 30px;
  padding: 32px 0 30px;
  border-bottom: 1px solid var(--line);
}

.service-number {
  color: #8a8c86;
  font-size: 12px;
  padding-top: 5px;
}

.service-row h3 {
  margin: 0 0 8px;
  font-size: 23px;
  font-weight: 500;
  letter-spacing: -0.025em;
}

.service-row p {
  margin: 0;
  max-width: 760px;
  color: var(--muted);
  font-size: 16px;
}

.impact {
  padding-top: 92px;
  padding-bottom: 92px;
}

.impact-card {
  background: var(--accent);
  color: var(--white);
  padding: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.impact-card .section-kicker {
  color: #bfd1c8;
}

.impact-card h2 {
  max-width: 560px;
  font-size: clamp(40px, 4.5vw, 64px);
}

.impact-copy {
  align-self: end;
  color: #e7eee9;
}

.impact-copy p {
  margin: 0 0 20px;
  font-size: 18px;
  line-height: 1.6;
}

.light-link {
  margin-top: 12px;
  border-color: rgba(255,255,255,.45);
}

.fit {
  border-top: 1px solid var(--line);
}

.fit-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
}

.fit-item {
  min-height: 190px;
  padding: 28px 30px 28px 0;
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 16px;
  border-bottom: 1px solid var(--line);
}

.fit-item:nth-child(odd) {
  border-right: 1px solid var(--line);
  padding-right: 42px;
}

.fit-item:nth-child(even) {
  padding-left: 42px;
}

.fit-item span {
  color: #8b8d87;
  font-size: 12px;
}

.fit-item p {
  margin: 0;
  max-width: 430px;
  align-self: end;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.consultation {
  background: #ece9e2;
}

.consultation-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 100px;
}

.consultation-heading p:last-child {
  max-width: 480px;
  color: var(--muted);
  font-size: 17px;
}

.contact-form {
  display: grid;
  gap: 22px;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form label > span:first-child {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.contact-form input:not([type="checkbox"]),
.contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #a9a69f;
  background: transparent;
  color: var(--ink);
  padding: 12px 0;
  outline: none;
  border-radius: 0;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--ink);
}

.contact-form textarea {
  resize: vertical;
}

.checkbox-row {
  grid-template-columns: auto 1fr !important;
  align-items: start;
  gap: 10px !important;
  color: var(--muted);
  font-size: 13px;
}

.checkbox-row input {
  margin-top: 3px;
}

.contact-form .button {
  justify-self: start;
  margin-top: 6px;
}

.form-note {
  margin: 0;
  color: #7c7e78;
  font-size: 12px;
  max-width: 570px;
}

.form-note code {
  font-size: 11px;
}

.site-footer {
  padding: 52px 0;
  background: var(--ink);
  color: #f0eee7;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 50px;
}

.footer-brand .brand-mark {
  border-color: #f0eee7;
}

.footer-grid > div:first-child > p {
  max-width: 460px;
  color: #aeb0aa;
  font-size: 13px;
  margin: 18px 0 0;
}

.footer-meta {
  text-align: right;
  align-self: end;
  color: #aeb0aa;
  font-size: 13px;
}

.footer-meta p {
  margin: 5px 0;
}

.footer-meta a {
  color: #f0eee7;
}

.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 900px) {
  .hero {
    padding-top: 78px;
  }

  .hero-grid,
  .statement-grid,
  .split-grid,
  .services-header,
  .impact-card,
  .consultation-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-note {
    max-width: 600px;
  }

  .services-header {
    margin-bottom: 44px;
  }

  .impact-card {
    padding: 48px 36px;
  }

  .fit-grid {
    grid-template-columns: 1fr;
  }

  .fit-item,
  .fit-item:nth-child(odd),
  .fit-item:nth-child(even) {
    border-right: 0;
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 720px) {
  .shell {
    width: min(calc(100% - 32px), var(--max));
  }

  .nav-wrap {
    height: 68px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 68px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 10px 16px 18px;
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    width: 100%;
    padding: 13px 0;
  }

  .nav-cta {
    border-bottom: 0;
    font-weight: 700;
  }

  .hero {
    padding: 62px 0 72px;
  }

  .hero h1 {
    font-size: clamp(52px, 16vw, 78px);
  }

  .hero-lead {
    font-size: 19px;
  }

  .statement-section {
    padding: 56px 0;
  }

  .section {
    padding: 78px 0;
  }

  .service-row {
    grid-template-columns: 50px 1fr;
    gap: 14px;
  }

  .fit-item {
    grid-template-columns: 42px 1fr;
  }

  .fit-item p {
    font-size: 22px;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    flex-direction: column;
  }

  .footer-meta {
    text-align: left;
    align-self: auto;
  }
}
