/* Plate Variety Guide — modern light theme */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,600;0,9..40,700;1,9..40,400&family=Outfit:wght@500;600;700&display=swap');
@import url('https://fonts.googleapis.com/icon?family=Material+Icons');

:root {
  --green: #1E7748;
  --green-dark: #156339;
  --green-light: #e8f5ee;
  --green-mid: #2d9a62;
  --bg: #f4f7f5;
  --surface: #ffffff;
  --surface-2: #eef4f0;
  --surface-3: #e3ede7;
  --text: #1a2420;
  --text-muted: #5a6b62;
  --text-on-green: #ffffff;
  --shadow-sm: 0 2px 8px rgba(26, 36, 32, 0.06);
  --shadow-md: 0 8px 24px rgba(26, 36, 32, 0.08);
  --shadow-lg: 0 16px 48px rgba(26, 36, 32, 0.1);
  --shadow-xl: 0 24px 64px rgba(30, 119, 72, 0.12);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --max: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--green);
  text-decoration: none;
  font-weight: 600;
}

a:hover,
a:focus-visible {
  color: var(--green-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

h1, h2, h3, h4 {
  font-family: 'Outfit', system-ui, sans-serif;
  line-height: 1.2;
  color: var(--text);
  font-weight: 700;
}

h1 { font-size: clamp(1.75rem, 5vw, 2.5rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.35rem, 4vw, 1.9rem); margin-top: 0; letter-spacing: -0.01em; }
h3 { font-size: 1.1rem; color: var(--green-dark); font-weight: 600; }

p { margin: 0 0 1rem; }

ul, ol {
  margin: 0 0 1rem;
  padding-left: 1.35rem;
}

.material-icons {
  vertical-align: middle;
  font-size: 1.35rem;
  color: var(--green);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--green);
  color: #fff;
  padding: 0.5rem 1rem;
  z-index: 9999;
  border-radius: var(--radius-sm);
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

/* Header */
.site-header {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 900;
  box-shadow: var(--shadow-sm);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.65rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  flex-wrap: nowrap;
}

.logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

.logo-link:hover {
  opacity: 0.85;
}

.logo-link img {
  width: 56px;
  height: 56px;
  display: block;
}

.menu-toggle {
  display: none;
}

.site-header nav {
  flex: 1;
  min-width: 0;
  display: flex;
  justify-content: flex-end;
}

.plain-nav {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.1rem;
  list-style: none;
  margin: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  max-width: 100%;
}

.plain-nav::-webkit-scrollbar {
  display: none;
}

.plain-nav li {
  flex-shrink: 0;
}

.plain-nav a {
  display: block;
  padding: 0.45rem 0.5rem;
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.7rem, 2.5vw, 0.88rem);
  border-radius: var(--radius-sm);
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}

.plain-nav a:hover,
.plain-nav a[aria-current="page"] {
  color: var(--green-dark);
  background: var(--green-light);
  text-decoration: none;
}

@media (min-width: 768px) {
  .header-inner {
    padding: 0.75rem 1.25rem;
    gap: 1rem;
  }
  .plain-nav {
    gap: 0.2rem;
  }
  .plain-nav a {
    padding: 0.5rem 0.75rem;
    font-size: 0.88rem;
  }
}

/* Disclaimer */
.disclaimer-bar {
  background: var(--surface-2);
  color: var(--text-muted);
  font-size: 0.8rem;
  padding: 0.6rem 1.25rem;
  text-align: center;
  box-shadow: inset 0 -1px 0 rgba(30, 119, 72, 0.06);
}

.disclaimer-bar p {
  margin: 0;
  max-width: var(--max);
  margin-inline: auto;
}

/* Hero */
.hero-collage {
  position: relative;
  min-height: 320px;
  padding: 2.5rem 1.25rem 3.5rem;
  background: linear-gradient(160deg, var(--green-light) 0%, var(--bg) 55%, var(--surface) 100%);
  overflow: hidden;
}

.hero-collage::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 60%;
  height: 120%;
  background: radial-gradient(circle, rgba(30, 119, 72, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 1.25rem;
  position: relative;
  z-index: 1;
}

.hero-fragment {
  background: var(--surface);
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.hero-fragment:nth-child(2) {
  margin-top: 0;
}

.hero-fragment.hero-img-wrap {
  padding: 0;
  overflow: hidden;
}

.hero-fragment img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.hero-tag {
  display: inline-block;
  background: var(--green-light);
  color: var(--green-dark);
  padding: 0.35rem 0.85rem;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  border-radius: 999px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: stretch;
    gap: 1.5rem;
  }
  .hero-fragment img { height: 100%; min-height: 300px; }
}

/* Sections */
main section {
  padding: 3rem 1.25rem;
}

.section-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.section-alt-a {
  background: var(--bg);
  color: var(--text);
}

.section-alt-b {
  background: var(--surface);
  color: var(--text);
}

.section-alt-c {
  background: var(--surface-2);
  color: var(--text);
}

.section-green {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-mid) 100%);
  color: var(--text-on-green);
  box-shadow: var(--shadow-xl);
}

.section-green h2 {
  color: #fff;
}

.section-green > .section-inner > p,
.section-green .split-media > div > p,
.section-green .section-inner > ol,
.section-green .section-inner > ul:not(.icon-list) {
  color: rgba(255, 255, 255, 0.92);
}

.section-green > .section-inner > h3 {
  color: #fff;
}

.section-green .faq-item p,
.section-green .faq-a,
.section-green .faq-a p {
  color: var(--text-muted);
}

.section-green .material-icons {
  color: #fff;
}

.section-green a {
  color: #fff;
  text-decoration: underline;
}

.section-green .faq-q,
.section-green .faq-q:hover {
  color: var(--text);
}

.section-green .faq-a,
.section-green .faq-a p {
  color: var(--text-muted);
}

.section-green .faq-q .material-icons {
  color: var(--green);
}

.section-paper {
  background: var(--surface);
  color: var(--text);
  box-shadow: var(--shadow-sm);
}

.section-paper h2,
.section-paper h3 {
  color: var(--text);
}

.section-paper a {
  color: var(--green);
}

.section-paper .material-icons {
  color: var(--green);
}

.section-paper p,
.section-paper li {
  color: var(--text);
}

/* Elevated content cards inside sections */
.section-alt-a .section-inner > h2 + p,
.section-alt-b .section-inner {
  /* default flow */
}

/* Blocks */
.split-media {
  display: grid;
  gap: 1.75rem;
  align-items: center;
}

.media-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.media-frame img {
  width: 100%;
  min-height: 220px;
  object-fit: cover;
}

@media (min-width: 700px) {
  .split-media {
    grid-template-columns: 1fr 1.05fr;
    gap: 2.5rem;
  }
  .split-media.reverse {
    grid-template-columns: 1.05fr 1fr;
  }
  .split-media.reverse .media-frame {
    order: -1;
  }
}

.card-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 540px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  .card-grid.three { grid-template-columns: repeat(3, 1fr); }
}

.grunge-card {
  background: var(--surface);
  color: var(--text);
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  transition: transform 0.25s, box-shadow 0.25s;
}

.grunge-card h3 {
  color: var(--green-dark);
  margin-top: 0;
}

.grunge-card p {
  color: var(--text-muted);
  margin-bottom: 0;
}

.section-green .grunge-card h3 {
  color: var(--green-dark);
}

.section-green .grunge-card p {
  color: var(--text-muted);
}

.grunge-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.grunge-card::after {
  display: none;
}

.icon-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.icon-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 0.85rem;
  padding: 1rem 1.15rem;
  background: var(--surface);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}

.section-green .icon-list li {
  background: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.icon-list li:last-child {
  margin-bottom: 0;
}

/* Creative icon listings */
.icon-feature-grid {
  display: grid;
  gap: 1rem;
  margin: 1.5rem 0 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 580px) {
  .icon-feature-grid.cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.icon-feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.15rem 1.25rem;
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  transition: transform 0.2s, box-shadow 0.2s;
}

.icon-feature-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.icon-feature-item strong {
  display: block;
  color: var(--text);
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.icon-feature-item span.desc {
  display: block;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.icon-badge {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green-light);
}

.icon-badge .material-icons {
  font-size: 1.55rem;
  color: var(--green-dark);
}

.icon-badge.tone-amber {
  background: #fff8e1;
}

.icon-badge.tone-amber .material-icons {
  color: #f57c00;
}

.icon-badge.tone-sky {
  background: #e3f2fd;
}

.icon-badge.tone-sky .material-icons {
  color: #1565c0;
}

.icon-badge.tone-rose {
  background: #fce4ec;
}

.icon-badge.tone-rose .material-icons {
  color: #c2185b;
}

.icon-badge.tone-earth {
  background: #efebe9;
}

.icon-badge.tone-earth .material-icons {
  color: #5d4037;
}

.listing-heading {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--green-dark);
  margin: 1.75rem 0 0.75rem;
}

.section-green .icon-feature-item {
  background: var(--surface);
}

.section-green .icon-feature-item strong,
.section-green .icon-feature-item span.desc {
  color: var(--text-muted);
}

.section-green .icon-feature-item strong {
  color: var(--text);
}

.section-green .listing-heading {
  color: rgba(255, 255, 255, 0.95);
}

.numbered-steps {
  counter-reset: step;
  list-style: none;
  padding: 0;
}

.numbered-steps li {
  counter-increment: step;
  margin-bottom: 1rem;
  padding: 1.15rem 1.15rem 1.15rem 3.5rem;
  position: relative;
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.section-green .numbered-steps li {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  box-shadow: none;
}

.numbered-steps li::before {
  content: counter(step);
  position: absolute;
  left: 1rem;
  top: 1.15rem;
  width: 2rem;
  height: 2rem;
  background: var(--green);
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  border-radius: 50%;
  font-size: 0.9rem;
  box-shadow: var(--shadow-sm);
}

/* FAQ */
.section-alt-a#faqs h2,
.section-alt-b#faqs h2,
.section-alt-c#faqs h2 {
  color: var(--text);
}

.section-green#faqs h2 {
  color: #fff;
}

.section-green#faqs h2 .material-icons {
  color: #fff;
}

.faq-item {
  margin-bottom: 0.75rem;
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow 0.2s;
  color: var(--text);
}

.faq-item.is-open {
  box-shadow: var(--shadow-md);
}

.section-green .faq-item {
  background: var(--surface);
}

.faq-q {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  color: var(--text);
  padding: 1.1rem 1.25rem;
  font-family: inherit;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
}

.faq-q .material-icons {
  flex-shrink: 0;
  transition: transform 0.25s;
}

.faq-a {
  padding: 0 1.25rem 1.15rem;
  display: none;
  color: var(--text-muted);
}

.faq-a p {
  color: var(--text-muted);
  margin-bottom: 0;
}

.faq-item.is-open .faq-a {
  display: block;
}

.faq-item.is-open .faq-q .material-icons {
  transform: rotate(180deg);
}

/* FAQ blocks inside green hero-style sections */
.section-alt-a .faq-q,
.section-alt-b .faq-q,
.section-alt-c .faq-q {
  color: var(--green-dark);
}

.section-alt-a .faq-a,
.section-alt-a .faq-a p,
.section-alt-b .faq-a,
.section-alt-b .faq-a p,
.section-alt-c .faq-a,
.section-alt-c .faq-a p {
  color: var(--text-muted);
}

/* Calendar table */
.events-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 0.9rem;
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.events-table th,
.events-table td {
  padding: 0.85rem 1rem;
  text-align: left;
}

.events-table th {
  background: var(--green);
  color: #fff;
  font-weight: 600;
}

.events-table tr:nth-child(even) td {
  background: var(--green-light);
}

.events-table tr:last-child td:first-child {
  border-bottom-left-radius: var(--radius);
}

.events-table tr:last-child td:last-child {
  border-bottom-right-radius: var(--radius);
}

.section-green .events-table {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

/* CTA */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: var(--green);
  color: #fff !important;
  text-decoration: none;
  font-weight: 600;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(30, 119, 72, 0.35);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  border: none;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(30, 119, 72, 0.4);
  background: var(--green-dark);
  color: #fff !important;
  text-decoration: none;
}

.btn-outline {
  background: var(--surface);
  color: var(--green-dark) !important;
  box-shadow: var(--shadow-sm);
}

.btn-outline:hover {
  background: var(--green-light);
  color: var(--green-dark) !important;
}

.section-green .btn-outline {
  background: rgba(255, 255, 255, 0.2);
  color: #fff !important;
  box-shadow: none;
}

.section-green .btn-outline:hover {
  background: rgba(255, 255, 255, 0.3);
  color: #fff !important;
}

/* Contact form */
.contact-form {
  max-width: 520px;
  background: var(--surface);
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.form-group {
  margin-bottom: 1.15rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.4rem;
  font-weight: 600;
  color: var(--text);
  font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--bg);
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
  border-radius: var(--radius-sm);
  box-shadow: inset 0 1px 3px rgba(26, 36, 32, 0.06);
  border: none;
  transition: box-shadow 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(30, 119, 72, 0.2), inset 0 1px 3px rgba(26, 36, 32, 0.06);
}

.checkbox-row {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.checkbox-row input {
  width: auto;
  margin-top: 0.3rem;
  accent-color: var(--green);
}

.map-wrap {
  margin-top: 1.5rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.map-wrap iframe {
  width: 100%;
  max-width: 100%;
  display: block;
}

.contact-details {
  list-style: none;
  padding: 0;
}

.contact-details li {
  display: flex;
  gap: 0.65rem;
  margin-bottom: 0.85rem;
  align-items: flex-start;
  padding: 1rem 1.15rem;
  background: var(--surface);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}

/* Footer */
.site-footer {
  background: var(--surface);
  padding: 2.5rem 1.25rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  box-shadow: 0 -8px 32px rgba(26, 36, 32, 0.06);
  margin-top: 2rem;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 1.5rem;
}

.footer-inner > p:first-child {
  color: var(--text);
  font-weight: 600;
}

.footer-legal-note {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 400;
  margin-top: 0.35rem;
}

.hero-fragment .btn + .btn {
  margin-left: 0.5rem;
}

@media (max-width: 420px) {
  .hero-fragment .btn + .btn {
    margin-left: 0;
    margin-top: 0.65rem;
  }
}

.disclaimer-bar p {
  max-width: 900px;
  margin-inline: auto;
  line-height: 1.5;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
}

.footer-links a {
  color: var(--green);
}

.footer-links button.footer-link-btn {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  font-weight: 600;
  color: var(--green);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-kvk {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  max-width: 560px;
  margin: 0 auto;
  background: var(--surface);
  padding: 1.25rem 1.5rem;
  z-index: 1000;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  display: none;
}

@media (min-width: 600px) {
  .cookie-banner {
    left: auto;
    right: 1.5rem;
    margin: 0;
  }
}

.cookie-banner.is-visible {
  display: block;
}

.cookie-banner:focus {
  outline: none;
}

.cookie-inner {
  max-width: none;
}

.cookie-banner h2 {
  font-size: 1.1rem;
  margin: 0 0 0.5rem;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.85rem;
}

.cookie-actions .btn {
  font-size: 0.85rem;
  padding: 0.55rem 1.1rem;
  cursor: pointer;
  font-family: inherit;
}

.cookie-settings {
  display: none;
  margin-top: 1rem;
  padding-top: 1rem;
  box-shadow: inset 0 1px 0 rgba(30, 119, 72, 0.08);
}

.cookie-settings.is-open {
  display: block;
}

.toggle-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.65rem;
  gap: 1rem;
  padding: 0.5rem 0;
}

.toggle-row label {
  font-weight: 600;
  color: var(--text);
}

.toggle-row input[type="checkbox"] {
  width: 1.25rem;
  height: 1.25rem;
  accent-color: var(--green);
}

.toggle-row input:disabled {
  opacity: 0.6;
}

/* Thank you */
.thank-you-box {
  text-align: center;
  padding: 4rem 1.25rem;
  max-width: 560px;
  margin: 0 auto;
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.thank-you-box .material-icons {
  font-size: 4rem;
  color: var(--green);
}

/* Policy pages */
.policy-content {
  max-width: 800px;
  background: var(--surface);
  padding: 2rem 2.25rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.policy-content h2 {
  margin-top: 2rem;
  font-size: 1.2rem;
  color: var(--green-dark);
}

.policy-content h2:first-of-type {
  margin-top: 0;
}

.policy-content h3 {
  font-size: 1.05rem;
  color: var(--green-dark);
  margin: 1.25rem 0 0.5rem;
}

.policy-content code {
  font-size: 0.88em;
  background: var(--green-light);
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
}

.policy-content table {
  margin: 1rem 0 1.5rem;
}

/* Utility */
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }

.lead {
  font-size: 1.15rem;
  color: var(--text-muted);
  font-weight: 500;
  line-height: 1.6;
}

.hero-fragment .lead {
  color: var(--green-dark);
}

.section-green .lead {
  color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 359px) {
  body { font-size: 0.94rem; }
  .header-inner { padding: 0.5rem 0.65rem; }
  .logo-link img { width: 48px; height: 48px; }
  .plain-nav a { padding: 0.4rem 0.4rem; font-size: 0.68rem; }
  main section { padding: 2rem 0.85rem; }
  .cookie-banner {
    left: 0.65rem;
    right: 0.65rem;
    bottom: 0.65rem;
  }
}
