/* =========================================================
   VÝŽIVA SK — Premium Stylesheet
   Palette: Deep Teal / Olive / Warm Beige
   Fonts: Playfair Display (headings) + Poppins (body)
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,600&family=Poppins:wght@300;400;500;600&display=swap');

/* ── CSS Variables ──────────────────────────────────────── */
:root {
  --teal:        #1a6b6b;
  --teal-dark:   #124f4f;
  --teal-light:  #2a8a8a;
  --olive:       #6b7c3a;
  --olive-light: #8a9c50;
  --beige:       #f5f0e8;
  --beige-dark:  #ede5d4;
  --cream:       #faf7f2;
  --brown:       #7a5c3a;
  --text-dark:   #2c2c2c;
  --text-mid:    #4a4a4a;
  --text-light:  #7a7a7a;
  --white:       #ffffff;
  --shadow-sm:   0 2px 12px rgba(26,107,107,0.08);
  --shadow-md:   0 8px 32px rgba(26,107,107,0.12);
  --shadow-lg:   0 20px 60px rgba(26,107,107,0.18);
  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   28px;
  --radius-xl:   48px;
  --transition:  0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font-head:   'Playfair Display', Georgia, serif;
  --font-body:   'Poppins', sans-serif;
}

/* ── Reset & Base ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background-color: var(--cream);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a  { color: inherit; text-decoration: none; }

/* ── Typography ─────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  line-height: 1.25;
  color: var(--teal-dark);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 700; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.8rem); font-weight: 600; }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); font-weight: 600; }
h4 { font-size: 1.15rem; font-weight: 600; }

p { margin-bottom: 1rem; color: var(--text-mid); font-weight: 300; }

.lead {
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--text-mid);
  line-height: 1.8;
}

/* ── Layout Utilities ───────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.container--narrow { max-width: 800px; }
.container--wide   { max-width: 1440px; }

section { padding: 96px 0; }
section:nth-child(even) { background-color: var(--beige); }

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 16px;
}

.section-title {
  margin-bottom: 20px;
}

.section-intro {
  max-width: 600px;
  margin-bottom: 56px;
}

.text-center { text-align: center; }
.text-center .section-intro { margin-left: auto; margin-right: auto; }

/* ── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 14px 32px;
  border-radius: var(--radius-xl);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}
.btn-primary:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,107,107,0.3);
}

.btn-outline {
  background: transparent;
  color: var(--teal);
  border-color: var(--teal);
}
.btn-outline:hover {
  background: var(--teal);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.3);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-sm { font-size: 0.8rem; padding: 10px 22px; }
.btn-lg { font-size: 1rem;   padding: 18px 44px; }

/* ── Header ─────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 22px 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}

/* Transparent state (homepage hero) */
.site-header.is-transparent {
  background: transparent;
}

/* Scrolled / any other page */
.site-header.is-scrolled,
.site-header.is-solid {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(26,107,107,0.1), var(--shadow-sm);
  padding: 14px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--teal-dark);
  transition: color var(--transition);
  flex-shrink: 0;
}

.site-logo__icon {
  width: 38px;
  height: 38px;
  background: var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.site-header.is-transparent .site-logo { color: var(--white); }
.site-header.is-transparent .site-logo__icon { background: rgba(255,255,255,0.2); border: 1.5px solid rgba(255,255,255,0.5); }

/* Nav */
.site-nav { display: flex; align-items: center; gap: 4px; }

.nav-link {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  color: var(--text-dark);
  transition: all var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 2px;
  background: var(--teal);
  border-radius: 2px;
  transition: width var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after { width: calc(100% - 32px); }

.nav-link:hover { color: var(--teal); }
.nav-link.active { color: var(--teal); font-weight: 600; }

.site-header.is-transparent .nav-link { color: rgba(255,255,255,0.9); }
.site-header.is-transparent .nav-link:hover { color: var(--white); }
.site-header.is-transparent .nav-link::after { background: var(--white); }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1001;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--teal-dark);
  border-radius: 2px;
  transition: all var(--transition);
}
.site-header.is-transparent .nav-toggle span { background: var(--white); }

.nav-toggle.is-open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.is-open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── Footer ─────────────────────────────────────────────── */
.site-footer {
  background: var(--teal-dark);
  color: rgba(255,255,255,0.8);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 56px;
}

.footer-brand .site-logo { color: var(--white); margin-bottom: 20px; }
.footer-brand .site-logo__icon { background: rgba(255,255,255,0.15); border: 1.5px solid rgba(255,255,255,0.3); }
.footer-brand p { font-size: 0.875rem; line-height: 1.7; color: rgba(255,255,255,0.65); }

.footer-col h5 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 20px;
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.75);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--white); }

.footer-contact { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; }
.footer-contact .icon {
  width: 32px; height: 32px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
  margin-top: 1px;
}
.footer-contact span { font-size: 0.85rem; color: rgba(255,255,255,0.7); line-height: 1.5; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.4); margin: 0; }
.footer-bottom-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-bottom-links a { font-size: 0.8rem; color: rgba(255,255,255,0.4); transition: color var(--transition); }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.8); }

/* ── Warning Banner ─────────────────────────────────────── */
.warning-bar {
  background: linear-gradient(135deg, #fff8e1 0%, #fff3cd 100%);
  border-bottom: 2px solid #e6a817;
  padding: 14px 0;
}

.warning-bar__inner {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.warning-bar__icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.warning-bar__text {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  color: #7a4f00;
  line-height: 1.55;
  letter-spacing: 0.01em;
}

/* ── Cookie Banner ──────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 24px; left: 24px; right: 24px;
  max-width: 920px;
  margin: 0 auto;
  left: 50%; transform: translateX(-50%);
  z-index: 9999;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 80px rgba(0,0,0,0.18), 0 0 0 1px rgba(26,107,107,0.06);
  padding: 32px 36px;
  display: flex;
  gap: 32px;
  align-items: center;
  animation: slideUp 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.cookie-banner.is-hidden {
  animation: slideDown 0.35s ease forwards;
}

@keyframes slideUp {
  from { opacity: 0; transform: translateX(-50%) translateY(24px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

@keyframes slideDown {
  from { opacity: 1; transform: translateX(-50%) translateY(0); }
  to   { opacity: 0; transform: translateX(-50%) translateY(24px); }
}

.cookie-banner__icon {
  font-size: 2.4rem;
  flex-shrink: 0;
}

.cookie-banner__body { flex: 1; min-width: 0; }

.cookie-banner__body h4 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  color: var(--teal-dark);
  margin-bottom: 8px;
}

.cookie-banner__body p {
  font-size: 0.82rem;
  color: var(--text-light);
  margin: 0;
  line-height: 1.6;
}

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

.cookie-banner__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-btn {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 11px 24px;
  border-radius: var(--radius-xl);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  text-align: center;
}

.cookie-btn--accept {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}
.cookie-btn--accept:hover {
  background: var(--teal-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(26,107,107,0.28);
}

.cookie-btn--partial {
  background: transparent;
  color: var(--teal);
  border-color: var(--teal);
}
.cookie-btn--partial:hover {
  background: var(--beige);
  transform: translateY(-1px);
}

.cookie-btn--decline {
  background: transparent;
  color: var(--text-light);
  border-color: var(--beige-dark);
}
.cookie-btn--decline:hover {
  border-color: var(--text-light);
  color: var(--text-dark);
}

/* ── Cards ──────────────────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.card__image {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.card__body { padding: 28px; }

.card__tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--olive);
  background: rgba(107,124,58,0.1);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.card__title {
  font-family: var(--font-head);
  font-size: 1.2rem;
  color: var(--teal-dark);
  margin-bottom: 12px;
  line-height: 1.35;
}

.card__text { font-size: 0.875rem; color: var(--text-light); margin: 0; }

.card__footer {
  padding: 0 28px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Icon cards */
.icon-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(26,107,107,0.06);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.icon-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(26,107,107,0.15);
}

.icon-card__icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, rgba(26,107,107,0.1), rgba(107,124,58,0.1));
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 22px;
}

.icon-card__title {
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: var(--teal-dark);
}

.icon-card__text { font-size: 0.875rem; color: var(--text-light); margin: 0; }

/* ── Grid helpers ───────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ── Scroll Animations ──────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-in.delay-1 { transition-delay: 0.1s; }
.fade-in.delay-2 { transition-delay: 0.2s; }
.fade-in.delay-3 { transition-delay: 0.3s; }
.fade-in.delay-4 { transition-delay: 0.4s; }
.fade-in.delay-5 { transition-delay: 0.5s; }

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-in-left.is-visible { opacity: 1; transform: translateX(0); }

.fade-in-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-in-right.is-visible { opacity: 1; transform: translateX(0); }

/* ── Hero (homepage) ────────────────────────────────────── */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(18, 79, 79, 0.72) 0%,
    rgba(26, 107, 107, 0.55) 50%,
    rgba(107, 124, 58, 0.35) 100%);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-top: 100px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
}

.hero__eyebrow::before {
  content: '';
  display: block;
  width: 32px; height: 1.5px;
  background: rgba(255,255,255,0.5);
}

.hero h1 { color: var(--white); margin-bottom: 24px; }

.hero h1 em {
  font-style: italic;
  color: rgba(255,255,255,0.85);
  display: block;
}

.hero .lead { color: rgba(255,255,255,0.8); max-width: 540px; margin-bottom: 40px; }

.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Decorative leaf shapes */
.hero__deco {
  position: absolute;
  z-index: 1;
  opacity: 0.12;
}

/* ── Page hero (inner pages) ────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 60%, var(--olive) 100%);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='1' fill='%23ffffff' fill-opacity='0.06'/%3E%3C/svg%3E") repeat;
}

.page-hero h1 { color: var(--white); }
.page-hero .lead { color: rgba(255,255,255,0.75); }

/* ── Breadcrumb ─────────────────────────────────────────── */
.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 20px;
}
.breadcrumb a { color: rgba(255,255,255,0.7); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb-sep { color: rgba(255,255,255,0.3); }

/* ── Divider / separator ────────────────────────────────── */
.divider {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--olive));
  border-radius: 3px;
  margin: 20px 0;
}
.divider--center { margin-left: auto; margin-right: auto; }

/* ── Pill / Tag ─────────────────────────────────────────── */
.pill {
  display: inline-block;
  padding: 5px 16px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 500;
}

.pill--teal  { background: rgba(26,107,107,0.1); color: var(--teal); }
.pill--olive { background: rgba(107,124,58,0.1); color: var(--olive); }
.pill--beige { background: var(--beige-dark); color: var(--brown); }

/* ── Table ──────────────────────────────────────────────── */
.table-wrap { overflow-x: auto; border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }

table { width: 100%; border-collapse: collapse; background: var(--white); }
thead { background: var(--teal); color: var(--white); }
thead th { padding: 16px 20px; font-family: var(--font-body); font-size: 0.82rem; font-weight: 600; letter-spacing: 0.06em; text-align: left; }
tbody tr { border-bottom: 1px solid var(--beige-dark); transition: background var(--transition); }
tbody tr:last-child { border-bottom: none; }
tbody tr:hover { background: var(--beige); }
tbody td { padding: 14px 20px; font-size: 0.875rem; color: var(--text-mid); }

/* ── Accordion ──────────────────────────────────────────── */
.accordion { display: flex; flex-direction: column; gap: 12px; }

.accordion-item {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--beige-dark);
  overflow: hidden;
  transition: box-shadow var(--transition);
}

.accordion-item.is-open { box-shadow: var(--shadow-sm); }

.accordion-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-dark);
  text-align: left;
  gap: 16px;
  transition: color var(--transition);
}
.accordion-trigger:hover { color: var(--teal); }
.accordion-item.is-open .accordion-trigger { color: var(--teal); }

.accordion-icon {
  width: 28px; height: 28px;
  background: var(--beige);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
  transition: transform var(--transition), background var(--transition);
}
.accordion-item.is-open .accordion-icon { transform: rotate(45deg); background: var(--teal); color: var(--white); }

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.accordion-body__inner { padding: 0 24px 24px; font-size: 0.875rem; color: var(--text-mid); line-height: 1.75; }

/* ── Quote / Callout ────────────────────────────────────── */
.callout {
  background: linear-gradient(135deg, rgba(26,107,107,0.05), rgba(107,124,58,0.07));
  border-left: 4px solid var(--teal);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 24px 28px;
  margin: 32px 0;
}
.callout p { color: var(--text-dark); font-weight: 400; margin: 0; }

blockquote {
  position: relative;
  padding: 32px 36px;
  background: var(--beige);
  border-radius: var(--radius-md);
  margin: 32px 0;
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--teal-dark);
  line-height: 1.6;
}
blockquote::before { content: '"'; position: absolute; top: -8px; left: 28px; font-size: 5rem; color: rgba(26,107,107,0.12); font-family: var(--font-head); line-height: 1; }
blockquote cite { display: block; margin-top: 14px; font-family: var(--font-body); font-size: 0.8rem; font-style: normal; color: var(--text-light); }

/* ── Form elements ──────────────────────────────────────── */
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.form-label { font-size: 0.82rem; font-weight: 500; color: var(--text-dark); }
.form-input, .form-textarea, .form-select {
  font-family: var(--font-body);
  font-size: 0.875rem;
  padding: 13px 16px;
  border: 1.5px solid var(--beige-dark);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--text-dark);
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(26,107,107,0.1);
}
.form-textarea { min-height: 140px; resize: vertical; }

/* ── Stat / number highlight ────────────────────────────── */
.stat-block { text-align: center; padding: 24px; }
.stat-block__number {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-block__label { font-size: 0.82rem; color: var(--text-light); font-weight: 400; }

/* ── Progress bar ───────────────────────────────────────── */
.progress { background: var(--beige-dark); border-radius: 20px; height: 8px; overflow: hidden; margin: 8px 0; }
.progress__bar {
  height: 100%;
  border-radius: 20px;
  background: linear-gradient(90deg, var(--teal), var(--olive-light));
  transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  width: 0;
}
.progress__bar.animate { width: var(--target-width, 60%); }

/* ── Scrolltop button ───────────────────────────────────── */
.scroll-top {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 44px; height: 44px;
  background: var(--teal);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  box-shadow: 0 4px 16px rgba(26,107,107,0.3);
  opacity: 0;
  transform: translateY(12px);
  transition: all var(--transition);
  z-index: 900;
}
.scroll-top.is-visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover { background: var(--teal-dark); transform: translateY(-2px); }

/* ── Utility ────────────────────────────────────────────── */
.sr-only { position: absolute; width: 1px; height: 1px; clip: rect(0,0,0,0); overflow: hidden; }
.mb-0 { margin-bottom: 0 !important; }
.mt-0 { margin-top: 0 !important; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.gap-32 { gap: 32px; }
.rounded { border-radius: var(--radius-md); }
.overflow-hidden { overflow: hidden; }
.w-100 { width: 100%; }

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  section { padding: 64px 0; }

  .site-nav {
    position: fixed;
    top: 0; right: 0;
    width: 280px; height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 90px 28px 40px;
    box-shadow: -8px 0 40px rgba(0,0,0,0.12);
    transform: translateX(100%);
    transition: transform var(--transition);
    z-index: 999;
    gap: 4px;
  }

  .site-nav.is-open { transform: translateX(0); }

  .nav-link { font-size: 1rem; padding: 12px 16px; width: 100%; }
  .nav-link::after { display: none; }

  .nav-toggle { display: flex; }

  .nav-overlay {
    display: none;
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.35);
    z-index: 998;
    backdrop-filter: blur(2px);
  }
  .nav-overlay.is-active { display: block; }

  .cookie-banner {
    flex-direction: column;
    bottom: 16px; left: 16px; right: 16px;
    padding: 24px;
    max-width: none;
    left: 16px;
    transform: none;
  }
  @keyframes slideUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  @keyframes slideDown {
    from { opacity: 1; transform: translateY(0); }
    to   { opacity: 0; transform: translateY(24px); }
  }
  .cookie-banner__actions { flex-direction: row; flex-wrap: wrap; width: 100%; }
  .cookie-btn { flex: 1; min-width: 120px; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }

  .grid-2,
  .grid-3,
  .grid-4 { grid-template-columns: 1fr; }

  .footer-bottom { flex-direction: column; text-align: center; }

  .scroll-top { bottom: 20px; right: 20px; }
}

@media (max-width: 480px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }

  .btn-lg { font-size: 0.9rem; padding: 16px 28px; }

  .warning-bar__text { font-size: 0.72rem; }
}

/* ── Print ──────────────────────────────────────────────── */
@media print {
  .site-header, .cookie-banner, .scroll-top, .nav-toggle { display: none !important; }
  body { background: white; }
  .hero { min-height: auto; padding: 40px 0; }
  .hero__bg, .hero__overlay { display: none; }
  .hero h1, .hero .lead { color: var(--text-dark) !important; }
}
