:root {
  color-scheme: light;
  font-family: Arial, sans-serif;
  color: #263a35;
  background: #f5f1e8;
  font-size: 18px;
  line-height: 1.65;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
}

a {
  color: inherit;
  text-underline-offset: 4px;
}


.site-header, .hero, .section, footer {
  padding: 32px max(6vw, calc((100vw - 1200px) / 2));
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid #c4cabf;
}

.brand {
  font-family: Georgia, serif;
  font-size: 30px;
  text-decoration: none;
  line-height: 1.25;
}

.brand span {
  display: block;
  font-family: Arial, sans-serif;
  font-size: 13px;
}

nav {
  display: flex;
  gap: 24px;
  font-size: 15px;
}

nav a {
  padding: 10px 0;
}

.hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 6vw;
  padding-top: 56px;
  padding-bottom: 56px;
  background: #e8ecdf;
}

h1, h2, h3 {
  font-family: Georgia, serif;
  font-weight: 400;
  line-height: 1.12;
}

h1 {
  font-size: clamp(38px, 4.2vw, 64px);
  margin: 18px 0;
  letter-spacing: -1.5px;
}

h2 {
  font-size: clamp(30px, 3vw, 44px);
  max-width: 800px;
}

h3 {
  font-size: 27px;
}

p {
  max-width: 760px;
}

.lead {
  font-size: 24px;
  line-height: 1.4;
}

.eyebrow {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  font-weight: 700;
}

.small {
  font-size: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 24px;
  background: #254d3f;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 700;
}

.button:hover {
  background: #17382c;
}

figure {
  margin: 0;
}

figure img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 455px;
  object-fit: cover;
  object-position: center 30%;
  border-radius: 100px 4px 4px;
}

figcaption {
  font-size: 13px;
  padding-top: 12px;
}

.section {
  padding-top: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid #c4cabf;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  margin-top: 38px;
}

.steps span {
  font-size: 14px;
}

.steps p {
  font-size: 16px;
}

details {
  max-width: 850px;
  padding: 20px 0;
  border-bottom: 1px solid #c4cabf;
}

summary {
  cursor: pointer;
  font-weight: 700;
}

.contact {
  background: #e8ecdf;
}

footer {
  font-size: 15px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -100px;
  background: white;
  padding: 12px;
  z-index: 2;
}

.skip-link:focus {
  top: 12px;
}

@media (width <= 700px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    padding: 20px 6vw;
  }

  nav {
    gap: 20px;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 30px;
    padding-bottom: 36px;
  }

  .hero figure {
    max-width: 360px;
  }

  .hero img {
    max-height: 320px;
  }

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

  .section {
    padding-top: 36px;
    padding-bottom: 36px;
  }

  .button {
    width: 100%;
  }

  h1 {
    letter-spacing: -1px;
  }
}

a:hover {
  text-decoration-thickness: 2px;
}

a:focus-visible, summary:focus-visible {
  outline: 3px solid #a04a21;
  outline-offset: 5px;
}

@media (width <= 400px) {
  .site-header {
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .hero {
    padding-top: 20px;
  }

  .hero h1 {
    margin-top: 12px;
    margin-bottom: 12px;
  }

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