:root {
  --forest: #142119;
  --forest-deep: #0d1712;
  --forest-soft: #203226;
  --linen: #f3f0e8;
  --muted: rgba(243, 240, 232, .72);
  --gold: #b99856;
}

* { box-sizing: border-box; }

html, body { min-height: 100%; }

body {
  margin: 0;
  color: var(--linen);
  background:
    radial-gradient(circle at 82% 18%, rgba(185, 152, 86, .16), transparent 31rem),
    radial-gradient(circle at 18% 85%, rgba(243, 240, 232, .06), transparent 28rem),
    linear-gradient(135deg, var(--forest-deep) 0%, var(--forest) 48%, var(--forest-soft) 100%);
  font-family: "Trebuchet MS", Arial, sans-serif;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.014) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: radial-gradient(circle at center, black, transparent 82%);
}

.page-shell {
  min-height: 100vh;
  width: min(1160px, calc(100% - 44px));
  margin: 0 auto;
  padding: clamp(34px, 6vw, 76px) 0 clamp(36px, 7vw, 86px);
  display: grid;
  grid-template-rows: auto 1fr;
}

.brand {
  width: min(680px, 100%);
}

.logo {
  display: block;
  width: 100%;
  height: auto;
}

.hero {
  align-self: center;
  max-width: 880px;
  padding-top: clamp(58px, 11vh, 120px);
}

.eyebrow {
  margin: 0 0 30px;
  color: var(--gold);
  font-size: clamp(.74rem, 1.2vw, .9rem);
  line-height: 1.5;
  letter-spacing: .48em;
  text-transform: uppercase;
}

h1 {
  max-width: 980px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.25rem, 8.8vw, 8.9rem);
  line-height: .88;
  font-weight: 400;
  letter-spacing: -.055em;
}

.intro {
  max-width: 690px;
  margin: clamp(30px, 4vw, 46px) 0 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.6vw, 1.28rem);
  line-height: 1.75;
}

.contact {
  display: inline-flex;
  align-items: center;
  margin-top: clamp(34px, 5vw, 56px);
  color: var(--linen);
  text-decoration: none;
  font-size: .84rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  border-top: 1px solid rgba(185, 152, 86, .74);
  padding-top: 18px;
}

.contact:hover,
.contact:focus-visible {
  color: var(--gold);
}

@media (max-width: 680px) {
  .page-shell { width: min(100% - 30px, 1160px); }
  .brand { width: min(420px, 100%); }
  .hero { padding-top: 72px; }
  .eyebrow { letter-spacing: .32em; }
  h1 { font-size: clamp(3rem, 17vw, 5.35rem); }
  .intro { font-size: 1rem; }
  .contact { letter-spacing: .16em; }
}
