/* ==========================================================================
   Karls Cut – Styles
   CI: Dunkel + Navy (#1B3153) + Barber-Rot (#CB262E), aus dem Logo abgeleitet.
   Signature: animierter Barber-Pole-Streifen.
   ========================================================================== */

/* ---------- Fonts (selbst gehostet, DSGVO-konform) ---------- */
@font-face {
  font-family: 'Oswald';
  font-style: normal; font-weight: 600; font-display: swap;
  src: url('/assets/fonts/oswald-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Oswald';
  font-style: normal; font-weight: 700; font-display: swap;
  src: url('/assets/fonts/oswald-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal; font-weight: 400; font-display: swap;
  src: url('/assets/fonts/inter-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal; font-weight: 500; font-display: swap;
  src: url('/assets/fonts/inter-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal; font-weight: 600; font-display: swap;
  src: url('/assets/fonts/inter-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal; font-weight: 700; font-display: swap;
  src: url('/assets/fonts/inter-700.woff2') format('woff2');
}

/* ---------- Tokens ---------- */
:root {
  --bg:        #0E1116;
  --bg-2:      #0A0D11;
  --surface:   #161C24;
  --surface-2: #1E262F;
  --navy:      #1B3153;
  --navy-lit:  #2A4A7F;
  --red:       #CB262E;
  --red-lit:   #E0453C;
  --red-dark:  #A81F26;
  --cream:     #EDE6DD;
  --muted:     #9AA2B1;
  --line:      rgba(237,230,221,.10);
  --line-2:    rgba(237,230,221,.20);

  --font-display: 'Oswald', ui-sans-serif, system-ui, sans-serif;
  --font-body:    'Inter', ui-sans-serif, system-ui, -apple-system, sans-serif;

  --radius:   14px;
  --radius-sm: 9px;
  --shadow:   0 18px 50px -18px rgba(0,0,0,.7);
  --ring:     0 0 0 3px rgba(224,69,60,.55);
  --header-h: 68px;
}

/* ---------- Reset / Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  font-size: clamp(1rem, .96rem + .2vw, 1.075rem);
  line-height: 1.65;
  color: var(--cream);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, picture, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; }
:focus-visible { outline: none; box-shadow: var(--ring); border-radius: 4px; }

.wrap { width: min(1200px, 92%); margin-inline: auto; }

/* Anker-Sprünge nicht unter den Sticky-Header schieben */
[id] { scroll-margin-top: calc(var(--header-h) + 14px); }

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--red); color: #fff; padding: .6rem 1rem; border-radius: 8px;
  font-weight: 600; transition: top .2s;
}
.skip-link:focus { top: 12px; }

/* ---------- Typography ---------- */
.section__title, .hero__title, .board__title, .card__title, .jobs__title {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: .01em;
  text-transform: uppercase;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--font-body); font-weight: 600;
  font-size: .78rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 1rem;
}
.eyebrow__dot {
  width: 26px; height: 8px; border-radius: 2px;
  background: repeating-linear-gradient(-45deg, var(--red) 0 5px, var(--cream) 5px 10px, var(--navy) 10px 15px);
}

/* ---------- Barber-Pole Signature ---------- */
.pole {
  display: block; border-radius: 8px;
  background: repeating-linear-gradient(-45deg,
    var(--red) 0 9px, #f3efe8 9px 18px, var(--navy) 18px 27px);
  background-size: 100% 38px;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.25);
}
@media (prefers-reduced-motion: no-preference) {
  .pole--hero, .pole--footer { animation: poleSpin 1.5s linear infinite; }
}
@keyframes poleSpin { to { background-position: 0 -38px; } }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--navy);
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--font-display); font-weight: 600; text-transform: uppercase;
  letter-spacing: .05em; font-size: 1rem;
  padding: .85rem 1.5rem; border: 1px solid transparent; border-radius: 10px;
  background: var(--btn-bg); color: var(--cream);
  transition: transform .12s ease, background-color .18s ease, box-shadow .18s ease;
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--primary { --btn-bg: var(--red); color: #fff; box-shadow: 0 10px 24px -12px var(--red); }
.btn--primary:hover { --btn-bg: var(--red-dark); }
.btn--ghost {
  background: transparent; color: var(--cream);
  border-color: var(--line-2);
}
.btn--ghost:hover { border-color: var(--cream); background: rgba(237,230,221,.05); }
.btn--sm { padding: .58rem 1rem; font-size: .9rem; }
.btn--block { width: 100%; }

.link-arrow {
  display: inline-flex; align-items: center; gap: .4rem;
  font-weight: 600; color: var(--red-lit);
  border-bottom: 1px solid transparent; transition: gap .15s, border-color .15s;
}
.link-arrow:hover { gap: .65rem; border-color: var(--red-lit); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10,13,17,.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; gap: 1.25rem;
  height: var(--header-h);
}
.brand { display: inline-flex; align-items: center; gap: .6rem; }
.brand__logo { border-radius: 50%; box-shadow: 0 0 0 1px var(--line-2); background: #0b0d10; }
.brand__name {
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  font-size: 1.3rem; letter-spacing: .04em; color: var(--cream);
}
.nav { display: flex; gap: 1.6rem; margin-left: auto; }
.nav a {
  font-weight: 500; color: var(--cream); font-size: .98rem;
  padding: .3rem 0; position: relative;
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--red); transition: width .22s ease;
}
.nav a:hover::after, .nav a:focus-visible::after { width: 100%; }

.header-cta { display: flex; align-items: center; gap: .9rem; }
.phone-link {
  display: inline-flex; align-items: center; gap: .45rem;
  font-weight: 600; font-size: .95rem; color: var(--cream); white-space: nowrap;
}
.phone-link svg { color: var(--red-lit); }
.phone-link:hover { color: var(--red-lit); }

.nav-toggle {
  display: none; background: transparent; border: 0; padding: 8px;
  width: 44px; height: 44px; margin-left: auto;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px; background: var(--cream);
  margin: 5px auto; border-radius: 2px; transition: transform .25s, opacity .25s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; padding: clamp(2.5rem, 6vw, 5rem) 0 clamp(3rem, 7vw, 5.5rem); overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(1100px 520px at 78% -8%, rgba(42,74,127,.42), transparent 60%),
    radial-gradient(760px 500px at 5% 108%, rgba(203,38,46,.14), transparent 55%);
}
.hero__grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
}
.hero__title {
  font-size: clamp(2.7rem, 2rem + 5.2vw, 5.4rem);
  margin: .2rem 0 1.1rem;
}
.hero__title em { font-style: normal; color: var(--red-lit); }
.hero__lead { color: var(--muted); font-size: clamp(1.02rem, .98rem + .3vw, 1.2rem); max-width: 52ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .8rem; margin: 1.6rem 0 1.4rem; }
.hero__meta { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.4rem; }

.rating { display: inline-flex; align-items: center; gap: .55rem; }
.rating__stars { color: #F5B301; letter-spacing: 2px; font-size: 1.05rem; }
.rating__text { color: var(--cream); font-size: .95rem; }
.rating__text strong { font-family: var(--font-display); font-size: 1.15rem; }

.open-status { display: inline-flex; align-items: center; gap: .5rem; font-size: .92rem; font-weight: 500; }
.open-status__dot { width: 9px; height: 9px; border-radius: 50%; background: #2ecc71; box-shadow: 0 0 0 4px rgba(46,204,113,.2); }
.open-status.is-closed .open-status__dot { background: var(--red-lit); box-shadow: 0 0 0 4px rgba(224,69,60,.2); }

.hero__media { position: relative; display: flex; justify-content: center; }
.pole--hero {
  position: absolute; left: max(0px, calc(50% - 300px)); top: 6%; bottom: 6%;
  width: 12px; z-index: 2;
}
.hero__frame {
  position: relative; border-radius: 18px; overflow: hidden;
  border: 1px solid var(--line-2); box-shadow: var(--shadow);
  max-width: 520px; margin: 0; margin-left: 26px;
  aspect-ratio: 4 / 5;
}
.hero__frame img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Trust-Strip ---------- */
.trust { border-block: 1px solid var(--line); background: var(--surface); }
.trust__row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1rem; padding: 1.4rem 0;
}
.trust__item { display: flex; flex-direction: column; gap: .15rem; padding-left: 1rem; border-left: 2px solid var(--navy-lit); }
.trust__k { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: 1.25rem; letter-spacing: .02em; }
.trust__v { color: var(--muted); font-size: .9rem; }

/* ---------- Sections ---------- */
.section { padding: clamp(3.5rem, 8vw, 6.5rem) 0; }
.section--tint { background: var(--surface); border-block: 1px solid var(--line); }
.section__head { max-width: 62ch; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section__title { font-size: clamp(2rem, 1.5rem + 2.4vw, 3.1rem); margin-bottom: .8rem; }
.section__intro { color: var(--muted); font-size: 1.08rem; }
.section__intro a, .section__head a, .price-note a, .gallery__hint a { color: var(--red-lit); border-bottom: 1px solid transparent; }
.section__intro a:hover, .price-note a:hover, .gallery__hint a:hover { border-color: var(--red-lit); }

/* ---------- Preistafel ---------- */
.price-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.board {
  background: var(--surface-2); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.6rem 1.6rem 1.4rem;
  position: relative; overflow: hidden;
}
.board::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 5px;
  background: repeating-linear-gradient(-45deg, var(--red) 0 6px, var(--cream) 6px 12px, var(--navy) 12px 18px);
  opacity: .9;
}
.board__title {
  font-size: 1.5rem; letter-spacing: .03em; color: var(--cream);
  padding-bottom: .9rem; margin-bottom: .6rem; border-bottom: 1px solid var(--line);
}
.board__list { list-style: none; padding: 0; margin: 0; }
.board__list li { display: flex; align-items: baseline; gap: .65rem; padding: .6rem 0; border-bottom: 1px solid var(--line); }
.board__list li:last-child { border-bottom: 0; }
.board__list li::before {
  content: ""; flex: none; width: 14px; height: 4px; margin-top: .5em; border-radius: 2px;
  background: repeating-linear-gradient(-45deg, var(--red) 0 3px, var(--cream) 3px 6px, var(--navy) 6px 9px);
}
.board__name { font-weight: 500; color: var(--cream); }
.board__name small { display: block; color: var(--muted); font-size: .8rem; font-weight: 400; letter-spacing: .01em; }
.price-note { margin-top: 1.4rem; color: var(--muted); font-size: .95rem; }

/* ---------- Galerie ---------- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.gallery__item {
  display: block; width: 100%; margin: 0; padding: 0; border: 0;
  aspect-ratio: 3 / 4; border-radius: var(--radius-sm); overflow: hidden;
  position: relative; background: var(--surface-2); cursor: pointer;
}
.gallery__item picture { display: block; width: 100%; height: 100%; }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.gallery__item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(10,13,17,.5));
  opacity: 0; transition: opacity .3s;
}
.gallery__item:hover img, .gallery__item:focus-visible img { transform: scale(1.06); }
.gallery__item:hover::after { opacity: 1; }

/* Instagram-Kachel in der Galerie */
.gallery__item--ig { cursor: pointer; }
.ig-tile {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .3rem;
  width: 100%; height: 100%; padding: 1rem; text-align: center;
  background: linear-gradient(150deg, var(--navy) 0%, var(--surface-2) 100%);
  color: var(--cream); transition: filter .3s ease;
}
.ig-tile svg { color: var(--red-lit); margin-bottom: .25rem; }
.ig-tile__k { font-family: var(--font-display); font-weight: 600; text-transform: uppercase; letter-spacing: .04em; font-size: 1.15rem; }
.ig-tile__v { color: var(--muted); font-size: .85rem; }
.gallery__item--ig:hover .ig-tile { filter: brightness(1.12); }

/* ---------- Rezensionen / Bewertungen ---------- */
.reviews {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: linear-gradient(135deg, var(--navy) 0%, #15233f 55%, var(--bg) 100%);
  border-block: 1px solid var(--line);
}
.reviews__inner { display: grid; grid-template-columns: auto 1fr; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: center; }
.reviews__card {
  display: grid; justify-items: center; gap: .45rem; text-align: center;
  padding: 1.8rem 2.4rem; min-width: 230px;
  background: rgba(10,13,17,.5); border: 1px solid var(--line-2);
  border-radius: var(--radius); box-shadow: var(--shadow);
}
.reviews__score { font-family: var(--font-display); font-weight: 700; font-size: 4.4rem; line-height: .9; color: var(--cream); }
.reviews__count { color: var(--muted); font-size: .95rem; }
.reviews__count strong { color: var(--cream); }
.reviews__body .eyebrow { color: rgba(237,230,221,.7); }
.reviews__body .section__title { color: var(--cream); }
.reviews__body p { color: rgba(237,230,221,.85); max-width: 54ch; }
.reviews__body p strong { color: #fff; }
.reviews__body .btn { margin-top: 1.3rem; background: rgba(10,13,17,.35); }
.reviews__body .btn:hover { border-color: var(--cream); background: rgba(10,13,17,.55); }

/* Stern-Rating mit Teilfüllung (--rating in %) */
.stars { position: relative; display: inline-block; font-size: 1.6rem; line-height: 1; font-family: 'Inter', sans-serif; }
.stars::before { content: "★★★★★"; color: rgba(237,230,221,.28); }
.stars::after {
  content: "★★★★★"; color: #F5B301; position: absolute; inset: 0;
  width: calc(var(--rating, 5) / 5 * 100%); overflow: hidden; white-space: nowrap;
}
@media (max-width: 760px) {
  .reviews__inner { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .reviews__body .eyebrow { justify-content: center; }
  .reviews__body p { margin-inline: auto; }
}
.gallery__hint { margin-top: 1.3rem; color: var(--muted); font-size: .95rem; }

/* ---------- Über uns / Team / Jobs ---------- */
.about__grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: start; }
.about__text p { color: var(--muted); margin-bottom: 1rem; max-width: 60ch; }
.about__text .section__title { color: var(--cream); }
.jobs {
  display: flex; gap: 1rem; margin-top: 1.8rem; padding: 1.4rem;
  background: linear-gradient(120deg, rgba(27,49,83,.5), rgba(30,38,47,.5));
  border: 1px solid var(--line-2); border-radius: var(--radius);
}
.jobs__badge { flex: none; width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; background: var(--red); color: #fff; }
.jobs__title { font-size: 1.25rem; margin-bottom: .3rem; color: var(--cream); }
.jobs__text { color: var(--muted); font-size: .97rem; margin-bottom: .6rem; }

.about__aside { position: sticky; top: calc(var(--header-h) + 16px); }
.facts { list-style: none; padding: 1.2rem 1.4rem; margin: 0; background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--radius); }
.facts li { display: flex; justify-content: space-between; gap: 1rem; padding: .7rem 0; border-bottom: 1px solid var(--line); }
.facts li:last-child { border-bottom: 0; }
.facts__k { color: var(--muted); font-size: .9rem; text-transform: uppercase; letter-spacing: .08em; }
.facts__v { font-family: var(--font-display); font-weight: 600; text-transform: uppercase; letter-spacing: .02em; }

/* ---------- Kontakt ---------- */
.contact__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 1.5rem; align-items: start; }
.card { background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.3rem, 3vw, 2rem); }
.card__title { font-size: 1.5rem; margin-bottom: 1rem; }

.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { display: block; margin-bottom: 1rem; }
.field__label { display: block; font-weight: 600; font-size: .88rem; margin-bottom: .4rem; color: var(--cream); }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; color: var(--cream);
  background: var(--bg); border: 1px solid var(--line-2); border-radius: 10px;
  padding: .75rem .85rem; transition: border-color .15s, box-shadow .15s;
}
.field input::placeholder, .field textarea::placeholder { color: #6d7480; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--red-lit); box-shadow: 0 0 0 3px rgba(224,69,60,.2); }
.field textarea { resize: vertical; min-height: 84px; }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%239AA2B1'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right .6rem center; padding-right: 2.2rem; }

.check { display: flex; gap: .6rem; align-items: flex-start; font-size: .88rem; color: var(--muted); margin: .4rem 0 1.2rem; }
.check input { margin-top: .2rem; width: 18px; height: 18px; accent-color: var(--red); flex: none; }
.check a { color: var(--red-lit); }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }

.form__status { margin-top: .9rem; font-weight: 600; font-size: .95rem; min-height: 1.2em; }
.form__status.is-ok { color: #2ecc71; }
.form__status.is-error { color: var(--red-lit); }
.form__fallback { margin-top: .8rem; color: var(--muted); font-size: .9rem; }
.form__fallback a { color: var(--red-lit); font-weight: 600; }

.contact__info { display: flex; flex-direction: column; gap: 1.5rem; }
.info-list { list-style: none; padding: 0; margin: 0 0 1.4rem; }
.info-list li { display: flex; align-items: flex-start; gap: .7rem; padding: .5rem 0; }
.info-list svg { color: var(--red-lit); flex: none; margin-top: 2px; }
.info-list a:hover { color: var(--red-lit); }

.hours__title { font-family: var(--font-display); font-weight: 600; text-transform: uppercase; letter-spacing: .04em; font-size: 1.05rem; margin: .4rem 0 .6rem; }
.hours { width: 100%; border-collapse: collapse; font-size: .95rem; }
.hours th, .hours td { text-align: left; padding: .42rem 0; border-bottom: 1px solid var(--line); font-weight: 400; }
.hours th { color: var(--muted); font-weight: 500; }
.hours td { text-align: right; color: var(--cream); }
.hours tr.is-today th, .hours tr.is-today td { color: var(--red-lit); font-weight: 700; }

/* Map-Consent */
.card--map { padding: 0; overflow: hidden; min-height: 260px; display: flex; }
.map-consent { width: 100%; display: grid; place-items: center; text-align: center; padding: 2rem 1.4rem;
  background: linear-gradient(160deg, var(--surface-2), var(--surface)); }
.map-consent__inner { display: grid; justify-items: center; gap: .5rem; max-width: 34ch; }
.map-consent svg { color: var(--red-lit); }
.map-consent__note { color: var(--muted); font-size: .82rem; }
.map-consent__inner .btn { margin-top: .4rem; }
.card--map iframe { width: 100%; height: 100%; min-height: 300px; border: 0; display: block; }

/* ---------- Footer ---------- */
.site-footer { background: var(--bg-2); border-top: 1px solid var(--line); padding-top: clamp(2.5rem, 5vw, 4rem); }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2rem; padding-bottom: 2.5rem; }
.footer__tag { color: var(--muted); font-size: .92rem; margin: .8rem 0 1rem; max-width: 34ch; }
.pole--footer { height: 8px; width: 120px; }
.footer__h { font-family: var(--font-display); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; font-size: .95rem; color: var(--cream); margin-bottom: .9rem; }
.footer__nav, .footer__contact, .footer__legal { display: flex; flex-direction: column; gap: .55rem; }
.footer__nav a, .footer__contact a, .footer__legal a { color: var(--muted); font-size: .95rem; width: fit-content; }
.footer__nav a:hover, .footer__contact a:hover, .footer__legal a:hover { color: var(--red-lit); }
.footer__hours { color: var(--muted); font-size: .9rem; margin-top: .2rem; }
.footer__bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: .5rem; padding: 1.3rem 0; border-top: 1px solid var(--line); color: var(--muted); font-size: .86rem; }

/* ---------- Lightbox ---------- */
.lightbox { position: fixed; inset: 0; z-index: 300; background: rgba(6,8,11,.92); display: grid; place-items: center; padding: 4vw; }
.lightbox[hidden] { display: none; }
.lightbox__img { max-width: min(92vw, 900px); max-height: 88vh; width: auto; border-radius: 10px; box-shadow: var(--shadow); }
.lightbox__close { position: absolute; top: 18px; right: 24px; font-size: 2.6rem; line-height: 1; background: none; border: 0; color: var(--cream); width: 48px; height: 48px; }
.lightbox__nav { position: absolute; top: 50%; transform: translateY(-50%); font-size: 3rem; line-height: 1; background: rgba(255,255,255,.08); border: 0; color: var(--cream); width: 56px; height: 72px; border-radius: 10px; }
.lightbox__nav--prev { left: 2vw; }
.lightbox__nav--next { right: 2vw; }
.lightbox__nav:hover, .lightbox__close:hover { color: var(--red-lit); }

/* ---------- Cookie-Hinweis ---------- */
.cookie {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 250;
  max-width: 560px; margin-inline: auto;
  background: var(--surface-2); border: 1px solid var(--line-2); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 1.1rem 1.2rem;
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
}
.cookie[hidden] { display: none; }
.cookie__text { font-size: .88rem; color: var(--muted); flex: 1; min-width: 220px; }
.cookie__text a { color: var(--red-lit); }

/* ---------- Sticky Mobile-CTA ---------- */
.mobile-cta { display: none; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1080px) {
  .nav, .header-cta { display: none; }
  .nav-toggle { display: block; }
  .site-header.nav-open .nav {
    display: flex; position: absolute; top: var(--header-h); left: 0; right: 0;
    flex-direction: column; gap: 0; background: var(--bg-2);
    border-bottom: 1px solid var(--line-2); padding: .5rem 0;
  }
  .site-header.nav-open .nav a { padding: .95rem 4%; border-top: 1px solid var(--line); }
  .site-header.nav-open .nav a::after { display: none; }

  .hero__grid { grid-template-columns: 1fr; }
  .hero__media { order: -1; }
  .hero__frame { margin-left: 20px; max-width: 420px; aspect-ratio: 4/5; }
  .pole--hero { left: max(0px, calc(50% - 220px)); }

  .about__grid { grid-template-columns: 1fr; }
  .about__aside { position: static; }
  .contact__grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .trust__row { grid-template-columns: repeat(2, 1fr); gap: 1.1rem; }
  .price-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 1.6rem 1.2rem; }
  .footer__brand { grid-column: 1 / -1; }

  /* Sticky Mobile-CTA einblenden */
  .mobile-cta {
    display: flex; position: fixed; left: 0; right: 0; bottom: 0; z-index: 120;
    background: rgba(10,13,17,.94); backdrop-filter: blur(10px);
    border-top: 1px solid var(--line-2); padding: .6rem .8rem;
    gap: .6rem;
  }
  .mobile-cta a { flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: .4rem; padding: .8rem; border-radius: 10px; font-family: var(--font-display); font-weight: 600; text-transform: uppercase; letter-spacing: .04em; }
  .mobile-cta__call { background: transparent; border: 1px solid var(--line-2); color: var(--cream); }
  .mobile-cta__book { background: var(--red); color: #fff; }
  body { padding-bottom: 68px; }
  .cookie { bottom: 78px; }
}

@media (max-width: 420px) {
  .form__row { grid-template-columns: 1fr; }
  .hero__actions .btn { flex: 1; }
  .footer__bottom { flex-direction: column; }
}

/* ==========================================================================
   Rechtsseiten (Impressum / Datenschutz)
   ========================================================================== */
.legal { padding: clamp(2rem, 5vw, 3.5rem) 0 clamp(3rem, 6vw, 5rem); }
.legal__wrap { max-width: 78ch; }
.legal__title { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: .02em; font-size: clamp(2.1rem, 1.6rem + 2.4vw, 3rem); margin-bottom: 1.4rem; }
.legal h2 { font-family: var(--font-display); font-weight: 600; text-transform: uppercase; letter-spacing: .03em; font-size: 1.35rem; color: var(--cream); margin: 2rem 0 .6rem; }
.legal p, .legal li { color: var(--muted); margin-bottom: .8rem; }
.legal ul { padding-left: 1.2rem; margin-bottom: .8rem; }
.legal li { margin-bottom: .3rem; }
.legal a { color: var(--red-lit); border-bottom: 1px solid transparent; }
.legal a:hover { border-color: var(--red-lit); }
.legal__back { margin-top: 2.4rem; }
.legal__todo {
  background: rgba(203,38,46,.08); border: 1px solid rgba(224,69,60,.4);
  border-left: 4px solid var(--red); border-radius: 10px;
  padding: 1rem 1.2rem; margin-bottom: 1.8rem; color: var(--cream); font-size: .92rem;
}
mark.todo, .legal__todo mark {
  background: #F5D90A; color: #0E1116; padding: .05em .35em; border-radius: 3px;
  font-weight: 600; font-size: .95em;
}
