:root {
  color-scheme: light;
  --ink: #1f2522;
  --muted: #66716b;
  --paper: #f7f5ef;
  --stone: #e8e4da;
  --sage: #4f695b;
  --sage-dark: #263f36;
  --clay: #9a745d;
  --line: rgba(31, 37, 34, 0.16);
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(26, 34, 30, 0.16);
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

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

p {
  color: var(--muted);
}

.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;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  padding: 0 48px;
  background: rgba(247, 245, 239, 0.92);
  border-bottom: 1px solid rgba(31, 37, 34, 0.08);
  backdrop-filter: blur(14px);
}

.logo img {
  width: 118px;
  height: auto;
}

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

.site-nav a {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  border-color: var(--sage);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: transparent;
  padding: 10px;
}

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

.hero {
  position: relative;
  display: grid;
  min-height: calc(100vh - 78px);
  isolation: isolate;
  overflow: hidden;
  background: var(--sage-dark);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 118%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  transform: translateX(-21%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(270deg, rgba(20, 28, 24, 0.9), rgba(20, 28, 24, 0.64) 44%, rgba(20, 28, 24, 0.08) 74%),
    linear-gradient(0deg, rgba(20, 28, 24, 0.26), rgba(20, 28, 24, 0));
}

.hero-content {
  width: min(540px, calc(100% - 48px));
  align-self: center;
  margin-right: max(24px, calc((100vw - var(--max)) / 2));
  margin-left: auto;
  padding: 28px 0 36px;
  color: var(--white);
}

.hero-content p {
  max-width: 57ch;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #d6b59b;
}

h1,
h2,
h3 {
  color: inherit;
  line-height: 1.08;
  font-weight: 650;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(2.25rem, 3.65vw, 3.62rem);
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2rem, 4vw, 4.15rem);
}

h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.hero-actions,
.section-heading,
.contact-details {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-actions {
  margin-top: 24px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--sage);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--sage-dark);
}

.button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.46);
  background: rgba(255, 255, 255, 0.08);
}

.section {
  padding: 112px 24px;
}

.section-inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.25fr);
  gap: clamp(42px, 7vw, 96px);
  align-items: start;
}

.prose p {
  max-width: 68ch;
  font-size: 1.05rem;
}

.intro-section,
.services-section {
  background: var(--paper);
}

.intro-section .prose {
  padding-top: 58px;
}

.signal-section,
.outcomes-section {
  background: var(--white);
}

.section-heading {
  max-width: 780px;
  flex-direction: column;
  gap: 0;
  margin-bottom: 50px;
}

.section-heading p:not(.eyebrow) {
  font-size: 1.08rem;
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.signal-grid article,
.service-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.signal-grid article {
  grid-column: span 2;
  min-height: 260px;
  padding: 26px;
}

.signal-grid article:nth-child(4),
.signal-grid article:nth-child(5) {
  grid-column: span 3;
}

.signal-grid span,
.timeline span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  border-radius: 50%;
  color: var(--white);
  background: var(--sage);
  font-weight: 700;
}

.quote-band {
  padding: 70px 24px;
  color: var(--white);
  background: var(--sage-dark);
}

.quote-band p {
  max-width: 920px;
  margin: 0;
  color: var(--white);
  font-size: clamp(1.65rem, 3vw, 3.2rem);
  line-height: 1.16;
}

.approach-section {
  background: #eef2ed;
}

.sticky-copy {
  position: sticky;
  top: 116px;
}

.sticky-copy p:not(.eyebrow) {
  max-width: 42ch;
}

.timeline {
  display: grid;
  gap: 28px;
}

.timeline article {
  display: grid;
  grid-template-columns: 52px 1fr;
  column-gap: 22px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.timeline span {
  grid-row: span 2;
  margin-bottom: 0;
}

.timeline p {
  margin-bottom: 0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-grid article {
  min-height: 340px;
  padding: 28px;
}

.service-grid strong {
  display: block;
  margin: 26px 0 8px;
  color: var(--sage-dark);
}

.outcome-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.outcome-list li {
  padding: 18px 20px;
  border-left: 4px solid var(--sage);
  background: var(--paper);
  font-weight: 650;
}

.about-section {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(38, 63, 54, 0.96), rgba(31, 37, 34, 0.94)),
    var(--sage-dark);
}

.about-section p {
  color: rgba(255, 255, 255, 0.78);
}

.about-section .eyebrow {
  color: #d6b59b;
}

.about-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(40px, 7vw, 90px);
  align-items: center;
}

.about-visual {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.34fr);
  gap: 12px;
  align-items: stretch;
}

.about-mark {
  display: flex;
  min-height: 330px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background:
    radial-gradient(circle at 18% 14%, rgba(255, 255, 255, 0.12), transparent 32%),
    rgba(255, 255, 255, 0.06);
}

.about-mark img {
  width: min(270px, 70%);
}

.about-portrait {
  position: relative;
  width: 100%;
  min-height: 330px;
  padding-bottom: 54px;
  justify-self: stretch;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.22);
  margin: 0;
}

.about-portrait img {
  width: 100%;
  height: calc(100% - 54px);
  min-height: 330px;
  object-fit: cover;
  object-position: center 34%;
  filter: contrast(1.03) saturate(0.96) brightness(1.02);
}

.about-portrait::after {
  content: none;
}

.portrait-caption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  display: grid;
  gap: 2px;
  padding: 8px 9px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-right: 0;
  border-bottom: 0;
  border-left: 0;
  border-radius: 0;
  background: rgba(31, 37, 34, 0.9);
  backdrop-filter: none;
}

.portrait-caption span:first-child {
  color: var(--white);
  font-size: 0.73rem;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}

.portrait-caption span:last-child {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.74rem;
  line-height: 1.2;
}

.contact-section {
  background: var(--white);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(40px, 7vw, 90px);
}

.contact-copy p {
  max-width: 52ch;
  font-size: 1.05rem;
}

.contact-details {
  flex-direction: column;
  margin-top: 32px;
  gap: 10px;
}

.contact-details a,
.site-footer a {
  color: var(--sage-dark);
  font-weight: 650;
  text-decoration: none;
}

.contact-details a:hover,
.site-footer a:hover {
  text-decoration: underline;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.form-note {
  margin-bottom: 4px;
  font-weight: 650;
  color: var(--ink);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 650;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(31, 37, 34, 0.34);
  border-radius: 4px;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus {
  outline: 2px solid rgba(79, 105, 91, 0.32);
  border-color: var(--sage);
}

.hidden-field {
  display: none;
}

.site-footer {
  padding: 54px 24px 28px;
  background: var(--stone);
}

.footer-inner,
.footer-bottom {
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 36px;
  padding-bottom: 38px;
  border-bottom: 1px solid var(--line);
}

.site-footer h2 {
  margin-bottom: 16px;
  font-size: 1rem;
}

.site-footer p,
.site-footer a {
  display: block;
  margin: 0 0 8px;
}

.pending {
  color: #7f5947;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
}

.simple-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 24px;
}

.thanks {
  width: min(720px, 100%);
  padding: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.thanks h1 {
  max-width: 12ch;
  margin-top: 30px;
  color: var(--ink);
  font-size: clamp(2.3rem, 7vw, 4.6rem);
}

@media (max-width: 980px) {
  .site-header {
    padding: 0 24px;
  }

  .two-column,
  .about-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .intro-section .prose {
    padding-top: 0;
  }

  .sticky-copy {
    position: static;
  }

  .signal-grid,
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .signal-grid article,
  .signal-grid article:nth-child(4),
  .signal-grid article:nth-child(5) {
    grid-column: auto;
  }

  .service-grid article {
    min-height: auto;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 70px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 70px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 13px 12px;
  }

  .hero {
    min-height: auto;
  }

  .hero::after {
    background:
      linear-gradient(0deg, rgba(20, 28, 24, 0.86) 0%, rgba(20, 28, 24, 0.66) 46%, rgba(20, 28, 24, 0.22) 100%);
  }

  .hero-media img {
    width: 126%;
    object-position: 58% bottom;
    transform: translateX(-8%);
  }

  .hero-content {
    width: min(100% - 36px, 620px);
    min-height: calc(100vh - 70px);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    margin: 0 auto;
    padding: 130px 0 42px;
  }

  h1 {
    max-width: 13ch;
    font-size: 2.55rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  .section {
    padding: 76px 18px;
  }

  .signal-grid,
  .service-grid,
  .outcome-list,
  .form-row,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .signal-grid article {
    min-height: auto;
  }

  .timeline article {
    grid-template-columns: 1fr;
  }

  .timeline span {
    margin-bottom: 18px;
  }

  .about-visual {
    grid-template-columns: minmax(0, 1fr) minmax(150px, 0.42fr);
    gap: 8px;
  }

  .about-mark {
    min-height: 300px;
  }

  .about-portrait {
    width: 100%;
    min-height: 300px;
    justify-self: stretch;
    margin: 0;
  }

  .about-portrait img {
    min-height: 300px;
  }

  .contact-form {
    padding: 22px;
  }

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

  .thanks {
    padding: 28px;
  }
}

@media (max-width: 480px) {
  .about-visual {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .about-portrait {
    width: min(310px, 86%);
    justify-self: end;
  }
}
