:root {
  --primary: #527C23;
  --primary-dark: #3d5c1a;
  --primary-light: #6a9a2e;
  --bg-light: #f7f9f4;
  --bg-dark: #1a2e0a;
  --bg-cream: #eef3e6;
  --bg-white: #ffffff;
  --text-dark: #1a2e0a;
  --text-muted: #3d4a32;
  --text-on-dark: #f7f9f4;
  --accent-contrast: #d4e8b8;
  --shadow: 0 4px 24px rgba(26, 46, 10, 0.12);
  --radius: 8px;
  --max-width: 1200px;
  --font: "Segoe UI", system-ui, -apple-system, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-dark);
  background: var(--bg-light);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--primary-dark);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--primary);
}

h1, h2, h3, h4 {
  line-height: 1.25;
  color: var(--text-dark);
}

h1 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h2 { font-size: clamp(1.4rem, 3vw, 1.85rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.35rem); }

.container {
  width: min(100% - 2rem, var(--max-width));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--primary);
  color: var(--text-on-dark);
  padding: 0.5rem 1rem;
  z-index: 10000;
}

.skip-link:focus {
  left: 0;
}

.disclaimer-bar {
  background: var(--bg-dark);
  color: var(--text-on-dark);
  font-size: 0.8rem;
  padding: 0.5rem 1rem;
  text-align: center;
  line-height: 1.45;
}

.trust-bar {
  background: var(--bg-white);
  border-bottom: 1px solid #c5d4b0;
  padding: 1rem 0;
}

.trust-bar__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  text-align: center;
}

.trust-bar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.trust-bar__item .ph {
  font-size: 1.75rem;
  color: var(--primary);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.trust-card {
  background: rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 1.25rem;
  color: var(--text-on-dark);
}

.trust-card h3 {
  color: var(--text-on-dark);
  margin: 0.5rem 0;
}

.trust-card .ph {
  font-size: 2rem;
  color: var(--accent-contrast);
}

.footer-legal-note {
  font-size: 0.85rem;
  color: var(--accent-contrast);
  margin-bottom: 0.5rem;
}

.footer-odr {
  font-size: 0.85rem;
  color: var(--accent-contrast);
  margin-bottom: 0.5rem;
}

.footer-odr a {
  color: var(--accent-contrast);
  text-decoration: underline;
}

.transparency-box {
  background: var(--bg-cream);
  border: 2px solid var(--primary);
  border-radius: var(--radius);
  padding: 1.25rem;
  margin-bottom: 1.5rem;
}

.transparency-box h2 {
  margin-top: 0;
  font-size: 1.1rem;
}

.site-header {
  background: var(--bg-white);
  border-bottom: 2px solid var(--primary);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 700;
  font-size: 0.95rem;
}

.logo-link img {
  height: 42px;
  width: auto;
}

.nav-toggle {
  display: none;
  background: var(--primary);
  color: var(--text-on-dark);
  border: none;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 1.25rem;
}

.nav-toggle .ph {
  color: var(--text-on-dark);
  font-size: 1.5rem;
}

.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.25rem;
}

.main-nav a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

.hero-collage {
  position: relative;
  min-height: 420px;
  background: var(--bg-dark);
  overflow: hidden;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 0;
}

.hero-collage__text {
  padding: clamp(2rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--bg-cream);
  color: var(--text-dark);
}

.hero-collage__text h1 {
  margin-top: 0;
}

.hero-collage__images {
  display: grid;
  grid-template-columns: 1.65fr 0.85fr;
  grid-template-rows: 1fr 1fr;
  gap: 6px;
  min-height: 280px;
  padding: 0.75rem;
  overflow: hidden;
  align-items: center;
  justify-items: center;
}

.hero-collage__images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}

.hero-collage__images img:first-child {
  grid-row: 1 / -1;
  grid-column: 1;
  width: 112%;
  height: 108%;
  max-height: none;
  transform: rotate(-4deg);
  transform-origin: center center;
  box-shadow: 0 12px 32px rgba(26, 46, 10, 0.35);
  z-index: 2;
  position: relative;
}

.hero-collage__images img:not(:first-child) {
  transform: rotate(2deg);
  width: 100%;
  height: 100%;
}

.hero-collage .btn {
  align-self: flex-start;
  margin-top: 1rem;
}

.hero-collage__text .btn + .btn {
  margin-top: 0.75rem;
}

@media (min-width: 480px) {
  .hero-collage__text .btn + .btn {
    margin-left: 0.5rem;
    margin-top: 1rem;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--primary);
  color: var(--text-on-dark);
  text-decoration: none;
  border-radius: var(--radius);
  font-weight: 600;
  border: 2px solid var(--primary);
  transition: background 0.2s, color 0.2s;
}

.btn:hover {
  background: var(--primary-dark);
  color: var(--text-on-dark);
  border-color: var(--primary-dark);
}

.btn--outline {
  background: transparent;
  color: var(--primary-dark);
  border-color: var(--primary);
}

.btn--outline:hover {
  background: var(--primary);
  color: var(--text-on-dark);
}

.section--green .btn--outline,
.section--dark .btn--outline {
  border-color: var(--accent-contrast);
  color: var(--text-on-dark);
}

.section--green .btn--outline:hover,
.section--dark .btn--outline:hover {
  background: var(--accent-contrast);
  color: var(--bg-dark);
}

.btn .ph {
  color: inherit;
}

section {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}

.section--light {
  background: var(--bg-white);
  color: var(--text-dark);
}

.section--cream {
  background: var(--bg-cream);
  color: var(--text-dark);
}

.section--green {
  background: var(--primary);
  color: var(--text-on-dark);
}

.section--green h2,
.section--green h3,
.section--green a {
  color: var(--text-on-dark);
}

.section--green .ph {
  color: var(--accent-contrast);
}

.section--dark {
  background: var(--bg-dark);
  color: var(--text-on-dark);
}

.section--dark h2,
.section--dark h3 {
  color: var(--text-on-dark);
}

.section--dark .ph {
  color: var(--accent-contrast);
}

.section--dark a {
  color: var(--accent-contrast);
}

.section--green .interactive-intro,
.section--green .interactive-intro p,
.section--dark .interactive-intro,
.section--dark .interactive-intro p {
  color: var(--text-on-dark);
}

.section--dark .interactive-steps button {
  border-color: var(--accent-contrast);
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-on-dark);
}

.section--dark .interactive-steps button.is-active {
  background: var(--accent-contrast);
  color: var(--bg-dark);
}

.section-header {
  margin-bottom: 2rem;
}

.section-header .ph {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
  display: block;
}

.section--green .section-header .ph,
.section--dark .section-header .ph {
  color: var(--accent-contrast);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: start;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.product-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}

.product-row__item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  height: 100%;
}

.product-row__item .ph {
  font-size: 2rem;
  color: var(--primary);
}

.product-row__item p {
  flex: 1;
  margin: 0;
}

.product-row__item .tag {
  align-self: flex-start;
  margin-top: auto;
}

.product-row__banner {
  margin: 1.75rem 0 0;
}

.product-row__banner img {
  width: 100%;
  max-height: 320px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.interactive-section {
  border-radius: var(--radius);
  padding: 0;
  overflow: hidden;
}

.interactive-intro {
  margin-bottom: 1.5rem;
}

.interactive-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 1.25rem;
}

.interactive-tabs button {
  flex: 1 1 auto;
  min-width: 3rem;
  padding: 0.6rem 0.85rem;
  border: 2px solid var(--primary);
  background: var(--bg-white);
  color: var(--text-dark);
  border-radius: var(--radius);
  font-family: inherit;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.interactive-tabs button[aria-selected="true"] {
  background: var(--primary);
  color: var(--text-on-dark);
}

.section--green .interactive-tabs button {
  border-color: var(--accent-contrast);
  background: rgba(255, 255, 255, 0.12);
  color: var(--text-on-dark);
}

.section--green .interactive-tabs button[aria-selected="true"] {
  background: var(--accent-contrast);
  color: var(--bg-dark);
}

.interactive-panel {
  display: none;
  background: var(--bg-white);
  color: var(--text-dark);
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.interactive-panel.is-active {
  display: block;
}

.section--green .interactive-panel {
  background: rgba(255, 255, 255, 0.95);
}

.interactive-panel h3 {
  margin-top: 0;
  color: var(--primary);
}

.section--green .interactive-panel h3,
.section--dark .interactive-panel h3 {
  color: var(--primary);
}

.section--green .interactive-panel p,
.section--dark .interactive-panel p {
  color: var(--text-muted);
}

.section--green .interactive-panel strong,
.section--dark .interactive-panel strong {
  color: var(--primary-dark);
}

.interactive-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
}

.interactive-checklist li {
  margin-bottom: 0.75rem;
}

.interactive-checklist label {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  cursor: pointer;
  padding: 0.85rem;
  background: var(--bg-cream);
  border-radius: var(--radius);
  border: 2px solid transparent;
  transition: border-color 0.2s, background 0.2s;
}

.interactive-checklist input:checked + span {
  font-weight: 600;
}

.interactive-checklist label:has(input:checked) {
  border-color: var(--primary);
  background: #e8f0dc;
}

.section--green .interactive-checklist label,
.section--dark .interactive-checklist label {
  color: var(--text-dark);
  background: var(--bg-white);
}

.section--green .interactive-checklist label:has(input:checked),
.section--dark .interactive-checklist label:has(input:checked) {
  color: var(--text-dark);
  background: var(--bg-cream);
  border-color: var(--accent-contrast);
}

.interactive-progress {
  height: 8px;
  background: rgba(26, 46, 10, 0.15);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.interactive-progress__bar {
  height: 100%;
  width: 0;
  background: var(--primary);
  transition: width 0.3s ease;
}

.section--green .interactive-progress {
  background: rgba(255, 255, 255, 0.25);
}

.section--green .interactive-progress__bar {
  background: var(--accent-contrast);
}

.interactive-result {
  padding: 1rem 1.25rem;
  background: var(--bg-cream);
  color: var(--text-dark);
  border-radius: var(--radius);
  border-left: 4px solid var(--primary);
  margin-top: 1rem;
  min-height: 3rem;
}

.section--green .interactive-result,
.section--dark .interactive-result {
  color: var(--text-dark);
  background: var(--bg-white);
  border-left-color: var(--accent-contrast);
  box-shadow: var(--shadow);
}

.section--green .interactive-result strong,
.section--dark .interactive-result strong {
  color: var(--primary-dark);
}

.section--green .interactive-calc label {
  color: var(--text-on-dark);
}

.interactive-calc {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.interactive-calc label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.interactive-calc input,
.interactive-calc select {
  width: 100%;
  padding: 0.65rem;
  border: 2px solid #c5d4b0;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 1rem;
}

.interactive-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.interactive-steps button {
  padding: 0.5rem 1rem;
  border: 2px solid var(--primary);
  background: var(--bg-white);
  border-radius: var(--radius);
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
}

.interactive-steps button.is-active {
  background: var(--primary);
  color: var(--text-on-dark);
}

.card {
  background: var(--bg-white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--primary);
  color: var(--text-dark);
}

.section--green .card,
.section--dark .card {
  background: rgba(255, 255, 255, 0.08);
  border-left-color: var(--accent-contrast);
  color: var(--text-on-dark);
}

.media-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.media-block--reverse {
  direction: rtl;
}

.media-block--reverse > * {
  direction: ltr;
}

.media-block img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  object-fit: cover;
  max-height: 360px;
}

.media-block--img-height {
  align-items: stretch;
}

.media-block--img-height .media-block__img-height {
  width: 100%;
  height: 100%;
  min-height: 100%;
  max-height: none;
  object-fit: cover;
  object-position: center;
  align-self: stretch;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
  padding: 0.75rem;
  background: var(--bg-cream);
  border-radius: var(--radius);
}

.section--green .feature-list li,
.section--dark .feature-list li {
  background: rgba(255, 255, 255, 0.1);
}

.feature-list .ph {
  font-size: 1.5rem;
  color: var(--primary);
  flex-shrink: 0;
}

.section--green .feature-list .ph,
.section--dark .feature-list .ph {
  color: var(--accent-contrast);
}

.numbered-steps {
  counter-reset: step;
  list-style: none;
  padding: 0;
}

.numbered-steps li {
  counter-increment: step;
  position: relative;
  padding-left: 3rem;
  margin-bottom: 1.25rem;
}

.numbered-steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 2rem;
  height: 2rem;
  background: var(--primary);
  color: var(--text-on-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.timeline {
  border-left: 3px solid var(--primary);
  padding-left: 1.5rem;
  margin: 0;
}

.timeline-item {
  margin-bottom: 1.5rem;
  position: relative;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -1.65rem;
  top: 0.35rem;
  width: 12px;
  height: 12px;
  background: var(--primary);
  border-radius: 50%;
  border: 2px solid var(--bg-white);
}

.faq-list details {
  background: var(--bg-white);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  padding: 0;
  border: 1px solid #c5d4b0;
}

.faq-list summary {
  padding: 1rem 1.25rem;
  cursor: pointer;
  font-weight: 600;
  color: var(--text-dark);
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list details[open] summary {
  color: var(--primary-dark);
}

.faq-list .faq-answer {
  padding: 0 1.25rem 1rem;
  color: var(--text-muted);
}

.events-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.events-table th,
.events-table td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid #d4e0c8;
  color: var(--text-dark);
}

.events-table th {
  background: var(--primary);
  color: var(--text-on-dark);
}

.events-table tr:nth-child(even) td {
  background: var(--bg-cream);
}

.quote-block {
  border-left: 4px solid var(--primary);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  background: var(--bg-cream);
  font-style: italic;
  color: var(--text-muted);
}

.tag-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag {
  background: var(--primary);
  color: var(--text-on-dark);
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
}

.site-footer {
  background: var(--bg-dark);
  color: var(--text-on-dark);
  padding: 2.5rem 0 1.5rem;
}

.site-footer a {
  color: var(--accent-contrast);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-grid h3 {
  color: var(--text-on-dark);
  font-size: 1rem;
  margin-top: 0;
}

.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav li {
  margin-bottom: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 1rem;
  font-size: 0.9rem;
  text-align: center;
  color: var(--accent-contrast);
}

.contact-form {
  max-width: 560px;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--text-dark);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid #c5d4b0;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 1rem;
  background: var(--bg-white);
  color: var(--text-dark);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: 2px solid var(--primary);
  border-color: var(--primary);
}

.checkbox-group {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.checkbox-group input {
  width: auto;
  margin-top: 0.25rem;
}

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-top: 1.5rem;
}

.map-wrap iframe {
  width: 100%;
  min-height: 300px;
  border: 0;
  display: block;
}

.map-consent-notice {
  background: var(--bg-cream);
  color: var(--text-dark);
  padding: 1rem;
  border-radius: var(--radius);
  margin: 0 0 1rem;
  font-size: 0.9rem;
  line-height: 1.5;
}

.map-consent-notice a {
  color: var(--primary-dark);
  font-weight: 600;
}

.map-wrap .btn[data-map-load] {
  width: 100%;
  justify-content: center;
}

.contact-info-list {
  list-style: none;
  padding: 0;
}

.contact-info-list li {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
  align-items: flex-start;
}

.contact-info-list .ph {
  font-size: 1.35rem;
  color: var(--primary);
}

.success-box {
  text-align: center;
  padding: 4rem 1rem;
  max-width: 600px;
  margin: 0 auto;
}

.success-box .ph {
  font-size: 4rem;
  color: var(--primary);
}

.policy-content {
  max-width: 800px;
}

.policy-content h2 {
  margin-top: 2rem;
}

.policy-content ul {
  padding-left: 1.25rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-dark);
  color: var(--text-on-dark);
  padding: 1.25rem;
  z-index: 9999;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.25);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.cookie-banner.is-visible {
  transform: translateY(0);
}

.cookie-banner__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.cookie-banner__title {
  margin: 0 0 0.75rem;
  font-size: 1.15rem;
  color: var(--text-on-dark);
}

.cookie-banner p {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  color: var(--text-on-dark);
  line-height: 1.55;
}

.cookie-banner p a {
  color: var(--accent-contrast);
  font-weight: 600;
}

.cookie-settings__intro {
  font-size: 0.9rem;
  margin: 0 0 0.75rem;
  color: var(--text-on-dark);
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: stretch;
}

.cookie-banner .btn {
  font-size: 0.9rem;
  padding: 0.65rem 1.1rem;
  flex: 1 1 auto;
  min-width: 8.5rem;
  justify-content: center;
  text-align: center;
}

.cookie-banner .btn--reject {
  background: var(--bg-white);
  border: 2px solid var(--accent-contrast);
  color: var(--bg-dark);
  font-weight: 700;
}

.cookie-banner .btn--reject:hover {
  background: var(--accent-contrast);
  color: var(--bg-dark);
}

.cookie-settings {
  display: none;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-settings.is-open {
  display: block;
}

.cookie-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-toggle label {
  color: var(--text-on-dark);
}

.cookie-toggle input:disabled {
  opacity: 0.6;
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-white);
    border-bottom: 2px solid var(--primary);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .main-nav.is-open {
    max-height: 400px;
    box-shadow: var(--shadow);
  }

  .main-nav ul {
    flex-direction: column;
    padding: 1rem;
  }

  .hero-collage {
    grid-template-columns: 1fr;
  }

  .hero-collage__images {
    min-height: 200px;
    grid-template-columns: 1.4fr 1fr;
    padding: 0.5rem;
  }

  .hero-collage__images img:first-child {
    transform: rotate(-2deg);
    width: 108%;
    height: 105%;
  }

  .hero-collage__images img:not(:first-child) {
    transform: rotate(1deg);
  }

  .media-block,
  .media-block--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .media-block--img-height .media-block__img-height {
    min-height: 260px;
    height: auto;
    max-height: 420px;
  }

  .product-row {
    grid-template-columns: 1fr;
  }

  .product-row__banner img {
    max-height: 220px;
  }

  .events-table {
    font-size: 0.85rem;
  }

  .events-table th,
  .events-table td {
    padding: 0.5rem;
  }
}

@media (max-width: 320px) {
  .container {
    width: min(100% - 1rem, var(--max-width));
  }

  .logo-link span {
    font-size: 0.75rem;
  }

  .cookie-banner__actions {
    flex-direction: column;
  }

  .cookie-banner .btn {
    width: 100%;
    justify-content: center;
  }
}
