/* ============================================================
   Alwin Schreiber — Orthopädie-Schuhtechnik Mannheim
   Pixel rebuild of schreiber-ma.de (Divi WordPress theme)
   ============================================================ */

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

:root {
  --green:        #4f6442;
  --green-dark:   #3d5135;
  --green-light:  #607a52;
  --green-cta:    #4e6841;   /* CTA strip */
  --ink:          #333333;
  --ink-soft:     #666666;
  --ink-mute:     #8a8a8a;
  --white:        #ffffff;
  --grey-section: #dcdcdc;   /* light grey alt-sections */
  --grey-card:    #e8e8e8;   /* kontakt info boxes / leistungen card foot */
  --footer-grey:  #7a7a7a;   /* footer info bar */
  --footer-dark:  #1a1a1a;
  --line:         #d8d8d8;

  --max:          1180px;
  --pad-x:        20px;

  --font-serif:   "Josefin Slab", "EB Garamond", Georgia, serif;
  --font-body:    "Open Sans", "Helvetica Neue", Arial, sans-serif;

  --ease:         cubic-bezier(.4,0,.2,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background-color: var(--white);
  background-image: url("assets/sketch-bg.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--green); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--green-light); }

/* Type */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 400;
  margin: 0 0 .35em;
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: 0;
}
h1 { font-size: clamp(40px, 5.5vw, 64px); }
h2 { font-size: clamp(30px, 3.4vw, 42px); }
h3 { font-size: clamp(22px, 2.2vw, 28px); }
h4 { font-size: 18px; }
p  { margin: 0 0 1em; }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

/* ============================================================
   TOP BAR (dark green)
   ============================================================ */
.topbar {
  background: var(--green-dark);
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .02em;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 36px;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar .tb-left,
.topbar .tb-right {
  display: flex;
  align-items: center;
  gap: 22px;
}
.topbar .tb-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
}
.topbar a { color: #ffffff; }
.topbar a:hover { color: rgba(255,255,255,.7); }
.topbar svg {
  width: 13px; height: 13px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

/* ============================================================
   HEADER / NAV (white)
   ============================================================ */
.site-header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 1px 0 rgba(0,0,0,.04);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 130px;
  gap: 32px;
}
.brand img {
  height: 100px;
  width: auto;
}
.main-nav ul {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  gap: 30px;
}
.main-nav a {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: 0;
  position: relative;
  padding: 6px 0;
  white-space: nowrap;
}
.main-nav a:hover { color: var(--green); }
.main-nav a.active { font-weight: 700; color: var(--ink); }

.burger {
  display: none;
  background: none;
  border: 0;
  width: 44px; height: 44px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--ink);
  position: relative;
}
.burger span::before,
.burger span::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  background: var(--ink);
  transition: transform .25s var(--ease), top .25s var(--ease);
}
.burger span::before { top: -8px; }
.burger span::after  { top:  8px; }
.burger.open span { background: transparent; }
.burger.open span::before { top: 0; transform: rotate(45deg); }
.burger.open span::after  { top: 0; transform: rotate(-45deg); }

/* ============================================================
   HERO — homepage (big photo + Alwin Schreiber title)
   ============================================================ */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  overflow: hidden;
  background-color: #1d1b17;
  background-image: url("assets/hero-bg.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.hero::before { content: none; }
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background: rgba(0,0,0,.18);
}
.hero .hero-inner {
  position: relative;
  z-index: 2;
  padding: 90px 24px 70px;
  max-width: 900px;
}
.hero .subtitle {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(20px, 2.2vw, 28px);
  color: #ffffff;
  margin: 0 0 8px;
  text-shadow: 0 1px 2px rgba(0,0,0,.25);
}
.hero h1 {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(44px, 6vw, 78px);
  color: #ffffff;
  margin: 0 0 18px;
  text-shadow: 0 2px 6px rgba(0,0,0,.3);
  line-height: 1.05;
  letter-spacing: -.01em;
  white-space: nowrap;
}
.hero .since {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(18px, 1.8vw, 24px);
  color: #ffffff;
  margin: 0 0 30px;
  text-shadow: 0 1px 2px rgba(0,0,0,.25);
}
.hero .hero-mark img {
  height: 90px;
  width: auto;
  margin: 0 auto;
}

/* ============================================================
   SUB-HERO — inner pages (smaller photo strip with title)
   ============================================================ */
.subhero {
  position: relative;
  min-height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  overflow: hidden;
  background-color: #1d1b17;
  background-image: url("assets/hero-bg.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.subhero::before { content: none; }
.subhero::after {
  content: "";
  position: absolute; inset: 0;
  background: rgba(0,0,0,.18);
}
.subhero h1 {
  position: relative;
  z-index: 2;
  font-family: var(--font-serif);
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 400;
  font-size: clamp(34px, 4.4vw, 54px);
  text-shadow: 0 2px 6px rgba(0,0,0,.3);
  margin: 0;
  white-space: nowrap;
}

/* ============================================================
   SECTIONS
   ============================================================ */
section { padding: 80px 0; background: transparent; }
section.grey { background: var(--grey-section); }
section.white { background: var(--white); }

/* ============================================================
   PRODUCT TEASERS (homepage 4-up)
   ============================================================ */
.teasers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.teaser {
  text-align: center;
  padding: 0 14px;
  position: relative;
}
.teaser + .teaser::before {
  content: "";
  position: absolute;
  left: 0; top: 24px; bottom: 24px;
  width: 1px;
  background: var(--line);
}
.teaser .img {
  height: 140px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-bottom: 24px;
}
.teaser h4 {
  font-family: var(--font-body);
  font-weight: 400;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: .14em;
  margin: 0 0 14px;
  color: var(--ink);
}
.teaser h4 a { color: var(--ink); }
.teaser h4 a:hover { color: var(--green); }
.teaser p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0;
}

/* ============================================================
   FEATURE CARDS (homepage 3-up: Über Uns / Fertigung / Leistungen)
   ============================================================ */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.feature {
  background: var(--white);
  display: flex;
  flex-direction: column;
  position: relative;
}
.feature .img {
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
}
.feature .body {
  padding: 28px 28px 32px;
  position: relative;
}
.feature .body::after {
  /* green vertical accent bar on right */
  content: "";
  position: absolute;
  right: -8px;
  top: 24px;
  bottom: 24px;
  width: 8px;
  background: var(--green);
}
.feature h3 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 26px;
  margin: 0 0 12px;
  color: var(--ink);
}
.feature p {
  color: var(--ink-soft);
  font-size: 14px;
  margin: 0 0 18px;
}
.feature .entdecken {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 600;
}
.feature .entdecken::after {
  content: "→";
  display: inline-block;
  transition: transform .2s var(--ease);
}
.feature .entdecken:hover::after {
  transform: translateX(4px);
}

/* ============================================================
   NEWS section (homepage + Neuigkeiten)
   ============================================================ */
.news-title {
  text-align: center;
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.5vw, 44px);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin: 0 0 50px;
  font-weight: 400;
}
.news {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.news-card {
  background: var(--white);
  display: flex;
  flex-direction: column;
}
.news-card .thumb {
  display: block;
  aspect-ratio: 16/10;
  background-size: cover;
  background-position: center;
  background-color: #f2f2f2;
}
.news-card .thumb.logo {
  background-size: 60% auto;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #f2f2f2;
}
.news-card .body {
  padding: 22px 24px 28px;
}
.news-card h3 {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 10px;
  color: var(--ink);
}
.news-card h3 a { color: var(--ink); }
.news-card h3 a:hover { color: var(--green); }
.news-card .meta {
  font-size: 13px;
  color: var(--ink-mute);
  margin-bottom: 12px;
}
.news-card .meta a { color: var(--green); }
.news-card .excerpt {
  font-size: 14px;
  color: var(--ink-soft);
  margin: 0;
}

/* ============================================================
   NEUIGKEITEN — intro split row
   ============================================================ */
.neuig-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.neuig-intro h2 {
  font-family: var(--font-serif);
  text-transform: uppercase;
  font-size: clamp(28px, 3.4vw, 40px);
  letter-spacing: .04em;
  font-weight: 400;
  line-height: 1.15;
  margin: 0 0 18px;
}
.neuig-intro p {
  color: var(--ink-soft);
  font-size: 15px;
}

/* ============================================================
   CONTACT CTA STRIP (green band before footer)
   ============================================================ */
.cta-strip {
  background: var(--green-cta);
  color: #ffffff;
  padding: 56px 0;
}
.cta-strip .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.cta-strip h2 {
  font-family: var(--font-body);
  font-weight: 300;
  color: #ffffff;
  font-size: 28px;
  margin: 0 0 4px;
  line-height: 1.2;
}
.cta-strip p {
  color: rgba(255,255,255,.85);
  margin: 0;
  font-size: 14px;
}
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  padding: 14px 28px;
  border: 1px solid #ffffff;
  background: transparent;
  color: #ffffff;
  cursor: pointer;
  transition: background .2s var(--ease), color .2s var(--ease);
  white-space: nowrap;
}
.btn:hover { background: #ffffff; color: var(--green-cta); }

.btn.solid-green {
  background: var(--green);
  color: #ffffff;
  border-color: var(--green);
  font-weight: 600;
  letter-spacing: .04em;
  padding: 14px 28px;
}
.btn.solid-green:hover { background: var(--green-dark); border-color: var(--green-dark); }

/* ============================================================
   FOOTER (grey info bar + black copyright)
   ============================================================ */
.site-footer {
  background: var(--footer-grey);
  color: #ffffff;
}
.footer-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding: 38px 24px;
  max-width: var(--max);
  margin: 0 auto;
}
.f-item {
  display: flex;
  gap: 16px;
  align-items: center;
  color: #ffffff;
}
.f-item .icon {
  width: 40px; height: 40px;
  border: 1px solid #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  flex-shrink: 0;
}
.f-item .icon svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.8; }
.f-item a { color: #ffffff; }
.f-item a:hover { color: rgba(255,255,255,.75); }
.f-item .lbl {
  font-weight: 700;
  margin-right: 6px;
  font-size: 14px;
}
.f-item .val { font-size: 14px; }

.copyright {
  background: var(--footer-dark);
  color: #b0b0b0;
  text-align: center;
  font-size: 13px;
  padding: 16px 24px;
}
.copyright a { color: #b0b0b0; }
.copyright a:hover { color: #ffffff; }

/* ============================================================
   ABOUT — split rows (image + text), wood quote
   ============================================================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.split img,
.split .img-placeholder,
.intro-split img,
.fert-intro img,
.neuig-intro img {
  width: 100%;
  border: 10px solid #ffffff;
  box-shadow: 0 28px 78px 0 rgba(96,96,96,.3);
  box-sizing: border-box;
}
.img-placeholder {
  aspect-ratio: 4/3;
  background: repeating-linear-gradient(45deg, #efefef 0 12px, #f7f7f7 12px 24px);
  border: 1px dashed #c9c9c9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  font-size: 13px;
  font-style: italic;
  text-align: center;
  padding: 20px;
}
.img-placeholder::after {
  content: attr(data-label);
}
.split h2 {
  font-family: var(--font-serif);
  text-transform: uppercase;
  font-size: clamp(28px, 3.4vw, 42px);
  letter-spacing: .04em;
  line-height: 1.15;
  font-weight: 400;
  margin: 0 0 18px;
}
.split p {
  color: var(--ink-soft);
  font-size: 15px;
}

/* WOOD testimonial section */
.wood-section {
  background-color: #4a2e1a;
  background-image: url("assets/wood-bg.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #ffffff;
  padding: 100px 0;
  text-align: center;
  position: relative;
}
.wood-section .stars {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 24px;
  color: #f0c75e;
  font-size: 18px;
}
.wood-section blockquote {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.35;
  max-width: 760px;
  margin: 0 auto 24px;
  color: #ffffff;
}
.wood-section .cite {
  font-size: 13px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.9);
}

/* slider */
.testimonial-slider {
  position: relative;
  padding: 0 60px;
}
.ts-track {
  position: relative;
  min-height: 240px;
}
.ts-slide {
  position: absolute;
  top: 0; left: 0; right: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .5s var(--ease);
  pointer-events: none;
}
.ts-slide.is-active {
  position: relative;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.ts-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 0;
  z-index: 2;
  color: rgba(255,255,255,.85);
  transition: color .2s var(--ease), transform .2s var(--ease);
}
.ts-arrow:hover { color: #ffffff; transform: translateY(-50%) scale(1.1); }
.ts-prev { left: 0; }
.ts-next { right: 0; }
.ts-arrow::before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  margin: auto;
}
.ts-prev::before { transform: rotate(-135deg); margin-left: 12px; }
.ts-next::before { transform: rotate(45deg); margin-right: 12px; }
.ts-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}
.ts-dot {
  width: 14px;
  height: 4px;
  background: rgba(255,255,255,.5);
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: background .2s var(--ease), width .2s var(--ease);
}
.ts-dot:hover { background: rgba(255,255,255,.8); }
.ts-dot.is-active { background: #ffffff; width: 22px; }

/* ============================================================
   LEISTUNGEN — service cards (image white + grey text foot)
   ============================================================ */
.intro-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  margin-bottom: 0;
}
.intro-split h2 {
  font-family: var(--font-serif);
  text-transform: uppercase;
  font-size: clamp(28px, 3.4vw, 42px);
  letter-spacing: .04em;
  line-height: 1.15;
  font-weight: 400;
  margin: 0 0 18px;
}
.intro-split p { color: var(--ink-soft); font-size: 15px; }

.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.service {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.service .img {
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  background-color: #ffffff;
}
.service .img.contain {
  background-size: contain;
  background-repeat: no-repeat;
  background-color: #ffffff;
}
.service .foot {
  background: var(--grey-card);
  padding: 28px 26px 32px;
  text-align: center;
  flex: 1;
}
.service .foot h4 {
  font-family: var(--font-body);
  font-weight: 400;
  text-transform: uppercase;
  font-size: 15px;
  letter-spacing: .14em;
  color: var(--ink);
  margin: 0 0 18px;
}
.service ul {
  list-style: disc;
  padding-left: 22px;
  margin: 0;
  text-align: left;
  display: inline-block;
}
.service ul li {
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 6px;
}

/* ============================================================
   FERTIGUNG — video cards (YouTube thumbnails)
   ============================================================ */
.fert-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.fert-intro h2 {
  font-family: var(--font-serif);
  text-transform: uppercase;
  font-size: clamp(28px, 3.4vw, 42px);
  letter-spacing: .04em;
  line-height: 1.15;
  font-weight: 400;
  margin: 0 0 18px;
}
.fert-intro p { color: var(--ink-soft); font-size: 15px; }

.videos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.video-card {
  background: var(--white);
  display: flex;
  flex-direction: column;
}
.video-thumb {
  position: relative;
  display: block;
  aspect-ratio: 16/9;
  background-size: cover;
  background-position: center;
  background-color: #000;
  overflow: hidden;
  cursor: pointer;
  transition: filter .2s var(--ease);
}
.video-thumb::before {
  content: "";
  position: absolute; inset: 0;
  background: rgba(0,0,0,.18);
  transition: background .2s var(--ease);
}
.video-thumb:hover { filter: brightness(1.04); }
.video-thumb:hover::before { background: rgba(0,0,0,.05); }
.video-thumb .play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 68px; height: 68px;
  background: rgba(0,0,0,.78);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s var(--ease), transform .2s var(--ease);
  z-index: 2;
}
.video-thumb:hover .play-btn {
  background: var(--green);
  transform: translate(-50%, -50%) scale(1.06);
}
.video-thumb .play-btn::after {
  content: "";
  width: 0; height: 0;
  border-left: 18px solid #fff;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  margin-left: 5px;
}
.video-card .foot {
  background: var(--grey-card);
  padding: 22px 22px 28px;
  text-align: center;
  position: relative;
}
.video-card .foot .label {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: #ffffff;
  font-size: 11px;
  letter-spacing: .14em;
  padding: 5px 12px;
  font-weight: 600;
}
.video-card .foot h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  text-transform: uppercase;
  font-size: 17px;
  letter-spacing: .04em;
  margin: 18px 0 0;
}

/* ============================================================
   KONTAKT — title + 3 grey info boxes + map
   ============================================================ */
.kontakt-title {
  text-align: center;
  margin-bottom: 50px;
}
.kontakt-title h2 {
  font-family: var(--font-serif);
  text-transform: uppercase;
  font-size: clamp(32px, 4vw, 48px);
  letter-spacing: .08em;
  font-weight: 400;
  margin: 0 0 10px;
}
.kontakt-title .sub {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--ink-soft);
}
.kontakt-boxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.kontakt-box {
  background: var(--grey-card);
  padding: 36px 28px;
  text-align: center;
}
.kontakt-box h4 {
  font-family: var(--font-serif);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 20px;
  margin: 0 0 18px;
  font-weight: 400;
}
.kontakt-box p {
  font-size: 14px;
  color: var(--ink);
  margin: 0 0 10px;
  line-height: 1.55;
}
.kontakt-box a { color: var(--green); }

.kontakt-map iframe {
  width: 100%;
  height: 460px;
  border: 0;
  display: block;
}

/* Contact form (added feature) */
.contact-form {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 36px;
  max-width: 760px;
  margin: 0 auto;
}
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}
.field input,
.field textarea {
  width: 100%;
  background: #fafafa;
  border: 1px solid var(--line);
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  border-radius: 0;
  transition: border-color .2s var(--ease);
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--green);
}
.field textarea { min-height: 140px; resize: vertical; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .teasers { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .teaser + .teaser::before { display: none; }
  .features,
  .services,
  .videos,
  .news,
  .kontakt-boxes { grid-template-columns: 1fr 1fr; gap: 24px; }
  .split,
  .neuig-intro,
  .fert-intro,
  .intro-split { grid-template-columns: 1fr; gap: 30px; }
  .footer-info { grid-template-columns: 1fr; gap: 24px; padding: 32px 24px; }
  .cta-strip .container { justify-content: center; text-align: center; }
}

@media (max-width: 720px) {
  section { padding: 56px 0; }
  .topbar .tb-right { display: none; }
  .burger { display: inline-flex; }
  .site-header .container { min-height: 90px; }
  .brand img { height: 70px; }
  .main-nav {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s var(--ease);
  }
  .main-nav.open { max-height: 500px; }
  .main-nav ul {
    flex-direction: column;
    padding: 14px 24px;
    gap: 4px;
  }
  .main-nav a {
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
  }
  .teasers,
  .features,
  .services,
  .videos,
  .news,
  .kontakt-boxes,
  .form-row { grid-template-columns: 1fr; }
  .hero { min-height: 500px; }
  .subhero { min-height: 320px; }
}
