/* ==========================================================================
   Sanitätshaus Augustin GmbH – Thum & Zschopau
   Design: Papier/Tinte + Augustin-Rot · Cormorant Garamond + Inter (lokal)
   ========================================================================== */

:root {
  --paper: #faf8f4;
  --paper-2: #f3eee6;
  --ink: #26221e;
  --ink-soft: #5c554d;
  --line: #e6ddd0;
  --red: #b8202e;
  --red-dark: #8f1723;
  --red-tint: #fbeeee;
  --white: #ffffff;
  --gold: #c9a24b;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', 'Segoe UI', Arial, sans-serif;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(38, 34, 30, .08);
  --shadow-lg: 0 18px 50px rgba(38, 34, 30, .14);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--red); text-decoration: none; }
a:hover { color: var(--red-dark); }

.wrap { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.12; }
h2 { font-size: clamp(2rem, 4.2vw, 2.9rem); letter-spacing: -.01em; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .78rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}
.eyebrow::before { content: ""; width: 34px; height: 2px; background: var(--red); }

.section { padding: 96px 0; }
.section-head { max-width: 640px; margin-bottom: 52px; }
.section-head p { color: var(--ink-soft); margin-top: 14px; font-size: 1.06rem; }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 15px 28px; border-radius: 999px;
  font-weight: 700; font-size: .98rem; letter-spacing: .01em;
  border: 2px solid transparent; cursor: pointer; transition: all .2s ease;
}
.btn-primary { background: var(--red); color: #fff; }
.btn-primary:hover { background: var(--red-dark); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-ghost { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn-ghost:hover { background: var(--ink); color: var(--paper); }
.btn-light { background: #fff; color: var(--ink); }
.btn-light:hover { background: var(--paper-2); color: var(--ink); transform: translateY(-2px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(250, 248, 244, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 14px 0; }

.brand { display: flex; flex-direction: column; line-height: 1.05; }
.brand .b-top { font-size: .72rem; font-weight: 600; letter-spacing: .34em; color: var(--ink-soft); text-transform: uppercase; }
.brand .b-main { font-size: 1.5rem; font-weight: 800; letter-spacing: .02em; color: var(--red); text-transform: uppercase; }

.main-nav { display: flex; gap: 26px; align-items: center; }
.main-nav a { color: var(--ink); font-weight: 600; font-size: .93rem; }
.main-nav a:hover { color: var(--red); }
.nav-phone {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--red); color: #fff !important;
  padding: 9px 18px; border-radius: 999px; font-size: .9rem;
}
.nav-phone:hover { background: var(--red-dark); }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; transition: .2s; }

/* ---------- Hero ---------- */
.hero { padding: 84px 0 72px; position: relative; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; }
.hero h1 { font-size: clamp(2.6rem, 5.4vw, 4rem); margin-bottom: 22px; }
.hero h1 em { font-style: italic; color: var(--red); }
.hero-sub { font-size: 1.15rem; color: var(--ink-soft); max-width: 520px; margin-bottom: 32px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }

/* ---------- Durchlaufband ---------- */
.marquee {
  background: var(--red); color: #fff;
  overflow: hidden; padding: 18px 0;
  border-top: 1px solid var(--red-dark); border-bottom: 1px solid var(--red-dark);
}
.marquee-track { display: flex; width: max-content; animation: marquee 32s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-group { display: flex; align-items: center; gap: 34px; padding-right: 34px; white-space: nowrap; }
.mq-item { font-size: .95rem; font-weight: 500; letter-spacing: .02em; color: rgba(255, 255, 255, .85); }
.mq-item strong { font-family: var(--serif); font-weight: 600; font-size: 1.5rem; color: #fff; margin-right: 8px; vertical-align: -2px; }
.mq-sep { color: rgba(255, 255, 255, .45); font-size: .8rem; }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; flex-wrap: wrap; width: auto; }
  .marquee-group[aria-hidden] { display: none; }
}

.hero-media { position: relative; }
.hero-media .main-img {
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  width: 100%; height: 520px; object-fit: cover; object-position: center 30%;
}
.hero-card {
  position: absolute; left: -34px; bottom: 34px;
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-lg);
  padding: 18px 22px; max-width: 260px;
}
.hero-card .hc-stars { color: var(--gold); font-size: 1.05rem; letter-spacing: 2px; }
.hero-card .hc-line { font-size: .88rem; color: var(--ink-soft); margin-top: 4px; }
.hero-card .hc-line strong { color: var(--ink); }

/* ---------- Leistungen ---------- */
.services { background: var(--paper-2); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card {
  background: #fff; border-radius: var(--radius); padding: 34px 30px;
  box-shadow: var(--shadow); border-top: 3px solid transparent;
  transition: transform .25s ease, border-color .25s ease;
}
.service-card:hover { transform: translateY(-6px); border-top-color: var(--red); }
.service-card .icon {
  width: 52px; height: 52px; border-radius: 12px; background: var(--red-tint);
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.service-card .icon svg { width: 26px; height: 26px; stroke: var(--red); }
.service-card h3 { font-size: 1.45rem; margin-bottom: 10px; }
.service-card p { font-size: .95rem; color: var(--ink-soft); }
.service-card .tag {
  display: inline-block; margin-top: 14px; font-size: .78rem; font-weight: 700;
  color: var(--red); letter-spacing: .06em; text-transform: uppercase;
}

/* ---------- Treppenlift-Feature ---------- */
.feature-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 56px; align-items: center; }
.feature-media img { border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.feature-steps { margin: 26px 0 30px; display: grid; gap: 16px; }
.f-step { display: flex; gap: 16px; align-items: flex-start; }
.f-step .num {
  flex: 0 0 40px; width: 40px; height: 40px; border-radius: 50%;
  background: var(--red); color: #fff; font-weight: 800; font-size: .95rem;
  display: flex; align-items: center; justify-content: center;
}
.f-step h4 { font-size: 1.02rem; margin-bottom: 2px; }
.f-step p { font-size: .92rem; color: var(--ink-soft); }
.feature-note { font-size: .88rem; color: var(--ink-soft); margin-top: 18px; }

/* ---------- Dunkles Band: Pflegehilfsmittel ---------- */
.band { background: var(--ink); color: var(--paper); padding: 96px 0; }
.band .eyebrow { color: var(--gold); }
.band .eyebrow::before { background: var(--gold); }
.band h2 { color: #fff; }
.band h2 em { font-style: italic; color: var(--gold); }
.band-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.band-lead { color: rgba(250, 248, 244, .78); margin-top: 16px; font-size: 1.06rem; }
.band-price { display: flex; align-items: baseline; gap: 12px; margin: 30px 0 8px; }
.band-price .euro { font-family: var(--serif); font-size: 4.4rem; font-weight: 600; color: #fff; line-height: 1; }
.band-price .per { color: rgba(250, 248, 244, .65); font-size: .95rem; max-width: 200px; line-height: 1.4; }
.band-steps { display: grid; gap: 18px; margin-bottom: 34px; }
.band-step { display: flex; gap: 16px; align-items: flex-start; padding: 18px 20px; background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .1); border-radius: var(--radius); }
.band-step .num { flex: 0 0 36px; width: 36px; height: 36px; border-radius: 50%; background: var(--gold); color: var(--ink); font-weight: 800; display: flex; align-items: center; justify-content: center; font-size: .9rem; }
.band-step h4 { color: #fff; font-size: 1rem; margin-bottom: 2px; }
.band-step p { font-size: .9rem; color: rgba(250, 248, 244, .7); }
.band-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.band .btn-ghost { border-color: rgba(255, 255, 255, .5); color: #fff; }
.band .btn-ghost:hover { background: #fff; color: var(--ink); border-color: #fff; }

/* ---------- Matratzen ---------- */
.split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split-media img { border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.check-list { list-style: none; margin: 24px 0 30px; display: grid; gap: 12px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 1rem; }
.check-list li::before {
  content: "✓"; flex: 0 0 24px; width: 24px; height: 24px; border-radius: 50%;
  background: var(--red-tint); color: var(--red); font-weight: 800; font-size: .8rem;
  display: flex; align-items: center; justify-content: center; margin-top: 2px;
}

/* ---------- Timeline ---------- */
.timeline { position: relative; margin-top: 30px; }
.timeline::before {
  content: ""; position: absolute; left: 50%; top: 0; bottom: 0; width: 2px;
  background: var(--line); transform: translateX(-50%);
}
.t-item { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; margin-bottom: 64px; position: relative; align-items: center; }
.t-item::after {
  content: ""; position: absolute; left: 50%; top: 50%; width: 14px; height: 14px;
  background: var(--red); border: 3px solid var(--paper); border-radius: 50%;
  transform: translate(-50%, -50%); z-index: 2;
}
.t-item .t-text { text-align: right; }
.t-item:nth-child(even) .t-text { order: 2; text-align: left; }
.t-item:nth-child(even) .t-media { order: 1; display: flex; justify-content: flex-end; }
.t-year { font-family: var(--serif); font-size: 2.2rem; font-weight: 600; color: var(--red); line-height: 1; }
.t-item h3 { font-size: 1.4rem; margin: 8px 0 8px; }
.t-item p { font-size: .95rem; color: var(--ink-soft); }
.t-media img {
  width: 240px; height: 240px; object-fit: cover; border-radius: var(--radius);
  box-shadow: var(--shadow); filter: sepia(.12);
}
.t-item:nth-child(odd) .t-media img { justify-self: start; }

/* ---------- Auszeichnungen ---------- */
.awards-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.award-card {
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 32px; display: flex; gap: 22px; align-items: center;
}
.award-card img { width: 110px; height: 150px; object-fit: cover; object-position: top; border-radius: 10px; }
.award-card .a-badge {
  width: 110px; height: 150px; border-radius: 10px; background: var(--red-tint);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
  color: var(--red); font-weight: 800; font-size: 1.6rem;
}
.award-card .a-badge small { font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; text-align: center; }
.award-card h3 { font-size: 1.35rem; margin-bottom: 6px; }
.award-card p { font-size: .92rem; color: var(--ink-soft); }

/* ---------- Rezensionen ---------- */
.reviews { background: var(--paper-2); }
.review-summary { display: flex; gap: 22px; flex-wrap: wrap; margin-bottom: 40px; }
.rs-card {
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 22px 28px; display: flex; align-items: center; gap: 18px;
}
.rs-card .rs-num { font-family: var(--serif); font-size: 2.6rem; font-weight: 600; line-height: 1; }
.rs-card .stars { color: var(--gold); letter-spacing: 2px; }
.rs-card .rs-meta { font-size: .85rem; color: var(--ink-soft); }
.reviews-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.review-card { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: 34px; position: relative; }
.review-card::before {
  content: "\201E"; position: absolute; top: 6px; left: 24px;
  font-family: var(--serif); font-size: 5rem; color: var(--red-tint); line-height: 1;
}
.review-card .stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 14px; }
.review-card blockquote { font-size: 1.02rem; font-style: italic; color: var(--ink); margin-bottom: 18px; }
.review-card cite { font-style: normal; font-size: .88rem; font-weight: 700; }
.review-card cite span { display: block; font-weight: 400; color: var(--ink-soft); }

/* ---------- Filialen ---------- */
.branches-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-bottom: 26px; }
.branch-card { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
.branch-card img { width: 100%; height: 240px; object-fit: cover; }
.branch-body { padding: 30px; }
.branch-body h3 { font-size: 1.6rem; margin-bottom: 4px; }
.branch-body .b-sub { font-size: .85rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--red); margin-bottom: 16px; }
.branch-info { display: grid; gap: 10px; font-size: .95rem; }
.branch-info .bi { display: flex; gap: 12px; align-items: flex-start; }
.branch-info .bi svg { width: 18px; height: 18px; stroke: var(--red); flex: 0 0 18px; margin-top: 3px; }
.hours-table { width: 100%; font-size: .92rem; border-collapse: collapse; margin-top: 6px; }
.hours-table td { padding: 5px 0; border-bottom: 1px dashed var(--line); color: var(--ink-soft); }
.hours-table td:last-child { text-align: right; color: var(--ink); font-weight: 600; }

/* Karte (Klick-zum-Laden, DSGVO) */
.map-shell { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.maps-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: var(--line); }
.gmap { height: 440px; width: 100%; background: var(--paper-2); }
.gmap iframe { width: 100%; height: 100%; border: 0; display: block; }
.map-consent {
  position: absolute; inset: 0; z-index: 5;
  background: linear-gradient(160deg, var(--paper-2), #e9e2d6);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px;
  text-align: center; padding: 30px;
}
.map-consent p { max-width: 460px; font-size: .9rem; color: var(--ink-soft); }

/* ---------- FAQ ---------- */
.faq-list { max-width: 780px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; background: none; border: 0; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding: 24px 4px; text-align: left;
  font-family: var(--serif); font-size: 1.35rem; font-weight: 600; color: var(--ink);
}
.faq-q .fq-icon {
  flex: 0 0 32px; width: 32px; height: 32px; border-radius: 50%;
  border: 1.5px solid var(--red); color: var(--red);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; font-family: var(--sans); font-weight: 400; transition: .25s;
}
.faq-item.open .fq-icon { background: var(--red); color: #fff; transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a p { padding: 0 4px 26px; color: var(--ink-soft); font-size: .98rem; max-width: 660px; }

/* ---------- Kontakt / Footer-CTA ---------- */
.contact { background: var(--ink); color: var(--paper); padding: 96px 0; }
.contact .eyebrow { color: var(--gold); }
.contact .eyebrow::before { background: var(--gold); }
.contact h2 { color: #fff; margin-bottom: 16px; }
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; }
.contact p.lead { color: rgba(250, 248, 244, .75); max-width: 480px; }
.contact-cards { display: grid; gap: 16px; }
.contact-card {
  background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius); padding: 24px 26px; display: flex; gap: 18px; align-items: center;
}
.contact-card svg { width: 26px; height: 26px; stroke: var(--gold); flex: 0 0 26px; }
.contact-card .cc-label { font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(250, 248, 244, .6); }
.contact-card a, .contact-card .cc-val { color: #fff; font-weight: 700; font-size: 1.15rem; }
.contact-card a:hover { color: var(--gold); }

/* ---------- Footer ---------- */
.site-footer { background: #1c1916; color: rgba(250, 248, 244, .65); padding: 46px 0; font-size: .9rem; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
.footer-brand .b-top { font-size: .62rem; letter-spacing: .3em; color: rgba(250,248,244,.5); text-transform: uppercase; }
.footer-brand .b-main { font-size: 1.2rem; font-weight: 800; color: #fff; text-transform: uppercase; letter-spacing: .02em; }
.footer-links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-links a { color: rgba(250, 248, 244, .75); }
.footer-links a:hover { color: #fff; }

/* ---------- Breadcrumb (Leistungs-Detailseiten) ---------- */
.breadcrumb { padding: 22px 0 0; font-size: .84rem; color: var(--ink-soft); }
.breadcrumb a { color: var(--ink-soft); }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb span { color: var(--red); font-weight: 600; }

/* Verlinkte Leistungs-Karten */
a.service-card { display: block; color: inherit; }
a.service-card .more { display: inline-flex; align-items: center; gap: 6px; margin-top: 14px; font-size: .82rem; font-weight: 700; color: var(--red); letter-spacing: .04em; text-transform: uppercase; }
a.service-card:hover .more { gap: 10px; }

/* ---------- Unterseiten (Impressum/Datenschutz) ---------- */
.legal { padding: 80px 0; max-width: 780px; margin: 0 auto; }
.legal h1 { font-size: 2.6rem; margin-bottom: 30px; }
.legal h2 { font-size: 1.5rem; margin: 36px 0 12px; }
.legal p, .legal li { color: var(--ink-soft); font-size: .98rem; margin-bottom: 10px; }
.legal ul { padding-left: 22px; }

/* ---------- Rezensions-Slider ---------- */
.review-slider { display: flex; align-items: stretch; gap: 16px; }
.review-viewport { flex: 1; overflow: hidden; border-radius: var(--radius); }
.review-track { display: flex; transition: transform .45s cubic-bezier(.4, 0, .2, 1); }
.review-slide {
  flex: 0 0 100%;
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 46px 52px; position: relative;
}
.review-slide::before {
  content: "\201E"; position: absolute; top: 8px; left: 30px;
  font-family: var(--serif); font-size: 6rem; color: var(--red-tint); line-height: 1;
}
.review-slide .stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 16px; position: relative; }
.review-slide blockquote { font-size: 1.22rem; line-height: 1.55; font-style: italic; color: var(--ink); margin-bottom: 22px; position: relative; }
.review-slide cite { font-style: normal; font-size: .9rem; font-weight: 700; }
.review-slide cite span { display: block; font-weight: 400; color: var(--ink-soft); margin-top: 2px; }
.rev-arrow {
  flex: 0 0 48px; width: 48px; align-self: center;
  height: 48px; border-radius: 50%; border: 1.5px solid var(--line);
  background: #fff; color: var(--ink); cursor: pointer;
  display: flex; align-items: center; justify-content: center; transition: all .2s ease;
}
.rev-arrow svg { width: 22px; height: 22px; stroke: currentColor; }
.rev-arrow:hover { background: var(--red); color: #fff; border-color: var(--red); }
.review-dots { display: flex; justify-content: center; gap: 9px; margin-top: 22px; }
.review-dots button {
  width: 9px; height: 9px; border-radius: 50%; border: 0; padding: 0;
  background: var(--line); cursor: pointer; transition: all .2s ease;
}
.review-dots button.active { background: var(--red); width: 26px; border-radius: 5px; }
.reviews-cta { text-align: center; margin-top: 34px; }

/* ---------- Kontaktformular ---------- */
.contact-form {
  background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius); padding: 34px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { margin-bottom: 16px; display: flex; flex-direction: column; }
.form-field label { font-size: .82rem; font-weight: 600; color: rgba(250, 248, 244, .8); margin-bottom: 7px; }
.form-field .opt { font-weight: 400; color: rgba(250, 248, 244, .5); }
.form-field input, .form-field select, .form-field textarea {
  font-family: var(--sans); font-size: .96rem; color: var(--ink);
  background: var(--paper); border: 1px solid rgba(255, 255, 255, .18); border-radius: 10px;
  padding: 12px 14px; width: 100%; transition: border-color .2s ease, box-shadow .2s ease;
}
.form-field textarea { resize: vertical; min-height: 96px; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201, 162, 75, .25);
}
.form-check { display: flex; gap: 11px; align-items: flex-start; margin: 6px 0 20px; font-size: .84rem; color: rgba(250, 248, 244, .78); line-height: 1.5; }
.form-check input { flex: 0 0 18px; width: 18px; height: 18px; margin-top: 2px; accent-color: var(--gold); }
.form-check a { color: var(--gold); text-decoration: underline; }
.form-status { margin-top: 16px; padding: 13px 16px; border-radius: 10px; font-size: .9rem; font-weight: 600; }
.form-status.is-ok { background: rgba(120, 180, 120, .18); color: #d7f0d7; border: 1px solid rgba(120, 180, 120, .4); }
.form-status.is-err { background: rgba(200, 90, 90, .18); color: #f6d5d5; border: 1px solid rgba(200, 90, 90, .4); }
.contact-grid { align-items: start; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 980px) {
  .section { padding: 72px 0; }
  .hero-grid, .feature-grid, .band-grid, .split-grid, .contact-grid { grid-template-columns: 1fr; gap: 42px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .awards-grid, .reviews-grid, .branches-grid, .maps-grid { grid-template-columns: 1fr; }
  .gmap { height: 340px; }
  .hero-media .main-img { height: 380px; }
  .hero-card { left: 16px; bottom: 16px; }
  .t-item, .t-item:nth-child(even) { grid-template-columns: 1fr; gap: 18px; }
  .timeline::before { left: 8px; }
  .t-item::after { left: 8px; top: 14px; }
  .t-item .t-text, .t-item:nth-child(even) .t-text { order: 1; text-align: left; padding-left: 34px; }
  .t-item .t-media, .t-item:nth-child(even) .t-media { order: 2; justify-content: flex-start; padding-left: 34px; }
}
@media (max-width: 760px) {
  .main-nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--paper); border-bottom: 1px solid var(--line);
    flex-direction: column; padding: 22px 24px; gap: 18px; align-items: flex-start;
    box-shadow: var(--shadow-lg);
  }
  .main-nav.open { display: flex; }
  .nav-toggle { display: block; }
  .services-grid { grid-template-columns: 1fr; }
  .hero { padding: 56px 0 48px; }
  .hero-ctas .btn { width: 100%; }
  .band-price .euro { font-size: 3.4rem; }
  .t-media img { width: 100%; height: 200px; }
  .award-card { flex-direction: column; align-items: flex-start; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .review-slide { padding: 34px 26px; }
  .review-slide blockquote { font-size: 1.08rem; }
  .rev-arrow { flex-basis: 40px; width: 40px; height: 40px; }
}
