:root {
  --green: #1c8c59;
  --green-deep: #146b44;
  --green-light: #e0f5e8;
  --mint: #d1f0de;
  --ink: #1a2220;
  --muted: #5c6663;
  --line: #dfe6e2;
  --paper: #f4faf6;
  --cream: #fbfefc;
  --max: 40rem;
  --wide: 44rem;
  --pad-x: clamp(1.1rem, 5vw, 2rem);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "DM Sans", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(28, 140, 89, 0.1), transparent 55%),
    radial-gradient(ellipse 50% 40% at 50% 100%, rgba(209, 240, 222, 0.45), transparent 50%),
    linear-gradient(165deg, var(--cream) 0%, var(--paper) 55%, #eaf6ef 100%);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
  overflow-x: hidden;
}

a {
  color: var(--green-deep);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover { color: var(--green); }

.site-nav {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem var(--pad-x);
  padding-top: max(0.85rem, env(safe-area-inset-top));
  background: rgba(251, 254, 252, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.nav-brand {
  font-family: "DM Serif Display", serif;
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  color: var(--green);
  text-decoration: none;
}

.site-nav nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem 0.85rem;
  font-size: 0.82rem;
  font-weight: 500;
  max-width: 100%;
}

.site-nav nav a {
  color: var(--muted);
  text-decoration: none;
  padding: 0.2rem 0.15rem;
}

.site-nav nav a:hover { color: var(--green-deep); }

.hero {
  position: relative;
  min-height: min(88vh, 44rem);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(2.5rem, 8vh, 5rem) var(--pad-x);
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(20, 107, 68, 0.94) 0%, rgba(28, 140, 89, 0.9) 45%, rgba(15, 50, 38, 0.95) 100%);
  color: #fff;
  text-align: center;
}

.hero-atmosphere {
  position: absolute;
  inset: 0;
  background:
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
  animation: drift 28s linear infinite;
}

@keyframes drift {
  from { background-position: 0 0; }
  to { background-position: 60px 60px; }
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(100%, 34rem);
  margin: 0 auto;
}

.eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.85rem;
}

.hero .eyebrow { color: var(--mint); }

.brand {
  font-family: "DM Serif Display", serif;
  font-weight: 700;
  font-size: clamp(3rem, 14vw, 5.5rem);
  letter-spacing: -0.035em;
  line-height: 0.92;
  margin-bottom: 1.15rem;
}

.lede {
  font-size: clamp(1.02rem, 2.4vw, 1.2rem);
  line-height: 1.5;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
  color: var(--muted);
}

.hero .lede { color: rgba(255, 255, 255, 0.9); }

.cta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.hero-footnote {
  margin: 1.25rem auto 0;
  max-width: 32rem;
  font-size: 0.76rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.72);
}

.hero-footnote strong {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}

.contact-hint {
  display: inline-block;
  margin-left: 0.35rem;
  font-size: 0.72rem;
  opacity: 0.65;
  font-weight: 400;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.7rem 1.15rem;
  background: #fff;
  color: var(--green-deep);
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
  color: var(--green-deep);
  background: var(--mint);
}

.btn.ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
}

.btn.ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.section {
  padding: clamp(3rem, 8vh, 5.5rem) var(--pad-x);
  max-width: var(--wide);
  margin: 0 auto;
  text-align: center;
}

.section h2 {
  font-family: "DM Serif Display", serif;
  font-weight: 600;
  font-size: clamp(1.6rem, 5.5vw, 2.35rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
  max-width: 20ch;
  margin: 0 auto 1rem;
}

.section-lede {
  font-size: 1.02rem;
  color: var(--muted);
  max-width: 34rem;
  margin: 0 auto 2rem;
}

.product-note {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.45;
  max-width: 34rem;
  margin: -1.25rem auto 2rem;
}

.product-note strong {
  color: var(--ink);
  font-weight: 600;
}

.story-signoff {
  font-family: "DM Serif Display", serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--green-deep);
  margin-top: 0.5rem;
}

.shot-row {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0.65rem, 3vw, 1.25rem);
  justify-content: center;
  margin-bottom: 2rem;
}

.shot-frame {
  width: min(140px, 29vw);
  margin: 0;
}

.shot-slot {
  aspect-ratio: 9 / 19.5;
  border-radius: 20px;
  border: 2px solid rgba(26, 34, 32, 0.16);
  background: linear-gradient(180deg, var(--green-light) 0%, #fff 55%);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.85rem 0.65rem;
  text-align: center;
  position: relative;
}

.shot-slot.has-shot {
  background: #111;
  padding: 0;
}

.shot-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.slot-label {
  font-family: "DM Serif Display", serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--green-deep);
}

.slot-hint {
  font-size: 0.65rem;
  color: var(--muted);
  max-width: 10ch;
  line-height: 1.35;
}

.slot-file {
  font-size: 0.58rem;
  font-weight: 600;
  font-family: ui-monospace, monospace;
  color: var(--green);
}

.shot-frame figcaption {
  margin-top: 0.55rem;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink);
}

.quote-carousel {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.quote-controls {
  display: grid;
  grid-template-columns: 2.5rem 1fr 2.5rem;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  flex-shrink: 0;
}

.quote-viewport {
  min-width: 0;
  touch-action: pan-y;
}

.quote-track {
  position: relative;
}

.quote-block {
  padding: 1rem 0.85rem 1rem 1rem;
  border-left: 3px solid var(--green);
  background: rgba(255, 255, 255, 0.45);
  text-align: left;
  margin: 0;
}

.quote-block[hidden] {
  display: none !important;
}

.quote-nav {
  appearance: none;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--green-deep);
  width: 2.5rem;
  height: 2.5rem;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.quote-nav:hover {
  background: var(--green-light);
  border-color: var(--mint);
}

.quote-nav:disabled {
  opacity: 0.35;
  cursor: default;
}

.quote-dots {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
}

.quote-dots button {
  appearance: none;
  border: 0;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: var(--line);
  padding: 0;
  cursor: pointer;
}

.quote-dots button.is-on {
  width: 1rem;
  background: var(--green);
}

.quote-count {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
  text-align: center;
  margin: 0;
  min-width: 3.5rem;
}

.quote-block blockquote {
  font-family: "DM Serif Display", serif;
  font-size: clamp(0.9rem, 3.2vw, 1.02rem);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: -0.01em;
  margin-bottom: 0.75rem;
  color: var(--ink);
}

.quote-block mark {
  background: var(--mint);
  color: var(--green-deep);
  font-weight: 600;
  padding: 0 0.12em;
}

.quote-block .attr {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--green-deep);
}

.quote-block .role {
  display: block;
  font-size: 0.76rem;
  color: var(--muted);
  margin-top: 0.2rem;
  line-height: 1.4;
}

.signup-form {
  width: min(100%, 28rem);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  text-align: left;
}

.signup-form label {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
}

.signup-form input[type="text"],
.signup-form input[type="email"] {
  appearance: none;
  border: 1px solid var(--line);
  background: #fff;
  padding: 0.8rem 0.85rem;
  font: inherit;
  font-weight: 400;
  font-size: 16px;
  color: var(--ink);
  border-radius: 0;
  width: 100%;
}

.signup-form input:focus {
  outline: 2px solid var(--green);
  outline-offset: 1px;
}

.residence-field {
  border: 0;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.residence-field legend {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.25rem;
  padding: 0;
}

.choice-label {
  flex-direction: row !important;
  align-items: center;
  gap: 0.65rem !important;
  font-weight: 500 !important;
  color: var(--ink) !important;
  font-size: 0.95rem !important;
  line-height: 1.35;
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
}

.choice-label:has(input[type="radio"]:checked),
.choice-other.is-active {
  border-color: var(--green);
  background: var(--green-light);
}

.choice-label > input[type="radio"],
.choice-other > input[type="radio"] {
  flex-shrink: 0;
  width: 1.1rem;
  height: 1.1rem;
  accent-color: var(--green);
  margin: 0;
}

.choice-other {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.65rem;
  cursor: text;
}

.other-tag {
  flex-shrink: 0;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
}

.other-city-input {
  appearance: none;
  border: 0 !important;
  outline: none !important;
  box-shadow: none !important;
  background: transparent !important;
  padding: 0 !important;
  margin: 0;
  font: inherit;
  font-weight: 400;
  font-size: 16px;
  color: var(--ink);
  flex: 1 1 auto;
  min-width: 0;
  width: auto;
}

.other-city-input::placeholder {
  color: var(--muted);
}

.other-city-input:focus {
  outline: none !important;
  box-shadow: none !important;
}

.check-label {
  flex-direction: row !important;
  align-items: flex-start;
  gap: 0.65rem !important;
  font-weight: 400 !important;
  color: var(--muted) !important;
  font-size: 0.88rem !important;
  line-height: 1.45;
}

.check-label[hidden] {
  display: none !important;
}

.check-label input {
  margin-top: 0.25rem;
  flex-shrink: 0;
  width: 1.1rem;
  height: 1.1rem;
  accent-color: var(--green);
}

.captcha-wrap {
  display: flex;
  justify-content: center;
  min-height: 65px;
}

.form-hint {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.45;
}

.form-status {
  font-size: 0.92rem;
  min-height: 1.4em;
  text-align: center;
}

.form-status.ok { color: var(--green-deep); font-weight: 600; }
.form-status.error { color: #a33; font-weight: 600; }

.honeypot {
  position: absolute;
  left: -9999px;
  height: 0;
  overflow: hidden;
}

.btn-dark {
  background: var(--green);
  color: #fff;
  border: 0;
  cursor: pointer;
  align-self: center;
  width: min(100%, 16rem);
}

.btn-dark:hover {
  background: var(--green-deep);
  color: #fff;
}

.section.voices h2 {
  max-width: 22ch;
}

.story-prose {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  max-width: var(--max);
  margin: 0 auto;
  font-size: clamp(1rem, 3.5vw, 1.08rem);
  color: var(--ink);
  text-align: left;
}

.story-prose p { color: #2a3330; }

.steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--line);
  max-width: var(--max);
  margin: 0 auto;
  text-align: left;
}

.steps li {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 0.85rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--line);
}

.step-n {
  font-family: "DM Serif Display", serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--green);
}

.steps h3 {
  font-family: "DM Serif Display", serif;
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.steps p { color: var(--muted); font-size: 0.95rem; }

.benefit-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
  max-width: var(--max);
  margin: 0 auto;
  text-align: left;
}

.benefit-list li {
  padding: 1.15rem 0.85rem 1.15rem 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.benefit-list li:nth-child(odd) {
  padding-right: 1.1rem;
}

.benefit-list strong {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
}

.benefit-list span {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.45;
}

.close {
  text-align: center;
  padding-bottom: clamp(3.5rem, 9vh, 6rem);
}

.brand-inline {
  font-family: "DM Serif Display", serif;
  font-weight: 700;
  font-size: clamp(2.4rem, 10vw, 3.75rem);
  color: var(--green);
  letter-spacing: -0.03em;
  margin: 0 auto 0.85rem;
  max-width: none;
}

.close .lede {
  margin-bottom: 0;
}

.site-footer {
  padding: 1.35rem var(--pad-x) 0.75rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.86rem;
  color: var(--muted);
  text-align: center;
}

.site-footer .nav-brand {
  font-size: 1rem;
  margin-right: 0.25rem;
}

.site-contact {
  padding: 0 var(--pad-x) max(2rem, env(safe-area-inset-bottom));
  font-size: 0.86rem;
  color: var(--muted);
  text-align: center;
}

.site-contact a {
  font-weight: 600;
}

.privacy-page {
  max-width: 40rem;
  margin: 0 auto;
  padding: clamp(2rem, 6vh, 3.5rem) var(--pad-x) 3.5rem;
}

.privacy-page h1 {
  font-family: "DM Serif Display", serif;
  font-size: clamp(1.85rem, 6vw, 2.55rem);
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
}

.privacy-meta {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.privacy-page h2 {
  font-family: "DM Serif Display", serif;
  font-size: 1.3rem;
  margin: 2rem 0 0.75rem;
  letter-spacing: -0.02em;
}

.privacy-page h3 {
  font-size: 1.02rem;
  margin: 1.25rem 0 0.45rem;
  color: var(--green-deep);
}

.privacy-page p,
.privacy-page li {
  color: #2a3330;
  font-size: 0.98rem;
  margin-bottom: 0.75rem;
}

.privacy-page ul {
  padding-left: 1.2rem;
  margin-bottom: 1rem;
}

.privacy-page table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
  margin: 1rem 0 1.5rem;
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.privacy-page thead,
.privacy-page tbody,
.privacy-page tr {
  display: table;
  width: 100%;
  table-layout: fixed;
}

.privacy-page th,
.privacy-page td {
  border-top: 1px solid var(--line);
  padding: 0.65rem 0.45rem;
  text-align: left;
  vertical-align: top;
  word-break: break-word;
}

.privacy-page th {
  font-weight: 600;
  color: var(--green-deep);
}

.privacy-summary {
  padding: 1.25rem 0;
  border-top: 2px solid var(--green);
  border-bottom: 1px solid var(--line);
  margin-bottom: 1.5rem;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.35s; }

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 720px) {
  .site-nav {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .site-nav nav {
    justify-content: flex-end;
    font-size: 0.9rem;
    gap: 0.35rem 1.1rem;
  }

  .site-footer {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

@media (max-width: 700px) {
  .benefit-list {
    grid-template-columns: 1fr;
  }

  .benefit-list li:nth-child(odd) {
    padding-right: 0;
  }

  .shot-frame {
    width: min(110px, 30vw);
  }

  .cta-row .btn {
    flex: 1 1 auto;
    min-width: 9.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-atmosphere { animation: none; }
  .btn { transition: none; }
  html { scroll-behavior: auto; }
}
