/* =========================================================
   Reifen Lindinger GmbH — Design System
   Farben: Orange #F86302 · Weiß #FEFEFE · Fast-Schwarz #1a1a1a
   ========================================================= */

:root {
  --orange: #F86302;
  --orange-dark: #d24f00;
  --orange-soft: #fff1e8;
  --orange-tint: #ffe6d5;
  --white: #FEFEFE;
  --ink: #1a1a1a;
  --ink-soft: #2b2b2b;
  --ink-mute: #6a6a6a;
  --line: #e9e9e9;
  --line-soft: #f2f2f2;
  --bg: #FEFEFE;
  --bg-alt: #f7f6f5;

  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 10px 30px rgba(20,20,20,.08);
  --shadow-lg: 0 24px 60px rgba(20,20,20,.14);
  --shadow-orange: 0 14px 34px rgba(248,99,2,.30);

  --maxw: 1180px;
  --header-h: 76px;

  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-head: 'Barlow Condensed', 'Inter', sans-serif;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.01em;
  margin: 0 0 .4em;
  color: var(--ink);
}
h1 { font-size: clamp(2.6rem, 6vw, 4.8rem); text-transform: uppercase; letter-spacing: 0; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); text-transform: uppercase; }
h3 { font-size: clamp(1.3rem, 2vw, 1.7rem); }
p  { margin: 0 0 1rem; color: var(--ink-soft); }
strong { color: var(--ink); font-weight: 700; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 22px; }
.section { padding: clamp(56px, 9vw, 110px) 0; }
.section--alt { background: var(--bg-alt); }
.section--dark { background: var(--ink); color: var(--white); }
.section--dark h1, .section--dark h2, .section--dark h3 { color: var(--white); }
.section--dark p { color: rgba(255,255,255,.72); }

.grid { display: grid; gap: 26px; }
@media (min-width: 720px)  { .grid-2 { grid-template-columns: repeat(2, minmax(0,1fr)); } .grid-3 { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (min-width: 980px)  { .grid-3 { grid-template-columns: repeat(3, minmax(0,1fr)); } .grid-4 { grid-template-columns: repeat(4, minmax(0,1fr)); } }

/* ---------- Eyebrow / headings ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body);
  font-weight: 700; font-size: .8rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--orange); display: inline-block; }
.section--dark .eyebrow { color: var(--orange); }

.section-head { max-width: 660px; margin-bottom: 48px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow::before { display: none; }
.lead { font-size: 1.15rem; color: var(--ink-mute); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-body); font-weight: 700; font-size: .98rem;
  padding: 14px 26px; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--orange); color: #fff; box-shadow: var(--shadow-orange); }
.btn--primary:hover { background: var(--orange-dark); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--ink); border-color: rgba(26,26,26,.18); }
.btn--ghost:hover { border-color: var(--orange); color: var(--orange); transform: translateY(-2px); }
.btn--light { background: #fff; color: var(--ink); }
.btn--light:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn--onDark { background: transparent; color: #fff; border-color: rgba(255,255,255,.28); }
.btn--onDark:hover { border-color: var(--orange); color: var(--orange); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(254,254,254,.92);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .2s ease;
}
.site-header.scrolled { box-shadow: 0 6px 24px rgba(20,20,20,.07); }
.nav { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); }
.nav__logo img { height: 46px; width: auto; }
.nav__menu { display: none; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav__link {
  position: relative; display: inline-flex; align-items: center; gap: 6px;
  font-weight: 600; font-size: .96rem; color: var(--ink-soft);
  padding: 10px 14px; border-radius: 10px; transition: color .15s ease, background .15s ease;
}
.nav__link:hover { color: var(--orange); }
.nav__link.active { color: var(--orange); }
.nav__link.active::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 4px; height: 2px; background: var(--orange); border-radius: 2px;
}
.nav__cta { display: none; }

/* Dropdown */
.has-drop { position: relative; }
.drop {
  position: absolute; top: calc(100% + 8px); left: 0; min-width: 250px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: 8px; list-style: none; margin: 0;
  opacity: 0; visibility: hidden; transform: translateY(8px); transition: all .18s ease;
}
.has-drop:hover .drop, .has-drop:focus-within .drop { opacity: 1; visibility: visible; transform: translateY(0); }
.drop a {
  display: flex; align-items: center; gap: 12px; padding: 11px 12px; border-radius: 10px;
  font-weight: 600; font-size: .94rem; color: var(--ink-soft); transition: background .14s ease, color .14s ease;
}
.drop a:hover { background: var(--orange-soft); color: var(--orange); }
.drop a svg { width: 20px; height: 20px; color: var(--orange); flex-shrink: 0; }
.nav__link .chev { width: 15px; height: 15px; transition: transform .18s ease; }
.has-drop:hover .chev { transform: rotate(180deg); }

/* Burger */
.burger {
  display: inline-flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  background: none; border: 0; cursor: pointer; padding: 10px; min-width: 44px; min-height: 44px; flex-shrink: 0;
}
.burger span { width: 24px; height: 2.5px; background: var(--ink); border-radius: 3px; transition: transform .25s ease, opacity .2s ease; }
.burger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: var(--header-h) 0 0; background: var(--white); z-index: 99;
  transform: translateX(100%); transition: transform .3s ease; overflow-y: auto; padding: 22px;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a { display: block; font-family: var(--font-head); text-transform: uppercase; font-size: 1.5rem; font-weight: 600; padding: 14px 4px; border-bottom: 1px solid var(--line); }
.mobile-menu a.sub { font-family: var(--font-body); text-transform: none; font-size: 1.05rem; font-weight: 600; padding-left: 18px; color: var(--ink-mute); }
.mobile-menu .btn { margin-top: 22px; width: 100%; }

@media (min-width: 1000px) {
  .nav__menu { display: flex; }
  .nav__cta { display: inline-flex; }
  .burger { display: none; }
}

/* ---------- Hero ---------- */
.hero { position: relative; background: var(--ink); color: var(--white); overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(900px 500px at 82% -10%, rgba(248,99,2,.28), transparent 60%),
    radial-gradient(700px 600px at 0% 110%, rgba(248,99,2,.10), transparent 55%);
}
.hero::after {
  content: ""; position: absolute; inset: 0; opacity: .5;
  background-image: repeating-linear-gradient(115deg, rgba(255,255,255,.03) 0 2px, transparent 2px 26px);
}
.hero__inner { position: relative; z-index: 2; padding-top: clamp(70px, 12vw, 140px); padding-bottom: clamp(110px, 12vw, 160px); }
.hero__grid { display: grid; gap: 40px; align-items: center; grid-template-columns: minmax(0,1fr); }
@media (min-width: 940px) { .hero__grid { grid-template-columns: minmax(0,1.15fr) minmax(0,.85fr); } }
.hero h1 { color: #fff; }
.hero h1 .accent { color: var(--orange); display: block; }
.hero p { color: rgba(255,255,255,.75); font-size: 1.2rem; max-width: 520px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 10px; padding: 8px 16px; margin-bottom: 26px;
  border: 1px solid rgba(255,255,255,.18); border-radius: 999px; background: rgba(255,255,255,.04);
  font-weight: 700; font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; color: #fff;
}
.hero__badge b { color: var(--orange); }

/* Hero background photo layer */
.hero__bg { position: absolute; inset: 0; z-index: 0; background: #101010 center/cover no-repeat; opacity: .18; }
.hero__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(16,16,16,.55), rgba(16,16,16,.92)); }

/* Hero media (Foto + schwebende Karte) */
.hero__media { position: relative; }
.hero__photo {
  position: relative; z-index: 1; display: block; width: 100%; aspect-ratio: 4/3; object-fit: cover;
  border-radius: var(--radius-lg); border: 1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow-lg); animation: heroPhoto .9s ease both;
}
@keyframes heroPhoto { from { opacity: 0; transform: translateY(22px) scale(.97); } to { opacity: 1; transform: none; } }
.hero__float {
  position: absolute; left: -14px; bottom: -18px; z-index: 2;
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,.98); color: var(--ink);
  padding: 13px 18px; border-radius: 16px; box-shadow: var(--shadow-lg);
  animation: heroPhoto 1.1s ease both;
}
.hero__float .ic { width: 42px; height: 42px; border-radius: 12px; background: var(--orange); color: #fff; display: grid; place-items: center; flex-shrink: 0; }
.hero__float .ic svg { width: 22px; height: 22px; }
.hero__float b { font-family: var(--font-head); text-transform: uppercase; font-size: 1.45rem; line-height: 1; display: block; }
.hero__float span { font-size: .76rem; color: var(--ink-mute); }
@media (max-width: 939px) { .hero__float { left: 12px; bottom: 12px; } }

/* Hero: fahrendes Auto auf der Straße */
.hero-road { position: absolute; left: 0; right: 0; bottom: 0; height: 62px; z-index: 3; overflow: hidden;
  background: linear-gradient(180deg, #23262b, #15171a); border-top: 3px solid rgba(255,255,255,.14); }
.hero-road::before { content: ""; position: absolute; left: 0; right: 0; top: 50%; height: 3px; transform: translateY(-50%);
  background: repeating-linear-gradient(90deg, #ffb27a 0 26px, transparent 26px 62px); opacity: .55;
  animation: roadDash 1s linear infinite; }
@keyframes roadDash { to { background-position: -62px 0; } }
.hero-car { position: absolute; bottom: 7px; left: 0; width: 158px; height: auto; z-index: 4;
  animation: heroDrive 9s linear infinite; will-change: transform; }
@keyframes heroDrive { 0% { transform: translateX(-200px); } 100% { transform: translateX(calc(100vw + 60px)); } }
.hero-car__wheel { transform-box: fill-box; transform-origin: center; animation: wheelSpin .5s linear infinite; }
@keyframes wheelSpin { to { transform: rotate(360deg); } }
@keyframes spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .hero-road::before, .hero-car, .hero-car__wheel { animation: none; } .hero-car { transform: translateX(60px); } }

/* Hero stats strip */
.hero__stats {
  position: relative; z-index: 2; display: grid; grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px; border-top: 1px solid rgba(255,255,255,.12); padding-top: 30px; margin-top: 46px;
}
.hero__stats .num { font-family: var(--font-head); font-size: clamp(2rem,4vw,2.8rem); font-weight: 700; color: var(--orange); line-height: 1; }
.hero__stats .lbl { font-size: .82rem; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .06em; margin-top: 6px; }

/* ---------- Marquee (brands / trust) ---------- */
.strip { background: var(--orange); color: #fff; }
.strip__inner { display: flex; align-items: center; gap: 40px; padding: 16px 0; overflow: hidden; }
.strip__track { display: flex; align-items: center; gap: 54px; white-space: nowrap; animation: marquee 26s linear infinite; }
.strip__track span { font-family: var(--font-head); text-transform: uppercase; font-weight: 600; font-size: 1.25rem; letter-spacing: .04em; opacity: .95; display: inline-flex; align-items: center; gap: 54px; }
.strip__track span::after { content: "•"; opacity: .55; }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .strip__track { animation: none; } }

/* ---------- Cards ---------- */
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 30px; box-shadow: var(--shadow); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  height: 100%;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--orange-tint); }
.card__icon {
  width: 56px; height: 56px; border-radius: 14px; display: grid; place-items: center;
  background: var(--orange-soft); color: var(--orange); margin-bottom: 20px;
}
.card__icon svg { width: 28px; height: 28px; }
.card h3 { margin-bottom: 10px; }
.card p { margin: 0; font-size: .98rem; color: var(--ink-mute); }
.card__link { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; font-weight: 700; color: var(--orange); font-size: .92rem; }
.card__link svg { width: 16px; height: 16px; transition: transform .18s ease; }
.card:hover .card__link svg { transform: translateX(4px); }

/* Service card w/ number */
.card--num { position: relative; }
.card--num .num { position: absolute; top: 22px; right: 26px; font-family: var(--font-head); font-size: 3rem; font-weight: 700; color: var(--line); line-height: 1; }

/* Feature list */
.checks { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.checks li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink-soft); }
.checks li svg { width: 22px; height: 22px; color: var(--orange); flex-shrink: 0; margin-top: 2px; }

/* ---------- Split / media ---------- */
.split { display: grid; gap: 44px; align-items: center; }
@media (min-width: 900px) { .split { grid-template-columns: repeat(2,minmax(0,1fr)); } .split--wide { grid-template-columns: minmax(0,1.1fr) minmax(0,.9fr); } }
.media {
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/3;
  background: #eee center/cover;
}
.media.placeholder {
  display: grid; place-items: center; color: var(--ink-mute); text-align: center; padding: 24px;
  background: linear-gradient(160deg, #efedeb, #e2dfdc);
  border: 1px dashed #cfcac4;
}
.media.placeholder .ph-ic { width: 44px; height: 44px; color: var(--orange); margin: 0 auto 10px; }
.media.placeholder small { font-size: .8rem; opacity: .7; }
/* Bild mit automatischem Platzhalter-Fallback (Bild einfach nach img/ legen) */
.media { position: relative; }
.media > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 2; }
.media__ph { position: absolute; inset: 0; z-index: 1; display: grid; place-items: center; color: var(--ink-mute); text-align: center; padding: 24px; background: linear-gradient(160deg, #efedeb, #e2dfdc); }
.media__ph .ph-ic { width: 44px; height: 44px; color: var(--orange); margin: 0 auto 10px; }
.media__ph small { font-size: .8rem; opacity: .7; }

/* ---------- Timeline (Historie) ---------- */
.timeline { position: relative; margin-top: 30px; }
.timeline::before { content: ""; position: absolute; left: 14px; top: 8px; bottom: 8px; width: 2px; background: var(--line); }
.tl-item { position: relative; padding: 0 0 34px 52px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before {
  content: ""; position: absolute; left: 7px; top: 4px; width: 16px; height: 16px; border-radius: 50%;
  background: var(--orange); box-shadow: 0 0 0 4px var(--orange-soft);
}
.tl-year { font-family: var(--font-head); font-size: 1.6rem; font-weight: 700; color: var(--orange); line-height: 1; }
.tl-item p { margin: 6px 0 0; color: var(--ink-mute); }

/* ---------- Team ---------- */
.person { text-align: center; }
.person .avatar {
  width: 96px; height: 96px; border-radius: 50%; margin: 0 auto 16px; display: grid; place-items: center;
  font-family: var(--font-head); font-size: 2rem; font-weight: 700; color: #fff;
  background: linear-gradient(150deg, var(--orange), var(--orange-dark));
  box-shadow: var(--shadow);
}
.person h3 { margin-bottom: 2px; }
.person .role { color: var(--orange); font-weight: 700; font-size: .9rem; margin-bottom: 10px; }
.person .contact { font-size: .9rem; color: var(--ink-mute); }
.person .contact a:hover { color: var(--orange); }

/* ---------- Steps (Bandag process) ---------- */
.step { position: relative; padding-left: 66px; margin-bottom: 26px; }
.step__n {
  position: absolute; left: 0; top: 0; width: 46px; height: 46px; border-radius: 12px;
  background: var(--ink); color: #fff; display: grid; place-items: center;
  font-family: var(--font-head); font-size: 1.4rem; font-weight: 700;
}
.step h3 { margin-bottom: 4px; }
.step p { margin: 0; color: var(--ink-mute); font-size: .98rem; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; background: var(--orange); color: #fff; border-radius: var(--radius-lg); padding: clamp(36px,6vw,64px); }
.cta-band::after { content: ""; position: absolute; right: -60px; top: -60px; width: 280px; height: 280px; border-radius: 50%; border: 40px solid rgba(255,255,255,.10); }
.cta-band h2 { color: #fff; position: relative; }
.cta-band p { color: rgba(255,255,255,.9); position: relative; max-width: 520px; }
.cta-band .btn--light { position: relative; }
.cta-band .row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-top: 24px; }

/* ---------- Info / opening hours ---------- */
.info-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow); overflow: hidden; }
.info-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 14px 22px; border-bottom: 1px solid var(--line-soft); }
.info-row:last-child { border-bottom: 0; }
.info-row span:first-child { font-weight: 600; }
.info-row .now { display:inline-flex; align-items:center; gap:7px; color:#16794a; font-weight:700; font-size:.86rem; }
.info-row .now::before { content:""; width:8px; height:8px; border-radius:50%; background:#1fb567; box-shadow:0 0 0 3px rgba(31,181,103,.2); }

/* ---------- Contact form ---------- */
.form { display: grid; gap: 16px; }
.form .row2 { display: grid; gap: 16px; }
@media (min-width: 560px) { .form .row2 { grid-template-columns: 1fr 1fr; } }
.field label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: 6px; }
.field input, .field textarea, .field select {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: 12px;
  font: inherit; font-size: .98rem; background: #fff; color: var(--ink); transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--orange); box-shadow: 0 0 0 4px var(--orange-soft); }
.field textarea { min-height: 130px; resize: vertical; }
.consent { display: flex; gap: 10px; align-items: flex-start; font-size: .88rem; color: var(--ink-mute); }
.consent input { width: 18px; height: 18px; margin-top: 3px; accent-color: var(--orange); }
.form-note { font-size: .86rem; color: var(--ink-mute); }

/* ---------- Contact detail rows ---------- */
.detail { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 22px; }
.detail__ic { width: 46px; height: 46px; border-radius: 12px; background: var(--orange-soft); color: var(--orange); display: grid; place-items: center; flex-shrink: 0; }
.detail__ic svg { width: 22px; height: 22px; }
.detail b { display: block; font-family: var(--font-head); text-transform: uppercase; font-size: 1.05rem; letter-spacing: .01em; }
.detail a:hover { color: var(--orange); }

/* ---------- Page hero (subpages) ---------- */
.page-hero { color: #fff; position: relative; overflow: hidden;
  background: linear-gradient(rgba(16,16,16,.88), rgba(16,16,16,.96)), #101010 url('https://images.pexels.com/photos/3806252/pexels-photo-3806252.jpeg?auto=compress&cs=tinysrgb&w=1600') center/cover; }
.page-hero::before { content:""; position:absolute; inset:0; background: radial-gradient(700px 400px at 85% -20%, rgba(248,99,2,.26), transparent 60%); }
.page-hero__inner { position: relative; z-index: 2; padding-block: clamp(50px,8vw,90px); }
.page-hero h1 { color: #fff; }
.page-hero p { color: rgba(255,255,255,.72); max-width: 560px; font-size: 1.12rem; }
.crumb { display: flex; gap: 8px; align-items: center; font-size: .85rem; color: rgba(255,255,255,.55); margin-bottom: 18px; }
.crumb a:hover { color: var(--orange); }
.crumb svg { width: 14px; height: 14px; }

/* ---------- Prose ---------- */
.prose h2 { margin-top: 1.8em; }
.prose h3 { margin-top: 1.4em; }
.prose ul { padding-left: 1.1em; }
.prose li { margin-bottom: .4em; color: var(--ink-soft); }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: rgba(255,255,255,.72); padding: 70px 0 26px; }
.footer-grid { display: grid; gap: 40px; grid-template-columns: 1fr; }
@media (min-width: 760px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
@media (min-width: 1000px) { .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1.1fr; } }
.site-footer img.flogo { height: 50px; margin-bottom: 18px; }
.site-footer h4 { color: #fff; font-family: var(--font-head); text-transform: uppercase; font-size: 1.1rem; letter-spacing: .04em; margin-bottom: 16px; }
.site-footer a { color: rgba(255,255,255,.72); }
.site-footer a:hover { color: var(--orange); }
.fnav { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; font-size: .95rem; }
.fcontact { font-size: .95rem; display: grid; gap: 12px; }
.fcontact div { display: flex; gap: 10px; }
.fcontact svg { width: 18px; height: 18px; color: var(--orange); flex-shrink: 0; margin-top: 2px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 46px; padding-top: 22px; display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; font-size: .85rem; color: rgba(255,255,255,.5); }
.footer-bottom a { color: rgba(255,255,255,.5); }

/* ---------- Floating call button ---------- */
.fab {
  position: fixed; right: 22px; bottom: 22px; z-index: 60;
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--orange); color: #fff; font-weight: 700; font-size: .95rem;
  padding: 14px 20px; border-radius: 999px; box-shadow: var(--shadow-orange);
  transition: transform .18s ease;
}
.fab:hover { transform: translateY(-2px) scale(1.03); }
.fab svg { width: 20px; height: 20px; }
.fab .lbl { display: none; }
@media (min-width: 640px) { .fab .lbl { display: inline; } }

/* ---------- Cookie banner ---------- */
.cookie {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 200; max-width: 460px;
  background: #fff; color: var(--ink); border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: 22px; transform: translateY(140%); transition: transform .4s cubic-bezier(.2,.8,.2,1);
}
.cookie.show { transform: translateY(0); }
.cookie h4 { font-family: var(--font-head); text-transform: uppercase; margin-bottom: 8px; font-size: 1.2rem; }
.cookie p { font-size: .9rem; color: var(--ink-mute); margin-bottom: 14px; }
.cookie p a { color: var(--orange); text-decoration: underline; }
.cookie__row { display: flex; flex-wrap: wrap; gap: 10px; }
.cookie .btn { padding: 11px 18px; font-size: .9rem; flex: 1; }
.cookie__toggle { display: flex; align-items: center; justify-content: space-between; padding: 10px 0; border-top: 1px solid var(--line-soft); font-size: .9rem; }
.switch { position: relative; width: 42px; height: 24px; flex-shrink: 0; }
.switch input { opacity: 0; width: 0; height: 0; }
.switch .sl { position: absolute; inset: 0; background: #ccc; border-radius: 999px; transition: .2s; cursor: pointer; }
.switch .sl::before { content: ""; position: absolute; left: 3px; top: 3px; width: 18px; height: 18px; background: #fff; border-radius: 50%; transition: .2s; }
.switch input:checked + .sl { background: var(--orange); }
.switch input:checked + .sl::before { transform: translateX(18px); }
.switch input:disabled + .sl { opacity: .55; cursor: not-allowed; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.tag { display: inline-block; background: var(--orange-soft); color: var(--orange-dark); font-weight: 700; font-size: .78rem; letter-spacing: .04em; text-transform: uppercase; padding: 5px 12px; border-radius: 999px; }
.divider { height: 1px; background: var(--line); border: 0; margin: 0; }
