:root {
  --bg: #f3ecdf;
  --bg-deep: #dbe4d1;
  --card: rgba(251, 247, 239, 0.94);
  --text: #1f2a21;
  --muted: #596456;
  --forest: #314a36;
  --accent-deep: #855638;
  --logo-amber: #d8b27a;
  --line: rgba(36, 50, 39, 0.1);
  --shadow: 0 24px 60px rgba(52, 54, 35, 0.14);
  --radius-lg: 30px;
  --radius-md: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(216, 195, 155, 0.45), transparent 22%),
    radial-gradient(circle at top right, rgba(186, 205, 180, 0.5), transparent 26%),
    linear-gradient(180deg, #f8f3e8 0%, var(--bg) 42%, var(--bg-deep) 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

.hero,
.section,
.footer {
  width: min(1140px, calc(100% - 2rem));
  margin: 0 auto;
}

.hero {
  padding: 1.2rem 0 1rem;
}

.shell {
  width: 100%;
}

.nav {
  position: sticky;
  top: 1rem;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1.1rem;
  background: rgba(248, 243, 233, 0.8);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(38, 59, 48, 0.11);
  border-radius: 999px;
  box-shadow: 0 16px 36px rgba(58, 59, 39, 0.08);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
  font-family: "Spectral", serif;
}

.brand-mark {
  width: 66px;
  flex: 0 0 66px;
}

.brand-mark svg {
  width: 100%;
  height: auto;
}

.logo-bg,
.state-shape {
  fill: #111111;
}

.logo-print {
  fill: var(--logo-amber);
}

.brand-text strong {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.nav-toggle {
  display: none;
  border: 1px solid rgba(38, 59, 48, 0.12);
  background: rgba(250, 245, 236, 0.88);
  border-radius: 999px;
  padding: 0.65rem 1rem;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  color: var(--muted);
  font-weight: 700;
}

.site-notice,
.hero-copy,
.story-card {
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.site-notice {
  margin-top: 0.85rem;
  padding: 0.95rem 1.15rem;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(133, 86, 56, 0.14), rgba(216, 195, 155, 0.24));
}

.site-notice p {
  margin: 0;
  font-weight: 700;
  line-height: 1.6;
  color: #5f422d;
}

.hero-copy {
  margin-top: 1rem;
  padding: 1.8rem;
  border-radius: var(--radius-lg);
}

.eyebrow {
  margin: 0 0 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.74rem;
  font-weight: 800;
  color: var(--accent-deep);
}

h1,
h2 {
  margin: 0;
  font-family: "Spectral", serif;
  line-height: 1.04;
}

h1 {
  max-width: 12ch;
  font-size: clamp(2.8rem, 6vw, 4.8rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.hero-text,
.section-lead,
.story-card p,
.footer {
  color: var(--muted);
  line-height: 1.75;
}

.hero-text {
  max-width: 44rem;
  margin: 0.9rem 0 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.button,
.nav-toggle {
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.button:hover,
.nav-toggle:hover {
  transform: translateY(-1px);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.85rem 1.3rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
}

.button-primary {
  background: var(--forest);
  color: #fffaf2;
}

.button-secondary {
  border-color: rgba(49, 74, 54, 0.18);
  background: rgba(255, 251, 245, 0.88);
  color: var(--forest);
}

.section {
  padding: 1.2rem 0 2.8rem;
}

.section-intro {
  margin-bottom: 1.2rem;
}

.section-lead {
  max-width: 42rem;
  margin: 0.8rem 0 0;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.story-card {
  padding: 1.5rem;
  border-radius: var(--radius-md);
}

.story-card p {
  margin: 0;
}

.footer {
  padding: 0 0 2.5rem;
  text-align: center;
}

.footer a {
  color: var(--forest);
  font-weight: 700;
}

body.nav-open {
  overflow: hidden;
}

@media (max-width: 900px) {
  .story-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    max-width: none;
  }
}

@media (max-width: 760px) {
  .nav {
    flex-wrap: wrap;
    border-radius: 24px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding-top: 0.5rem;
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 0.7rem 0;
  }

  .button {
    width: 100%;
  }
}
