* { box-sizing: border-box; }
:root {
  --green: #235c3a;
  --green-2: #3f7d4b;
  --pale: #eef7ed;
  --cream: #fbf8ef;
  --ink: #1f2b24;
  --muted: #5b6c60;
  --white: #ffffff;
}
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Georgia, 'Times New Roman', serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.7;
}
.site-header {
  position: sticky;
  top: 0;
  background: rgba(251, 248, 239, 0.95);
  border-bottom: 1px solid #dce8d8;
  z-index: 10;
  backdrop-filter: blur(10px);
}
.nav {
  max-width: 1120px;
  margin: auto;
  padding: 14px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--green);
  text-decoration: none;
  font-weight: bold;
  font-size: 1.15rem;
}
.brand img { width: 42px; height: 42px; object-fit: contain; }
.nav-links { display: flex; gap: 18px; flex-wrap: wrap; }
.nav-links a { color: var(--green); text-decoration: none; font-size: .95rem; }
.hero {
  max-width: 1120px;
  margin: auto;
  min-height: 78vh;
  padding: 84px 22px;
  display: grid;
  grid-template-columns: 1.4fr .8fr;
  gap: 44px;
  align-items: center;
}
.eyebrow {
  color: var(--green-2);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .8rem;
  font-weight: bold;
}
h1, h2, h3 { line-height: 1.15; color: var(--green); }
h1 { font-size: clamp(2.6rem, 7vw, 5.4rem); margin: 12px 0; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); margin: 8px 0 18px; }
.tagline { font-size: 1.45rem; color: var(--green-2); font-weight: bold; }
.motto { color: var(--muted); font-size: 1.05rem; }
.hero-text { max-width: 720px; font-size: 1.1rem; }
.button-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 26px; }
.button {
  background: var(--green);
  color: var(--white);
  padding: 13px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: bold;
}
.button.secondary { background: transparent; color: var(--green); border: 1px solid var(--green); }
.hero-card {
  background: var(--white);
  border: 1px solid #dce8d8;
  border-radius: 28px;
  padding: 28px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(35, 92, 58, .10);
}
.hero-card img { width: min(100%, 260px); margin-bottom: 18px; }
.section {
  max-width: 1120px;
  margin: 0 auto 28px;
  padding: 70px 22px;
}
.grid.two {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 42px;
}
.highlight {
  background: var(--pale);
  border-radius: 32px;
  padding: 64px;
}
.founder {
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 46px;
  align-items: center;
}
.founder-photo {
  min-height: 410px;
  border-radius: 30px;
  background: var(--pale);
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(35, 92, 58, .13);
  border: 1px solid #dce8d8;
}
.founder-photo img {
  width: 100%;
  height: 100%;
  min-height: 410px;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.cards article {
  background: var(--white);
  border: 1px solid #dce8d8;
  border-radius: 22px;
  padding: 22px;
}
.launch {
  text-align: center;
  background: var(--green);
  color: var(--white);
  border-radius: 32px;
}
.launch h2, .launch .eyebrow { color: var(--white); }
.countdown {
  margin: 28px auto 0;
  background: rgba(255,255,255,.13);
  padding: 22px;
  border-radius: 20px;
  font-size: 1.35rem;
  font-weight: bold;
}
footer {
  text-align: center;
  padding: 34px 22px;
  color: var(--muted);
}
@media (max-width: 850px) {
  .hero, .grid.two, .founder, .cards { grid-template-columns: 1fr; }
  .nav { align-items: flex-start; gap: 10px; flex-direction: column; }
  .highlight { padding: 40px 24px; }
}
