/* ==========================================================================
   FRESH FADEZ – Warm Concrete Street One-Pager
   Ghetto/Strasse, hell & einladend: warmer Beton/Sand + Flammen-Orange/Ocker.
   Kein Barber-Rot/Blau mehr. Logo behält seine Identität.
   ========================================================================== */

:root {
  /* warme, helle Beton-/Sand-Basis */
  --paper: #f5efe6;     /* warmes Off-White / Beton hell */
  --paper-2: #efe7da;   /* warmer Sand */
  --concrete: #e3d9c8;  /* mittleres warmes Beton */
  --concrete-dk: #d3c7b3;
  --asphalt: #211d19;   /* warmer, tiefer Asphalt (für Kontrast-Bänder) */
  --asphalt-2: #2c2721;

  --ink: #1c1815;       /* warme, fast-schwarze Schrift */
  --ink-2: #4a4139;
  --mute: #857a6c;

  --flame: #c99a2b;     /* warmes Gold (Haupt-Akzent, Flächen) */
  --flame-dk: #a87f18;
  --ochre: #8f6c15;     /* tiefes Gold/Bronze (kleiner Text, sekundär) */
  --brand-red: #7a5230; /* warmes Braun (dezenter Akzent) */

  --ig: #d6249f;
  --wa: #25d366;

  --wrap: 1200px;
  --r: 14px;
  --ease: cubic-bezier(.22,.61,.36,1);

  --space-1: 8px;  --space-2: 16px; --space-3: 24px;
  --space-4: 32px; --space-5: 48px; --space-6: 64px; --space-7: 96px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* warme Beton-Textur (Halftone + Körnung) über der Basis */
body::before {
  content: "";
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    radial-gradient(rgba(120,100,70,.05) 1px, transparent 1.4px),
    radial-gradient(rgba(120,100,70,.035) 1px, transparent 1.4px);
  background-size: 7px 7px, 13px 13px;
  background-position: 0 0, 3px 4px;
  opacity: .8;
}

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

.wrap { width: min(100% - 40px, var(--wrap)); margin-inline: auto; position: relative; z-index: 2; }

h1, h2, h3 { font-family: "Anton", "Arial Narrow", sans-serif; font-weight: 400; letter-spacing: .5px; line-height: .98; text-transform: uppercase; margin: 0; }

.accent-1, .accent-red { color: var(--flame); }
.accent-2, .accent-blue { color: var(--ochre); }
.accent { color: var(--flame); }
.stroke { color: transparent; -webkit-text-stroke: 2px var(--ink); }

.skip-link {
  position: absolute; left: -999px; top: 8px; z-index: 999;
  background: var(--flame); color: var(--ink); padding: 10px 16px; border-radius: 8px;
}
.skip-link:focus { left: 8px; }

:focus-visible { outline: 3px solid var(--flame); outline-offset: 3px; border-radius: 4px; }

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--flame); --fg: var(--ink);
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--bg); color: var(--fg);
  font-family: "Anton", sans-serif; font-weight: 400; letter-spacing: .8px; text-transform: uppercase;
  font-size: 16px; padding: 13px 22px; border: 0; border-radius: 10px; cursor: pointer;
  min-height: 48px; transition: transform .18s var(--ease), box-shadow .18s var(--ease), background .18s;
  box-shadow: 0 5px 0 rgba(0,0,0,.22);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 0 rgba(0,0,0,.22); }
.btn:active { transform: translateY(2px); box-shadow: 0 3px 0 rgba(0,0,0,.22); }
.btn .ico { width: 20px; height: 20px; fill: currentColor; flex: none; }
.btn-lg { font-size: 18px; padding: 16px 28px; min-height: 56px; }
.btn-xl { font-size: 20px; padding: 18px 26px; min-height: 64px; flex-direction: column; gap: 2px; line-height: 1.1; }
.btn-sub { font-family: "Inter", sans-serif; font-size: 12px; letter-spacing: .3px; text-transform: none; opacity: .9; font-weight: 500; }

.btn-red { --bg: var(--flame); } .btn-red:hover { background: var(--flame-dk); }
.btn-flame { --bg: var(--flame); } .btn-flame:hover { background: var(--flame-dk); }
.btn-ochre { --bg: var(--ochre); --fg: #241a06; }
.btn-wa { --bg: var(--wa); --fg: #06341a; }
.btn-ig { --bg: linear-gradient(45deg,#f9ce34,#ee2a7b 45%,#6228d7); }
.btn-dark { --bg: var(--asphalt); --fg: #fff; } .btn-dark:hover { background: var(--asphalt-2); }
.btn-outline { --bg: transparent; --fg: var(--ink); border: 2px solid var(--ink); box-shadow: none; }
.btn-outline:hover { background: var(--ink); color: var(--paper); box-shadow: none; }
.btn-call { --bg: var(--flame); box-shadow: 0 4px 0 rgba(0,0,0,.22); padding: 10px 18px; min-height: 44px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(245,239,230,.86); backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--ink);
}
.header-inner { display: flex; align-items: center; gap: 20px; padding: 12px 0; }
.brand { display: flex; align-items: center; gap: 12px; margin-right: auto; }
.brand-logo { width: 52px; height: 52px; border-radius: 50%; }
.brand-name { font-family: "Anton", sans-serif; font-size: 26px; letter-spacing: 1px; text-transform: uppercase; color: var(--ink); }
.main-nav { display: flex; gap: 26px; }
.main-nav a {
  font-family: "Anton", sans-serif; letter-spacing: 1px; text-transform: uppercase; font-size: 16px;
  color: var(--ink-2); position: relative; padding: 4px 0; transition: color .2s;
}
.main-nav a::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 3px; background: var(--flame); transition: width .25s var(--ease); }
.main-nav a:hover { color: var(--ink); } .main-nav a:hover::after { width: 100%; }

/* ---------- warmer Akzent-Streifen (ersetzt Barber-Pole) ---------- */
.barber-stripe {
  height: 12px;
  background: repeating-linear-gradient(115deg,
    var(--flame) 0 22px, var(--ochre) 22px 44px, var(--ink) 44px 50px, var(--ochre) 50px 72px);
  transform: skewY(-1.2deg); transform-origin: left;
}

/* diagonale Section-Kanten */
.section { position: relative; padding: var(--space-7) 0; z-index: 1; }
.edge { position: absolute; left: 0; right: 0; height: 60px; z-index: 3; pointer-events: none; }
.edge-bottom { bottom: -1px; clip-path: polygon(0 100%, 100% 100%, 100% 0, 0 65%); }
.edge-blue { background: var(--ochre); height: 6px; clip-path: none; bottom: 0; transform: skewY(-1deg); }

/* Sektions-Hintergründe abwechselnd warm */
.about { background: var(--paper-2); }
.about .edge-bottom { background: var(--concrete); }
.services { background: var(--concrete); }
.services .edge-bottom { background: var(--paper); }
.gallery { background: var(--paper); }
.gallery .edge-bottom { background: var(--paper-2); }
.video-strip { background: var(--paper-2); }
.video-strip .edge-bottom { background: var(--concrete); }
.reviews { background: var(--concrete); }
.reviews .edge-bottom { background: var(--paper-2); }
.faq { background: var(--paper-2); }
.faq .edge-bottom { background: var(--paper); }
.location { background: var(--paper); }
.location .edge-bottom { background: var(--asphalt); }

.kicker {
  display: inline-block; font-family: "Anton", sans-serif; letter-spacing: 3px; text-transform: uppercase;
  color: var(--ochre); font-size: 14px; margin-bottom: 10px;
  padding-left: 34px; position: relative;
}
.kicker::before { content: ""; position: absolute; left: 0; top: 50%; width: 26px; height: 3px; background: var(--flame); }

.sec-head { text-align: center; max-width: 720px; margin: 0 auto var(--space-6); }
.sec-head h2 { font-size: clamp(40px, 8vw, 78px); color: var(--ink); }
.sec-head-left { text-align: left; margin-inline: 0; }
.sec-lead { color: var(--ink-2); font-size: 18px; margin-top: 14px; }

.tag-tape {
  display: inline-block; font-family: "Anton", sans-serif; letter-spacing: 2px; text-transform: uppercase;
  font-size: 14px; background: var(--ink); color: var(--paper); padding: 6px 16px; margin-bottom: 18px;
  transform: rotate(-2deg); box-shadow: 0 4px 12px rgba(0,0,0,.28);
  position: relative;
}
.tag-tape::before, .tag-tape::after {
  content: ""; position: absolute; top: -8px; width: 42px; height: 18px;
  background: rgba(224,86,26,.4); border: 1px dashed rgba(0,0,0,.3);
}
.tag-tape::before { left: -14px; transform: rotate(-8deg); }
.tag-tape::after { right: -14px; transform: rotate(6deg); }

/* ==========================================================================
   HERO – hell, warm, einladend
   ========================================================================== */
.hero { position: relative; min-height: 90vh; min-height: 90dvh; display: flex; align-items: center; overflow: hidden; padding: 120px 0 90px; }
.hero-media {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(120% 90% at 80% 0%, rgba(201,154,43,.26), transparent 55%),
    radial-gradient(90% 80% at 5% 100%, rgba(122,82,48,.20), transparent 55%),
    linear-gradient(180deg, var(--paper) 0%, var(--concrete) 100%);
}
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(120,100,70,.08) 1px, transparent 1.3px);
  background-size: 6px 6px; opacity: .7;
}
.hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .85; }
.hero-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(245,239,230,.25) 0%, rgba(245,239,230,.5) 60%, rgba(245,239,230,.85) 100%); }
.hero-content { z-index: 2; max-width: 900px; }
.hero-title { font-size: clamp(52px, 13vw, 128px); margin: 6px 0 20px; color: var(--ink); text-shadow: 0 2px 0 rgba(255,255,255,.3); }
.hero-sub { font-size: clamp(17px, 2.4vw, 22px); color: var(--ink-2); max-width: 620px; margin: 0 0 var(--space-4); font-weight: 500; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }
.hero .barber-stripe { position: absolute; left: -5%; right: -5%; bottom: 40px; width: 110%; z-index: 2; }

/* ==========================================================================
   ABOUT – Video statt Portrait
   ========================================================================== */
.about-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: var(--space-6); align-items: center; }
.about-photo { position: relative; }
.video-frame {
  background: var(--ink); padding: 12px 12px 44px; box-shadow: 0 22px 46px rgba(0,0,0,.35);
  transform: rotate(-3deg); position: relative; max-width: 380px; margin: 0 auto; border-radius: 4px;
}
.video-frame video { width: 100%; aspect-ratio: 9/16; object-fit: cover; background: #000; border-radius: 3px; display: block; }
.video-cap { position: absolute; left: 0; right: 0; bottom: 14px; text-align: center; font-family: "Anton", sans-serif; letter-spacing: 1px; text-transform: uppercase; color: var(--paper); font-size: 15px; }
.sticker-fresh {
  position: absolute; top: -18px; right: -6px; z-index: 3;
  width: 92px; height: 92px; border-radius: 50%;
  background: var(--flame); color: var(--ink); font-family: "Anton", sans-serif; font-size: 15px; text-transform: uppercase;
  display: flex; align-items: center; justify-content: center; text-align: center; line-height: 1;
  transform: rotate(12deg); box-shadow: 0 8px 20px rgba(0,0,0,.35); border: 3px dashed rgba(28,24,21,.55);
}
.about-text h2 { font-size: clamp(40px, 7vw, 72px); margin-bottom: 18px; color: var(--ink); }
.about-text p { color: var(--ink-2); margin: 0 0 16px; max-width: 60ch; }
.about-text strong { color: var(--ink); }
.about-actions { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; margin-top: 26px; }
.ig-inline { display: inline-flex; align-items: center; gap: 8px; color: var(--ink-2); font-weight: 600; }
.ig-inline .ico { width: 22px; height: 22px; fill: var(--ig); }
.ig-inline:hover { color: var(--ink); }

/* ==========================================================================
   SERVICES / PREISE
   ========================================================================== */
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.svc-card {
  background: var(--paper);
  border: 2px solid var(--ink); border-radius: var(--r);
  padding: 28px 22px 26px; position: relative; overflow: hidden;
  transition: transform .2s var(--ease), box-shadow .2s;
  box-shadow: 6px 6px 0 rgba(28,24,21,.14);
}
.svc-card::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 6px; background: var(--flame); }
.svc-2::before { background: var(--ochre); }
.svc-3::before { background: var(--brand-red); }
.svc-4::before { background: var(--ink); }
.svc-card:nth-child(odd) { transform: translateY(14px); }
.svc-card:hover { transform: translateY(-6px); box-shadow: 8px 12px 0 rgba(28,24,21,.16); }
.svc-num { font-family: "Anton", sans-serif; font-size: 46px; color: rgba(28,24,21,.08); position: absolute; top: 8px; right: 14px; }
.svc-card h3 { font-size: 25px; margin: 8px 0 10px; color: var(--ink); }
.svc-card p { color: var(--ink-2); font-size: 15px; margin: 0 0 20px; }
.svc-price {
  display: inline-block; font-family: "Anton", sans-serif; letter-spacing: 1px; text-transform: uppercase;
  font-size: 20px; color: var(--ink); background: var(--flame);
  padding: 7px 16px; border-radius: 8px;
}
.svc-badge {
  position: absolute; top: 14px; left: -34px; transform: rotate(-45deg);
  background: var(--brand-red); color: #fff; font-family: "Anton", sans-serif; letter-spacing: 1px;
  font-size: 12px; padding: 5px 40px; box-shadow: 0 3px 8px rgba(0,0,0,.25);
}
.services-note { text-align: center; color: var(--ink-2); font-size: 15px; margin-top: var(--space-4); }
.services-cta { text-align: center; margin-top: var(--space-3); }

/* ==========================================================================
   GALLERY
   ========================================================================== */
.collage { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.tile {
  position: relative; overflow: hidden; border-radius: 10px; display: block;
  aspect-ratio: 4 / 5;
  box-shadow: 6px 8px 0 rgba(28,24,21,.14); border: 3px solid var(--ink);
  transition: transform .25s var(--ease);
}
.tile img { width: 100%; height: 100%; object-fit: cover; }
/* alle vier gleich gross – nur leichte, wechselnde Neigung fürs Street-Feeling */
.tile-1 { transform: rotate(-1.5deg); }
.tile-2 { transform: rotate(1.5deg); }
.tile-3 { transform: rotate(1.5deg); }
.tile-4 { transform: rotate(-1.5deg); }
.tile:hover { transform: rotate(0) scale(1.02); z-index: 4; }
.tile.is-placeholder img { display: none; }
.tile.is-placeholder::before {
  content: "FRESH FADEZ"; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-family: "Anton", sans-serif; font-size: 20px; letter-spacing: 2px; color: var(--paper); text-align: center; padding: 8px;
  background:
    repeating-linear-gradient(125deg, var(--flame) 0 26px, var(--asphalt) 26px 52px, var(--ochre) 52px 78px, var(--asphalt) 78px 104px);
}
.tile-ig { position: absolute; inset: 0; background: rgba(28,24,21,.4); opacity: 0; transition: opacity .2s; }
.tile-ig::after {
  content: ""; position: absolute; top: 50%; left: 50%; width: 46px; height: 46px; transform: translate(-50%,-50%);
  background: #fff; -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2.2c3.2 0 3.6 0 4.9.07 1.2.06 1.8.25 2.2.42.6.22 1 .5 1.4.9.4.4.7.8.9 1.4.17.4.36 1 .42 2.2.06 1.3.07 1.7.07 4.9s0 3.6-.07 4.9c-.06 1.2-.25 1.8-.42 2.2-.22.6-.5 1-.9 1.4-.4.4-.8.7-1.4.9-.4.17-1 .36-2.2.42-1.3.06-1.7.07-4.9.07s-3.6 0-4.9-.07c-1.2-.06-1.8-.25-2.2-.42-.6-.22-1-.5-1.4-.9-.4-.4-.7-.8-.9-1.4-.17-.4-.36-1-.42-2.2C2.2 15.6 2.2 15.2 2.2 12s0-3.6.07-4.9c.06-1.2.25-1.8.42-2.2.22-.6.5-1 .9-1.4.4-.4.8-.7 1.4-.9.4-.17 1-.36 2.2-.42C8.4 2.2 8.8 2.2 12 2.2m0 4.86A4.94 4.94 0 1 0 17 12a4.94 4.94 0 0 0-5-4.94m0 8.14A3.2 3.2 0 1 1 15.2 12 3.2 3.2 0 0 1 12 15.2m6.3-8.36a1.15 1.15 0 1 1-1.15-1.15 1.15 1.15 0 0 1 1.15 1.15'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2.2c3.2 0 3.6 0 4.9.07 1.2.06 1.8.25 2.2.42.6.22 1 .5 1.4.9.4.4.7.8.9 1.4.17.4.36 1 .42 2.2.06 1.3.07 1.7.07 4.9s0 3.6-.07 4.9c-.06 1.2-.25 1.8-.42 2.2-.22.6-.5 1-.9 1.4-.4.4-.8.7-1.4.9-.4.17-1 .36-2.2.42-1.3.06-1.7.07-4.9.07s-3.6 0-4.9-.07c-1.2-.06-1.8-.25-2.2-.42-.6-.22-1-.5-1.4-.9-.4-.4-.7-.8-.9-1.4-.17-.4-.36-1-.42-2.2C2.2 15.6 2.2 15.2 2.2 12s0-3.6.07-4.9c.06-1.2.25-1.8.42-2.2.22-.6.5-1 .9-1.4.4-.4.8-.7 1.4-.9.4-.17 1-.36 2.2-.42C8.4 2.2 8.8 2.2 12 2.2m0 4.86A4.94 4.94 0 1 0 17 12a4.94 4.94 0 0 0-5-4.94m0 8.14A3.2 3.2 0 1 1 15.2 12 3.2 3.2 0 0 1 12 15.2m6.3-8.36a1.15 1.15 0 1 1-1.15-1.15 1.15 1.15 0 0 1 1.15 1.15'/%3E%3C/svg%3E") center/contain no-repeat;
}
.tile:hover .tile-ig { opacity: 1; }
.gallery-cta { text-align: center; margin-top: var(--space-6); }

/* ==========================================================================
   VIDEO-STRIP (grosses Video)
   ========================================================================== */
.video-strip .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-6); align-items: center; }
.vstrip-text h2 { font-size: clamp(38px, 6vw, 64px); color: var(--ink); margin-bottom: 16px; }
.vstrip-text p { color: var(--ink-2); font-size: 18px; margin: 0 0 26px; }
.vstrip-media { position: relative; }
.vstrip-media video {
  width: 100%; max-width: 420px; margin: 0 auto; display: block; aspect-ratio: 9/16; object-fit: cover;
  border-radius: var(--r); border: 3px solid var(--ink); box-shadow: 8px 10px 0 rgba(28,24,21,.16); transform: rotate(1.5deg); background: #000;
}

/* ==========================================================================
   REVIEWS
   ========================================================================== */
.review-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.review-card {
  background: var(--paper); border: 2px solid var(--ink); border-radius: var(--r); padding: 26px 24px; position: relative;
  box-shadow: 5px 6px 0 rgba(28,24,21,.14);
}
.r-a { transform: rotate(-1.4deg); } .r-b { transform: rotate(.8deg); margin-top: 16px; } .r-c { transform: rotate(-.8deg); }
.review-card::before { content: "\201C"; position: absolute; top: -22px; left: 16px; font-family: "Anton", sans-serif; font-size: 90px; color: var(--flame); line-height: 1; }
.stars { color: var(--ochre); letter-spacing: 3px; font-size: 18px; margin-bottom: 12px; }
.review-card blockquote { margin: 0 0 14px; font-size: 17px; color: var(--ink); }
.review-card figcaption { color: var(--mute); font-size: 14px; font-weight: 600; }
.reviews-note { text-align: center; color: var(--mute); font-size: 13px; margin-top: var(--space-5); }

/* ==========================================================================
   LOCATION
   ========================================================================== */
.loc-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: var(--space-6); align-items: center; }
.location h2 { font-size: clamp(40px, 7vw, 68px); margin-bottom: 24px; color: var(--ink); }
.loc-address { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 26px; font-size: 18px; color: var(--ink-2); }
.loc-address .ico { width: 30px; height: 30px; fill: var(--flame); flex: none; margin-top: 2px; }
.loc-address strong { color: var(--ink); font-size: 20px; }
.loc-address:hover strong { color: var(--flame); }
.hours { list-style: none; padding: 0; margin: 0 0 8px; border-top: 2px solid var(--ink); }
.hours li { display: flex; justify-content: space-between; padding: 12px 4px; border-bottom: 1px solid rgba(28,24,21,.18); font-variant-numeric: tabular-nums; }
.hours li span:first-child { font-family: "Anton", sans-serif; letter-spacing: 1px; text-transform: uppercase; color: var(--ink); }
.hours li span:last-child { color: var(--ink-2); font-weight: 600; }
.hours .open-late { color: var(--ochre); }
.hours .closed { color: var(--mute); }
.hours-note { color: var(--ink-2); font-size: 15px; margin: 0 0 26px; background: var(--paper); border-left: 4px solid var(--flame); padding: 12px 16px; border-radius: 0 8px 8px 0; }
.loc-map { border-radius: var(--r); overflow: hidden; border: 3px solid var(--ink); box-shadow: 8px 10px 0 rgba(28,24,21,.16); transform: rotate(1deg); }
.loc-map iframe { display: block; width: 100%; height: 440px; border: 0; }

/* ==========================================================================
   BOOKING – warmes Asphalt-Kontrastband
   ========================================================================== */
.booking { text-align: center; background: var(--asphalt); color: var(--paper); overflow: hidden; }
.booking::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: repeating-linear-gradient(125deg, rgba(201,154,43,.12) 0 44px, transparent 44px 88px, rgba(230,198,90,.08) 88px 132px, transparent 132px 176px);
}
.booking .tag-tape { background: var(--flame); color: var(--ink); }
.booking-inner { max-width: 900px; margin: 0 auto; }
.booking h2 { font-size: clamp(44px, 9vw, 92px); margin-bottom: 16px; color: var(--paper); }
.booking h2 .accent-1 { color: #e6c65a; } .booking h2 .accent-2 { color: #f2e8cf; }
.booking-lead { color: #d8cfc0; font-size: 20px; margin: 0 0 var(--space-5); }
.booking-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 18px; margin-bottom: var(--space-4); }
.booking-actions .btn { min-width: 220px; }
.booking-addr { display: inline-block; color: #d8cfc0; border-bottom: 1px dashed rgba(255,255,255,.4); padding-bottom: 3px; font-weight: 500; }
.booking-addr:hover { color: #fff; }

/* Kontaktformular + Direktkontakt */
.booking-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 36px; text-align: left; margin-top: var(--space-3); }
.booking-form { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.14); border-radius: 16px; padding: 26px; }
.fgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; margin-bottom: 16px; }
.field label { font-family: "Inter", sans-serif; font-weight: 600; font-size: 14px; color: #ece3d2; margin-bottom: 6px; }
.req { color: var(--flame); }
.booking-form input, .booking-form select, .booking-form textarea {
  font-family: inherit; font-size: 16px; color: var(--ink); background: #fdfaf3;
  border: 2px solid transparent; border-radius: 10px; padding: 12px 14px; width: 100%; min-height: 48px;
  transition: border-color .15s, box-shadow .15s;
}
.booking-form textarea { min-height: 108px; resize: vertical; }
.booking-form input:focus, .booking-form select:focus, .booking-form textarea:focus {
  outline: none; border-color: var(--flame); box-shadow: 0 0 0 3px rgba(201,154,43,.4);
}
.form-submit { width: 100%; margin-top: 4px; }
.form-hint { color: #b9ad9b; font-size: 13px; margin: 12px 0 0; text-align: center; }
.form-success { text-align: center; padding: 20px 8px; }
.form-success .ico { width: 58px; height: 58px; stroke: #3ddc84; fill: none; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; margin: 0 auto 12px; display: block; animation: check-pop .4s var(--ease); }
.form-success h3 { font-family: "Anton", sans-serif; text-transform: uppercase; color: var(--paper); font-size: 26px; letter-spacing: .5px; margin: 0 0 8px; }
.form-success p { color: #d8cfc0; margin: 0; }
.form-success a { color: var(--flame); text-decoration: underline; }
@keyframes check-pop { from { transform: scale(.6); opacity: 0; } to { transform: none; opacity: 1; } }
.booking-direct { display: flex; flex-direction: column; }
.booking-direct h3 { font-family: "Anton", sans-serif; text-transform: uppercase; font-size: 24px; color: var(--paper); margin: 2px 0 14px; letter-spacing: .5px; }
.booking-direct .booking-actions { flex-direction: column; gap: 12px; margin: 0; }
.booking-direct .btn { width: 100%; min-width: 0; }
.direct-info { list-style: none; padding: 0; margin: 18px 0 0; display: grid; gap: 12px; }
.direct-info a { display: flex; align-items: center; gap: 10px; color: #d8cfc0; font-weight: 500; font-size: 15px; }
.direct-info a:hover { color: #fff; }
.direct-info .ico { width: 22px; height: 22px; fill: var(--flame); flex: none; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer { background: #17130f; color: var(--paper); border-top: 5px solid var(--flame); padding: var(--space-6) 0 100px; }
.footer-inner { display: grid; grid-template-columns: 1.3fr 1fr auto; gap: var(--space-4); align-items: center; }
.footer-brand { display: flex; align-items: center; gap: 16px; }
.footer-brand .brand-name { color: var(--paper); }
.footer-brand p { margin: 4px 0 0; color: var(--mute); font-size: 14px; }
.footer-logo { border-radius: 50%; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 20px; }
.footer-nav a { font-family: "Anton", sans-serif; letter-spacing: 1px; text-transform: uppercase; color: #cbbfae; font-size: 15px; }
.footer-nav a:hover { color: var(--flame); }
.footer-social { display: flex; gap: 14px; }
.footer-social a { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; background: rgba(255,255,255,.08); transition: background .2s, transform .2s; }
.footer-social a:hover { background: var(--flame); transform: translateY(-3px); }
.footer-social .ico { width: 22px; height: 22px; fill: #fff; }
.copyright { grid-column: 1 / -1; text-align: center; color: var(--mute); font-size: 13px; margin: var(--space-4) 0 0; padding-top: var(--space-3); border-top: 1px solid rgba(255,255,255,.1); }
.copyright a { color: #cbbfae; text-decoration: underline; }

/* ==========================================================================
   STICKY MOBILE CALL
   ========================================================================== */
.sticky-call {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 90;
  display: none; align-items: center; justify-content: center; gap: 10px;
  background: var(--flame); color: var(--ink); font-family: "Anton", sans-serif; font-size: 19px; letter-spacing: 1px; text-transform: uppercase;
  padding: 16px; border-radius: 14px; box-shadow: 0 10px 30px rgba(201,154,43,.5); min-height: 58px;
  opacity: 0; transform: translateY(20px); pointer-events: none;
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.sticky-call .ico { width: 22px; height: 22px; fill: var(--ink); }
.sticky-call.show { opacity: 1; transform: none; pointer-events: auto; }

/* reveal-on-scroll */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ==========================================================================
   LEGAL PAGES (Impressum / Datenschutz)
   ========================================================================== */
.legal { padding: 140px 0 var(--space-7); min-height: 70vh; }
.legal h1 { font-size: clamp(40px, 8vw, 72px); color: var(--ink); margin-bottom: 10px; }
.legal .lead { color: var(--ink-2); font-size: 18px; margin: 0 0 var(--space-5); }
.legal h2 { font-size: 26px; color: var(--ink); margin: var(--space-5) 0 12px; }
.legal p, .legal address { color: var(--ink-2); margin: 0 0 14px; font-style: normal; max-width: 70ch; }
.legal a { color: var(--ochre); text-decoration: underline; }
.legal .back { display: inline-flex; align-items: center; gap: 8px; margin-top: var(--space-5); }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-list { max-width: 820px; margin: 0 auto; display: grid; gap: 14px; }
.faq-list details { background: var(--paper); border: 2px solid var(--ink); border-radius: 12px; padding: 2px 20px; box-shadow: 4px 5px 0 rgba(28,24,21,.12); }
.faq-list summary { cursor: pointer; font-family: "Anton", sans-serif; letter-spacing: .5px; text-transform: uppercase; font-size: 18px; color: var(--ink); padding: 16px 34px 16px 0; list-style: none; position: relative; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 2px; top: 50%; transform: translateY(-50%); font-size: 26px; line-height: 1; color: var(--flame-dk); }
.faq-list details[open] summary::after { content: "\2013"; }
.faq-list details p { margin: 0 0 16px; color: var(--ink-2); }
.faq-list a { color: var(--ochre); text-decoration: underline; }

/* Footer-Credit / Backlink */
.credit { grid-column: 1 / -1; text-align: center; color: var(--mute); font-size: 12px; margin: 8px 0 0; }
.credit a { color: #cbbfae; text-decoration: underline; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 980px) {
  .about-grid, .loc-grid, .video-strip .wrap { grid-template-columns: 1fr; gap: var(--space-5); }
  .about-photo, .vstrip-media { order: -1; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-card:nth-child(odd) { transform: none; }
  .review-grid { grid-template-columns: repeat(2, 1fr); }
  .r-a, .r-b, .r-c { transform: none; margin-top: 0; }
  .booking-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; justify-items: center; gap: var(--space-3); }
}

@media (max-width: 760px) {
  .main-nav, .header-call { display: none; }
  .brand { margin-right: 0; }
  .header-inner { justify-content: center; }
  .sticky-call { display: flex; }
  .section { padding: var(--space-6) 0; }
  .hero { min-height: 86vh; min-height: 86dvh; padding: 90px 0 70px; }
  .collage { gap: 14px; }
  .review-grid { grid-template-columns: 1fr; }
  .fgrid { grid-template-columns: 1fr; }
  .booking-form { padding: 20px; }
  .booking-actions .btn { width: 100%; }
  .sec-head { margin-bottom: var(--space-5); }
}

@media (max-width: 440px) {
  .service-grid { grid-template-columns: 1fr; }
  .btn-xl { width: 100%; }
  .hero-cta .btn { width: 100%; }
}
