/**
 * Location:    /assets/css/style.css
 * File:        style.css
 * Function:    Complete design system for Gardinen & Teppich Manufaktur.
 *              Mobile-first, WCAG AA, Bootstrap 5.3 extension.
 *              Colour palette: crimson #7B0A0A, gold #C9A84C, cream #FAF6EE.
 *
 * Version:     3.0.0
 * History:
 *   1.0.0 - 2025-02-20 - Initial release.
 *   2.0.0 - 2025-02-20 - Added wash step cards, advantage cards, care cards etc.
 *   3.0.0 - 2025-02-21 - Full mobile-first overhaul: sticky bottom CTA bar,
 *                         hero layout fix for 320 px+, fluid typography,
 *                         logo helpers (section/dark/pricing), before-after flex
 *                         layout, wash pills horizontal scroll, repair 2-col on xs,
 *                         alert-365 rewrite, section-cta-bar, pricing-cta-group,
 *                         final-cta responsive, complete footer responsive system,
 *                         improved touch targets (min 48×48 px), reduced motion.
 */

/* ═══════════════════════════════════════════════════════════════════
   DESIGN TOKENS
═══════════════════════════════════════════════════════════════════ */
:root {
  --brand-crimson:    #7B0A0A;
  --brand-crimson-d:  #5a0707;
  --brand-gold:       #C9A84C;
  --brand-gold-l:     #E8C96A;
  --brand-dark:       #1a0a00;
  --brand-darkest:    #0d0500;
  --brand-cream:      #FAF6EE;
  --brand-light:      #F5EFE3;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Lato', system-ui, sans-serif;

  --radius-card:  1rem;
  --shadow-card:  0 4px 24px rgba(0,0,0,.09);
  --transition:   0.25s ease;

  /* Mobile bottom bar height – used for body padding */
  --mob-bar-h:    60px;
}

/* ═══════════════════════════════════════════════════════════════════
   BASE
═══════════════════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--brand-cream);
  color: #2a1a0a;
  line-height: 1.7;
  /* Space for mobile sticky bottom bar */
  padding-bottom: var(--mob-bar-h);
}
@media (min-width: 992px) {
  body { padding-bottom: 0; }
}

/* ═══════════════════════════════════════════════════════════════════
   UTILITY COLOURS
═══════════════════════════════════════════════════════════════════ */
.bg-brand-dark    { background: var(--brand-dark)    !important; }
.bg-brand-darkest { background: var(--brand-darkest) !important; }
.bg-cream         { background: var(--brand-cream)   !important; }
.bg-crimson       { background: var(--brand-crimson) !important; }
.text-gold        { color: var(--brand-gold)         !important; }
.text-crimson     { color: var(--brand-crimson)      !important; }
.border-gold      { border-color: var(--brand-gold)  !important; }
.letter-space     { letter-spacing: .08em; }

/* ═══════════════════════════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════════════════════════ */
.btn {
  /* Ensure minimum 44 px height on all buttons for touch */
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn-gold {
  background-color: var(--brand-gold);
  border-color: var(--brand-gold);
  color: var(--brand-dark);
  font-weight: 700;
  transition: background-color var(--transition), transform var(--transition);
}
.btn-gold:hover, .btn-gold:focus {
  background-color: var(--brand-gold-l);
  border-color: var(--brand-gold-l);
  color: var(--brand-dark);
  transform: translateY(-1px);
}
.btn-outline-gold {
  border-color: var(--brand-gold);
  color: var(--brand-gold);
  font-weight: 600;
  transition: var(--transition);
}
.btn-outline-gold:hover { background: var(--brand-gold); color: var(--brand-dark); }

.btn-crimson {
  background-color: var(--brand-crimson);
  border-color: var(--brand-crimson);
  color: #fff;
  font-weight: 700;
  transition: background-color var(--transition), transform var(--transition);
}
.btn-crimson:hover, .btn-crimson:focus {
  background-color: var(--brand-crimson-d);
  border-color: var(--brand-crimson-d);
  color: #fff;
  transform: translateY(-1px);
}
.btn-outline-crimson {
  border-color: var(--brand-crimson);
  color: var(--brand-crimson);
  font-weight: 600;
  transition: var(--transition);
}
.btn-outline-crimson:hover { background: var(--brand-crimson); color: #fff; }
.btn-xl { padding: .8rem 2.2rem; font-size: 1.05rem; }

/* ═══════════════════════════════════════════════════════════════════
   SITE NAVBAR (slim sticky bar)
═══════════════════════════════════════════════════════════════════ */
.site-navbar {
  background: var(--brand-dark);
  border-bottom: 2px solid rgba(201,168,76,.2);
  height: 62px;
  display: flex;
  align-items: center;
  z-index: 1020;
  box-shadow: 0 2px 12px rgba(0,0,0,.25);
}
.site-navbar .container {
  display: flex;
  align-items: center;
  height: 100%;
}
.site-navbar-brand { display: flex; align-items: center; }

/* Logo in navbar */
.navbar-logo {
  height: 38px;
  width: auto;
  display: block;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,.4));
  transition: opacity .2s;
}
.site-navbar-brand:hover .navbar-logo { opacity: .85; }
@media (min-width: 992px) { .navbar-logo { height: 42px; } }

/* Desktop nav links */
.desktop-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  gap: .15rem;
}
.desktop-nav-link {
  display: block;
  padding: .45rem .55rem;
  font-weight: 600;
  font-size: .86rem;
  letter-spacing: .02em;
  color: rgba(255,255,255,.8);
  text-decoration: none;
  border-radius: .35rem;
  transition: color var(--transition), background var(--transition);
  min-height: 44px;
  display: flex;
  align-items: center;
}
.desktop-nav-link:hover,
.desktop-nav-link.active {
  color: var(--brand-gold);
  background: rgba(201,168,76,.08);
}

/* Hamburger button */
.drawer-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem .4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  flex-shrink: 0;
}
.hamburger-line {
  display: block;
  height: 2px;
  width: 22px;
  background: #fff;
  border-radius: 2px;
  transition: transform .3s ease, opacity .2s;
}
/* Animate to X when open */
body.drawer-open .drawer-toggle .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
body.drawer-open .drawer-toggle .hamburger-line:nth-child(2) {
  opacity: 0;
}
body.drawer-open .drawer-toggle .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ═══════════════════════════════════════════════════════════════════
   RIGHT-SIDE DRAWER
═══════════════════════════════════════════════════════════════════ */
/* Prevent body scroll when drawer open */
body.drawer-open { overflow: hidden; }

/* Backdrop */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1039;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(3px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
}
.drawer-backdrop.is-visible {
  opacity: 1;
  pointer-events: all;
}

/* Drawer panel */
.nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1040;
  width: min(340px, 90vw);
  background: var(--brand-darkest);
  border-left: 1px solid rgba(201,168,76,.18);
  box-shadow: -8px 0 40px rgba(0,0,0,.45);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  /* Start off-screen */
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  /* hidden attr hides visually until JS removes it, then CSS drives */
}
.nav-drawer.is-open {
  transform: translateX(0);
}

/* Drawer header */
.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(201,168,76,.15);
  flex-shrink: 0;
  background: var(--brand-dark);
}
.drawer-logo {
  height: 36px;
  width: auto;
  filter: drop-shadow(0 1px 4px rgba(0,0,0,.5));
}
.drawer-close {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.8);
  width: 38px;
  height: 38px;
  border-radius: .45rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
  flex-shrink: 0;
}
.drawer-close:hover { background: var(--brand-crimson); color: #fff; border-color: var(--brand-crimson); }

/* Drawer nav links */
.drawer-nav { padding: .75rem 0; flex-shrink: 0; }
.drawer-nav-list {
  list-style: none;
  padding: 0 .75rem;
  margin: 0;
}
.drawer-nav-link {
  display: flex;
  align-items: center;
  padding: .85rem 1rem;
  margin-bottom: .2rem;
  color: rgba(255,255,255,.8);
  text-decoration: none;
  font-weight: 600;
  font-size: .97rem;
  border-radius: .6rem;
  letter-spacing: .01em;
  transition: background var(--transition), color var(--transition), padding-left var(--transition);
  min-height: 52px;
}
.drawer-nav-link .bi { color: var(--brand-gold); font-size: .95rem; flex-shrink: 0; }
.drawer-nav-link:hover,
.drawer-nav-link:focus {
  background: rgba(201,168,76,.1);
  color: var(--brand-gold);
  padding-left: 1.35rem;
  outline: none;
}

/* Divider between nav and contact */
.drawer-contact {
  margin: 0 .75rem 1.25rem;
  padding: 1.25rem;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(201,168,76,.15);
  border-radius: .75rem;
  flex-shrink: 0;
}
.drawer-contact-label {
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--brand-gold);
  margin-bottom: 1rem;
}
.drawer-contact-tel,
.drawer-contact-email {
  display: flex;
  align-items: center;
  gap: .6rem;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  padding: .6rem 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
  font-size: .95rem;
  transition: color var(--transition);
}
.drawer-contact-tel   { font-size: 1.05rem; color: var(--brand-gold); }
.drawer-contact-email { font-size: .82rem; color: rgba(255,255,255,.65); word-break: break-all; }
.drawer-contact-tel .bi,
.drawer-contact-email .bi { color: var(--brand-gold); flex-shrink: 0; }
.drawer-contact-tel:hover   { color: var(--brand-gold-l); }
.drawer-contact-email:hover { color: #fff; }

.drawer-hours {
  margin: .9rem 0 .75rem;
  display: flex;
  flex-direction: column;
  gap: .15rem;
}
.drawer-hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .8rem;
  padding: .25rem 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
  color: rgba(255,255,255,.6);
}
.drawer-hours-row:last-child { border-bottom: none; }
.drawer-hours-day  { color: rgba(255,255,255,.5); }
.drawer-hours-time { text-align: right; }

.drawer-address {
  font-size: .8rem;
  color: rgba(255,255,255,.5);
  padding: .5rem 0 .25rem;
  display: flex;
  align-items: flex-start;
  gap: .35rem;
}



/* ═══════════════════════════════════════════════════════════════════
   MOBILE STICKY BOTTOM CTA BAR
═══════════════════════════════════════════════════════════════════ */
.mobile-cta-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 1030;
  display: flex;
  height: var(--mob-bar-h);
  background: var(--brand-dark);
  border-top: 2px solid var(--brand-gold);
  box-shadow: 0 -4px 20px rgba(0,0,0,.35);
}
.mobile-cta-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .15rem;
  text-decoration: none;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: background var(--transition);
  border-right: 1px solid rgba(255,255,255,.07);
}
.mobile-cta-btn:last-child { border-right: none; }
.mobile-cta-btn .bi { font-size: 1.1rem; }
.mobile-cta-call { color: var(--brand-gold); }
.mobile-cta-call:hover, .mobile-cta-call:active {
  background: var(--brand-gold);
  color: var(--brand-dark);
}
.mobile-cta-mail { color: rgba(255,255,255,.8); }
.mobile-cta-mail:hover, .mobile-cta-mail:active {
  background: rgba(255,255,255,.1);
  color: #fff;
}
.mobile-cta-nav { color: rgba(255,255,255,.65); }
.mobile-cta-nav:hover, .mobile-cta-nav:active {
  background: rgba(255,255,255,.08);
  color: #fff;
}

/* ═══════════════════════════════════════════════════════════════════
   SECTION HELPERS
═══════════════════════════════════════════════════════════════════ */
.py-section { padding: 4.5rem 0; }

.section-eyebrow {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brand-crimson);
  margin-bottom: .4rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 4vw, 2.6rem);
  font-weight: 900;
  line-height: 1.2;
  color: var(--brand-dark);
  margin-bottom: .9rem;
}
.section-lead {
  font-size: 1rem;
  color: #6b5a42;
  max-width: 660px;
}

/* ── Section logo helpers ───────────────────────────────────────── */
.section-header-logo { line-height: 1; }
.section-logo-accent {
  /* Tinted for use on light backgrounds – golden SVG shows nicely */
  height: 36px;
  width: auto;
  opacity: .7;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,.15));
}
.section-logo-dark {
  height: 52px;
  width: auto;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.5));
  display: block;
}
.pricing-logo {
  height: 56px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.4));
}
.final-cta-logo {
  height: 56px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.3)) brightness(1.15);
}

/* ── Section CTA bar (shared) ──────────────────────────────────── */
.section-cta-bar {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  justify-content: center;
  padding: 1.5rem 1rem;
  background: var(--brand-light);
  border-radius: var(--radius-card);
  border: 1px solid rgba(201,168,76,.2);
}

/* ═══════════════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════════════ */
.hero-section {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(110deg,
    rgba(10,2,0,.88) 0%,
    rgba(90,7,7,.70) 50%,
    rgba(10,2,0,.45) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 4rem;
  padding-bottom: 3.5rem;
}

/* Mobile logo watermark in hero */
.hero-logo-mobile {
  height: 44px;
  width: auto;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.5));
  display: block;
}

/* Promo badges */
.hero-badge-valid,
.hero-badge-exp {
  position: absolute;
  top: 1rem;
  z-index: 10;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero-badge-valid {
  left: 1rem;
  background: #1565C0;
  color: #fff;
  padding: .6rem .9rem;
  border-radius: .6rem;
  font-size: .68rem;
  font-weight: 700;
  transform: rotate(-4deg);
  box-shadow: 0 4px 12px rgba(0,0,0,.3);
  line-height: 1.2;
}
.badge-days { font-size: 1.9rem; font-weight: 900; line-height: 1; display: block; }

.hero-badge-exp {
  right: 1rem;
  background: var(--brand-gold);
  color: var(--brand-dark);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  box-shadow: 0 4px 14px rgba(0,0,0,.3);
  font-weight: 700;
}
.badge-num { font-size: 1.6rem; font-weight: 900; line-height: 1; display: block; }

/* Rating pill */
.rating-pill {
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 2rem;
  padding: .3rem .9rem;
  font-size: .82rem;
  color: #fff;
  flex-wrap: wrap;
}

/* Hero title – fluid */
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 6.5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  color: #fff;
}

/* Action pill */
.action-pill {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  flex-wrap: wrap;
  background: rgba(255,255,255,.1);
  border: 1.5px solid var(--brand-gold);
  border-radius: 2rem;
  padding: .35rem 1rem;
  font-size: .82rem;
}
.action-pill-label   { color: rgba(255,255,255,.85); }
.action-pill-discount {
  background: var(--brand-gold);
  color: var(--brand-dark);
  font-weight: 900;
  font-size: .95rem;
  border-radius: 1rem;
  padding: .05rem .65rem;
}

.hero-lead {
  font-size: .97rem;
  color: rgba(255,255,255,.85);
  max-width: 560px;
}

/* Hero CTA group – stacked on mobile, row on sm+ */
.hero-cta-group {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.hero-cta-main { width: 100%; }
.hero-cta-sec  { width: 100%; }

@media (min-width: 576px) {
  .hero-cta-group   { flex-direction: row; flex-wrap: wrap; }
  .hero-cta-main,
  .hero-cta-sec     { width: auto; }
}

/* Price teaser */
.price-teaser {
  background: rgba(255,255,255,.1);
  border-radius: .5rem;
  padding: .5rem 1rem;
  font-size: .87rem;
  color: rgba(255,255,255,.9);
}
.price-old  { text-decoration: line-through; color: rgba(255,255,255,.5); margin-right: .4rem; }
.price-new  { font-size: 1.4rem; font-weight: 900; color: var(--brand-gold-l); margin-right: .25rem; }
.price-unit { font-size: .77rem; color: rgba(255,255,255,.65); }

/* ═══════════════════════════════════════════════════════════════════
   TRUST BAR
═══════════════════════════════════════════════════════════════════ */
.trust-value {
  font-size: 1.35rem;
  font-weight: 900;
  font-family: var(--font-display);
  color: var(--brand-gold);
  line-height: 1;
}
.trust-label {
  font-size: .62rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: rgba(255,255,255,.6);
  margin-top: .15rem;
}

/* ═══════════════════════════════════════════════════════════════════
   PICKUP STRIP
═══════════════════════════════════════════════════════════════════ */
.pickup-strip .btn:hover {
  background-color: var(--brand-crimson) !important;
  border-color: var(--brand-crimson) !important;
  color: #fff !important;
}

/* ═══════════════════════════════════════════════════════════════════
   SERVICE CARDS
═══════════════════════════════════════════════════════════════════ */
.service-card {
  background: #fff;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(123,10,10,.12);
}
.service-img-wrap { position: relative; overflow: hidden; }
.service-img {
  width: 100%; height: 200px;
  object-fit: cover;
  transition: transform .4s ease;
}
.service-card:hover .service-img { transform: scale(1.04); }

.service-icon-badge {
  position: absolute;
  bottom: .75rem; left: .75rem;
  background: var(--brand-crimson);
  color: #fff;
  width: 40px; height: 40px;
  border-radius: .5rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem;
  box-shadow: 0 2px 8px rgba(0,0,0,.25);
}
.service-card-body { padding: 1.2rem; }
.service-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: .5rem;
}
.service-desc {
  font-size: .88rem;
  color: #6b5a42;
  margin-bottom: .75rem;
}

/* ═══════════════════════════════════════════════════════════════════
   WASH PROCESS
═══════════════════════════════════════════════════════════════════ */
/* Horizontal-scroll pill row on mobile */
.wash-pills-scroller {
  display: flex;
  flex-wrap: nowrap;
  gap: .5rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: .25rem;
}
.wash-pills-scroller::-webkit-scrollbar { display: none; }
@media (min-width: 576px) {
  .wash-pills-scroller { flex-wrap: wrap; overflow-x: visible; justify-content: center; }
}

.wash-pill {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--brand-cream);
  border: 1.5px solid rgba(123,10,10,.2);
  color: #2a1a0a;
  border-radius: 2rem;
  padding: .35rem .9rem;
  font-size: .8rem;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
}

.wash-step-card {
  background: var(--brand-light);
  border-left: 4px solid var(--brand-gold);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.wash-step-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}
.step-num {
  position: absolute;
  top: 1rem; right: 1rem;
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--brand-gold);
  opacity: .18;
  line-height: 1;
  user-select: none;
  pointer-events: none;
}
.wash-step-img { height: 160px; object-fit: cover; }
.wash-step-title { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; color: var(--brand-dark); }
.wash-step-sub   { font-size: .78rem; }
.wash-step-desc  { font-size: .87rem; color: #6b5a42; }

/* ═══════════════════════════════════════════════════════════════════
   WHY US (E-E-A-T)
═══════════════════════════════════════════════════════════════════ */
.eeat-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(201,168,76,.3);
}
.eeat-portrait {
  width: 72px; height: 72px;
  object-fit: cover;
  flex-shrink: 0;
}
.spec-pill {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(201,168,76,.15);
}
.why-img { max-height: 460px; object-fit: cover; }

/* ═══════════════════════════════════════════════════════════════════
   ADVANTAGE CARDS
═══════════════════════════════════════════════════════════════════ */
.advantage-card {
  background: #fff;
  border-top: 3px solid var(--brand-gold);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
}
.advantage-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0,0,0,.1);
}
.advantage-icon {
  width: 52px; height: 52px;
  background: var(--brand-light);
  border-radius: .75rem;
  display: flex; align-items: center; justify-content: center;
  color: var(--brand-crimson);
  font-size: 1.4rem;
}
.advantage-title { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--brand-dark); margin-bottom: .5rem; }
.advantage-desc  { font-size: .87rem; color: #6b5a42; }

/* ── 365 Alert ──────────────────────────────────────────────────── */
.alert-365 {
  background: linear-gradient(135deg, #fff8e1 0%, #fef3c7 100%);
  border: 2px solid rgba(201,168,76,.4);
  border-radius: var(--radius-card);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.alert-365-inner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.num-365 {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 900;
  color: var(--brand-gold);
  line-height: 1;
  flex-shrink: 0;
}
.alert-365-text { flex: 1 1 200px; }
.alert-365-cta  { align-self: flex-start; }

@media (min-width: 768px) {
  .alert-365 { flex-direction: row; align-items: center; padding: 2rem; }
  .alert-365-cta { flex-shrink: 0; margin-left: auto; }
  .num-365 { font-size: 5rem; }
}

/* ═══════════════════════════════════════════════════════════════════
   REPAIRS
═══════════════════════════════════════════════════════════════════ */
.repair-card-v2 {
  background: #fff;
  border-left: 3px solid var(--brand-gold);
  box-shadow: 0 2px 10px rgba(0,0,0,.06);
  transition: transform var(--transition), box-shadow var(--transition);
}
.repair-card-v2:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,.1);
}
.repair-title { font-size: .82rem; font-weight: 700; color: var(--brand-dark); }
.repair-desc  { font-size: .78rem; color: #6b5a42; }
.repair-thumb { height: 100px; object-fit: cover; width: 100%; }

/* Before/After: flex row on md+, column on mobile */
.before-after-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.ba-item { width: 100%; }
.ba-arrow-wrap { display: flex; justify-content: center; }
.ba-arrow-icon {
  font-size: 2.5rem;
  color: var(--brand-crimson);
  transform: rotate(90deg);
}
@media (min-width: 768px) {
  .before-after-wrap { flex-direction: row; align-items: center; gap: 1.5rem; }
  .ba-item { flex: 1; }
  .ba-arrow-wrap { flex-shrink: 0; }
  .ba-arrow-icon { transform: none; font-size: 3rem; }
}

.before-after-card { position: relative; border-radius: .75rem; overflow: hidden; }
.ba-label {
  position: absolute;
  top: .75rem; left: .75rem;
  z-index: 2;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: .25rem .75rem;
  border-radius: 2rem;
}
.ba-before { background: rgba(0,0,0,.65); color: #fff; }
.ba-after  { background: rgba(25,135,84,.85); color: #fff; }

/* ═══════════════════════════════════════════════════════════════════
   APPRAISAL
═══════════════════════════════════════════════════════════════════ */
.appraisal-list { padding: 0; list-style: none; }
.appraisal-list li {
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding-bottom: .5rem;
}
.appraisal-list li:last-child { border-bottom: none; }

/* ═══════════════════════════════════════════════════════════════════
   CARE CARDS
═══════════════════════════════════════════════════════════════════ */
.care-card {
  background: #fff;
  border-top: 3px solid var(--brand-crimson);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition);
}
.care-card:hover { transform: translateY(-3px); }
.care-icon {
  width: 48px; height: 48px;
  background: var(--brand-light);
  border-radius: .75rem;
  display: flex; align-items: center; justify-content: center;
  color: var(--brand-crimson);
  font-size: 1.35rem;
}
.care-title { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--brand-dark); margin-bottom: .4rem; }
.care-desc  { font-size: .87rem; color: #6b5a42; }

/* ═══════════════════════════════════════════════════════════════════
   UNDERLAY
═══════════════════════════════════════════════════════════════════ */
.underlay-benefit {
  background: var(--brand-light);
  border: 1px solid rgba(123,10,10,.1);
  transition: border-color var(--transition);
}
.underlay-benefit:hover { border-color: var(--brand-crimson); }

/* ═══════════════════════════════════════════════════════════════════
   PRICING / WINTER AKTION
═══════════════════════════════════════════════════════════════════ */
.pricing-section {
  background: linear-gradient(160deg, var(--brand-dark) 0%, #3d0909 100%);
}
.pricing-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(201,168,76,.25);
  color: #fff;
  backdrop-filter: blur(2px);
}
.winter-badge {
  display: inline-block;
  background: #1565C0;
  color: #fff;
  font-size: .78rem;
  font-weight: 700;
  padding: .3rem 1rem;
  border-radius: 2rem;
  letter-spacing: .06em;
}
.pricing-headline {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 4vw, 2.2rem);
  font-weight: 900;
  color: #fff;
}
.pricing-display { display: flex; align-items: baseline; justify-content: center; gap: .5rem; flex-wrap: wrap; }
.price-strike { text-decoration: line-through; color: rgba(255,255,255,.4); font-size: 1.1rem; }
.price-big    { font-family: var(--font-display); font-size: clamp(2.5rem, 8vw, 4.5rem); font-weight: 900; color: var(--brand-gold-l); line-height: 1; }
.price-suffix { font-size: .95rem; color: rgba(255,255,255,.65); }
.discount-pill {
  display: inline-block;
  background: var(--brand-gold);
  color: var(--brand-dark);
  font-weight: 700;
  padding: .3rem 1.1rem;
  border-radius: 2rem;
  font-size: .87rem;
}
.pricing-features { font-size: .92rem; }
.pricing-features li { border-bottom: 1px solid rgba(255,255,255,.06); padding-bottom: .4rem; }
.pricing-disclaimer { font-size: .72rem; color: rgba(255,255,255,.4); }

/* Pricing CTAs – stacked on mobile */
.pricing-cta-group {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  align-items: center;
}
.pricing-cta-main { width: 100%; max-width: 380px; }
@media (min-width: 576px) {
  .pricing-cta-group { flex-direction: row; justify-content: center; }
  .pricing-cta-main  { width: auto; }
}

/* ═══════════════════════════════════════════════════════════════════
   FAQ
═══════════════════════════════════════════════════════════════════ */
.accordion-item { background: #fff; }
.accordion-button {
  font-size: .92rem;
  color: var(--brand-dark);
  background: #fff;
  padding: 1rem 1.25rem;
  min-height: 52px;
}
.accordion-button:not(.collapsed) {
  color: var(--brand-crimson);
  background: #fff9f0;
  box-shadow: none;
}
.accordion-button::after {
  filter: invert(15%) sepia(90%) saturate(600%) hue-rotate(340deg);
}
.accordion-body { background: #fff9f0; font-size: .88rem; padding: .75rem 1.25rem 1rem; }

/* ═══════════════════════════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════════════════════════ */
.contact-info-block {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(201,168,76,.25);
}
.contact-item {
  display: flex;
  align-items: flex-start;
}
.map-wrap iframe { display: block; }

/* ═══════════════════════════════════════════════════════════════════
   FINAL CTA STRIP
═══════════════════════════════════════════════════════════════════ */
.final-cta-strip { background: var(--brand-crimson) !important; }
.final-cta-title { font-family: var(--font-display); font-size: clamp(1.5rem, 4vw, 2.3rem); }
.final-cta-sub   { font-size: .95rem; opacity: .88; }

/* CTA buttons – stacked on mobile */
.final-cta-btns {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  align-items: center;
}
@media (min-width: 576px) {
  .final-cta-btns { flex-direction: row; justify-content: center; }
}

/* ═══════════════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--brand-darkest);
  border-top: 1px solid rgba(201,168,76,.15);
}
.footer-body { border-bottom: 1px solid rgba(255,255,255,.07); }

.footer-logo {
  height: 56px; width: auto;
  display: block;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.5));
  transition: opacity .2s;
}
.footer-logo-link:hover .footer-logo { opacity: .8; }

.footer-tagline {
  color: rgba(255,255,255,.5);
  font-size: .82rem;
  line-height: 1.6;
}
.footer-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(201,168,76,.1);
  border: 1px solid rgba(201,168,76,.25);
  color: rgba(255,255,255,.7);
  border-radius: .4rem;
  padding: .25rem .6rem;
  font-size: .7rem;
  font-weight: 600;
}
.footer-badge .bi { color: var(--brand-gold); font-size: .75rem; }

.footer-heading {
  font-family: var(--font-display);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--brand-gold);
  margin-bottom: .85rem;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { border-bottom: 1px solid rgba(255,255,255,.05); }
.footer-links li:last-child { border-bottom: none; }
.footer-links a {
  display: block;
  color: rgba(255,255,255,.55);
  text-decoration: none;
  font-size: .83rem;
  padding: .4rem 0;
  min-height: 40px;
  line-height: 1.4;
  display: flex;
  align-items: center;
  transition: color .2s, padding-left .2s;
}
.footer-links a:hover { color: var(--brand-gold); padding-left: .4rem; }

.footer-contact-list { list-style: none; padding: 0; margin: 0; }
.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  color: rgba(255,255,255,.55);
  font-size: .83rem;
  padding: .4rem 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
  line-height: 1.5;
}
.footer-contact-list li:last-child { border-bottom: none; }
.footer-contact-list .bi { flex-shrink: 0; margin-top: .15rem; font-size: .95rem; }
.footer-contact-list a {
  color: rgba(255,255,255,.75);
  text-decoration: none;
  transition: color .2s;
  word-break: break-all;
}
.footer-contact-list a:hover { color: var(--brand-gold); }

.footer-hours-table { border-collapse: collapse; font-size: .8rem; }
.footer-hours-table tr { border-bottom: 1px solid rgba(255,255,255,.05); }
.footer-hours-table tr:last-child { border-bottom: none; }
.footer-hours-table td { padding: .28rem 0; vertical-align: top; }
.footer-hours-day  { color: rgba(255,255,255,.5); width: 55%; }
.footer-hours-time { text-align: right; }

.footer-bottom { padding: .9rem 0; background: rgba(0,0,0,.2); }
.footer-legal-link {
  color: rgba(255,255,255,.35);
  font-size: .76rem;
  text-decoration: none;
  transition: color .2s;
}
.footer-legal-link:hover { color: var(--brand-gold); }

/* Legal pages: smaller footer logo */
.footer-logo-sm {
  height: 40px; width: auto;
  filter: drop-shadow(0 1px 4px rgba(0,0,0,.5));
}

/* ═══════════════════════════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
═══════════════════════════════════════════════════════════════════ */

/* ── ≤ 767px (phones) ───────────────────────────────────────────── */
@media (max-width: 767px) {
  .py-section        { padding: 3rem 0; }
  .hero-section      { min-height: 400px; }
  .hero-content      { padding-top: 2.5rem; padding-bottom: 5rem; }
  .hero-title        { font-size: clamp(1.55rem, 8vw, 2.2rem); }
  .section-title     { font-size: clamp(1.35rem, 5.5vw, 1.9rem); }
  .section-logo-dark { height: 40px; }
  .footer-logo       { height: 44px; }
  .pricing-logo      { height: 44px; }
  .final-cta-logo    { height: 44px; }
  .btn-xl            { padding: .75rem 1.5rem; font-size: .97rem; }
  .num-365           { font-size: 3rem; }
  .eeat-portrait     { width: 56px; height: 56px; }
  .footer-body       { padding-top: 2.5rem; padding-bottom: 2.5rem; }
}

/* ── ≤ 479px (very small phones) ──────────────────────────────── */
@media (max-width: 479px) {
  .hero-badge-valid,
  .hero-badge-exp    { display: none !important; }
  .hero-logo-mobile  { height: 36px; }
  .rating-pill       { font-size: .75rem; padding: .25rem .7rem; }
  .action-pill       { font-size: .75rem; padding: .3rem .8rem; }
  .price-new         { font-size: 1.2rem; }
  .trust-value       { font-size: 1.1rem; }
  .trust-label       { font-size: .58rem; }
  .section-cta-bar   { padding: 1rem .75rem; }
  .wash-step-img     { height: 130px; }
  .service-img       { height: 170px; }
  .footer-body       { padding-top: 2rem; }
  .footer-logo       { height: 38px; }
}

/* ── 768–991px (tablets) ───────────────────────────────────────── */
@media (min-width: 768px) and (max-width: 991px) {
  .hero-content { padding-top: 3.5rem; }
  .navbar-logo  { height: 36px; }
}

/* ── ≥ 992px (desktop – remove mobile bar compensation) ─────────── */
@media (min-width: 992px) {
  .navbar-logo  { height: 42px; }
  .section-logo-dark { height: 56px; }
  .footer-logo  { height: 60px; }
  .pricing-logo { height: 60px; }
  .final-cta-logo { height: 60px; }
}

/* ═══════════════════════════════════════════════════════════════════
   PROFI-TIP BOX
═══════════════════════════════════════════════════════════════════ */
.profi-tip-box {
  border: 1px solid rgba(201,168,76,.2);
}

/* ═══════════════════════════════════════════════════════════════════
   REDUCED MOTION
═══════════════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  html { scroll-behavior: auto; }
}
@media (prefers-reduced-motion: no-preference) {
  .service-card,
  .wash-step-card,
  .advantage-card,
  .care-card,
  .repair-card-v2 { will-change: transform; }
}

/* ═══════════════════════════════════════════════════════════════════
   ACCESSIBILITY
═══════════════════════════════════════════════════════════════════ */
:focus-visible {
  outline: 3px solid var(--brand-gold);
  outline-offset: 2px;
}
/* Scroll offset for anchor links (sticky nav compensation) */
[id] { scroll-margin-top: 72px; }
@media (max-width: 991px) {
  [id] { scroll-margin-top: 64px; }
}
