:root {
  --ink: #17211d;
  --muted: #5f6d65;
  --paper: #f8f6f1;
  --line: #ddd7ca;
  --green: #2f6b4f;
  --gold: #c28945;
  --clay: #b46b58;
  --white: #ffffff;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 64px);
  color: var(--white);
  background: rgba(16, 27, 22, .46);
  backdrop-filter: blur(14px);
}
.brand { font-weight: 800; font-size: 1.05rem; }
nav { display: flex; align-items: center; gap: clamp(12px, 2vw, 28px); font-size: .94rem; }
.nav-cta { border: 1px solid rgba(255,255,255,.55); padding: 9px 15px; border-radius: 999px; }
.hero {
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  padding: 120px clamp(20px, 5vw, 64px) 78px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(13, 27, 22, .82), rgba(13, 27, 22, .35) 52%, rgba(13, 27, 22, .12)),
    url("https://images.unsplash.com/photo-1470770903676-69b98201ea1c?auto=format&fit=crop&w=2200&q=80") center/cover;
}
.hero-copy { max-width: 760px; }
.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  text-transform: uppercase;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
}
h1, h2, h3, p { margin-top: 0; }
h1 { margin-bottom: 18px; font-size: clamp(3.2rem, 8vw, 7.4rem); line-height: .92; letter-spacing: 0; }
h2 { margin-bottom: 18px; font-size: clamp(2rem, 4vw, 4.1rem); line-height: 1.02; letter-spacing: 0; }
h3 { margin-bottom: 10px; font-size: 1.35rem; }
.lead { max-width: 690px; margin-bottom: 30px; font-size: clamp(1.08rem, 2vw, 1.42rem); color: rgba(255,255,255,.88); }
.hero-actions, .form-row { display: flex; flex-wrap: wrap; gap: 12px; }
.button, button {
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  padding: 13px 20px;
  font-weight: 800;
  cursor: pointer;
}
.primary, button { background: var(--gold); color: #18120a; }
.secondary { background: rgba(255,255,255,.14); color: var(--white); border: 1px solid rgba(255,255,255,.34); }
.section { padding: clamp(64px, 9vw, 112px) clamp(20px, 5vw, 64px); }
.split { display: grid; grid-template-columns: minmax(0, .95fr) minmax(280px, .75fr); gap: clamp(36px, 7vw, 92px); border-bottom: 1px solid var(--line); }
.text-stack { color: var(--muted); font-size: 1.08rem; }
.cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; background: #fffdf8; }
.cards article { overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: 8px; box-shadow: 0 18px 46px rgba(45, 39, 26, .08); }
.cards img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block; }
.cards div { padding: 24px; }
.cards span { color: var(--clay); font-weight: 900; font-size: .8rem; }
.cards p { color: var(--muted); }
.journal { display: grid; grid-template-columns: minmax(280px, .78fr) minmax(0, 1fr); gap: clamp(28px, 6vw, 76px); align-items: center; background: #edf1ea; }
.journal-image { min-height: 440px; border-radius: 8px; background: url("https://images.unsplash.com/photo-1484480974693-6ca0a78fb36b?auto=format&fit=crop&w=1200&q=80") center/cover; }
.quote { margin-top: 28px; padding-left: 22px; border-left: 4px solid var(--green); font-size: 1.4rem; font-weight: 800; }
.start-panel { display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, .78fr); gap: 36px; align-items: center; background: var(--green); color: var(--white); }
.start-panel .eyebrow { color: #f0c783; }
form label { display: block; margin-bottom: 10px; font-weight: 800; }
input { flex: 1 1 230px; min-height: 50px; border: 1px solid rgba(255,255,255,.34); border-radius: 999px; padding: 0 18px; font: inherit; }
footer { display: flex; justify-content: space-between; gap: 20px; padding: 28px clamp(20px, 5vw, 64px); color: var(--muted); border-top: 1px solid var(--line); }
@media (max-width: 820px) {
  .site-header { position: absolute; align-items: flex-start; }
  nav { gap: 10px; font-size: .84rem; flex-wrap: wrap; justify-content: flex-end; }
  .split, .cards, .journal, .start-panel { grid-template-columns: 1fr; }
  .journal-image { min-height: 300px; }
  footer { flex-direction: column; }
}
@media (max-width: 560px) {
  nav a:not(.nav-cta) { display: none; }
  .hero { min-height: 86vh; padding-bottom: 52px; }
  .button, button { width: 100%; text-align: center; }
}

