:root {
  --bg: #f6f4ee;
  --bg-alt: #ece7da;
  --surface: #ffffff;
  --ink: #203029;
  --ink-soft: #4f6058;
  --brand: #2c6b36;
  --brand-2: #4ab647;
  --brand-dark: #2c5820;
  --accent: #7cad5f;
  --line: #cfd8cc;
  --ok: #1f7a43;
  --danger: #a33a2b;
  --radius: 14px;
  --shadow: 0 12px 36px rgba(30, 55, 37, 0.14);
  --container: min(1120px, 92vw);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 10%, rgba(74, 182, 71, 0.16), transparent 35%),
    radial-gradient(circle at 85% 5%, rgba(44, 107, 54, 0.18), transparent 30%),
    linear-gradient(180deg, #faf8f3 0%, var(--bg) 60%, #f2eee4 100%);
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  line-height: 1.6;
}

h1,
h2,
h3,
h4 {
  font-family: "Fraunces", Georgia, serif;
  line-height: 1.2;
  margin-top: 0;
}

a {
  color: var(--brand-dark);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
}

.skip-link:focus {
  left: 12px;
  top: 12px;
  z-index: 9999;
  background: #fff;
  padding: 10px 14px;
  border-radius: 8px;
}

.topbar {
  background: var(--brand);
  color: #fff;
  font-size: 0.92rem;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  padding: 8px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 110;
  background: rgba(250, 248, 243, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}

.brand-logo {
  width: clamp(118px, 16vw, 164px);
  height: auto;
  object-fit: contain;
}

.brand-title {
  margin: 0;
  font-size: 1.15rem;
}

.brand-sub {
  margin: 0;
  font-size: 0.8rem;
  color: var(--ink-soft);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 10px;
  padding: 8px 11px;
  cursor: pointer;
}

.site-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 18px;
  align-items: center;
}

.site-nav a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
}

.site-nav a.active,
.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--brand-dark);
}

.btn {
  display: inline-block;
  background: var(--brand);
  color: #fff;
  padding: 11px 16px;
  border-radius: 10px;
  text-decoration: none;
  border: 1px solid transparent;
  font-weight: 700;
  cursor: pointer;
}

.btn:hover,
.btn:focus-visible {
  background: var(--brand-2);
}

.btn.secondary {
  background: #fff;
  color: var(--brand);
  border-color: var(--brand);
}

.hero {
  padding: 72px 0 42px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 28px;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: var(--brand-dark);
  font-size: 0.82rem;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  margin: 0.2em 0;
}

.lead {
  font-size: 1.08rem;
  color: var(--ink-soft);
}

.hero-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--surface);
  border: 1px solid rgba(44, 107, 54, 0.22);
}

.hero-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.metrics {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.metric {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 8px 11px;
  font-size: 0.92rem;
}

.section {
  padding: 54px 0;
}

.section.alt {
  background: rgba(255, 255, 255, 0.7);
  border-block: 1px solid var(--line);
}

.grid-3 {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-2 {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: 0 6px 20px rgba(30, 55, 37, 0.08);
}

.media-card {
  overflow: hidden;
}

.media-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid rgba(44, 107, 54, 0.2);
  margin-bottom: 12px;
}

.card-image-link {
  display: block;
}

.leaflet-map {
  width: 100%;
  height: 300px;
  border: 1px solid rgba(44, 107, 54, 0.2);
  border-radius: 10px;
}

.card h3 {
  margin-bottom: 8px;
}

.news-item,
.plant-card {
  display: grid;
  gap: 10px;
}

.news-item img {
  max-height: 300px;
}

.news-item time {
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.page-title {
  padding: 58px 0 22px;
}

.page-title h1 {
  margin-bottom: 8px;
}

.breadcrumbs {
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid var(--line);
}

th,
td {
  text-align: left;
  padding: 10px;
  border-bottom: 1px solid var(--line);
}

th {
  background: var(--bg-alt);
}

.form-row {
  display: grid;
  gap: 10px;
  margin-bottom: 12px;
}

label {
  font-weight: 600;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid #bfc8bc;
  border-radius: 8px;
  padding: 10px;
  font: inherit;
  background: #fff;
}

textarea {
  min-height: 130px;
}

.form-note {
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.notice {
  padding: 12px;
  border-radius: 10px;
  margin-top: 12px;
}

.notice.ok {
  background: #e6f5eb;
  border: 1px solid #bbe4c8;
  color: #0f5930;
}

.notice.warn {
  background: #fcefe9;
  border: 1px solid #f2cabb;
  color: #7d2f1f;
}

footer {
  background: #17261f;
  color: #edf3ee;
  padding: 42px 0;
}

footer a {
  color: #dce8df;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 22px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 18px;
  padding-top: 16px;
  font-size: 0.92rem;
  color: #d1ddd4;
}

.cookie-banner {
  position: fixed;
  inset: auto 12px 12px;
  z-index: 300;
  max-width: 700px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 14px;
  display: none;
}

.cookie-banner.show {
  display: block;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 14px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.webshop-layout {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 18px;
  align-items: start;
}

.cart-panel {
  position: sticky;
  top: 92px;
}

.cart-list {
  display: grid;
  gap: 10px;
  margin-bottom: 14px;
}

.cart-item {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px;
  background: #fff;
}

.cart-item h4 {
  margin: 0 0 6px;
  font-size: 1rem;
}

.cart-item-controls {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 8px;
  align-items: center;
}

.cart-item-controls input {
  margin: 0;
}

.cart-total {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--brand-dark);
}

.inline-btn {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  border-radius: 8px;
  padding: 7px 10px;
  cursor: pointer;
}

.inline-btn:hover,
.inline-btn:focus-visible {
  border-color: var(--brand);
  color: var(--brand-dark);
}

.note-pickup {
  border-left: 4px solid var(--brand);
  background: #f1f8ee;
  padding: 10px 12px;
  border-radius: 8px;
  margin-bottom: 10px;
}

.plant-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
}

.plant-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.plant-body {
  padding: 10px;
}

.price {
  font-weight: 700;
  color: var(--brand);
}

.badge {
  display: inline-block;
  font-size: 0.76rem;
  background: var(--bg-alt);
  border-radius: 100px;
  padding: 4px 8px;
}

.plant-specs {
  width: 100%;
  font-size: 0.88rem;
  margin: 4px 0;
  border: none;
  background: none;
}

.plant-specs th,
.plant-specs td {
  border: none;
  background: none;
}

.plant-specs th {
  text-align: left;
  color: var(--ink-soft);
  font-weight: 600;
  padding: 2px 8px 2px 0;
  white-space: nowrap;
  vertical-align: top;
}

.plant-specs td {
  padding: 2px 0;
}

.plant-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}

.plant-modal-overlay,
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20, 25, 15, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 1000;
}

.plant-modal-overlay[hidden],
.modal-overlay[hidden] {
  display: none;
}

.plant-modal,
.modal-card {
  position: relative;
  background: #fff;
  border-radius: 12px;
  max-width: 560px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 24px;
}

.modal-card {
  text-align: center;
  padding: 32px 24px;
}

.modal-icon {
  width: 56px;
  height: 56px;
  background: #e8f5e9;
  color: var(--brand, #2e7d32);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 16px;
}

.modal-card h2 {
  margin-top: 0;
  margin-bottom: 12px;
}

.modal-card p {
  color: var(--muted, #445);
  margin-bottom: 20px;
  line-height: 1.5;
}

.plant-modal img {
  width: 100%;
  max-height: 320px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 14px;
}

.plant-modal-close {
  position: absolute;
  top: 10px;
  right: 12px;
  border: none;
  background: transparent;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  color: var(--ink);
  padding: 4px 8px;
}

.plant-modal-close:hover,
.plant-modal-close:focus-visible {
  color: var(--brand-dark);
}

/* Campaign slider */
.campaign-slider-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.campaign-slider-section h2 {
  align-self: flex-start;
}

.campaign-slider {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  width: 800px;
  max-width: 100%;
}

.campaign-track {
  display: flex;
  transition: transform 0.45s ease;
  will-change: transform;
}

.campaign-slide {
  min-width: 100%;
  box-sizing: border-box;
  height: clamp(220px, 56vw, 600px);
  background: var(--bg-alt);
}

.campaign-slide img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: var(--radius);
  object-fit: contain;
}

.campaign-prev,
.campaign-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(44, 107, 54, 0.75);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 2.4rem;
  height: 2.4rem;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background 0.2s;
}

.campaign-prev:hover,
.campaign-next:hover,
.campaign-prev:focus-visible,
.campaign-next:focus-visible {
  background: rgba(44, 107, 54, 1);
}

.campaign-prev { left: 0.6rem; }
.campaign-next { right: 0.6rem; }

.campaign-dots {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.6rem 0 0.2rem;
}

.campaign-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: rgba(44, 107, 54, 0.25);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s;
}

.campaign-dot.active {
  background: rgba(44, 107, 54, 0.85);
}

.reveal {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(14px);
    animation: riseIn 0.6s ease forwards;
  }

  .reveal:nth-child(2) {
    animation-delay: 0.07s;
  }

  .reveal:nth-child(3) {
    animation-delay: 0.14s;
  }
}

@keyframes riseIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .grid-3,
  .grid-2,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .grid-3.service-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .webshop-layout {
    grid-template-columns: 1fr;
  }

  .cart-panel {
    position: static;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    right: 4vw;
    top: 70px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 12px;
    min-width: 240px;
    display: none;
  }

  .site-nav.open {
    display: block;
  }

  .site-nav ul {
    display: grid;
    gap: 10px;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 40px;
  }

  .grid-3.service-cards {
    grid-template-columns: 1fr;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .cookie-banner {
    inset: auto 8px 8px;
  }
}


