:root {
  color-scheme: light;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #172117;
  background: #f4f1e8;
  font-synthesis: none;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; min-width: 320px; }
a { color: inherit; }

.site-header,
main,
footer {
  width: min(1160px, calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-bottom: 1px solid rgba(23, 33, 23, .18);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 16px;
  font-weight: 720;
  text-decoration: none;
}

.wordmark span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 10px;
  background: #183c2b;
  color: #fffdf5;
  font-family: Georgia, serif;
  font-size: 20px;
}

nav { display: flex; gap: 28px; }
nav a { color: #465347; font-size: 14px; text-decoration: none; }
nav a:hover, nav a:focus-visible, .text-links a:hover, .text-links a:focus-visible { color: #95631a; }

.hero {
  min-height: 590px;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(310px, .75fr);
  align-items: center;
  gap: clamp(48px, 8vw, 110px);
  padding-block: 84px 98px;
}

.eyebrow {
  margin: 0 0 19px;
  color: #95631a;
  font-size: 12px;
  font-weight: 760;
  letter-spacing: .14em;
  text-transform: uppercase;
}

h1, h2 { font-family: Georgia, "Times New Roman", serif; font-weight: 500; letter-spacing: -.035em; }
h1 { max-width: 760px; margin: 0; font-size: clamp(52px, 7vw, 86px); line-height: .98; }
h2 { margin: 0; font-size: clamp(38px, 5vw, 58px); line-height: 1.02; }

.lede {
  max-width: 680px;
  margin: 31px 0 35px;
  color: #4e5d50;
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.62;
}

.button {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  padding: 14px 18px;
  border-radius: 999px;
  background: #183c2b;
  color: #fffdf5;
  font-size: 14px;
  font-weight: 680;
  text-decoration: none;
}
.button:hover, .button:focus-visible { background: #24523c; }

.identity-card {
  padding: 30px;
  border: 1px solid rgba(23, 33, 23, .18);
  border-radius: 22px;
  background: rgba(255, 253, 246, .6);
  box-shadow: 0 18px 50px rgba(46, 51, 38, .07);
}

.card-label { margin: 0 0 11px; color: #687369; font-size: 12px; text-transform: uppercase; letter-spacing: .1em; }
.identity-card > strong { font-family: Georgia, serif; font-size: 29px; font-weight: 500; }
dl { margin: 29px 0 0; }
dl div { padding-block: 18px; border-top: 1px solid rgba(23, 33, 23, .13); }
dt { margin-bottom: 7px; color: #69756b; font-size: 12px; }
dd { margin: 0; font-size: 15px; line-height: 1.5; }

.product,
.contact {
  display: grid;
  grid-template-columns: minmax(230px, .72fr) minmax(0, 1.28fr);
  gap: clamp(50px, 9vw, 140px);
  padding-block: 96px;
  border-top: 1px solid rgba(23, 33, 23, .18);
}

.product-copy > p, .contact p { margin: 0; color: #4e5d50; font-size: 18px; line-height: 1.72; }
.product-copy > p + p { margin-top: 22px; }
.text-links { display: flex; flex-wrap: wrap; gap: 15px 25px; margin-top: 32px; }
.text-links a { color: #183c2b; font-size: 14px; font-weight: 690; text-underline-offset: 4px; }

.contact { align-items: end; }
.contact .email { display: inline-block; margin-top: 18px; color: #183c2b; font-family: Georgia, serif; font-size: clamp(25px, 4vw, 40px); text-decoration-thickness: 1px; text-underline-offset: 7px; }

footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-block: 30px 45px;
  border-top: 1px solid rgba(23, 33, 23, .18);
  color: #6b766d;
  font-size: 12px;
}

@media (max-width: 760px) {
  .site-header, main, footer { width: min(100% - 32px, 1160px); }
  .site-header { min-height: 76px; }
  nav { display: none; }
  .hero { min-height: auto; grid-template-columns: 1fr; gap: 54px; padding-block: 64px 74px; }
  h1 { font-size: clamp(47px, 15vw, 68px); }
  .identity-card { padding: 24px; }
  .product, .contact { grid-template-columns: 1fr; gap: 38px; padding-block: 72px; }
  footer { flex-direction: column; }
}
