﻿:root {
  --bg: #f6f1e8;
  --paper: #fffaf1;
  --ink: #1f1d1a;
  --muted: #676058;
  --line: #d9cdbb;
  --accent: #31563f;
  --accent-dark: #20392b;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.5;
}

a { color: inherit; }

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 18px clamp(18px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
}

.brand {
  font-weight: 800;
  text-decoration: none;
}

nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 14px;
}

nav a { text-decoration: none; }
nav a:hover, nav a[aria-current="page"] { color: var(--accent); }

.hero {
  min-height: 68vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 340px);
  align-items: center;
  gap: clamp(26px, 6vw, 72px);
  padding: clamp(54px, 10vw, 120px) clamp(18px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
}

.hero-copy {
  max-width: 920px;
}

.hero-logo {
  width: min(100%, 340px);
  height: auto;
  justify-self: center;
  border-radius: 50%;
  background: white;
  box-shadow: 0 18px 50px rgba(31, 29, 26, .12);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

h1, h2, h3, p { margin-top: 0; }

h1 {
  max-width: 880px;
  margin-bottom: 22px;
  font-size: clamp(44px, 8vw, 92px);
  line-height: .98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.08;
}

h3 {
  margin-bottom: 8px;
  font-size: 22px;
}

.lede {
  max-width: 700px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: clamp(18px, 2.5vw, 24px);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.actions.compact { align-content: start; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid var(--accent);
  border-radius: 999px;
  background: var(--accent);
  color: white;
  font-weight: 800;
  text-decoration: none;
}

.button:hover { background: var(--accent-dark); }

.button.secondary {
  background: transparent;
  color: var(--accent);
}

.button.secondary:hover {
  background: rgba(49, 86, 63, .08);
}

.section {
  padding: clamp(42px, 7vw, 78px) clamp(18px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 24px;
}

.panel, .card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.video-panel {
  max-width: 860px;
  min-height: 220px;
  display: grid;
  align-content: center;
  padding: 28px;
}

.video-panel p {
  color: var(--muted);
  font-size: 18px;
}

.video-panel a {
  color: var(--accent);
  font-weight: 800;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.card {
  min-height: 190px;
  padding: 22px;
}

.card p, .connect p, footer p { color: var(--muted); }

.connect {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
}

footer {
  padding: 24px clamp(18px, 5vw, 72px);
}

@media (max-width: 780px) {
  .site-header, .connect { align-items: flex-start; flex-direction: column; display: flex; }
  .card-grid { grid-template-columns: 1fr; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-logo { order: -1; width: min(72vw, 260px); justify-self: start; }
}
