@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,500;9..144,600;9..144,700&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --bg: #eef4ea;
  --bg-strong: #d9e6d5;
  --surface: rgba(255, 255, 255, 0.72);
  --surface-strong: rgba(255, 255, 255, 0.9);
  --surface-dark: #183127;
  --ink: #172219;
  --ink-soft: #485a49;
  --line: rgba(23, 34, 25, 0.12);
  --line-strong: rgba(23, 34, 25, 0.2);
  --leaf: #2f7d32;
  --leaf-deep: #183d1d;
  --leaf-soft: #6ea75a;
  --sun: #efc75e;
  --cream: #faf8f1;
  --shadow: 0 24px 60px rgba(20, 37, 23, 0.12);
  --shadow-soft: 0 18px 32px rgba(20, 37, 23, 0.08);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max-width: 1180px;
  --hero-glow: radial-gradient(circle at top left, rgba(111, 169, 88, 0.35), transparent 30%),
    radial-gradient(circle at top right, rgba(239, 199, 94, 0.32), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(238, 244, 234, 0.88));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(circle at 0% 10%, rgba(111, 169, 88, 0.24), transparent 28%),
    radial-gradient(circle at 100% 0%, rgba(239, 199, 94, 0.2), transparent 24%),
    linear-gradient(180deg, #f7fbf5 0%, var(--bg) 42%, #e5f0e2 100%);
  font-family: 'Manrope', system-ui, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before,
body::after {
  content: '';
  position: fixed;
  inset: auto;
  pointer-events: none;
  z-index: -1;
}

body::before {
  top: -10rem;
  right: -10rem;
  width: 30rem;
  height: 30rem;
  background: radial-gradient(circle, rgba(111, 169, 88, 0.22), transparent 62%);
}

body::after {
  left: -8rem;
  bottom: -8rem;
  width: 24rem;
  height: 24rem;
  background: radial-gradient(circle, rgba(239, 199, 94, 0.18), transparent 66%);
}

a {
  color: inherit;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(247, 251, 245, 0.78);
  border-bottom: 1px solid rgba(23, 34, 25, 0.08);
}

.header-inner,
.section-inner,
.footer-inner,
.utility-bar {
  width: min(var(--max-width), calc(100% - 2rem));
  margin: 0 auto;
}

.utility-bar {
  display: flex;
  justify-content: center;
  gap: 1rem;
  padding: 0.6rem 0 0.4rem;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  text-decoration: none;
}

.brand-mark {
  width: 2.9rem;
  height: 2.9rem;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 30% 30%, rgba(239, 199, 94, 0.7), transparent 30%),
    linear-gradient(135deg, #1b4525, #4a8a42);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.brand-mark svg {
  width: 1.7rem;
  height: 1.7rem;
  color: white;
}

.brand-copy {
  display: grid;
  gap: 0.1rem;
}

.brand-copy strong {
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  font-weight: 650;
  letter-spacing: -0.02em;
}

.brand-copy span {
  color: var(--ink-soft);
  font-size: 0.86rem;
}

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

.nav-links a {
  text-decoration: none;
  color: var(--ink-soft);
  font-weight: 650;
  font-size: 0.97rem;
}

.nav-links a:hover,
.nav-links a[aria-current='page'] {
  color: var(--ink);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.menu-toggle {
  display: none;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink);
  cursor: pointer;
}

.btn,
.btn-ghost,
.btn-text {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.btn {
  padding: 0.95rem 1.5rem;
  background: linear-gradient(135deg, var(--leaf), var(--leaf-soft));
  color: white;
  font-weight: 750;
  box-shadow: 0 16px 28px rgba(47, 125, 50, 0.18);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 22px 34px rgba(47, 125, 50, 0.22);
}

.btn-ghost {
  padding: 0.95rem 1.4rem;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.64);
  color: var(--ink);
  font-weight: 700;
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(23, 34, 25, 0.24);
}

.btn-text {
  color: var(--leaf-deep);
  font-weight: 750;
}

.hero,
.page-hero {
  padding: 4.2rem 0 2rem;
}

.hero-panel,
.page-hero-panel {
  width: min(var(--max-width), calc(100% - 2rem));
  margin: 0 auto;
  border: 1px solid rgba(23, 34, 25, 0.08);
  border-radius: 40px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  background: var(--hero-glow);
  box-shadow: var(--shadow);
}

.hero-panel::before,
.page-hero-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.22), transparent 30%),
    radial-gradient(circle at 75% 18%, rgba(255, 255, 255, 0.55), transparent 16%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(23, 34, 25, 0.08);
  color: var(--leaf-deep);
  font-size: 0.95rem;
  font-weight: 700;
}

.eyebrow-dot {
  width: 0.62rem;
  height: 0.62rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--leaf), var(--sun));
  box-shadow: 0 0 0 8px rgba(47, 125, 50, 0.08);
}

h1,
h2,
h3,
h4 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

h1,
.page-title {
  font-family: 'Fraunces', serif;
  font-weight: 650;
}

h1 {
  margin-top: 1.2rem;
  font-size: clamp(3rem, 5vw, 5.6rem);
  max-width: 12ch;
}

.page-title {
  margin-top: 1rem;
  font-size: clamp(2.6rem, 4.2vw, 4.8rem);
  max-width: 13ch;
}

.hero-copy p,
.page-subtitle,
.lead {
  font-size: clamp(1.08rem, 1.6vw, 1.25rem);
  color: var(--ink-soft);
  max-width: 60ch;
}

.hero-copy p {
  margin: 1.3rem 0 0;
}

.hero-actions,
.stack-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.8rem;
}

.hero-meta,
.bullet-points,
.inline-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  padding: 0;
  margin: 1.5rem 0 0;
  list-style: none;
}

.chip,
.hero-meta li,
.inline-list li {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(23, 34, 25, 0.08);
  color: var(--ink);
  font-weight: 650;
}

.hero-card {
  border-radius: 30px;
  padding: 1.6rem;
  background: rgba(15, 40, 21, 0.92);
  color: white;
  position: relative;
  overflow: hidden;
  min-height: 25rem;
  box-shadow: 0 26px 48px rgba(15, 40, 21, 0.18);
}

.hero-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(239, 199, 94, 0.2), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 30%);
  pointer-events: none;
}

.hero-card h2 {
  font-family: 'Fraunces', serif;
  font-size: 2rem;
}

.hero-card p {
  color: rgba(255, 255, 255, 0.8);
}

.tray-stack {
  margin-top: 1.5rem;
  display: grid;
  gap: 1rem;
}

.tray {
  position: relative;
  border-radius: 24px;
  min-height: 7rem;
  padding: 1rem;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.2), transparent 28%),
    linear-gradient(135deg, #25502c, #1a3521);
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.tray::after {
  content: '';
  position: absolute;
  inset: auto 1rem 1rem auto;
  width: 6rem;
  height: 6rem;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.14), transparent 60%);
}

.sprout-row {
  display: flex;
  gap: 0.35rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.sprout {
  width: 1.2rem;
  height: 1.8rem;
  border-radius: 1rem 1rem 0.4rem 0.4rem;
  background: linear-gradient(180deg, #96d86f, #2f7d32);
  transform-origin: bottom center;
  animation: sway 4s ease-in-out infinite;
}

.sprout:nth-child(2n) {
  animation-delay: -1.2s;
}

.sprout:nth-child(3n) {
  animation-delay: -2s;
}

@keyframes sway {
  0%,
  100% {
    transform: rotate(-5deg) translateY(0);
  }

  50% {
    transform: rotate(5deg) translateY(-2px);
  }
}

.section {
  padding: 2rem 0 0.5rem;
}

.section-inner {
  padding: 2.6rem 0;
}

.section-kicker {
  color: var(--leaf);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 800;
}

.section-title {
  margin-top: 0.6rem;
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 3vw, 3.4rem);
  max-width: 14ch;
}

.section-copy {
  margin-top: 1rem;
  color: var(--ink-soft);
  max-width: 62ch;
}

.card-grid,
.story-grid,
.gallery-grid,
.faq-grid,
.stats-grid {
  display: grid;
  gap: 1.2rem;
}

.card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1.8rem;
}

.story-grid {
  grid-template-columns: 1.15fr 0.85fr;
  align-items: start;
  margin-top: 1.8rem;
}

.gallery-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  margin-top: 1.8rem;
}

.faq-grid {
  grid-template-columns: 1fr 1fr;
  align-items: start;
  margin-top: 1.8rem;
}

.stats-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 1.8rem;
}

.card,
.panel,
.stat,
.faq-card,
.gallery-card,
.table-card {
  background: var(--surface);
  border: 1px solid rgba(23, 34, 25, 0.08);
  box-shadow: var(--shadow-soft);
  border-radius: var(--radius-lg);
}

.card,
.panel,
.faq-card,
.table-card {
  padding: 1.4rem;
}

.card h3,
.panel h3,
.table-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.45rem;
}

.card p,
.panel p,
.faq-card p,
.table-card p {
  color: var(--ink-soft);
}

.detail-list,
.check-list,
.timeline-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 0.8rem;
}

.detail-list li,
.check-list li,
.timeline-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
}

.bullet-icon {
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: rgba(47, 125, 50, 0.12);
  color: var(--leaf);
  font-size: 0.82rem;
  font-weight: 900;
}

.order-builder {
  margin-top: 1.8rem;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.2rem;
}

.builder-form,
.builder-output {
  padding: 1.4rem;
  border-radius: var(--radius-xl);
  background: var(--surface);
  border: 1px solid rgba(23, 34, 25, 0.08);
  box-shadow: var(--shadow-soft);
}

.builder-group + .builder-group {
  margin-top: 1.25rem;
}

.builder-label,
.label {
  display: block;
  font-weight: 800;
  margin-bottom: 0.7rem;
}

.choice-row,
.checkbox-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.choice,
.checkbox-card {
  position: relative;
}

.choice input,
.checkbox-card input {
  position: absolute;
  opacity: 0;
  inset: 0;
}

.choice span,
.checkbox-card span {
  display: inline-flex;
  align-items: center;
  min-height: 3rem;
  padding: 0.8rem 1rem;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
  font-weight: 700;
  cursor: pointer;
  transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.choice input:checked + span,
.checkbox-card input:checked + span {
  border-color: rgba(47, 125, 50, 0.6);
  background: rgba(111, 169, 88, 0.15);
  transform: translateY(-1px);
}

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

.input,
.select {
  width: 100%;
  padding: 0.92rem 1rem;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.84);
  color: var(--ink);
}

.summary-box {
  padding: 1rem;
  border-radius: 18px;
  background: rgba(47, 125, 50, 0.09);
  color: var(--ink);
}

.summary-box p {
  margin: 0;
}

.summary-box strong {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 1.05rem;
}

.service-checker {
  margin-top: 1.5rem;
  padding: 1rem;
  border-radius: 20px;
  background: rgba(23, 34, 25, 0.05);
  border: 1px solid rgba(23, 34, 25, 0.08);
}

.checker-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.8rem;
}

.checker-result {
  margin-top: 0.85rem;
  min-height: 1.5rem;
  color: var(--leaf-deep);
  font-weight: 700;
}

.timeline-list li {
  position: relative;
  padding: 0 0 0 0.25rem;
}

.timeline-day {
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
}

.timeline-rule {
  display: block;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(47, 125, 50, 0.3), transparent);
  margin: 0.4rem 0 0.8rem;
}

.gallery-card {
  overflow: hidden;
  min-height: 18rem;
  position: relative;
}

.gallery-card::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.92;
}

.gallery-card > div {
  position: relative;
  z-index: 1;
  padding: 1.4rem;
  display: flex;
  min-height: 18rem;
  flex-direction: column;
  justify-content: space-between;
}

.gallery-card h3 {
  font-family: 'Fraunces', serif;
  color: white;
  font-size: 1.8rem;
}

.gallery-card p,
.gallery-card ul {
  color: rgba(255, 255, 255, 0.88);
}

.gallery-span-7 {
  grid-column: span 7;
}

.gallery-span-5 {
  grid-column: span 5;
}

.gallery-span-4 {
  grid-column: span 4;
}

.gallery-a::before {
  background:
    linear-gradient(135deg, rgba(24, 49, 39, 0.74), rgba(47, 125, 50, 0.52)),
    radial-gradient(circle at top left, rgba(239, 199, 94, 0.4), transparent 34%),
    linear-gradient(180deg, #597a2a, #234126);
}

.gallery-b::before {
  background:
    linear-gradient(160deg, rgba(16, 36, 26, 0.82), rgba(27, 69, 37, 0.48)),
    radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.16), transparent 28%),
    linear-gradient(180deg, #4f7d34, #193325);
}

.gallery-c::before {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 40%),
    radial-gradient(circle at top right, rgba(239, 199, 94, 0.34), transparent 22%),
    linear-gradient(180deg, #486f25, #0f2415);
}

.gallery-d::before {
  background:
    linear-gradient(180deg, rgba(15, 36, 21, 0.74), rgba(56, 103, 53, 0.36)),
    radial-gradient(circle at 20% 75%, rgba(239, 199, 94, 0.24), transparent 18%),
    linear-gradient(180deg, #415826, #132716);
}

.stat {
  padding: 1.2rem;
}

.stat strong {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 2rem;
}

.stat span {
  color: var(--ink-soft);
  font-weight: 650;
}

.faq-card details {
  border-top: 1px solid rgba(23, 34, 25, 0.08);
}

.faq-card details:first-of-type {
  border-top: 0;
}

.faq-card summary {
  list-style: none;
  cursor: pointer;
  padding: 1rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-weight: 800;
}

.faq-card summary::-webkit-details-marker {
  display: none;
}

.faq-card details p {
  margin: 0 0 1rem;
}

.table-card {
  overflow: auto;
}

.comparison {
  width: 100%;
  border-collapse: collapse;
}

.comparison th,
.comparison td {
  text-align: left;
  padding: 0.9rem 0.4rem;
  border-bottom: 1px solid rgba(23, 34, 25, 0.08);
}

.comparison th {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
}

.callout {
  padding: 1.15rem 1.2rem;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(239, 199, 94, 0.18), rgba(111, 169, 88, 0.14));
  border: 1px solid rgba(23, 34, 25, 0.08);
}

.footnote,
.small {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.footer {
  margin-top: 3rem;
  border-top: 1px solid rgba(23, 34, 25, 0.08);
  background: rgba(255, 255, 255, 0.52);
}

.footer-inner {
  padding: 2.2rem 0 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  gap: 1.4rem;
}

.footer-links {
  display: grid;
  gap: 0.7rem;
}

.footer a {
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 480ms ease, transform 480ms ease;
}

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

.centered {
  text-align: center;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@media (max-width: 1080px) {
  .hero-grid,
  .story-grid,
  .order-builder,
  .faq-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .gallery-span-7,
  .gallery-span-5,
  .gallery-span-4 {
    grid-column: span 6;
  }
}

@media (max-width: 860px) {
  .utility-bar {
    display: none;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav-links {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + 0.75rem);
    padding: 1rem;
    border-radius: 24px;
    border: 1px solid rgba(23, 34, 25, 0.08);
    background: rgba(247, 251, 245, 0.95);
    box-shadow: var(--shadow-soft);
    display: none;
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links.open {
    display: flex;
  }

  .header-actions .btn-ghost {
    display: none;
  }
}

@media (max-width: 720px) {
  .hero-panel,
  .page-hero-panel {
    padding: 1.25rem;
    border-radius: 28px;
  }

  .section-inner {
    padding: 2rem 0;
  }

  .card-grid,
  .stats-grid,
  .checkbox-grid,
  .checker-row {
    grid-template-columns: 1fr;
  }

  .gallery-span-7,
  .gallery-span-5,
  .gallery-span-4 {
    grid-column: span 12;
  }

  .chip,
  .hero-meta li,
  .inline-list li,
  .choice span,
  .checkbox-card span {
    width: 100%;
    justify-content: flex-start;
  }

  .hero-actions,
  .stack-actions {
    flex-direction: column;
  }

  .btn,
  .btn-ghost,
  .btn-text {
    width: 100%;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
