:root {
  color-scheme: light;
  --bg: #f5f1e9;
  --card: #fffaf0;
  --ink: #173f36;
  --muted: #5d6b65;
  --green: #0f3d36;
  --gold: #c4913c;
  --line: rgba(15, 61, 54, 0.16);
  --shadow: 0 24px 70px rgba(15, 61, 54, 0.14);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(196, 145, 60, 0.18), transparent 34rem),
    linear-gradient(180deg, #fbf7ef 0%, var(--bg) 100%);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a {
  color: var(--green);
  font-weight: 700;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.site-header,
.site-footer {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1120px;
  padding: 1.25rem;
}

.brand {
  color: var(--green);
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: -0.04em;
}

nav {
  display: flex;
  gap: 1rem;
}

.hero,
.page {
  margin: 0 auto;
  max-width: 1120px;
  padding: 4rem 1.25rem 2rem;
}

.hero {
  min-height: 54vh;
}

.eyebrow {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  margin: 0 0 0.75rem;
  text-transform: uppercase;
}

h1,
h2 {
  letter-spacing: -0.04em;
  line-height: 1.05;
}

h1 {
  font-size: clamp(2.55rem, 7vw, 5.8rem);
  margin: 0;
  max-width: 920px;
}

h2 {
  font-size: 1.35rem;
  margin: 0 0 0.75rem;
}

.lede {
  color: var(--muted);
  font-size: 1.25rem;
  max-width: 720px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.button {
  background: var(--green);
  border: 1px solid var(--green);
  border-radius: 999px;
  color: white;
  display: inline-flex;
  padding: 0.85rem 1.2rem;
}

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

.grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1120px;
  padding: 1.25rem 1.25rem 4rem;
}

.card,
.page section,
.contact-card {
  background: rgba(255, 250, 240, 0.82);
  border: 1px solid var(--line);
  border-radius: 1.5rem;
  box-shadow: var(--shadow);
  padding: 1.35rem;
}

.page {
  max-width: 880px;
}

.page section {
  box-shadow: none;
  margin-top: 1rem;
}

.updated {
  color: var(--muted);
  margin-bottom: 2rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.95rem;
  margin-top: 2rem;
}

.site-footer p {
  margin: 0.25rem 0;
}

ul {
  margin-bottom: 0;
  padding-left: 1.2rem;
}

@media (max-width: 760px) {
  .site-header,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.75rem;
  }

  .hero,
  .page {
    padding-top: 2rem;
  }

  .grid {
    grid-template-columns: 1fr;
  }
}
