:root {
  --bg: #F9F9F7;
  --surface: #FFFFFF;
  --surface-soft: #F1F1EC;
  --green: #2D4F1E;
  --green-soft: #E6EDE2;
  --text: #1F2937;
  --muted: #60706B;
  --sand: #D1B07C;
  --sand-soft: #F1E4CD;
  --line: #E4E4DC;
  --radius: 8px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  text-align: left;
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

.container {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(249, 249, 247, 0.94);
  border-bottom: 1px solid rgba(228, 228, 220, 0.9);
  backdrop-filter: blur(18px);
}

.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--green);
  font-size: 1.08rem;
  font-weight: 800;
  white-space: nowrap;
}

.logo-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: var(--green);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 800;
}

.logo-img {
  display: block;
  height: 40px;
  width: auto;
  background: var(--green);
  border-radius: var(--radius);
  padding: 4px 8px;
}

.nav-toggle {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--green);
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  width: 18px;
  height: 2px;
  display: block;
  background: currentColor;
  border-radius: 999px;
}

.nav-toggle::before {
  transform: translateY(-6px);
}

.nav-toggle::after {
  transform: translateY(6px);
}

.nav-links {
  position: absolute;
  left: 16px;
  right: 16px;
  top: 78px;
  display: none;
  flex-direction: column;
  gap: 8px;
  padding: 12px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  max-height: calc(100dvh - 90px);
  overflow-y: auto;
}

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

.nav-links a {
  padding: 11px 12px;
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

.nav-links a:visited {
  color: var(--muted);
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  background: var(--green-soft);
  color: var(--green);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 0;
  border-radius: var(--radius);
  background: var(--green);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  background: #244218;
  box-shadow: 0 10px 22px rgba(45, 79, 30, 0.16);
}

.button-secondary {
  background: var(--surface);
  color: var(--green);
  border: 1px solid rgba(45, 79, 30, 0.2);
}

.button-secondary:hover {
  background: var(--green-soft);
  box-shadow: none;
}

.nav-links .button {
  background: transparent;
  color: var(--muted);
  border: none;
  box-shadow: none;
  min-height: unset;
  padding: 9px 10px;
  font-weight: 700;
  font-size: 0.94rem;
}

.nav-links .button:hover,
.nav-links .button[aria-current="page"] {
  background: var(--green-soft);
  color: var(--green);
  transform: none;
  box-shadow: none;
}

.page-hero,
.home-hero {
  padding: 32px 0 68px;
}

.home-hero-grid,
.split-layout {
  display: grid;
  gap: 24px;
}

.hero-media,
.page-media {
  overflow: hidden;
  border-radius: var(--radius);
}

.page-media {
  background: var(--green-soft);
}

.hero-media img {
  height: auto;
  min-height: 0;
  object-fit: contain;
}

.hero-eco {
  margin: 0;
  padding: 14px 18px 4px;
  color: var(--green);
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 800;
  text-align: center;
  letter-spacing: 0.02em;
  line-height: 1.4;
}

.hero-eco span {
  display: block;
}

.hero-eco-num {
  display: block;
  font-size: clamp(2.4rem, 7vw, 3.4rem);
  font-weight: 800;
  color: var(--green);
  line-height: 1.05;
  letter-spacing: -0.01em;
}

.page-media img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.page-media--contain img {
  aspect-ratio: auto;
  object-fit: contain;
}

.hero-copy,
.page-copy {
  display: grid;
  gap: 18px;
  align-content: center;
}

.eyebrow {
  width: fit-content;
  margin: 0;
  padding: 6px 10px;
  border-radius: var(--radius);
  background: var(--sand-soft);
  color: #6B4F24;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--text);
  line-height: 1.12;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  font-size: clamp(2.45rem, 10vw, 5rem);
}

h2 {
  font-size: clamp(2rem, 7vw, 3.25rem);
}

h3 {
  font-size: 1.18rem;
}

p {
  margin: 0;
}

.lead {
  max-width: 690px;
  color: var(--muted);
  font-size: clamp(1.04rem, 2vw, 1.25rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}

section {
  padding: 40px 0;
}

.section-muted {
  background: var(--surface-soft);
}

.section-green {
  background: var(--green);
  color: #fff;
}

.section-green h1,
.section-green h2,
.section-green h3 {
  color: #fff;
}

.section-green p {
  color: rgba(255, 255, 255, 0.78);
}

.section-green .eyebrow {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.section-head {
  display: grid;
  gap: 14px;
  margin-bottom: 28px;
}

.section-head p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.04rem;
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 16px;
}

.card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.card-link {
  display: block;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.card-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(45, 79, 30, 0.13);
  border-color: rgba(45, 79, 30, 0.35);
}

.card-link:hover .tag {
  background: var(--green);
  color: #fff;
}

:target {
  scroll-margin-top: 88px;
  outline: 3px solid var(--sand);
  outline-offset: 4px;
  border-radius: var(--radius);
}

.card img.product-shot {
  object-fit: contain;
  background: var(--surface-soft);
  padding: 16px;
}

.card-body {
  padding: 20px;
}

.card p {
  margin-top: 10px;
  color: var(--muted);
}

.tag {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 5px 9px;
  border-radius: var(--radius);
  background: var(--green-soft);
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
}

.features {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.features li {
  display: flex;
  gap: 9px;
  color: var(--text);
  font-size: 0.94rem;
}

.features li::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  margin-top: 9px;
  border-radius: 50%;
  background: var(--sand);
}

.fact-strip {
  display: grid;
  gap: 10px;
}

.fact {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
}

.fact strong {
  display: block;
  color: var(--green);
  font-size: 1.35rem;
  line-height: 1.1;
}

.fact span {
  color: var(--muted);
  font-size: 0.9rem;
}

.content-panel {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
}

.content-panel article + article {
  margin-top: 22px;
}

.content-panel strong {
  color: var(--sand);
  font-size: 2rem;
  line-height: 1;
}

.info-card {
  padding: 20px;
  transition: transform 180ms ease, border-color 180ms ease;
}

.info-card:hover {
  transform: translateY(-2px);
  border-color: rgba(45, 79, 30, 0.32);
}

.info-meta {
  margin-bottom: 10px;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 800;
}

.gallery-grid {
  display: grid;
  gap: 12px;
}

.gallery-item {
  position: relative;
  min-height: 230px;
  overflow: hidden;
  margin: 0;
  border-radius: var(--radius);
  background: var(--surface-soft);
}

.gallery-item img {
  height: 100%;
  min-height: 230px;
  object-fit: cover;
  transition: transform 260ms ease;
}

.gallery-item:hover img {
  transform: scale(1.035);
}

.gallery-label {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 7px 10px;
  border-radius: var(--radius);
  background: rgba(31, 41, 55, 0.74);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
}

.city-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.filter-button {
  min-height: 40px;
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--muted);
  font-weight: 800;
  cursor: pointer;
}

.filter-button.is-active,
.filter-button:hover {
  border-color: var(--green);
  background: var(--green);
  color: #fff;
}

.distributor-card {
  display: grid;
  gap: 8px;
}

.distributor-card[hidden] {
  display: none;
}

.distributor-city {
  color: var(--green);
  font-weight: 800;
}

.form-grid {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.field {
  display: grid;
  gap: 6px;
}

.field label {
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--text);
  padding: 12px 13px;
  outline: 0;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(45, 79, 30, 0.12);
}

textarea {
  min-height: 118px;
  resize: vertical;
}

.cta-band {
  background: var(--green);
  text-align: center;
}

.cta-content {
  display: grid;
  gap: 18px;
  justify-items: center;
}

.cta-content h2 {
  color: #fff;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.82);
  max-width: 560px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 4px;
}

.cta-band .button {
  background: #fff;
  color: var(--green);
}

.cta-band .button:hover {
  background: var(--sand-soft);
  box-shadow: none;
  transform: translateY(-2px);
}

.cta-band .button-secondary {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
}

.cta-band .button-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.contact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  align-items: center;
  justify-content: center;
  padding-top: 6px;
}

.contact-row a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--green);
  font-weight: 700;
  font-size: 0.9rem;
  transition: opacity 150ms;
}

.contact-row a:hover {
  opacity: 0.78;
  text-decoration: underline;
}

.hero-copy .contact-row,
.page-copy .contact-row {
  justify-content: flex-start;
}

.cta-band .contact-row a {
  color: rgba(255, 255, 255, 0.88);
}

.cta-band .contact-row a:hover {
  color: #fff;
  opacity: 1;
}

.contact-cards {
  display: grid;
  gap: 12px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--text);
  transition: border-color 160ms, box-shadow 160ms;
}

.contact-card:hover {
  border-color: var(--green);
  box-shadow: 0 4px 14px rgba(45, 79, 30, 0.10);
}

.contact-card-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green);
}

.contact-card-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}

.contact-card-value {
  font-size: 1rem;
  font-weight: 700;
  color: var(--green);
}

.site-footer a {
  color: inherit;
}

.site-footer a:hover {
  color: #fff;
}

.cookie-policy-body {
  max-width: 780px;
  display: grid;
  gap: 24px;
}

.cookie-policy-body h2 {
  font-size: 1.45rem;
  margin-top: 12px;
}

.cookie-policy-body h3 {
  font-size: 1.05rem;
  color: var(--green);
}

.cookie-policy-body p,
.cookie-policy-body li {
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.7;
}

.cookie-policy-body ul {
  padding-left: 22px;
  display: grid;
  gap: 6px;
}

.cookie-policy-body a {
  color: var(--green);
  text-decoration: underline;
}

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.cookie-table th,
.cookie-table td {
  text-align: left;
  padding: 10px 14px;
  border: 1px solid var(--line);
}

.cookie-table th {
  background: var(--surface-soft);
  color: var(--text);
  font-weight: 700;
}

.cookie-table td {
  color: var(--muted);
  vertical-align: top;
}

.cookie-table tbody tr:hover td {
  background: var(--surface-soft);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #172015;
  color: rgba(255, 255, 255, 0.88);
  padding: 20px 0;
  box-shadow: 0 -4px 28px rgba(0, 0, 0, 0.22);
  transform: translateY(100%);
  transition: transform 340ms cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.is-visible {
  transform: translateY(0);
}

.cookie-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  gap: 16px;
  align-items: center;
}

.cookie-title {
  color: #fff;
  font-size: 0.97rem;
  font-weight: 700;
  margin: 0 0 5px;
}

.cookie-text p:not(.cookie-title) {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.68);
  margin: 0;
}

.cookie-text a {
  color: var(--sand);
  text-decoration: underline;
}

.cookie-text a:hover {
  color: #fff;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.cookie-decline {
  background: transparent;
  color: rgba(255, 255, 255, 0.82);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  box-shadow: none;
}

.cookie-decline:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  box-shadow: none;
  transform: none;
}

.cookie-accept {
  background: var(--green-soft);
  color: var(--green);
  box-shadow: none;
}

.cookie-accept:hover {
  background: #fff;
  box-shadow: none;
  transform: translateY(-1px);
}

@media (min-width: 680px) {
  section {
    padding: 64px 0;
  }

  .cookie-inner {
    grid-template-columns: 1fr auto;
    padding: 0 24px;
  }
}

.site-footer {
  padding: 42px 0;
  background: #172015;
  color: rgba(255, 255, 255, 0.78);
}

.footer-layout {
  display: grid;
  gap: 24px;
}

.footer-brand {
  color: #fff;
  font-size: 1.24rem;
  font-weight: 800;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-links a:hover {
  color: #fff;
}

.footer-btn {
  padding: 5px 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  font-size: 0.8rem;
  font-weight: 700;
  transition: background 150ms, border-color 150ms;
}

.footer-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff !important;
}

.footer-icons {
  display: flex;
  gap: 14px;
  align-items: flex-end;
  opacity: 0.65;
}

@media (min-width: 680px) {
  .container {
    width: min(100% - 48px, var(--container));
  }

  .grid-2,
  .form-grid,
  .contact-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .fact-strip {
    grid-template-columns: repeat(3, 1fr);
  }

  .field-full {
    grid-column: 1 / -1;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item:first-child {
    grid-row: span 2;
  }

  .gallery-item:first-child,
  .gallery-item:first-child img {
    min-height: 472px;
  }
}

@media (min-width: 920px) {
  .nav-toggle {
    display: none;
  }

  .nav-links {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4px;
    padding: 0;
    border: 0;
    background: transparent;
  }

  .nav-links a {
    padding: 9px 10px;
  }

  .home-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(390px, 0.82fr);
    align-items: stretch;
  }

  .hero-media {
    order: 2;
    min-height: 0;
    padding-top: 48px;
  }

  .hero-media img {
    min-height: 0;
  }

  .hero-copy {
    order: 1;
    padding: 48px 0;
  }

  .split-layout {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer-layout {
    grid-template-columns: 1.2fr 1fr auto;
    align-items: start;
  }
}

@media (max-width: 420px) {
  .hero-actions .button {
    width: 100%;
  }

  h1 {
    font-size: 2.35rem;
  }
}
