:root {
  color-scheme: light;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #233f36;
  background: #f7f5ee;
  font-synthesis: none;
}

* { box-sizing: border-box; }
body { margin: 0; }
a { color: inherit; }
a:focus-visible { outline: 3px solid #a96832; outline-offset: 6px; }

.page {
  min-height: 100svh;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(24px, 6vw, 88px);
  display: flex;
  flex-direction: column;
}

header, footer { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
header { padding: 32px 0; border-bottom: 1px solid #d7ddd3; }
.wordmark { font-size: 25px; font-weight: 650; letter-spacing: -1px; text-decoration: none; }
.wordmark span { color: #a96832; }
.domain { font-size: 13px; color: #59695f; }

main { flex: 1; padding: clamp(64px, 12vh, 144px) 0; }
.eyebrow { margin: 0 0 28px; font-size: 12px; font-weight: 650; letter-spacing: 2px; text-transform: uppercase; }
h1 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(52px, 9vw, 120px); font-weight: 400; letter-spacing: -0.055em; line-height: 1.05; }
h1 span { color: #64796a; }
.intro { max-width: 430px; margin: 32px 0; color: #526158; font-size: 18px; line-height: 1.7; }
.button { display: inline-flex; align-items: center; gap: 26px; min-height: 52px; padding: 14px 22px; border: 1px solid #233f36; border-radius: 6px; font-size: 14px; font-weight: 600; text-decoration: none; }
.button:hover { background: #233f36; color: #f7f5ee; }
footer { padding: 24px 0; border-top: 1px solid #d7ddd3; color: #59695f; font-size: 12px; line-height: 1.7; }

@media (max-width: 600px) {
  header { padding: 24px 0; }
  .domain { display: none; }
  .eyebrow { max-width: 250px; line-height: 1.7; }
  footer { flex-direction: column; align-items: flex-start; gap: 6px; }
}
