/*
Theme Name:   Mückenschutz
Template:     twentytwentyfive
Version:      1.0
*/

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --sage:       #7ba28f;
  --sage-dark:  #6a917e;
  --navy:       #314c62;
  --navy-dark:  #1e3040;
  --white:      #ffffff;
  --gray-light: #ebebec;
  --gray-mid:   #d4d4d5;
  --gray-text:  #5a6470;
  --text:       #1e2d3a;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Manrope', system-ui, sans-serif;

  --radius:    6px;
  --radius-lg: 12px;
  --shadow-sm: 0 2px 8px rgba(30, 48, 64, 0.08);
  --shadow-md: 0 6px 24px rgba(30, 48, 64, 0.12);
  --shadow-lg: 0 16px 48px rgba(30, 48, 64, 0.16);
  --trans:     0.28s ease;
}

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

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text);
  background: var(--white);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.2;
  color: var(--navy-dark);
}

h1 { font-size: clamp(43px, 5vw, 72px); font-weight: 300; }
h2 { font-size: clamp(34px, 3.5vw, 50px); font-weight: 300; }
h3 { font-size: clamp(23px, 2.5vw, 32px); font-weight: 400; }
h4 { font-size: 21px; font-weight: 600; }

p {
  font-family: var(--font-body);
  font-size: 1.12rem;
  color: var(--gray-text);
  line-height: 1.85;
}

.lead {
  font-size: 1.28rem;
  color: var(--gray-text);
  max-width: 640px;
}

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

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

.section {
  padding: 96px 0;
}

.section--sm {
  padding: 64px 0;
}

.section--gray {
  background: var(--gray-light);
}

.section__header {
  text-align: center;
  margin-bottom: 64px;
}

.section__header h2 {
  margin-bottom: 16px;
}

.section__header .lead {
  margin: 0 auto;
}

.section__eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 12px;
}

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

.btn--primary {
  background: var(--sage);
  color: var(--white);
  border-color: var(--sage);
}
.btn--primary:hover {
  background: var(--sage-dark);
  border-color: var(--sage-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(123, 162, 143, 0.35);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn--outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  transform: translateY(-1px);
}

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

.btn--lg {
  padding: 17px 40px;
  font-size: 0.95rem;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: background var(--trans), padding var(--trans), box-shadow var(--trans);
}

.site-header.scrolled {
  background: rgba(30, 48, 64, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 10px 0;
  box-shadow: 0 2px 24px rgba(0,0,0,0.18);
}

.site-header.header--light {
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.site-header.header--light .nav__logo img {
  filter: none;
}

.site-header.header--light .nav__link {
  color: var(--navy);
}

.site-header.header--light .nav__link:hover,
.site-header.header--light .nav__link.active {
  color: var(--sage);
}

.site-header.header--light .hamburger span {
  background: var(--navy);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.97);
  padding: 10px 22px;
  border-radius: 12px;
  transition: box-shadow var(--trans);
}

.nav__logo:hover {
  box-shadow: 0 3px 16px rgba(0,0,0,0.2);
}

.nav__logo img {
  height: 170px;
  width: auto;
  filter: none;
  transition: none;
}

.site-header.scrolled .nav__logo {
  padding: 6px 16px;
}

.site-header.scrolled .nav__logo img {
  height: 72px;
  filter: none;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav__link {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--navy);
  position: relative;
  transition: color var(--trans);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--sage);
  transition: width var(--trans);
}

.nav__link:hover {
  color: var(--sage);
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

.nav__link.active {
  color: var(--sage);
}

.site-header.scrolled .nav__link {
  color: rgba(255,255,255,0.88);
}
.site-header.scrolled .nav__link:hover,
.site-header.scrolled .nav__link.active {
  color: var(--sage);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  transition: all var(--trans);
  transform-origin: center;
}

.site-header.scrolled .hamburger span {
  background: var(--white);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav__mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--navy-dark);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--trans);
}

.nav__mobile.open {
  opacity: 1;
  pointer-events: all;
}

.nav__mobile .nav__link {
  font-size: 1.6rem;
  font-family: var(--font-display);
  font-weight: 300;
  color: rgba(255,255,255,0.8);
}

.nav__mobile .nav__link.active {
  color: var(--sage);
}

.nav__mobile-social {
  display: flex;
  gap: 16px;
  margin-top: 8px;
}

.nav__mobile-social .nav__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: rgba(255,255,255,0.7);
  transition: color var(--trans);
}

.nav__mobile-social .nav__social-link:hover {
  color: var(--sage);
}

.nav__mobile-social .nav__social-link svg {
  width: 24px;
  height: 24px;
}

.nav__mobile-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.8rem;
  cursor: pointer;
  line-height: 1;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--white);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    rgba(243, 248, 245, 0.88) 0%,
    rgba(243, 248, 245, 0.58) 45%,
    rgba(243, 248, 245, 0.12) 100%
  );
}

.hero__circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(49,76,98,0.07);
}

.hero__circle--1 {
  width: 600px;
  height: 600px;
  right: -180px;
  top: -120px;
}

.hero__circle--2 {
  width: 400px;
  height: 400px;
  right: 40px;
  top: 60px;
  border-color: rgba(123, 162, 143, 0.18);
}

.hero__circle--3 {
  width: 200px;
  height: 200px;
  right: 140px;
  top: 160px;
  border-color: rgba(123, 162, 143, 0.25);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.hero__eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 24px;
}

.hero__title {
  color: var(--navy-dark);
  margin-bottom: 8px;
  line-height: 1.1;
}

.hero__title em {
  font-style: italic;
  font-weight: 300;
  font-family: var(--font-display);
}

.hero__title .hero__title--light {
  display: block;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  color: var(--navy);
  margin-top: 4px;
}

.hero__sub {
  font-family: var(--font-body);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  color: var(--gray-text);
  margin-bottom: 40px;
  margin-top: 20px;
}

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

.hero__scroll {
  position: absolute;
  bottom: 44px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(49,76,98,0.6);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  animation: scrollFade 3s ease-in-out infinite;
}

@keyframes scrollFade {
  0%, 100% { opacity: 0.75; }
  50%       { opacity: 1;    }
}

.hero__scroll-line {
  width: 1.5px;
  height: 44px;
  background: linear-gradient(to bottom, var(--sage), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(0.6); }
}

.page-hero {
  padding: 180px 0 90px;
  background: var(--navy-dark);
  position: relative;
  overflow: hidden;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      -45deg,
      rgba(255,255,255,0.02) 0px,
      rgba(255,255,255,0.02) 1px,
      transparent 1px,
      transparent 40px
    );
}

.page-hero__content {
  position: relative;
  z-index: 1;
}

.page-hero__breadcrumb {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.page-hero__breadcrumb a {
  color: rgba(255,255,255,0.45);
  transition: color var(--trans);
}

.page-hero__breadcrumb a:hover {
  color: var(--sage);
}

.page-hero__breadcrumb span {
  color: rgba(255,255,255,0.25);
}

.page-hero h1 {
  color: var(--white);
  font-weight: 300;
  margin-bottom: 12px;
}

.page-hero p {
  color: rgba(255,255,255,0.6);
  font-size: 1.05rem;
}

.usp-strip {
  background: var(--white);
  border-bottom: 1px solid var(--gray-light);
  padding: 0;
}

.usp-strip__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  divide: 1px solid var(--gray-light);
}

.usp-item {
  padding: 40px 32px;
  text-align: center;
  border-right: 1px solid var(--gray-light);
  transition: background var(--trans);
}

.usp-item:last-child {
  border-right: none;
}

.usp-item:hover {
  background: var(--gray-light);
}

.usp-item__icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 16px;
  color: var(--sage);
}

.usp-item__icon svg {
  width: 100%;
  height: 100%;
}

.usp-item h4 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--navy-dark);
  margin-bottom: 8px;
}

.usp-item p {
  font-size: 0.93rem;
  color: var(--gray-text);
  line-height: 1.65;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--trans), box-shadow var(--trans);
  display: flex;
  flex-direction: column;
  position: relative;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--sage);
  transform: scaleX(0.3);
  transform-origin: left;
  transition: transform var(--trans);
}

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

.card:hover::before {
  transform: scaleX(1);
}

.card__image {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--gray-light);
}

.card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.card:hover .card__image img {
  transform: scale(1.04);
}

.card__body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card__title {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy-dark);
  margin-bottom: 12px;
  letter-spacing: 0.01em;
}

.card__text {
  font-size: 1.05rem;
  color: var(--gray-text);
  line-height: 1.78;
  flex: 1;
  margin-bottom: 20px;
}

.card__link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--sage);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--trans), color var(--trans);
}

.card__link:hover {
  gap: 10px;
  color: var(--sage-dark);
}

.card__link svg {
  width: 14px;
  height: 14px;
}

.about-teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-teaser__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.about-teaser__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-teaser__image::before {
  content: '';
  position: absolute;
  inset: -16px -16px auto auto;
  width: 120px;
  height: 120px;
  border-right: 2px solid var(--sage);
  border-top: 2px solid var(--sage);
  z-index: 1;
  pointer-events: none;
}

.about-teaser__text .section__eyebrow {
  display: block;
  margin-bottom: 12px;
}

.about-teaser__text h2 {
  margin-bottom: 24px;
}

.about-teaser__text p {
  margin-bottom: 20px;
}

.about-teaser__text .btn {
  margin-top: 12px;
}

.cta-banner {
  background: var(--navy-dark);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  text-align: center;
}

.cta-banner__bg {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      -45deg,
      rgba(255,255,255,0.015) 0px,
      rgba(255,255,255,0.015) 1px,
      transparent 1px,
      transparent 40px
    );
}

.cta-banner__content {
  position: relative;
  z-index: 1;
}

.cta-banner h2 {
  color: var(--white);
  font-weight: 300;
  margin-bottom: 16px;
}

.cta-banner p {
  color: rgba(255,255,255,0.65);
  font-size: 1.05rem;
  margin-bottom: 36px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.why-item {
  padding: 40px 32px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--sage);
  transition: transform var(--trans), box-shadow var(--trans);
}

.why-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.why-item__icon {
  width: 40px;
  height: 40px;
  color: var(--sage);
  margin-bottom: 20px;
}

.why-item__icon svg {
  width: 100%;
  height: 100%;
}

.why-item h3 {
  font-size: 1.25rem;
  font-weight: 600;
  font-family: var(--font-body);
  color: var(--navy-dark);
  margin-bottom: 12px;
}

.why-item p {
  font-size: 1.05rem;
  color: var(--gray-text);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--gray-mid);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.stat-item {
  background: var(--white);
  padding: 48px 32px;
  text-align: center;
}

.stat-item__number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--navy-dark);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-item__label {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-text);
}

.philosophy-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.philosophy-content p + p {
  margin-top: 20px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: start;
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-md);
}

.contact-form h3 {
  font-size: 1.7rem;
  font-weight: 400;
  margin-bottom: 32px;
  color: var(--navy-dark);
}

.form-group {
  margin-bottom: 22px;
}

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--gray-mid);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--trans), box-shadow var(--trans);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(123, 162, 143, 0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.form-group--checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.form-group--checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 2px;
  accent-color: var(--sage);
}

.form-group--checkbox label {
  font-size: 0.93rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--gray-text);
  line-height: 1.6;
}

.form-group--checkbox label a {
  color: var(--sage);
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: text-decoration-color var(--trans);
}

.form-group--checkbox label a:hover {
  text-decoration-color: var(--sage);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info__header {
  margin-bottom: 32px;
}

.contact-info__header h3 {
  margin-bottom: 12px;
}

.contact-info__header p {
  color: var(--gray-text);
}

.contact-info__items {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-info__item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(49,76,98,0.08);
}

.contact-info__item:last-child {
  border-bottom: none;
}

.contact-info__icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: rgba(123,162,143,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage);
}

.contact-info__icon svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.contact-info__label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-text);
  margin-bottom: 3px;
}

.contact-info__value {
  font-size: 1rem;
  font-weight: 500;
  color: var(--navy-dark);
}

.contact-info__value a {
  color: var(--navy-dark);
  transition: color var(--trans);
}

.contact-info__value a:hover {
  color: var(--sage);
}

.contact-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: transform var(--trans), box-shadow var(--trans);
}

.contact-card:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}

.contact-card__icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: rgba(123, 162, 143, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage);
}

.contact-card__icon svg {
  width: 20px;
  height: 20px;
}

.contact-card__label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-text);
  margin-bottom: 4px;
}

.contact-card__value {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--navy-dark);
}

.contact-card__value a {
  color: var(--navy-dark);
  transition: color var(--trans);
}

.contact-card__value a:hover {
  color: var(--sage);
}

.map-placeholder {
  background: var(--navy);
  border-radius: var(--radius-lg);
  height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  margin-top: 24px;
  position: relative;
  overflow: hidden;
}

.map-placeholder svg {
  width: 32px;
  height: 32px;
  color: rgba(255,255,255,0.3);
}

.legal-content {
  max-width: 760px;
}

.legal-content h2 {
  font-size: 1.5rem;
  font-weight: 400;
  margin-top: 48px;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--gray-light);
  color: var(--navy-dark);
}

.legal-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  font-family: var(--font-body);
  color: var(--navy-dark);
  margin-top: 28px;
  margin-bottom: 10px;
}

.legal-content p {
  margin-bottom: 14px;
  font-size: 1.05rem;
}

.legal-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 14px;
}

.legal-content ul li {
  font-size: 1.05rem;
  color: var(--gray-text);
  margin-bottom: 6px;
  line-height: 1.7;
}

.legal-content a {
  color: var(--sage);
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: text-decoration-color var(--trans);
}

.legal-content a:hover {
  text-decoration-color: var(--sage);
}

.legal-info-box {
  background: var(--gray-light);
  border-left: 3px solid var(--sage);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px;
  margin: 20px 0;
}

.legal-info-box p {
  margin: 0;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--navy);
  color: var(--white);
  padding: 20px 0;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.2);
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.cookie-banner__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.cookie-banner__text {
  flex: 1;
  min-width: 300px;
}

.cookie-banner__text p {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
  margin: 0;
}

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

.cookie-banner__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.cookie-banner .btn {
  padding: 11px 22px;
  font-size: 0.83rem;
}

.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 32px;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 32px;
}

.footer__logo {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,0.97);
  padding: 5px 13px;
  border-radius: 8px;
  margin-bottom: 20px;
  transition: box-shadow var(--trans);
}

.footer__logo:hover {
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
}

.footer__logo img {
  height: 170px;
  width: auto;
  filter: none;
  opacity: 1;
}

.footer__motto {
  color: rgba(255,255,255,0.55);
  margin-bottom: 8px;
  font-style: italic;
  font-family: var(--font-display);
  font-size: 1.1rem;
}

.footer__sub {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.04em;
}

.footer__heading {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links a {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--trans);
}

.footer__links a:hover {
  color: var(--sage);
}

.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 14px;
}

.footer__contact-item svg {
  width: 16px;
  height: 16px;
  color: var(--sage);
  flex-shrink: 0;
}

.footer__contact-item a {
  color: rgba(255,255,255,0.65);
  transition: color var(--trans);
}

.footer__contact-item a:hover {
  color: var(--sage);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer__copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}

.footer__legal-links {
  display: flex;
  gap: 24px;
}

.footer__legal-links a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  transition: color var(--trans);
}

.footer__legal-links a:hover {
  color: rgba(255,255,255,0.7);
}

.nav__social {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav__social-link {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: rgba(49,76,98,0.65);
  border: 1.5px solid rgba(49,76,98,0.25);
  transition: all var(--trans);
  flex-shrink: 0;
}

.nav__social-link:hover {
  color: var(--sage);
  border-color: var(--sage);
  background: rgba(123,162,143,0.08);
  transform: translateY(-1px);
}

.site-header.scrolled .nav__social-link {
  color: rgba(255,255,255,0.72);
  border-color: rgba(255,255,255,0.22);
}

.site-header.scrolled .nav__social-link:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.65);
  background: rgba(255,255,255,0.1);
}

.nav__social-link svg {
  width: 15px;
  height: 15px;
  display: block;
}

.footer__social {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}

.footer__social-link {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: rgba(255,255,255,0.5);
  border: 1.5px solid rgba(255,255,255,0.14);
  transition: all var(--trans);
}

.footer__social-link:hover {
  color: var(--sage);
  border-color: var(--sage);
  background: rgba(123,162,143,0.1);
  transform: translateY(-2px);
}

.footer__social-link svg {
  width: 16px;
  height: 16px;
  display: block;
}

.hero__products {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
  margin-bottom: 32px;
}

.hero__product-chip {
  display: inline-flex;
  align-items: center;
  padding: 5px 14px;
  border-radius: 20px;
  background: rgba(123, 162, 143, 0.13);
  border: 1px solid rgba(123, 162, 143, 0.45);
  color: var(--navy);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.hero__product-chip--more {
  background: transparent;
  border-color: rgba(49, 76, 98, 0.2);
  color: var(--gray-text);
}

.hero__bg-image {
  position: absolute;
  inset: 0;
  background-image: url('media/hero-background.webp');
  background-size: cover;
  background-position: center center;
  opacity: 0.5;
  z-index: 0;
}

.reveal {
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.hidden {
  opacity: 0;
  transform: translateY(24px);
}

.text-center { text-align: center; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.divider {
  width: 48px;
  height: 2px;
  background: var(--sage);
  margin: 20px 0;
}
.divider--center { margin: 20px auto; }

@media (max-width: 1024px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .footer__top > *:first-child {
    grid-column: 1 / -1;
  }
  .philosophy-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

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

  h1 { font-size: 38px; }
  h2 { font-size: 30px; }

  .nav__logo { padding: 8px 14px; }
  .nav__logo img { height: 88px; }

  .nav__links { display: none; }
  .nav__social { display: none; }
  .hamburger { display: flex; }
  .nav__mobile { display: flex; }

  .hero { min-height: 90vh; }
  .hero__circle { display: none; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { text-align: center; justify-content: center; }

  .usp-strip__inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .usp-item:nth-child(2) { border-right: none; }
  .usp-item:nth-child(1),
  .usp-item:nth-child(2) { border-bottom: 1px solid var(--gray-light); }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .about-teaser {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-form {
    padding: 28px 24px;
  }

  .footer__top {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer__top > *:first-child {
    grid-column: auto;
  }

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

  .cookie-banner__inner {
    flex-direction: column;
    gap: 20px;
  }

  .cookie-banner__actions {
    width: 100%;
    justify-content: center;
  }

  .page-hero {
    padding: 150px 0 70px;
  }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section { padding: 48px 0; }
  h1 { font-size: 34px; }
  h2 { font-size: 27px; }
  .nav__logo img { height: 76px; }
  .hero { min-height: 85vh; }

  .usp-strip__inner {
    grid-template-columns: 1fr 1fr;
  }

  .stat-item__number { font-size: 2.8rem; }
}

.wpcf7 { margin: 0; padding: 0; }
.wpcf7 form { margin: 0; }
.wpcf7 br { display: none; } 

.wpcf7 .wpcf7-form-control-wrap {
  display: block;
  margin-top: 6px;
}

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="url"],
.wpcf7 textarea,
.wpcf7 select {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--navy-dark);
  background: var(--white);
  border: 1.5px solid #d0d5da;
  border-radius: 8px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
  -webkit-appearance: none;
}

.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 input[type="tel"]:focus,
.wpcf7 textarea:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(123,162,143,0.18);
}

.wpcf7 textarea {
  resize: vertical;
  min-height: 140px;
}

.wpcf7 input[type="submit"],
.wpcf7 .wpcf7-submit {
  display: inline-block;
  width: 100%;
  padding: 16px 32px;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--white);
  background: var(--sage);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  margin-top: 8px;
}

.wpcf7 input[type="submit"]:hover,
.wpcf7 .wpcf7-submit:hover {
  background: var(--navy);
  box-shadow: 0 4px 18px rgba(49,76,98,0.25);
  transform: translateY(-1px);
}

.wpcf7 input[type="submit"]:active {
  transform: translateY(0);
}

.wpcf7 .wpcf7-acceptance {
  display: block;
  margin-top: 4px;
}

.wpcf7 .wpcf7-acceptance .wpcf7-list-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0;
}

.wpcf7 .wpcf7-acceptance input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  accent-color: var(--sage);
  margin-top: 3px;
  cursor: pointer;
}

.wpcf7 .wpcf7-acceptance .wpcf7-list-item-label {
  font-size: 0.92rem;
  color: var(--gray-text);
  line-height: 1.5;
}

.wpcf7 .wpcf7-acceptance .wpcf7-list-item-label a {
  color: var(--sage);
  text-decoration: underline;
}

.wpcf7 .wpcf7-not-valid {
  border-color: #e05252 !important;
}

.wpcf7 .wpcf7-not-valid-tip {
  display: block;
  margin-top: 4px;
  font-size: 0.82rem;
  color: #e05252;
}

.wpcf7 .wpcf7-response-output {
  margin: 16px 0 0;
  padding: 14px 18px;
  border-radius: 8px;
  font-size: 0.95rem;
  border: none !important;
}

.wpcf7 .wpcf7-mail-sent-ok {
  background: rgba(123,162,143,0.15);
  color: #2d6b4a;
}

.wpcf7 .wpcf7-mail-sent-ng,
.wpcf7 .wpcf7-spam-blocked,
.wpcf7 .wpcf7-validation-errors {
  background: rgba(224,82,82,0.1);
  color: #b33a3a;
}

.wpcf7 .ajax-loader {
  display: none;
}