:root {
  --bg: #f4efe7;
  --bg-strong: #efe7dd;
  --surface: rgba(255, 251, 246, 0.7);
  --surface-strong: rgba(255, 251, 246, 0.92);
  --text: #1d1a16;
  --muted: #5b5248;
  --border: rgba(29, 26, 22, 0.12);
  --accent: #4f6656;
  --accent-soft: #dbe5dc;
  --shadow: 0 18px 48px rgba(50, 39, 28, 0.08);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 999px;
  --content-width: 72rem;
  --copy-width: 42rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Avenir Next", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(230, 220, 203, 0.8), transparent 38%),
    radial-gradient(circle at top right, rgba(217, 229, 220, 0.45), transparent 32%),
    linear-gradient(180deg, #f7f2ea 0%, var(--bg) 100%);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid rgba(79, 102, 86, 0.7);
  outline-offset: 3px;
}

p,
li {
  color: var(--muted);
  font-size: 1rem;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--text);
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

h1 {
  font-size: clamp(3rem, 11vw, 5.75rem);
}

h2 {
  font-size: clamp(2rem, 7vw, 3.4rem);
}

h3 {
  font-size: clamp(1.4rem, 4vw, 1.9rem);
}

.site-shell {
  width: min(calc(100% - 2rem), var(--content-width));
  margin: 0 auto;
  padding: 1rem 0 2rem;
}

.site-header,
.site-footer,
.section,
.hero {
  backdrop-filter: blur(14px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.25rem;
  padding: 0.9rem 1rem;
  background: rgba(247, 242, 234, 0.8);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.brand {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav {
  display: none;
  position: absolute;
  top: calc(100% + 0.75rem);
  right: 0;
  left: 0;
  z-index: 20;
  padding: 0.75rem;
  background: var(--surface-strong);
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  box-shadow: var(--shadow);
}

.site-nav[data-open="true"] {
  display: grid;
  gap: 0.35rem;
}

.site-nav a {
  padding: 0.7rem 0.8rem;
  border-radius: 0.9rem;
  text-decoration: none;
  color: var(--muted);
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: rgba(79, 102, 86, 0.1);
  color: var(--text);
}

.nav-toggle {
  border: 0;
  padding: 0.65rem 0.95rem;
  font: inherit;
  color: var(--text);
  background: rgba(79, 102, 86, 0.12);
  border-radius: var(--radius-sm);
}

main {
  padding: 1.5rem 0 0;
}

.hero,
.section {
  margin-bottom: 1rem;
  padding: 1.4rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.hero {
  padding-top: 2.2rem;
  padding-bottom: 2rem;
}

.eyebrow {
  margin: 0 0 0.9rem;
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero-copy,
.lede,
.supporting-text,
.page-intro {
  max-width: var(--copy-width);
  font-size: 1.05rem;
}

.hero-copy {
  margin: 1.2rem 0 0;
  font-size: 1.15rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.button,
.text-link {
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.8rem 1.15rem;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-size: 0.96rem;
}

.button:hover,
.text-link:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: #f8f6f1;
  background: var(--text);
}

.button-secondary {
  color: var(--text);
  background: rgba(79, 102, 86, 0.1);
  border-color: rgba(79, 102, 86, 0.16);
}

.button-tertiary {
  color: var(--text);
  background: transparent;
  border-color: var(--border);
}

.section-heading {
  margin-bottom: 1.15rem;
}

.cards,
.feature-grid,
.contact-grid {
  display: grid;
  gap: 1rem;
}

.card,
.detail-panel {
  padding: 1.15rem;
  background: rgba(255, 251, 246, 0.9);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.card p,
.detail-panel p,
.detail-panel li {
  margin-bottom: 0;
}

.text-link {
  display: inline-block;
  margin-top: 0.9rem;
  color: var(--text);
  font-weight: 500;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}

.bullet-list,
.detail-list {
  margin: 0;
  padding-left: 1.2rem;
}

.bullet-list li + li,
.detail-list li + li {
  margin-top: 0.55rem;
}

.contact-strip {
  display: grid;
  gap: 1rem;
  align-items: center;
}

.page-hero {
  padding-top: 1.8rem;
}

.site-footer {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1.2rem 0.4rem 0;
}

.site-footer p {
  margin: 0;
  font-size: 0.92rem;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  animation: rise 540ms ease forwards;
}

.reveal:nth-of-type(2) {
  animation-delay: 60ms;
}

.reveal:nth-of-type(3) {
  animation-delay: 120ms;
}

.reveal:nth-of-type(4) {
  animation-delay: 180ms;
}

.reveal:nth-of-type(5) {
  animation-delay: 240ms;
}

.reveal:nth-of-type(6) {
  animation-delay: 300ms;
}

.reveal:nth-of-type(7) {
  animation-delay: 360ms;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 760px) {
  .site-shell {
    width: min(calc(100% - 3rem), var(--content-width));
    padding-top: 1.25rem;
  }

  .site-header {
    position: sticky;
    padding-inline: 1.25rem;
  }

  .nav-toggle {
    display: none;
  }

  .site-nav {
    display: flex;
    position: static;
    gap: 0.35rem;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .hero,
  .section {
    padding: 2rem;
    margin-bottom: 1.25rem;
  }

  .split {
    display: grid;
    grid-template-columns: 1.05fr 1.2fr;
    gap: 1.5rem;
    align-items: start;
  }

  .split .supporting-text {
    grid-column: 1 / -1;
    margin-top: 0;
  }

  .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-grid,
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-strip {
    grid-template-columns: 1.5fr auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button,
  .text-link,
  .reveal {
    transition: none;
    animation: none;
    opacity: 1;
    transform: none;
  }
}
