:root {
  color-scheme: light;
  font-family: Arial, Helvetica, sans-serif;
  color: #191c18;
  background: #f5f5f0;
}

* { box-sizing: border-box; }
body { min-width: 320px; min-height: 100vh; margin: 0; }
a { color: inherit; }

.page {
  width: min(100%, 1480px);
  min-height: 100vh;
  margin: auto;
  padding: 0 clamp(24px, 5vw, 80px);
  display: flex;
  flex-direction: column;
}

.header, .footer { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.header { min-height: 92px; border-bottom: 1px solid #d5d8d0; }
.wordmark { font-size: 26px; font-weight: 800; letter-spacing: -.075em; text-decoration: none; }
.wordmark span:not(.period), h1 span:not(.period) { color: #4b7452; }
.period { color: #4b7452; }
.header-label { color: #555d53; font-size: 12px; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }

.main { display: flex; align-items: center; flex: 1; padding: 100px 0 110px; }
.content { max-width: 790px; }
.eyebrow { display: flex; align-items: center; gap: 10px; margin: 0 0 28px; color: #3c5440; font-size: 13px; font-weight: 800; letter-spacing: .14em; }
.dot { display: inline-block; width: 9px; height: 9px; border-radius: 50%; background: #4b7452; }
h1 { margin: 0; font-size: clamp(86px, 13vw, 180px); font-weight: 800; line-height: .9; letter-spacing: -.105em; }
.tagline { margin: 34px 0 0; font-size: clamp(28px, 3.2vw, 43px); font-weight: 700; line-height: 1.16; letter-spacing: -.052em; }
.description { max-width: 650px; margin: 24px 0 32px; color: #4b5049; font-size: clamp(17px, 1.6vw, 20px); line-height: 1.55; }
.description strong { color: #191c18; font-weight: 700; }
.button { display: inline-flex; min-height: 54px; align-items: center; justify-content: space-between; gap: 50px; padding: 0 20px; border-radius: 7px; background: #191c18; color: #fff; font-size: 15px; font-weight: 700; text-decoration: none; transition: background .15s ease, transform .15s ease; }
.button:hover { background: #4b7452; transform: translateY(-2px); }
.button:focus-visible { outline: 3px solid #4b7452; outline-offset: 3px; }
.contact-note { margin: 12px 0 0; color: #737970; font-size: 12px; }

.footer { min-height: 78px; border-top: 1px solid #d5d8d0; color: #686d65; font-size: 12px; line-height: 1.4; }

@media (max-width: 600px) {
  .header { min-height: 74px; }
  .header-label { max-width: 120px; text-align: right; font-size: 10px; }
  .main { padding: 90px 0 100px; }
  h1 { font-size: clamp(80px, 21vw, 124px); }
  .tagline { margin-top: 28px; }
  .footer { align-items: flex-start; flex-direction: column; justify-content: center; gap: 8px; padding: 20px 0; }
}

@media (prefers-reduced-motion: reduce) {
  .button { transition: none; }
}
