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

:root {
  --soil: #2f3a2c;
  --soil-deep: #243028;
  --leaf: #4a6b45;
  --leaf-mid: #5f8458;
  --moss: #7a9a6e;
  --sage: #c5d4b8;
  --mist: #eef2e8;
  --cream: #f7f4ec;
  --paper: #fffcf6;
  --sand: #e6dfd0;
  --bark: #6b5a45;
  --ink: #2a2e28;
  --muted: #5e6659;
  --line: #d4cdb8;
  --warn: #8a6d3b;
  --max: 1120px;
  --ease: cubic-bezier(.25, .7, .3, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
}

img { max-width: 100%; display: block; height: auto; }
a { color: var(--leaf); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--soil); }
ul { list-style: none; }

.wrap {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.site-top {
  background: var(--soil);
  color: var(--sage);
  font-size: 0.88rem;
  padding: 0.55rem 0;
  text-align: center;
  letter-spacing: 0.01em;
}

.site-top strong { color: var(--cream); font-weight: 600; }

.site-header {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 40;
}

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

.brand {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.45rem;
  color: var(--soil);
  text-decoration: none;
  line-height: 1.15;
}

.brand span {
  display: block;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.15rem;
}

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

.nav-main a {
  color: var(--soil);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
}

.nav-main a:hover,
.nav-main a.active {
  border-bottom-color: var(--moss);
  color: var(--leaf);
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 0.45rem 0.65rem;
  cursor: pointer;
  color: var(--soil);
  font-weight: 600;
}

.hero {
  position: relative;
  min-height: min(72vh, 620px);
  display: grid;
  align-items: end;
  background: var(--soil) center/cover no-repeat;
  color: var(--cream);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(36,48,40,.25) 0%, rgba(36,48,40,.72) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding: 3.5rem 0 2.8rem;
  max-width: 34rem;
}

.hero h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.1rem, 4.5vw, 3.2rem);
  font-weight: 600;
  line-height: 1.12;
  margin-bottom: 0.85rem;
}

.hero p {
  font-size: 1.05rem;
  color: var(--sage);
  margin-bottom: 1.4rem;
}

.btn {
  display: inline-block;
  background: var(--leaf-mid);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  padding: 0.7rem 1.25rem;
  border-radius: 3px;
  border: none;
  cursor: pointer;
  transition: background .2s var(--ease), transform .2s var(--ease);
}

.btn:hover { background: var(--leaf); color: #fff; transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  border: 1.5px solid var(--sage);
  color: var(--cream);
  margin-left: 0.6rem;
}
.btn-ghost:hover { background: rgba(255,255,255,.1); color: #fff; }
.btn-soil { background: var(--soil); }
.btn-soil:hover { background: var(--soil-deep); }

.section {
  padding: 3.2rem 0;
}

.section-mist { background: var(--mist); }
.section-paper { background: var(--paper); }
.section-sand { background: var(--sand); }

.section h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.55rem, 2.8vw, 2.05rem);
  color: var(--soil);
  margin-bottom: 0.65rem;
  font-weight: 600;
}

.lead {
  color: var(--muted);
  max-width: 40rem;
  margin-bottom: 1.6rem;
}

.split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.2rem;
  align-items: center;
}

.split img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 2px;
}

.team-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.2rem;
}

.team-strip span {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 0.3rem 0.7rem;
  font-size: 0.85rem;
  color: var(--muted);
  border-radius: 999px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.card-grid a,
.feature-card {
  display: block;
  background: var(--paper);
  border: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  transition: border-color .2s var(--ease), transform .2s var(--ease);
}

.card-grid a:hover,
.feature-card:hover {
  border-color: var(--moss);
  transform: translateY(-2px);
}

.card-grid img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.card-body { padding: 1rem 1.1rem 1.2rem; }
.card-body h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  color: var(--soil);
  margin-bottom: 0.35rem;
}
.card-body p { font-size: 0.95rem; color: var(--muted); }

.news-list {
  display: grid;
  gap: 1rem;
}

.news-item {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}

.news-item time {
  font-size: 0.82rem;
  color: var(--bark);
  font-weight: 600;
}

.news-item h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.news-item h3 a { color: var(--soil); text-decoration: none; }
.news-item h3 a:hover { color: var(--leaf); }
.news-item p { color: var(--muted); font-size: 0.95rem; }

.voucher {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 1.75rem;
  align-items: center;
  background: var(--soil);
  color: var(--cream);
  padding: 1.75rem;
}

.voucher img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.voucher h2 { color: var(--cream); }
.voucher p { color: var(--sage); margin: 0.6rem 0 1.1rem; }

.info-bar {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.info-box {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 1.25rem 1.35rem;
}

.info-box h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  color: var(--soil);
  margin-bottom: 0.55rem;
}

.info-box p, .info-box li {
  color: var(--muted);
  font-size: 0.95rem;
}

.info-box li { margin-bottom: 0.25rem; }

.page-hero {
  background: var(--mist);
  border-bottom: 1px solid var(--line);
  padding: 2.4rem 0 2rem;
}

.page-hero h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
  color: var(--soil);
  margin-bottom: 0.45rem;
}

.page-hero p { color: var(--muted); max-width: 38rem; }

.plant-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
  margin-top: 1.5rem;
}

.plant-card {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 1rem;
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 0.9rem;
}

.plant-card img {
  width: 140px;
  height: 140px;
  object-fit: cover;
}

.plant-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  color: var(--soil);
  margin-bottom: 0.3rem;
}

.plant-card .price {
  color: var(--bark);
  font-weight: 700;
  font-size: 0.9rem;
  margin-top: 0.45rem;
}

.plant-card p { color: var(--muted); font-size: 0.92rem; }

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.4rem;
}

.gallery figure {
  background: var(--paper);
  border: 1px solid var(--line);
}

.gallery img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.gallery figcaption {
  padding: 0.7rem 0.85rem 0.9rem;
  font-family: 'Fraunces', serif;
  font-size: 1rem;
  color: var(--soil);
}

.article {
  max-width: 46rem;
}

.article p { margin-bottom: 1rem; color: var(--ink); }
.article h2 {
  margin-top: 1.8rem;
  margin-bottom: 0.55rem;
}
.article ul {
  margin: 0 0 1rem 1.1rem;
  list-style: disc;
}
.article li { margin-bottom: 0.35rem; color: var(--ink); }

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: start;
}

.contact-form {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 1.4rem;
}

.contact-form label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.9rem;
  color: var(--soil);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  display: block;
  width: 100%;
  margin-top: 0.35rem;
  padding: 0.65rem 0.75rem;
  border: 1px solid var(--line);
  background: var(--cream);
  font: inherit;
  color: var(--ink);
  border-radius: 2px;
}

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

.form-success {
  display: none;
  background: var(--mist);
  border: 1px solid var(--moss);
  color: var(--soil);
  padding: 0.9rem 1rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.form-success.show { display: block; }

.legal {
  max-width: 48rem;
  padding-bottom: 1rem;
}

.legal h2 {
  margin-top: 1.7rem;
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

.legal p, .legal li {
  margin-bottom: 0.75rem;
  color: var(--ink);
}

.legal ul {
  margin: 0 0 1rem 1.15rem;
  list-style: disc;
}

.legal table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0 1.4rem;
  font-size: 0.92rem;
}

.legal th, .legal td {
  border: 1px solid var(--line);
  padding: 0.55rem 0.7rem;
  text-align: left;
  vertical-align: top;
}

.legal th { background: var(--mist); color: var(--soil); }

.site-footer {
  background: var(--soil-deep);
  color: var(--sage);
  padding: 2.4rem 0 1.4rem;
  margin-top: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 1.75rem;
  margin-bottom: 1.75rem;
}

.site-footer h3 {
  font-family: 'Fraunces', serif;
  color: var(--cream);
  font-size: 1.1rem;
  margin-bottom: 0.55rem;
}

.site-footer a { color: var(--sage); text-decoration: none; }
.site-footer a:hover { color: #fff; }
.site-footer li { margin-bottom: 0.3rem; }
.site-footer p { font-size: 0.92rem; }

.footer-bottom {
  border-top: 1px solid rgba(197,212,184,.25);
  padding-top: 1rem;
  font-size: 0.85rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  justify-content: space-between;
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 80;
  background: var(--soil-deep);
  color: var(--cream);
  padding: 1.1rem 1.25rem;
  border: 1px solid rgba(197,212,184,.35);
  box-shadow: 0 12px 40px rgba(0,0,0,.28);
  max-width: 720px;
  margin-inline: auto;
  display: none;
}

.cookie-banner.show { display: block; }

.cookie-banner p {
  font-size: 0.92rem;
  color: var(--sage);
  margin-bottom: 0.9rem;
}

.cookie-banner a { color: #d7e6cb; }

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.cookie-actions button {
  font: inherit;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 0.55rem 0.9rem;
  border-radius: 3px;
  cursor: pointer;
  border: 1px solid transparent;
}

.cookie-accept { background: var(--leaf-mid); color: #fff; }
.cookie-decline { background: transparent; color: var(--cream); border-color: rgba(197,212,184,.45); }
.cookie-settings { background: var(--bark); color: #fff; }

.cookie-panel {
  display: none;
  margin-top: 0.9rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(197,212,184,.25);
}

.cookie-panel.open { display: block; }

.cookie-panel label {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  font-size: 0.88rem;
  margin-bottom: 0.55rem;
  color: var(--sage);
}

@media (max-width: 900px) {
  .split,
  .voucher,
  .contact-grid,
  .footer-grid,
  .info-bar { grid-template-columns: 1fr; }

  .card-grid,
  .gallery { grid-template-columns: 1fr 1fr; }

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

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

  .nav-main {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--paper);
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem 1rem 1rem;
    border-bottom: 1px solid var(--line);
    gap: 0;
  }

  .nav-main.open { display: flex; }
  .nav-main a {
    padding: 0.7rem 0.2rem;
    border-bottom: 1px solid var(--line);
  }

  .card-grid,
  .gallery { grid-template-columns: 1fr; }

  .news-item,
  .plant-card { grid-template-columns: 1fr; }

  .plant-card img { width: 100%; height: 180px; }

  .btn-ghost { margin-left: 0; margin-top: 0.5rem; }
  .hero .cta-row { display: flex; flex-direction: column; align-items: flex-start; }
}
