@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600&family=Gilda+Display&display=swap');

:root {
  --ink: #202522;
  --muted: #66706a;
  --line: #d9ded8;
  --paper: #f5f6f2;
  --accent: #a77b36;
  --serif: 'Gilda Display', Georgia, serif;
  --sans: 'DM Sans', Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--sans); font-size: 17px; line-height: 1.65; }
a { color: inherit; }
.site-header, main, .site-footer { max-width: 1240px; margin: 0 auto; padding-left: clamp(24px, 6vw, 86px); padding-right: clamp(24px, 6vw, 86px); }
.site-header { display: flex; justify-content: space-between; align-items: center; padding-top: 34px; padding-bottom: 34px; }
.brand img { display: block; width: min(208px, 52vw); height: auto; }
.header-link, .text-link { text-decoration: none; font-size: 14px; letter-spacing: .08em; text-transform: uppercase; }
.header-link { border-bottom: 1px solid var(--ink); padding-bottom: 3px; }
.hero { min-height: 66vh; display: flex; flex-direction: column; justify-content: center; padding-top: 7vh; padding-bottom: 11vh; max-width: 850px; }
.eyebrow, .section-label { color: var(--accent); font-size: 12px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; }
h1, h2 { font-family: var(--serif); font-weight: 400; line-height: 1.08; letter-spacing: -.02em; }
h1 { font-size: clamp(48px, 7vw, 92px); margin: 20px 0 28px; max-width: 850px; }
h2 { font-size: clamp(35px, 4vw, 56px); margin: 0 0 28px; max-width: 650px; }
.hero-copy { color: var(--muted); font-size: clamp(19px, 2vw, 24px); line-height: 1.55; max-width: 620px; margin: 0 0 38px; }
.text-link { display: inline-flex; gap: 12px; align-items: center; width: fit-content; border-bottom: 1px solid var(--accent); padding-bottom: 6px; }
.text-link span { color: var(--accent); font-size: 21px; }
.explanation, .contact { border-top: 1px solid var(--line); display: grid; grid-template-columns: minmax(150px, .34fr) 1fr; gap: 40px; padding-top: 34px; padding-bottom: 110px; }
.explanation p { color: var(--muted); max-width: 680px; margin: 0 0 18px; }
.contact { padding-bottom: 48px; }
.contact-grid { display: grid; grid-template-columns: 1fr 220px; gap: 40px; }
.contact-note { color: var(--muted); margin: 0; }
.contact-note a { color: var(--ink); text-decoration-color: var(--accent); text-underline-offset: 4px; }
address { font-style: normal; color: var(--muted); }
.legal-line { grid-column: 2; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 18px; border-top: 1px solid var(--line); padding-top: 20px; color: var(--muted); font-size: 13px; }
.legal-line strong { color: var(--ink); font-weight: 500; }
.site-footer { display: flex; justify-content: space-between; border-top: 1px solid var(--line); padding-top: 22px; padding-bottom: 28px; color: var(--muted); font-size: 13px; }

@media (max-width: 700px) {
  .site-header { padding-top: 24px; padding-bottom: 24px; }
  .hero { min-height: 72vh; padding-top: 4vh; }
  .explanation, .contact { display: block; padding-bottom: 72px; }
  .section-label { margin-bottom: 34px; }
  .contact-grid { display: block; }
  address { margin-top: 32px; }
  .legal-line { margin-top: 40px; }
  .site-footer { display: block; }
  .site-footer span { display: block; margin-bottom: 5px; }
}
