/* ============================================================
   Engels Bienenwelt – 1:1 Nachbau
   Werbeagentur Hoffmann
   ============================================================ */

/* ---------- 1. Custom Properties ---------- */
:root {
  --c-yellow:        #ecc31f;
  --c-yellow-dark:   #775e13;
  --c-topbar:        #573838;
  --c-brown-dark:    #532222;
  --c-brown:         #5e4631;
  --c-tan:           #ab7e5c;
  --c-orange:        #e79d19;
  --c-sage:          #9ba184;
  --c-sage-light:    #bfc593;
  --c-green:         #8bce7a;
  --c-green-light:   #a9da99;
  --c-olive-dark:    #45390f;
  --c-olive-mid:     #85753d;
  --c-olive-light:   #ae9b58;
  --c-white:         #fffdfd;
  --c-body:          #666666;
  --c-scrolltop:     #4e1208;

  --font-head: 'Lobster', cursive;
  --font-body: 'Open Sans', sans-serif;
  --font-logo: 'Baumans', cursive;

  --container: 1200px;
  --section-pad: 80px;
  --hero-h: 629px;
  --topbar-h: 61px;
}

/* ---------- 2. Reset / Base ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.6;
  color: var(--c-body);
  background: #ffffff;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; transition: color .2s ease, background-color .2s ease, opacity .2s ease; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 400;
  margin: 0 0 .5em;
  line-height: 1.35;
}

p { margin: 0 0 1em; }

ul { margin: 0 0 1em; padding-left: 1.4em; }
li { margin-bottom: .35em; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 15px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--c-yellow);
  color: var(--c-brown-dark);
  padding: 12px 20px;
  z-index: 999;
}
.skip-link:focus { left: 0; }

/* ---------- 3. Topbar ---------- */
.topbar {
  background: var(--c-topbar);
  color: #ffffff;
  padding: 10px 0;
  min-height: var(--topbar-h);
  display: flex;
  align-items: center;
  position: relative;
  z-index: 40;
}
.topbar p {
  margin: 0;
  font-family: Roboto, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.5;
}

/* ---------- 4. Hero / Header ---------- */
.hero {
  position: relative;
  min-height: var(--hero-h);
  background: url('../images/sunflower-bee-insect-pollination-nectar-flower.jpeg') center/cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.hero__inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 15px;
  position: relative;
  flex: 1;
}

/* Hauptnavigation oben rechts */
.nav-main {
  position: absolute;
  top: 0;
  right: 15px;
  background: var(--c-yellow);
  z-index: 30;
}
.nav-main ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-main a {
  display: block;
  font-family: var(--font-head);
  font-size: 24px;
  color: var(--c-brown);
  padding: 8px 30px;
  line-height: 33px;
  white-space: nowrap;
}
.nav-main a:hover,
.nav-main a:focus,
.nav-main .is-active a { color: #ffffff; }

/* CTA-Banner */
.hero__cta {
  position: absolute;
  top: 142px;
  left: 647px;
  right: calc(50% - 50vw);
  background: var(--c-orange);
  color: #ffffff;
  padding: 10px 30px;
  font-size: 34px;
  line-height: 1.25;
  z-index: 20;
}
.hero__cta:hover { background: #d18e12; }

/* Logo */
.hero__logo {
  position: absolute;
  top: 101px;
  left: 28px;
  width: 201px;
  z-index: 20;
}

/* Wortmarke */
.hero__wordmark {
  position: absolute;
  top: 303px;
  left: calc(50% - 50vw);
  width: 380px;
  background: rgba(255, 255, 255, .42);
  padding: 10px 50px;
  z-index: 20;
}
.hero__wordmark span {
  display: block;
  font-family: var(--font-head);
  font-size: 70px;
  line-height: 84px;
  color: #ffffff;
}

/* Sekundäre Navigation unten links */
.nav-secondary {
  position: absolute;
  bottom: 0;
  left: calc(50% - 50vw);
  width: 775px;
  max-width: 100vw;
  background: rgba(0, 0, 0, .28);
  z-index: 25;
}
.nav-secondary ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  background: var(--c-yellow);
  width: 774px;
  max-width: 100%;
}
.nav-secondary li { margin: 0; flex: 0 0 auto; }
.nav-secondary a {
  display: block;
  font-family: var(--font-head);
  font-size: 24px;
  color: var(--c-brown);
  padding: 8px 34px;
  line-height: 33px;
  white-space: nowrap;
}
.nav-secondary a:hover,
.nav-secondary a:focus,
.nav-secondary .is-active a { color: #ffffff; }

/* Burger */
.burger {
  display: none;
  position: absolute;
  top: 20px;
  right: 15px;
  width: 52px;
  height: 46px;
  background: var(--c-yellow);
  border: 0;
  cursor: pointer;
  z-index: 60;
  padding: 0;
  border-radius: 3px;
}
.burger span {
  display: block;
  width: 26px;
  height: 3px;
  margin: 5px auto;
  background: var(--c-brown);
  transition: transform .25s ease, opacity .25s ease;
}
.burger.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Offcanvas */
.offcanvas {
  position: fixed;
  top: 0;
  right: 0;
  width: 290px;
  max-width: 85vw;
  height: 100%;
  background: var(--c-topbar);
  transform: translateX(100%);
  transition: transform .3s ease;
  z-index: 120;
  padding: 80px 0 30px;
  overflow-y: auto;
}
.offcanvas.is-open { transform: translateX(0); }
.offcanvas ul { list-style: none; margin: 0; padding: 0; }
.offcanvas a {
  display: block;
  padding: 14px 26px;
  font-family: var(--font-head);
  font-size: 22px;
  color: var(--c-yellow);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}
.offcanvas a:hover { background: rgba(255, 255, 255, .08); color: #ffffff; }
.offcanvas__close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: none;
  border: 0;
  color: var(--c-yellow);
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
}
.backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .5);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
  z-index: 110;
}
.backdrop.is-visible { opacity: 1; visibility: visible; }
body.no-scroll { overflow: hidden; }

/* ---------- 5. Sections ---------- */
.section { padding: var(--section-pad) 0; }
.section--flush { padding: 0; }

.section--announce  { background: var(--c-yellow-dark); color: var(--c-white); text-align: center; }
.section--yellow    { background: var(--c-yellow); }
.section--tan       { background: var(--c-tan); color: var(--c-white); }
.section--sage      { background: var(--c-sage); color: var(--c-white); }
.section--sage-light{ background: var(--c-sage-light); color: var(--c-white); }
.section--green     { background: var(--c-green); color: var(--c-white); }
.section--green-light { background: var(--c-green-light); color: var(--c-white); }
.section--brown-dark{ background: var(--c-brown-dark); color: var(--c-white); }
.section--brown     { background: var(--c-brown); color: var(--c-white); }
.section--olive-dark{ background: var(--c-olive-dark); color: var(--c-white); }
.section--olive-mid { background: var(--c-olive-mid); color: var(--c-white); }
.section--olive-light { background: var(--c-olive-light); color: var(--c-white); }

.section--announce h2 { font-size: 40px; color: var(--c-white); }
.section--announce p  { font-size: 22px; line-height: 1.6; color: #f6f6f6; margin: 0; }

/* Split-Layout (Text + Bild) */
.split {
  display: flex;
  align-items: stretch;
  min-height: 480px;
}
.split__text {
  flex: 0 0 66.66%;
  max-width: 66.66%;
  padding: 50px 100px 50px 200px;
}
.split__media {
  flex: 0 0 33.34%;
  max-width: 33.34%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 320px;
}
.split--half .split__text { flex-basis: 50%; max-width: 50%; padding: 50px 60px 50px 200px; }
.split--half .split__media { flex-basis: 50%; max-width: 50%; }

.split__text h1,
.split__text h2 { font-size: 40px; color: var(--c-white); }
.split__text p  { font-size: 20px; line-height: 1.75; }

/* Hintergrundbilder */
.bg-herbstastern { background-image: url('../images/bee-herbstastern-flower-blossom-bloom-insect.jpg'); }
.bg-honey        { background-image: url('../images/person-collecting-honey.jpg'); }
.bg-bee839761    { background-image: url('../images/bee-839761_1920.jpeg'); }
.bg-lavender     { background-image: url('../images/bee-lavender-insect-nature-yellow-animal-wing.jpg'); }
.bg-bee1726659   { background-image: url('../images/bee-1726659_1920.jpg'); }

/* Unterüberschrift im Split-Text */
.h-sub {
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1.4em;
}

/* Abschnitts-Überschriften */
.section-title {
  font-size: 40px;
  color: #ffffff;
  text-align: center;
  margin-bottom: 50px;
}
.suppliers-title { font-size: 40px; color: #4a4a4a; }

/* Headline-Block zentriert */
.headline-block { text-align: center; }
.headline-block h1 { font-size: 63px; color: inherit; }
.headline-block h2 { font-size: 40px; color: inherit; }
.headline-block p  { font-size: 22px; color: inherit; }

.section--yellow .headline-block { color: var(--c-brown-dark); }
.section--yellow .headline-block h2 { font-size: 30px; }
.section-title--left { text-align: left; }

/* Bildergalerie 3 Spalten */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 50px 0;
}
.grid-3 img { width: 100%; height: 240px; object-fit: cover; }

/* Produkt-Blöcke (Imkereibedarf) */
.product {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: start;
}
.product--reverse { grid-template-columns: 1fr 2fr; }
.product--reverse .product__media { order: 2; }
.product--reverse .product__body  { order: 1; }
.product__title {
  font-family: var(--font-body);
  font-size: 34px;
  font-weight: 400;
  color: #ffffff;
  text-decoration: underline;
  margin-bottom: 30px;
}
.product__title--right { text-align: right; }
.product img { width: 100%; }

/* Buttons */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 16px;
  padding: 15px 34px;
  border: 0;
  cursor: pointer;
  text-align: center;
  line-height: 1.5;
}
.btn--dark  { background: rgba(0, 0, 0, .93); color: #f8f8f8; }
.btn--dark:hover { background: #000000; }
.btn--sage  { background: rgba(191, 197, 147, .53); color: #353e17; }
.btn--sage:hover { background: rgba(191, 197, 147, .8); }
.btn--gold  { background: #7d6408; color: #f8f8f8; }
.btn--gold:hover { background: #675205; }
.btn--block { display: block; width: 100%; }

/* CTA-Band mit Hintergrundbild */
.cta-band {
  position: relative;
  background-color: var(--c-sage);
  background-size: cover;
  background-position: center;
  text-align: center;
  color: #ffffff;
  padding: var(--section-pad) 0;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(155, 161, 132, .55);
}
.cta-band .container { position: relative; z-index: 2; }
.cta-band h2 { font-size: 40px; color: #ffffff; }
.cta-band h3 { font-family: var(--font-body); font-size: 28px; font-weight: 400; color: #ffffff; }
.cta-band p  { font-size: 18px; color: #ffffff; }

/* Zulieferer-Logos */
.logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 40px;
}
.logos img { width: 270px; height: auto; }

/* Textseiten (Impressum / Datenschutz) */
.legal { background: var(--c-tan); color: var(--c-white); padding: var(--section-pad) 0; }
.legal h1 { font-size: 63px; color: #ffffff; }
.legal h2 { font-family: var(--font-body); font-size: 22px; font-weight: 600; color: #ffffff; margin-top: 1.6em; }
.legal h3 { font-family: var(--font-body); font-size: 19px; font-weight: 600; color: #ffffff; margin-top: 1.4em; }
.legal p, .legal li { font-size: 17px; line-height: 1.7; }
.legal a { color: #3f4bb0; }
.legal a:hover { color: #ffffff; }
.legal strong { color: #ffffff; }

/* ---------- 6. Kontaktformular ---------- */
.contact-split { display: flex; align-items: stretch; flex-wrap: wrap; }
.contact-split__form {
  flex: 0 0 50%;
  max-width: 50%;
  background: var(--c-sage) url('../images/15293311663_e4ac4b139b_b.jpg') center/cover no-repeat;
  padding: 80px 60px;
}
.contact-split__map {
  flex: 0 0 50%;
  max-width: 50%;
  background: var(--c-brown);
  padding: 50px;
}
.contact-split__map iframe {
  width: 100%;
  height: 660px;
  border: 0;
  display: block;
}
.contact-split h1,
.contact-split h2 { font-size: 40px; color: #ffffff; }

.form-field { margin-bottom: 12px; }
.form-field label {
  position: absolute;
  left: -9999px;
}
.form-field input,
.form-field textarea {
  width: 100%;
  background: #ffffff;
  border: 0;
  padding: 22px 22px;
  font-family: 'Times New Roman', Times, serif;
  font-size: 17px;
  color: #333333;
}
.form-field textarea { min-height: 155px; resize: vertical; }
.form-field input::placeholder,
.form-field textarea::placeholder { color: #6b6b6b; }

.form-captcha {
  display: flex;
  align-items: center;
  gap: 22px;
  color: rgba(255, 255, 255, .75);
  margin: 24px 0 14px;
}
.form-captcha__sum { font-size: 44px; color: #1a1a1a; line-height: 1; }
.form-error {
  display: block;
  color: #7a1414;
  background: rgba(255, 255, 255, .85);
  font-size: 14px;
  padding: 4px 10px;
  margin-top: 4px;
}
.form-success {
  background: rgba(255, 255, 255, .92);
  color: #2f5116;
  padding: 16px 20px;
  margin-bottom: 16px;
  font-size: 17px;
  border-left: 5px solid #6b8f3c;
}
.form-error--box {
  background: rgba(255, 255, 255, .92);
  color: #7a1414;
  padding: 16px 20px;
  margin-bottom: 16px;
  font-size: 17px;
  border-left: 5px solid #a83232;
}
.form-notice { margin-top: 18px; margin-bottom: 0; }

/* Honeypot – für Menschen unsichtbar, für Bots sichtbar */
.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.btn--send[disabled] { opacity: .65; cursor: progress; }
.btn--send {
  background: rgba(155, 161, 132, .85);
  color: #ffffff;
  font-family: 'Times New Roman', Times, serif;
  font-size: 22px;
  letter-spacing: .04em;
  padding: 25px;
  width: 100%;
}
.btn--send:hover { background: rgba(155, 161, 132, 1); }

/* ---------- 7. Slider ---------- */
.slider { position: relative; overflow: hidden; }
.slider__track {
  display: flex;
  transition: transform .5s ease;
}
.slider__slide {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  padding: 0 15px;
}
.slider__slide img { width: 100%; height: 325px; object-fit: cover; }
.slider__dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 46px;
}
.slider__dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, .45);
  cursor: pointer;
  padding: 0;
}
.slider__dot.is-active { background: #ffffff; }

/* ---------- 8. Footer ---------- */
.footer {
  background: var(--c-yellow);
  color: var(--c-brown-dark);
  padding: var(--section-pad) 0 40px;
}
.footer__cols {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
}
.footer h2 { font-size: 30px; color: var(--c-brown-dark); }
.footer p { font-size: 18px; color: #7a5555; margin-bottom: 1.4em; }
.footer strong { color: var(--c-brown-dark); font-weight: 600; }
.footer a { color: var(--c-brown-dark); text-decoration: none; }
.footer a:hover { color: #ffffff; }

.footer__meta { text-align: center; margin-top: 60px; }
.footer__meta a { text-decoration: none; }
.footer__copy {
  text-align: center;
  font-size: 13px;
  color: #ffffff;
  margin-top: 18px;
}
.footer__copy a { color: #f0e6b0; text-decoration: none; }

.agency-branding p { font-size: 13px; color: var(--c-brown-dark); margin: 0; }
.agency-branding a { color: var(--c-brown-dark); }

/* Scroll-to-top */
.scroll-top {
  position: fixed;
  right: 40px;
  bottom: 40px;
  width: 60px;
  height: 60px;
  background: var(--c-scrolltop);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
  z-index: 90;
}
.scroll-top.is-visible { opacity: 1; visibility: visible; }
.scroll-top:hover { background: #6a1a0c; }

/* ---------- 9. Cookie-Banner ---------- */
.cookie {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--c-topbar);
  color: #ffffff;
  padding: 18px 24px;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
  z-index: 200;
  font-size: 15px;
}
.cookie.is-visible { display: flex; }
.cookie p { margin: 0; max-width: 760px; }
.cookie a { color: var(--c-yellow); text-decoration: underline; }
.cookie__actions { display: flex; gap: 12px; }
.cookie__btn {
  border: 0;
  padding: 11px 22px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 15px;
}
.cookie__btn--accept { background: var(--c-yellow); color: var(--c-brown-dark); }
.cookie__btn--decline { background: transparent; color: #ffffff; border: 1px solid rgba(255, 255, 255, .5); }

/* ---------- 9b. Urlaubs-Popup ---------- */
.vacation[hidden] { display: none; }
.vacation {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.vacation__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(35, 20, 10, .72);
  animation: vacFade .35s ease both;
}
.vacation__box {
  position: relative;
  width: 100%;
  max-width: 560px;
  background: var(--c-yellow);
  color: var(--c-brown-dark);
  text-align: center;
  padding: 54px 46px 46px;
  border-top: 10px solid var(--c-topbar);
  box-shadow: 0 26px 70px rgba(0, 0, 0, .45);
  animation: vacIn .4s cubic-bezier(.2, .8, .3, 1) both;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
}
.vacation__close {
  position: absolute;
  top: 10px;
  right: 16px;
  background: none;
  border: 0;
  font-size: 38px;
  line-height: 1;
  color: var(--c-brown-dark);
  cursor: pointer;
  padding: 0 6px;
}
.vacation__close:hover { color: var(--c-topbar); }
.vacation__eyebrow {
  font-size: 14px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--c-topbar);
  margin-bottom: 6px;
}
.vacation__title {
  font-family: var(--font-head);
  font-size: 46px;
  color: var(--c-brown-dark);
  margin-bottom: 10px;
}
.vacation__dates {
  font-family: var(--font-head);
  font-size: 34px;
  color: var(--c-topbar);
  margin-bottom: 20px;
}
.vacation__lead { font-size: 19px; margin-bottom: 10px; }
.vacation__note { font-size: 16px; color: #7a5555; margin-bottom: 26px; }
.vacation__ok { min-width: 190px; }

@keyframes vacIn {
  from { opacity: 0; transform: translateY(26px) scale(.96); }
  to   { opacity: 1; transform: none; }
}
@keyframes vacFade { from { opacity: 0; } to { opacity: 1; } }

@media (prefers-reduced-motion: reduce) {
  .vacation__box, .vacation__backdrop { animation: none; }
}

@media (max-width: 480px) {
  .vacation__box { padding: 44px 24px 34px; }
  .vacation__title { font-size: 34px; }
  .vacation__dates { font-size: 26px; }
  .vacation__lead { font-size: 17px; }
}

/* ---------- 10. 404 ---------- */
.error-page {
  background: var(--c-yellow);
  text-align: center;
  padding: 120px 0;
}
.error-page h1 { font-size: 110px; color: var(--c-brown-dark); margin-bottom: 0; }
.error-page h2 { font-size: 36px; color: var(--c-brown-dark); }
.error-page p  { font-size: 20px; color: var(--c-brown-dark); }

/* ---------- 11. Scroll-Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   12. Responsive
   ============================================================ */
@media (max-width: 1400px) {
  .split__text { padding: 50px 60px 50px 90px; }
  .split--half .split__text { padding: 50px 50px 50px 90px; }
  .footer__cols { padding-left: 60px; }
  .hero__cta { left: 520px; font-size: 28px; }
}

@media (max-width: 1200px) {
  .hero__logo { left: 40px; }
  .hero__cta { left: 440px; font-size: 24px; top: 190px; }
  .hero__wordmark span { font-size: 40px; }
  .nav-main a, .nav-secondary a { font-size: 20px; padding: 8px 20px; }
  .nav-secondary, .nav-secondary ul { width: auto; }
}

@media (max-width: 1024px) {
  :root { --section-pad: 60px; --hero-h: 560px; }
  .nav-main, .nav-secondary { display: none; }
  .burger { display: block; }
  .hero__cta { left: 50%; transform: translateX(-50%); right: auto; width: 92%; text-align: center; top: auto; bottom: 30px; font-size: 22px; }
  .hero__logo { top: 130px; left: 50%; transform: translateX(-50%); width: 150px; }
  .hero__wordmark { top: 300px; left: 0; width: 100%; text-align: center; padding: 10px 20px; }
  .hero__wordmark span { display: inline; font-size: 38px; }
  .hero__wordmark span + span { margin-left: 12px; }

  .split, .contact-split { flex-wrap: wrap; }
  .split__text,
  .split--half .split__text { flex: 0 0 100%; max-width: 100%; padding: 50px 30px; }
  .split__media,
  .split--half .split__media { flex: 0 0 100%; max-width: 100%; min-height: 320px; order: 2; }

  .contact-split__form,
  .contact-split__map { flex: 0 0 100%; max-width: 100%; padding: 50px 25px; }
  .contact-split__map iframe { height: 420px; }

  .product, .product--reverse { grid-template-columns: 1fr; gap: 24px; }
  .product--reverse .product__media,
  .product--reverse .product__body { order: initial; }
  .product__title, .product__title--right { text-align: left; font-size: 28px; }

  .headline-block h1 { font-size: 42px; }
  .split__text h1, .split__text h2, .section--announce h2, .cta-band h2 { font-size: 32px; }

  .footer__cols { grid-template-columns: 1fr 1fr; gap: 30px; }
}

@media (max-width: 768px) {
  :root { --section-pad: 45px; --hero-h: 480px; }
  body { font-size: 16px; }
  .topbar p { font-size: 12px; }
  .grid-3 { grid-template-columns: 1fr; gap: 20px; margin: 30px 0; }
  .slider__slide { grid-template-columns: 1fr; }
  .slider__slide img { height: 240px; }
  .headline-block h1 { font-size: 32px; }
  .headline-block p, .section--announce p { font-size: 17px; }
  .split__text p { font-size: 17px; }
  .footer__cols { grid-template-columns: 1fr; }
  .legal h1, .error-page h1 { font-size: 40px; }
  .error-page h1 { font-size: 72px; }
  .scroll-top { right: 18px; bottom: 18px; width: 48px; height: 48px; }
  .cookie { flex-direction: column; text-align: center; gap: 14px; }
  .hero__wordmark span { font-size: 30px; }
  .hero__logo { width: 120px; top: 110px; }
}

@media (max-width: 480px) {
  .hero__cta { font-size: 18px; padding: 10px 16px; }
  .split__text, .contact-split__form { padding: 35px 18px; }
  .form-captcha__sum { font-size: 34px; }
}
