:root {
  --green: #285f37;
  --green-dark: #173d25;
  --green-soft: #e8f3e8;
  --cream: #fff8e8;
  --sand: #f2dfb7;
  --yellow: #f5c94c;
  --text: #213226;
  --muted: #637064;
  --white: #ffffff;
  --shadow: 0 20px 50px rgba(23, 61, 37, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(245, 201, 76, 0.2), transparent 32rem),
    linear-gradient(180deg, #fffaf0 0%, #f6edda 100%);
}

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

a:hover {
  text-decoration: underline;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 5vw;
  background: rgba(255, 248, 232, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(40, 95, 55, 0.12);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--green);
}

.brand:hover {
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  background: var(--green-soft);
  font-size: 1.6rem;
}

.brand strong {
  display: block;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
}

.brand small {
  display: block;
  margin-top: 0.15rem;
  color: var(--green-dark);
  font-style: italic;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.nav a {
  color: var(--green-dark);
  font-size: 0.95rem;
}

.nav a.active,
.nav a:hover {
  color: var(--green);
}

.nav .facebook {
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: var(--green);
  color: white;
}

.menu-toggle {
  display: none;
  border: 0;
  background: var(--green);
  color: white;
  border-radius: 0.6rem;
  padding: 0.55rem 0.75rem;
  font-size: 1.2rem;
  cursor: pointer;
}

.hero {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  align-items: center;
  min-height: calc(100vh - 84px);
  padding: 4rem 5vw;
}

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

h1 {
  margin: 0;
  color: var(--green);
  font-size: clamp(3.2rem, 9vw, 7.5rem);
  line-height: 0.9;
  letter-spacing: -0.06em;
}

.lead {
  max-width: 38rem;
  margin: 1.3rem 0 2rem;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  line-height: 1.5;
  color: var(--muted);
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(5rem, 1fr));
  gap: 0.8rem;
  max-width: 42rem;
}

.countdown div {
  padding: 1rem 0.7rem;
  border-radius: 1.2rem;
  background: var(--white);
  border: 1px solid rgba(40, 95, 55, 0.12);
  box-shadow: var(--shadow);
  text-align: center;
}

.countdown strong {
  display: block;
  color: var(--green);
  font-size: clamp(1.8rem, 4vw, 3.2rem);
}

.countdown span {
  display: block;
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.launch {
  display: inline-block;
  margin: 1.5rem 0 0;
  padding: 0.8rem 1.1rem;
  border-radius: 999px;
  background: var(--green);
  color: white;
  font-weight: 800;
}

.hero-image img {
  width: 100%;
  display: block;
  border-radius: 2rem;
  box-shadow: var(--shadow);
  border: 10px solid white;
}

.community-section {
  margin: 0 5vw 4rem;
  padding: clamp(1.5rem, 4vw, 3rem);
  border-radius: 2rem;
  background: var(--green);
  color: white;
  box-shadow: var(--shadow);
}

.community-section h2 {
  max-width: 52rem;
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 0.98;
}

.community-section p {
  max-width: 50rem;
  font-size: 1.25rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.86);
}

.values {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.8rem;
  margin-top: 2rem;
}

.values span {
  display: grid;
  place-items: center;
  min-height: 5.5rem;
  padding: 1rem;
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.12);
  text-align: center;
  font-weight: 800;
}

.cta-strip {
  margin: 0 5vw 4rem;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border-radius: 2rem;
  background: var(--sand);
  text-align: center;
  box-shadow: var(--shadow);
}

.cta-strip strong {
  display: block;
  margin: 1rem 0 0.4rem;
  color: var(--green);
  font-size: clamp(1.6rem, 4vw, 3rem);
}

.footer {
  padding: 2rem 5vw;
  background: var(--green-dark);
  color: white;
  text-align: center;
}

.footer a {
  color: white;
}

.page {
  padding: 3rem 5vw 5rem;
}

.page-hero {
  max-width: 62rem;
  margin: 0 auto 2rem;
  padding: clamp(2rem, 5vw, 4rem);
  border-radius: 2rem;
  background: var(--green);
  color: white;
  box-shadow: var(--shadow);
}

.page-hero h1 {
  color: white;
  font-size: clamp(3rem, 7vw, 6rem);
}

.page-hero .eyebrow,
.page-hero p {
  color: rgba(255, 255, 255, 0.9);
}

.page-hero p:last-child {
  max-width: 52rem;
  font-size: 1.25rem;
  line-height: 1.6;
}

.content-card {
  max-width: 62rem;
  margin: 0 auto;
  padding: clamp(1.5rem, 4vw, 3rem);
  border-radius: 2rem;
  background: white;
  box-shadow: var(--shadow);
}

.content-card h2 {
  margin-top: 2rem;
  color: var(--green);
  font-size: 1.6rem;
}

.content-card p,
.content-card li {
  font-size: 1.08rem;
  line-height: 1.75;
}

.content-card li + li {
  margin-top: 0.4rem;
}

blockquote {
  margin: 2rem 0 0;
  padding: 1.2rem 1.5rem;
  border-left: 6px solid var(--yellow);
  border-radius: 1rem;
  background: var(--green-soft);
  color: var(--green-dark);
  font-size: 1.35rem;
  font-weight: 800;
}

.blog-placeholder {
  margin: 2rem 0;
  padding: 1.5rem;
  border-radius: 1.4rem;
  background: var(--green-soft);
  border: 1px dashed rgba(40, 95, 55, 0.4);
}

.contact-card h2 {
  margin-bottom: 0.2rem;
}

.contact-line {
  padding: 1rem;
  border-radius: 1rem;
  background: var(--green-soft);
}

.gdpr-popup {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 999;
  display: none;
}

.gdpr-popup.show {
  display: block;
}

.gdpr-popup-content {
  max-width: 980px;
  margin: 0 auto;
  padding: 1rem;
  border-radius: 1rem;
  background: #ffffff;
  color: var(--text);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(40, 95, 55, 0.18);
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 1rem;
  align-items: center;
}

.gdpr-popup p {
  margin: 0;
  line-height: 1.5;
  font-size: 0.95rem;
}

.gdpr-check {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  white-space: nowrap;
  font-weight: 700;
  color: var(--green-dark);
}

.gdpr-check input {
  width: 1.1rem;
  height: 1.1rem;
}

#gdprAccept {
  border: 0;
  border-radius: 999px;
  padding: 0.75rem 1rem;
  background: var(--green);
  color: white;
  font-weight: 800;
  cursor: pointer;
}

#gdprAccept:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

@media (max-width: 900px) {
  .menu-toggle {
    display: inline-block;
  }

  .nav {
    position: absolute;
    top: 100%;
    right: 5vw;
    left: 5vw;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border-radius: 1rem;
    background: white;
    box-shadow: var(--shadow);
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    padding: 0.85rem;
    border-radius: 0.75rem;
  }

  .nav a:hover,
  .nav a.active {
    background: var(--green-soft);
    text-decoration: none;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-top: 3rem;
  }

  .hero-copy {
    text-align: center;
  }

  .countdown {
    margin: 0 auto;
  }

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

  .gdpr-popup-content {
    grid-template-columns: 1fr;
  }

  #gdprAccept {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 0.85rem 1rem;
  }

  .brand-mark {
    width: 2.5rem;
    height: 2.5rem;
  }

  .brand strong {
    font-size: 0.95rem;
  }

  .brand small {
    font-size: 0.75rem;
  }

  .hero,
  .page {
    padding-left: 1rem;
    padding-right: 1rem;
  }

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

  .hero-image img {
    border-width: 6px;
    border-radius: 1.3rem;
  }

  .community-section,
  .cta-strip {
    margin-left: 1rem;
    margin-right: 1rem;
    border-radius: 1.4rem;
  }

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

  .content-card,
  .page-hero {
    border-radius: 1.4rem;
  }
}