:root {
  --green-950: #0f2419;
  --green-900: #163226;
  --green-800: #1e4a35;
  --green-700: #2a5f44;
  --green-100: #e8f0ea;
  --green-50: #f3f7f4;
  --gold: #c4a035;
  --gold-soft: #e8d9a8;
  --ink: #15241c;
  --ink-soft: #3d5246;
  --paper: #f7faf7;
  --white: #ffffff;
  --line: rgba(30, 74, 53, 0.14);
  --radius: 2px;
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Figtree", "Segoe UI", sans-serif;
  --shadow-soft: 0 18px 50px rgba(15, 36, 25, 0.12);
  --header-h: 4rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(232, 217, 168, 0.28), transparent 55%),
    radial-gradient(900px 500px at 100% 20%, rgba(30, 74, 53, 0.08), transparent 50%),
    linear-gradient(180deg, var(--green-50), var(--paper) 28%, var(--paper));
  min-height: 100vh;
}

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

a {
  color: var(--green-800);
  text-underline-offset: 0.18em;
}

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

em {
  font-style: italic;
}

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 100;
  background: var(--white);
  color: var(--ink);
  padding: 0.6rem 1rem;
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 1rem;
}

.wrap {
  width: min(1080px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.wrap.narrow {
  width: min(720px, calc(100% - 2.5rem));
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: var(--header-h);
  padding: 0 1.25rem;
  background: transparent;
  color: var(--white);
  transition: background 0.35s ease, color 0.35s ease, box-shadow 0.35s ease, backdrop-filter 0.35s ease;
}

.site-header.is-scrolled {
  background: rgba(247, 250, 247, 0.92);
  color: var(--ink);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: inherit;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: 0.01em;
}

.brand img {
  width: 1.7rem;
  height: 1.7rem;
  filter: brightness(0) invert(1);
  transition: filter 0.35s ease;
}

.site-header.is-scrolled .brand img {
  filter: none;
}

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

.site-nav a {
  color: inherit;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  opacity: 0.92;
}

.site-nav a:hover {
  opacity: 1;
  text-decoration: underline;
}

.nav-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 1.35rem;
  height: 2px;
  margin: 0.28rem auto;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  color: var(--white);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% 35%;
  transform: scale(1.06);
  animation: hero-drift 18s ease-in-out infinite alternate;
}

@keyframes hero-drift {
  from { transform: scale(1.06) translate3d(0, 0, 0); }
  to { transform: scale(1.12) translate3d(-1.5%, -1%, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-media img {
    animation: none;
    transform: none;
  }
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 36, 25, 0.35) 0%, rgba(15, 36, 25, 0.15) 35%, rgba(15, 36, 25, 0.72) 100%),
    linear-gradient(90deg, rgba(15, 36, 25, 0.45), transparent 55%);
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(720px, calc(100% - 2.5rem));
  margin: 0 auto 12vh;
  padding-top: calc(var(--header-h) + 2rem);
  animation: rise-in 0.9s ease both;
}

@keyframes rise-in {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 7vw, 4.6rem);
  font-weight: 650;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.brand-mark img {
  width: clamp(2.2rem, 5vw, 3rem);
  height: auto;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.hero-lede {
  margin: 0 0 1.6rem;
  max-width: 28rem;
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.85rem;
  padding: 0.7rem 1.25rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--gold);
  color: var(--green-950);
  border-color: var(--gold);
}

.btn-primary:hover {
  background: var(--gold-soft);
  color: var(--green-950);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.section-visit .btn-primary,
.section-contact .btn-primary {
  color: var(--green-950);
}

/* Sections */
.section {
  padding: clamp(4rem, 9vw, 6.5rem) 0;
}

.section + .section {
  border-top: 1px solid var(--line);
}

.eyebrow {
  margin: 0 0 0.65rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-700);
}

h2 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.65rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--green-950);
}

h3 {
  margin: 1.75rem 0 0.55rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--green-900);
}

.lede {
  margin: 0 0 1.4rem;
  font-size: 1.15rem;
  color: var(--ink-soft);
}

.section p {
  margin: 0 0 1rem;
}

.section p:last-child {
  margin-bottom: 0;
}

.why-list,
.benefit-list {
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
}

.why-list li,
.benefit-list li {
  position: relative;
  padding: 0.7rem 0 0.7rem 1.5rem;
  border-top: 1px solid var(--line);
}

.why-list li::before,
.benefit-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.15rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--gold);
}

.split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.inline-photo {
  margin: 0;
}

.inline-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 30%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.inline-photo figcaption {
  margin-top: 0.65rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.disclaimer,
.note,
.form-note,
.fine {
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.disclaimer {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

/* Plants — interaction containers, not card chrome for its own sake */
.plant-sizes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2rem 0 1.5rem;
}

.plant-size {
  padding: 0;
  background: transparent;
}

.plant-size img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: var(--green-100);
  margin-bottom: 0.9rem;
}

.plant-size h3 {
  margin: 0 0 0.35rem;
}

.price {
  margin: 0 0 0.45rem !important;
  font-weight: 600;
  color: var(--green-800);
}

.visit-card {
  display: block;
  margin: 1.5rem 0;
  font-style: normal;
  font-size: 1.1rem;
  line-height: 1.7;
}

.visit-card strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
}

.contact-direct {
  margin-bottom: 1.5rem !important;
  font-weight: 500;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.contact-form label {
  display: grid;
  gap: 0.4rem;
  font-weight: 500;
  font-size: 0.95rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  font: inherit;
  color: var(--ink);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--green-700);
  outline-offset: 1px;
}

.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
}

.site-footer {
  padding: 2rem 0 2.5rem;
  border-top: 1px solid var(--line);
  background: var(--green-900);
  color: rgba(255, 255, 255, 0.88);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
}

.site-footer .fine {
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}

.site-footer p {
  margin: 0;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Responsive */
@media (max-width: 860px) {
  .split {
    grid-template-columns: 1fr;
  }

  .inline-photo {
    order: -1;
    max-width: 420px;
  }

  .plant-sizes {
    grid-template-columns: 1fr;
    max-width: 360px;
  }
}

@media (max-width: 720px) {
  .nav-toggle {
    display: block;
    color: inherit;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem 1.25rem 1rem;
    background: rgba(247, 250, 247, 0.98);
    color: var(--ink);
    border-bottom: 1px solid var(--line);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 0.75rem 0;
    border-top: 1px solid var(--line);
  }

  .site-header.nav-open {
    background: rgba(247, 250, 247, 0.98);
    color: var(--ink);
  }

  .site-header.nav-open .brand img {
    filter: none;
  }

  .hero-copy {
    margin-bottom: 8vh;
  }

  .brand-mark {
    font-size: clamp(2.3rem, 11vw, 3.2rem);
  }
}
