:root {
  --forest: #193e2e;
  --paper: #f2eee5;
  --clay: #d78957;
  --ink: #18231d;
  --sand: #ded6c7;
  --cream: #fffaf0;
  --serif: Georgia, "Times New Roman", Times, serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shell: 76rem;
  --gutter: clamp(1.25rem, 4vw, 3.5rem);
  --section-space: clamp(5rem, 11vw, 9.5rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body,
button,
a {
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

button {
  color: inherit;
  font: inherit;
}

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

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.035em;
}

h2 {
  max-width: 16ch;
  margin-bottom: 1.75rem;
  font-size: clamp(2.5rem, 6vw, 5.25rem);
}

h3 {
  font-size: clamp(1.7rem, 3vw, 2.45rem);
}

.shell {
  width: min(100% - (2 * var(--gutter)), var(--shell));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--cream);
  color: var(--ink);
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid var(--clay);
  outline-offset: 4px;
}

.eyebrow,
.section-index {
  margin-bottom: 1.6rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.section-index {
  color: color-mix(in srgb, var(--ink) 64%, transparent);
}

.button {
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  padding: 0.85rem 1.2rem;
  border: 1px solid transparent;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

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

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

.button-clay:hover {
  background: var(--cream);
}

.button-cream {
  background: var(--cream);
  color: var(--forest);
}

.button-cream:hover {
  background: var(--clay);
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  color: var(--cream);
}

.header-inner {
  display: flex;
  min-height: 6.25rem;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgb(255 250 240 / 22%);
}

.wordmark {
  font-family: var(--serif);
  font-size: 2rem;
  letter-spacing: -0.045em;
  line-height: 1;
  text-decoration: none;
}

.wordmark span {
  color: var(--clay);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.15rem, 2.6vw, 2.4rem);
}

.site-nav a {
  position: relative;
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0.35rem;
  left: 0;
  height: 1px;
  background: var(--clay);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-nav .nav-contact {
  padding-inline: 1rem;
  border: 1px solid rgb(255 250 240 / 42%);
}

.nav-toggle {
  display: none;
  min-width: 3.2rem;
  min-height: 2.75rem;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav-toggle-lines {
  position: relative;
  width: 1.25rem;
  height: 1px;
  margin-left: 0.65rem;
  background: currentColor;
}

.nav-toggle-lines::before {
  position: absolute;
  top: -0.38rem;
  right: 0;
  width: 1.25rem;
  height: 1px;
  background: currentColor;
  content: "";
}

.hero {
  overflow: hidden;
  min-height: 53rem;
  padding: 9.5rem 0 4rem;
  background: var(--forest);
  color: var(--cream);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(21rem, 0.68fr);
  grid-template-rows: auto auto;
  align-items: end;
  gap: 1.75rem clamp(2rem, 7vw, 6.5rem);
}

.hero-copy {
  z-index: 2;
  padding: clamp(3rem, 6vw, 6rem) 0 1rem;
}

.hero h1 {
  max-width: 9ch;
  margin-bottom: 2.25rem;
  font-size: clamp(4.1rem, 8.8vw, 8.5rem);
}

.hero h1 em {
  color: var(--clay);
  font-weight: 400;
}

.hero-intro {
  max-width: 38rem;
  margin-bottom: 2.3rem;
  color: rgb(255 250 240 / 80%);
  font-size: clamp(1.05rem, 1.6vw, 1.24rem);
}

.hero-image-wrap {
  position: relative;
  align-self: stretch;
  margin: 0 -3rem 0 0;
}

.hero-image-wrap::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, rgb(25 62 46 / 4%), rgb(25 62 46 / 18%));
  content: "";
  pointer-events: none;
}

.hero-image {
  width: 100%;
  height: clamp(31rem, 52vw, 44rem);
  object-fit: cover;
  object-position: 58% center;
  filter: saturate(0.68) contrast(0.98) brightness(0.92);
}

.hero-image-wrap figcaption {
  position: absolute;
  z-index: 2;
  right: 0.85rem;
  bottom: 0.65rem;
  max-width: 26rem;
  margin: 0;
  color: rgb(255 250 240 / 72%);
  font-size: 0.6rem;
  line-height: 1.35;
  text-align: right;
}

.hero-note {
  grid-column: 1;
  max-width: 16rem;
  margin: 0;
  padding-top: 1.2rem;
  border-top: 1px solid rgb(255 250 240 / 25%);
  color: rgb(255 250 240 / 66%);
  font-size: 0.76rem;
  letter-spacing: 0.04em;
  line-height: 1.55;
}

.hero-note span {
  color: var(--cream);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.service-intro {
  padding: var(--section-space) 0 clamp(4rem, 7vw, 6rem);
}

.intro-grid,
.about-grid {
  display: grid;
  grid-template-columns: minmax(9rem, 0.34fr) minmax(0, 1fr);
  gap: clamp(2rem, 8vw, 8rem);
}

.intro-grid h2 {
  max-width: 13ch;
}

.intro-grid > div > p:last-child {
  max-width: 43rem;
  margin-bottom: 0;
  color: rgb(24 35 29 / 72%);
  font-size: 1.13rem;
}

.services {
  padding-bottom: var(--section-space);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  border-bottom: 1px solid var(--sand);
}

.section-heading h2 {
  margin-bottom: 1.5rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--sand);
}

.service-card {
  min-height: 26rem;
  padding: clamp(1.8rem, 4vw, 3rem);
  border-right: 1px solid var(--sand);
  border-bottom: 1px solid var(--sand);
}

.service-card:nth-child(2) {
  margin-top: 3.5rem;
  border-top: 1px solid var(--sand);
}

.service-card:nth-child(3) {
  margin-top: -3.5rem;
}

.service-card-accent {
  background: var(--sand);
}

.service-number {
  margin-bottom: clamp(4rem, 8vw, 7rem);
  color: var(--clay);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.service-card h3 {
  margin-bottom: 1.5rem;
}

.service-card > p:not(.service-number) {
  max-width: 31rem;
  color: rgb(24 35 29 / 76%);
}

.service-card .service-detail {
  margin: 1.8rem 0 0;
  padding-top: 1.4rem;
  border-top: 1px solid rgb(24 35 29 / 16%);
  font-size: 0.84rem;
}

.approach {
  padding: var(--section-space) 0;
  background: var(--forest);
  color: var(--cream);
}

.approach .section-index {
  color: rgb(255 250 240 / 54%);
}

.approach-heading {
  display: grid;
  grid-template-columns: minmax(9rem, 0.34fr) minmax(0, 1fr);
  gap: clamp(2rem, 8vw, 8rem);
  margin-bottom: clamp(4rem, 8vw, 7rem);
}

.approach-heading h2 {
  max-width: 13ch;
}

.steps {
  display: grid;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgb(255 250 240 / 22%);
  list-style: none;
  grid-template-columns: repeat(4, 1fr);
}

.steps li {
  min-height: 20rem;
  padding: 1.5rem clamp(1.1rem, 2.5vw, 2rem);
  border-right: 1px solid rgb(255 250 240 / 22%);
}

.steps li:last-child {
  border-right: 0;
}

.step-number {
  display: block;
  margin-bottom: clamp(4rem, 8vw, 7rem);
  color: var(--clay);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.steps h3 {
  margin-bottom: 1.2rem;
  font-size: clamp(1.7rem, 2.5vw, 2.3rem);
}

.steps p {
  margin-bottom: 0;
  color: rgb(255 250 240 / 68%);
  font-size: 0.9rem;
}

.owner-view {
  padding: var(--section-space) 0;
  background: var(--cream);
}

.owner-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(20rem, 0.55fr);
  gap: clamp(3rem, 9vw, 9rem);
}

.owner-statement {
  padding-right: clamp(0rem, 5vw, 4rem);
  border-right: 1px solid var(--sand);
}

.owner-statement h2 {
  max-width: 11ch;
  color: var(--forest);
}

.owner-points article {
  padding: 0 0 2rem;
  border-bottom: 1px solid var(--sand);
  margin-bottom: 2rem;
}

.owner-points article:last-child {
  margin-bottom: 0;
}

.owner-points h3 {
  margin-bottom: 0.75rem;
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.owner-points p {
  margin-bottom: 0;
  color: rgb(24 35 29 / 72%);
}

.about {
  padding: var(--section-space) 0;
  border-top: 1px solid var(--sand);
}

.about-copy {
  max-width: 49rem;
}

.about-copy h2 {
  max-width: 13ch;
}

.about-copy > p:not(.eyebrow, .company-detail) {
  max-width: 42rem;
  color: rgb(24 35 29 / 72%);
  font-size: 1.06rem;
}

.company-detail {
  margin: 2.5rem 0 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--sand);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
}

.faq {
  padding: 0 0 var(--section-space);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(16rem, 0.54fr) minmax(0, 1fr);
  gap: clamp(3rem, 9vw, 9rem);
  padding-top: var(--section-space);
  border-top: 1px solid var(--ink);
}

.faq-grid h2 {
  max-width: 8ch;
}

.faq-list {
  border-top: 1px solid var(--sand);
}

.faq-list details {
  border-bottom: 1px solid var(--sand);
}

.faq-list summary {
  display: flex;
  min-height: 5.25rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.2;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  flex: 0 0 auto;
  color: var(--clay);
  font-family: var(--sans);
  font-size: 1.35rem;
  transition: transform 180ms ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 38rem;
  margin: -0.4rem 3rem 1.75rem 0;
  color: rgb(24 35 29 / 70%);
}

.contact {
  padding: var(--section-space) 0;
  background: var(--clay);
  color: var(--ink);
}

.contact :focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 4px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.52fr);
  align-items: end;
  gap: clamp(3rem, 9vw, 9rem);
}

.contact h2 {
  max-width: 12ch;
  margin-bottom: 0;
}

.contact-copy > p {
  margin-bottom: 2rem;
}

.email-link {
  display: block;
  width: fit-content;
  margin-top: 1.5rem;
  font-weight: 700;
  text-underline-offset: 0.35em;
}

.site-footer {
  padding: clamp(4rem, 8vw, 7rem) 0 1.5rem;
  background: var(--forest);
  color: var(--cream);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 0.68fr 0.68fr;
  gap: 2.5rem;
  padding-bottom: clamp(4rem, 8vw, 7rem);
}

.footer-wordmark {
  align-self: start;
  font-size: clamp(2.5rem, 6vw, 5.5rem);
}

.footer-details,
.footer-contact {
  font-size: 0.82rem;
}

.footer-details p,
.footer-contact p {
  margin-bottom: 0.3rem;
  color: rgb(255 250 240 / 66%);
}

.footer-contact a {
  display: inline-block;
  min-height: 2.75rem;
  padding-top: 0.5rem;
  color: var(--cream);
  font-weight: 700;
  text-underline-offset: 0.35em;
}

.footer-bottom {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgb(255 250 240 / 18%);
  color: rgb(255 250 240 / 68%);
  font-size: 0.7rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom p:last-child {
  max-width: 37rem;
  text-align: right;
}

@media (max-width: 60rem) {
  .hero {
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.7fr);
    gap: 1.5rem 2rem;
  }

  .hero-copy {
    padding-top: 4rem;
  }

  .hero-image-wrap {
    margin-right: calc(-1 * var(--gutter));
  }

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

  .steps li:nth-child(2) {
    border-right: 0;
  }

  .steps li:nth-child(-n + 2) {
    border-bottom: 1px solid rgb(255 250 240 / 22%);
  }

  .owner-grid,
  .contact-grid {
    grid-template-columns: 1fr 0.72fr;
    gap: 3.5rem;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .footer-wordmark {
    grid-column: 1 / -1;
  }
}

@media (max-width: 42.5rem) {
  :root {
    --section-space: 4.75rem;
  }

  h2 {
    font-size: clamp(2.65rem, 13vw, 4.25rem);
  }

  .header-inner {
    min-height: 5.25rem;
  }

  .js .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-nav {
    position: absolute;
    top: 5.25rem;
    right: var(--gutter);
    left: var(--gutter);
    display: grid;
    padding: 1rem;
    border: 1px solid rgb(255 250 240 / 18%);
    background: var(--forest);
    gap: 0;
  }

  .js .site-nav:not([data-open]) {
    display: none;
  }

  .site-nav a {
    min-height: 3.25rem;
    padding-inline: 0.5rem;
    border-bottom: 1px solid rgb(255 250 240 / 14%);
  }

  .site-nav .nav-contact {
    border: 0;
  }

  .hero {
    padding-top: 7.5rem;
  }

  .hero-grid {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .hero-copy {
    padding: 2rem 0 0;
  }

  .hero h1 {
    font-size: clamp(3.65rem, 19vw, 5.8rem);
  }

  .hero-image-wrap {
    order: 2;
    margin: 1rem calc(-1 * var(--gutter)) 0 2.25rem;
  }

  .hero-image {
    height: 27rem;
  }

  .hero-note {
    order: 3;
    margin-top: 1rem;
  }

  .intro-grid,
  .about-grid,
  .approach-heading,
  .faq-grid,
  .owner-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .section-heading {
    display: block;
  }

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

  .service-card,
  .service-card:nth-child(2),
  .service-card:nth-child(3) {
    min-height: auto;
    margin-top: 0;
  }

  .service-number {
    margin-bottom: 3rem;
  }

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

  .steps li,
  .steps li:nth-child(2) {
    min-height: 0;
    padding-block: 2rem;
    border-right: 0;
    border-bottom: 1px solid rgb(255 250 240 / 22%);
  }

  .steps li:last-child {
    border-bottom: 0;
  }

  .step-number {
    margin-bottom: 2.5rem;
  }

  .owner-statement {
    padding-right: 0;
    border-right: 0;
  }

  .faq-grid {
    padding-top: 4.75rem;
  }

  .faq-list summary {
    min-height: 5.75rem;
    font-size: 1.35rem;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-wordmark {
    grid-column: auto;
  }

  .footer-bottom {
    display: block;
  }

  .footer-bottom p:last-child {
    margin-top: 0.75rem;
    text-align: left;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
