:root {
  --bg: #f4f1e8;
  --paper: #fffaf0;
  --ink: #10251b;
  --muted: #5d6a5f;
  --green-950: #0c281a;
  --green-800: #163d2a;
  --green-600: #2c6b45;
  --green-400: #62a06d;
  --gold: #c8a45d;
  --line: rgba(16, 37, 27, 0.14);
  --shadow: 0 24px 70px rgba(12, 40, 26, 0.14);
  --radius-xl: 32px;
  --radius-lg: 22px;
  --radius-md: 16px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(98, 160, 109, 0.28), transparent 34rem),
    radial-gradient(circle at top right, rgba(200, 164, 93, 0.22), transparent 30rem),
    linear-gradient(135deg, #f8f5ea 0%, var(--bg) 50%, #e7efe5 100%);
  min-height: 100vh;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem clamp(1rem, 4vw, 4rem);
  background: rgba(244, 241, 232, 0.82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  overflow: hidden;
  background: var(--paper);
  box-shadow: 0 8px 20px rgba(16, 37, 27, 0.12);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-text {
  display: grid;
  line-height: 1.05;
}

.brand-text strong {
  letter-spacing: -0.03em;
  font-size: 1.05rem;
}

.brand-text small {
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: 0.76rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.35rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.72);
}

.nav a {
  padding: 0.62rem 0.9rem;
  border-radius: 999px;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: 180ms ease;
}

.nav a:hover {
  color: var(--ink);
  background: rgba(98, 160, 109, 0.14);
}

.section {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(280px, 0.72fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
  min-height: calc(100vh - 88px);
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--green-600);
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

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

h1 {
  margin-bottom: 1.25rem;
  max-width: 920px;
  font-size: clamp(3.2rem, 8vw, 7.4rem);
  line-height: 0.89;
  letter-spacing: -0.075em;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  line-height: 0.94;
  letter-spacing: -0.06em;
}

h3 {
  margin-bottom: 0.85rem;
  font-size: 1.35rem;
  letter-spacing: -0.035em;
}

.lede {
  max-width: 720px;
  color: #324238;
  font-size: clamp(1.16rem, 2vw, 1.45rem);
  line-height: 1.55;
}

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

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 0.86rem 1.12rem;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  transition: 180ms ease;
}

.button.primary {
  color: #fffaf0;
  background: var(--green-950);
  box-shadow: 0 12px 28px rgba(12, 40, 26, 0.22);
}

.button.primary:hover {
  transform: translateY(-2px);
  background: var(--green-800);
}

.button.secondary {
  color: var(--green-950);
  border-color: var(--line);
  background: rgba(255, 250, 240, 0.75);
}

.button.secondary:hover {
  transform: translateY(-2px);
  border-color: rgba(44, 107, 69, 0.32);
  background: rgba(255, 250, 240, 0.95);
}

.hero-card,
.content-card,
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 250, 240, 0.76);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: clamp(1rem, 3vw, 1.6rem);
}

.logo-panel {
  display: grid;
  place-items: center;
  aspect-ratio: 1 / 1;
  margin-bottom: 1.25rem;
  border-radius: 26px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.7), rgba(98,160,109,0.12)),
    var(--paper);
  border: 1px solid rgba(16, 37, 27, 0.08);
  overflow: hidden;
}

.logo-panel img {
  width: min(86%, 420px);
  height: min(86%, 420px);
  object-fit: contain;
}

.hero-card p,
.content-card p,
.contact p,
.manifesto p {
  color: #34473c;
  line-height: 1.72;
  font-size: 1.02rem;
}

.split {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: start;
}

.content-card {
  padding: clamp(1.25rem, 3vw, 2rem);
}

.featured {
  background:
    linear-gradient(145deg, rgba(22, 61, 42, 0.96), rgba(44, 107, 69, 0.9)),
    var(--green-800);
  color: #fffaf0;
}

.featured p {
  color: rgba(255, 250, 240, 0.82);
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
  padding: 0;
  margin: 1.4rem 0 0;
  list-style: none;
}

.feature-list li {
  padding: 0.85rem;
  border: 1px solid rgba(255, 250, 240, 0.18);
  border-radius: 14px;
  background: rgba(255, 250, 240, 0.08);
  font-weight: 700;
}

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

.pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.pill-grid span {
  padding: 0.8rem 1rem;
  border: 1px solid rgba(44, 107, 69, 0.18);
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.78);
  color: #273b30;
  font-weight: 750;
}

.manifesto {
  padding-top: 1rem;
}

.manifesto p {
  padding: clamp(1.5rem, 4vw, 3rem);
  border-left: 6px solid var(--gold);
  border-radius: var(--radius-xl);
  background: rgba(16, 37, 27, 0.94);
  color: #fffaf0;
  font-size: clamp(1.35rem, 3vw, 2.2rem);
  line-height: 1.32;
  letter-spacing: -0.04em;
}

.contact {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
}

.contact-card {
  padding: 1rem;
  margin-top: 0;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem clamp(1rem, 4vw, 4rem);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

@media (max-width: 820px) {
  .site-header {
    position: relative;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    width: 100%;
    justify-content: space-between;
    overflow-x: auto;
  }

  .hero,
  .split,
  .grid.two,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 3rem;
  }

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

  .site-footer {
    flex-direction: column;
  }
}

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

  .button,
  .nav a {
    transition: none;
  }
}
