/* =====================================================================
   Dalaa Beauty Kosmetikstudio & Academy — styles.css
   CI: Rosé / Bordeaux / Gold auf viel Weiß. Mobile-First, DSGVO-freundlich.
   ===================================================================== */

/* ---------- Schriften (selbst gehostet) ---------------------------- */
@font-face {
  font-family: "Poppins"; font-style: normal; font-weight: 600; font-display: swap;
  src: url("../assets/fonts/poppins-600.woff2") format("woff2");
}
@font-face {
  font-family: "Poppins"; font-style: normal; font-weight: 700; font-display: swap;
  src: url("../assets/fonts/poppins-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: "Cormorant Garamond"; font-style: italic; font-weight: 500; font-display: swap;
  src: url("../assets/fonts/cormorant-500-italic.woff2") format("woff2");
}

/* ---------- Design-Tokens ------------------------------------------ */
:root {
  --bordeaux: #7A2B3A;
  --bordeaux-deep: #5E1F2C;
  --rose: #E9C7C9;
  --rose-soft: #F7E9EA;
  --rose-tint: #FCF4F5;
  --gold: #C9A24B;
  --gold-deep: #9A7B2E;   /* für Text-Kontrast auf Weiß (AA) */
  --white: #FFFFFF;
  --bg: #FBFBFB;
  --ink: #2E2E2E;
  --ink-soft: #6A5B5E;    /* warmes Grau für Fließtext-Sekundär */
  --line: rgba(122, 43, 58, .14);
  --wa: #25D366;          /* WhatsApp-Grün nur als Icon-Akzent */

  --font-head: "Poppins", system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-body: "Inter", system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-accent: "Cormorant Garamond", Georgia, "Times New Roman", serif;

  --radius: 18px;
  --radius-sm: 12px;
  --radius-lg: 28px;
  --shadow-sm: 0 2px 10px rgba(94, 31, 44, .06);
  --shadow: 0 10px 30px rgba(94, 31, 44, .10);
  --shadow-lg: 0 20px 50px rgba(94, 31, 44, .16);

  --container: 1160px;
  --gap: clamp(1rem, 3vw, 2rem);
  --section-y: clamp(3.5rem, 8vw, 7rem);
  --header-h: 76px;
}

/* ---------- Reset / Basis ------------------------------------------ */
*, *::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);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: clamp(1rem, 0.97rem + 0.15vw, 1.075rem);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, picture, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: var(--bordeaux); text-decoration: none; }
a:hover { color: var(--bordeaux-deep); }
ul { list-style: none; padding: 0; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; border-radius: 4px; }

/* ---------- Typografie --------------------------------------------- */
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 700; line-height: 1.15; color: var(--bordeaux); }
h1 { font-size: clamp(2.05rem, 1.4rem + 3vw, 3.5rem); letter-spacing: -.01em; }
h2 { font-size: clamp(1.7rem, 1.2rem + 2vw, 2.6rem); letter-spacing: -.01em; }
h3 { font-size: clamp(1.15rem, 1rem + .5vw, 1.4rem); font-weight: 600; }
p { color: var(--ink); }
strong { font-weight: 600; }

.eyebrow {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: clamp(1.15rem, 1rem + .6vw, 1.6rem);
  color: var(--gold-deep);
  display: inline-block;
  margin-bottom: .35rem;
}

/* ---------- Layout-Helfer ------------------------------------------ */
.container { width: min(100% - 2.4rem, var(--container)); margin-inline: auto; }
.section { padding-block: var(--section-y); }
.section--rose { background: linear-gradient(180deg, var(--rose-tint), var(--rose-soft)); }
.section--bordeaux { background: var(--bordeaux); color: #fff; }
.section--bordeaux h2, .section--bordeaux h3 { color: #fff; }
.section-head { max-width: 760px; margin-bottom: clamp(2rem, 5vw, 3.2rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head p { color: var(--ink-soft); font-size: 1.075rem; margin-top: .6rem; }
.section--bordeaux .section-head p { color: rgba(255,255,255,.85); }

.divider-gold {
  width: 64px; height: 3px; border-radius: 3px;
  background: linear-gradient(90deg, var(--gold), var(--rose));
  margin-top: 1rem;
}
.center .divider-gold { margin-inline: auto; }

/* ---------- Buttons ------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .85rem 1.5rem; border-radius: 999px;
  font-family: var(--font-head); font-weight: 600; font-size: .98rem;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease;
  white-space: nowrap; text-align: center; line-height: 1.1;
}
.btn svg { width: 1.15em; height: 1.15em; flex: none; }
.btn--primary { background: var(--bordeaux); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--bordeaux-deep); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--gold { background: var(--gold); color: #3a2c05; box-shadow: var(--shadow-sm); }
.btn--gold:hover { background: #b8912f; color: #3a2c05; transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--outline { background: transparent; color: var(--bordeaux); box-shadow: inset 0 0 0 2px var(--bordeaux); }
.btn--outline:hover { background: var(--bordeaux); color: #fff; transform: translateY(-2px); }
.btn--wa { background: var(--bordeaux); color: #fff; box-shadow: var(--shadow-sm); }
.btn--wa:hover { background: var(--bordeaux-deep); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--ghost-light { background: rgba(255,255,255,.14); color: #fff; box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.5); }
.btn--ghost-light:hover { background: rgba(255,255,255,.24); color: #fff; }
.btn--lg { padding: 1.05rem 1.9rem; font-size: 1.05rem; }

/* ---------- Header / Navigation ------------------------------------ */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251, 251, 251, .88);
  backdrop-filter: saturate(1.2) blur(10px);
  border-bottom: 1px solid var(--line);
}
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; min-height: var(--header-h);
}
.brand { display: flex; align-items: center; gap: .6rem; }
.brand img { width: 44px; height: 44px; border-radius: 50%; box-shadow: var(--shadow-sm); }
.brand__name { font-family: var(--font-head); font-weight: 700; color: var(--bordeaux); font-size: 1.12rem; line-height: 1; }
.brand__name span { display: block; font-family: var(--font-body); font-weight: 500; font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-deep); margin-top: .18rem; }

.nav { display: flex; align-items: center; gap: 1.6rem; }
.nav__links { display: flex; gap: 1.4rem; }
.nav__links a { font-family: var(--font-head); font-weight: 500; font-size: .96rem; color: var(--ink); position: relative; }
.nav__links a::after { content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px; background: var(--gold); transition: width .22s ease; }
.nav__links a:hover { color: var(--bordeaux); }
.nav__links a:hover::after { width: 100%; }
.nav__cta { display: flex; gap: .6rem; }
/* Desktop: Logo links, Nav-Links mittig, CTAs rechts (ausgewogenes 3-Zonen-Layout) */
@media (min-width: 861px) {
  /* Header breiter als der Inhalts-Container -> Logo weiter links, CTAs weiter rechts */
  .header__inner { width: min(100% - 3rem, 1400px); }
  .nav { flex: 1; }
  .nav__links { margin-inline: auto; }   /* zentriert die Navigation, CTAs bleiben rechts */
  /* Anruf-Button kompakt als Icon-Kreis -> entlastet den Header */
  .nav__call { width: 46px; height: 46px; padding: 0; justify-content: center; }
  .nav__call .label-full { display: none; }
}

.nav-toggle { display: none; width: 46px; height: 46px; border-radius: 12px; align-items: center; justify-content: center; color: var(--bordeaux); box-shadow: inset 0 0 0 1px var(--line); }
.nav-toggle svg { width: 26px; height: 26px; }
.nav-toggle .icon-close { display: none; }
body.nav-open .nav-toggle .icon-open { display: none; }
body.nav-open .nav-toggle .icon-close { display: block; }

@media (max-width: 900px) {
  .nav__cta .btn span.label-full { display: none; }
}
@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    position: fixed; inset: var(--header-h) 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--white); border-bottom: 1px solid var(--line);
    padding: .5rem 1.2rem 1.4rem; box-shadow: var(--shadow);
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
    max-height: calc(100vh - var(--header-h)); overflow-y: auto;
  }
  body.nav-open .nav { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav__links { flex-direction: column; gap: 0; }
  .nav__links a { padding: .9rem .2rem; border-bottom: 1px solid var(--line); font-size: 1.05rem; }
  .nav__links a::after { display: none; }
  .nav__cta { margin-top: 1rem; }
  .nav__cta .btn { flex: 1; justify-content: center; }
  .nav__cta .btn span.label-full { display: inline; }
}

/* ---------- Hero (Split-Layout) ------------------------------------ */
.hero { position: relative; overflow: hidden; background:
    radial-gradient(120% 80% at 100% 0%, var(--rose-soft), transparent 60%),
    radial-gradient(90% 90% at 0% 100%, var(--rose-tint), transparent 55%), var(--bg); }
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: clamp(1.5rem, 5vw, 4rem); padding-block: clamp(2.5rem, 6vw, 5rem); }
.hero__content { max-width: 560px; }
.hero h1 { margin-top: .3rem; }
.hero__sub { font-size: clamp(1.05rem, 1rem + .4vw, 1.25rem); color: var(--ink-soft); margin-top: 1.1rem; }
.hero__cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.8rem; }
.hero__rating { display: flex; align-items: center; gap: .7rem; margin-top: 1.6rem; font-size: .96rem; color: var(--ink-soft); }
.hero__rating .stars { color: var(--gold); letter-spacing: 2px; font-size: 1.1rem; }
.hero__rating strong { color: var(--ink); }

.hero__media { position: relative; }
.hero__frame {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); border: 6px solid #fff; rotate: 1.5deg;
  aspect-ratio: 3 / 4; max-width: 460px; margin-inline: auto;
}
.hero__frame::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 2px var(--gold); border-radius: calc(var(--radius-lg) - 6px); opacity: .6; }
.hero__frame img { width: 100%; height: 100%; object-fit: cover; }
.hero__badge {
  position: absolute; bottom: -18px; left: -14px; z-index: 2;
  background: #fff; border-radius: 16px; padding: .7rem 1rem; box-shadow: var(--shadow);
  display: flex; align-items: center; gap: .6rem; rotate: -3deg;
}
.hero__badge .g { font-family: var(--font-head); font-weight: 700; color: var(--bordeaux); font-size: 1.5rem; line-height: 1; }
.hero__badge small { display: block; color: var(--ink-soft); font-size: .72rem; }
.hero__badge .stars { color: var(--gold); font-size: .9rem; letter-spacing: 1px; }

@media (max-width: 820px) {
  .hero__grid { grid-template-columns: 1fr; text-align: center; }
  .hero__content { max-width: 620px; margin-inline: auto; }
  .hero__cta, .hero__rating { justify-content: center; }
  .hero__frame { rotate: 0deg; max-width: 380px; }
  .hero__badge { left: 50%; transform: translateX(-50%); rotate: 0deg; }
}

/* ---------- Trust-Bar ---------------------------------------------- */
.trustbar { background: var(--bordeaux); color: #fff; }
.trustbar__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; padding-block: 1.4rem; }
.trust-item { display: flex; align-items: center; justify-content: center; gap: .7rem; text-align: left; }
.trust-item svg { width: 26px; height: 26px; color: var(--gold); flex: none; }
.trust-item b { display: block; font-family: var(--font-head); font-weight: 600; font-size: 1.02rem; }
.trust-item span { font-size: .82rem; color: rgba(255,255,255,.78); }
@media (max-width: 720px) { .trustbar__grid { grid-template-columns: repeat(2, 1fr); gap: 1.1rem 1rem; } }

/* ---------- Karten-Grid (Leistungen) ------------------------------- */
.cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--gap); }
@media (max-width: 900px) { .cards { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .cards { grid-template-columns: 1fr; } }
.card {
  background: #fff; border-radius: var(--radius); padding: 1.7rem 1.5rem;
  box-shadow: var(--shadow-sm); border: 1px solid var(--line);
  transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card__icon { width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center; background: var(--rose-soft); color: var(--bordeaux); margin-bottom: 1rem; }
.card__icon svg { width: 28px; height: 28px; }
.card h3 { margin-bottom: .4rem; overflow-wrap: break-word; hyphens: auto; }
.card p { color: var(--ink-soft); font-size: .98rem; overflow-wrap: break-word; }
.services__note { margin-top: 1.6rem; font-size: .9rem; color: var(--ink-soft); text-align: center; }
.services__cta { text-align: center; margin-top: 2rem; }

/* ---------- Academy ------------------------------------------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 5vw, 3.5rem); align-items: center; }
.split__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow); aspect-ratio: 4/5; object-fit: cover; width: 100%; border: 5px solid #fff; }
.split--rev .split__media { order: 2; }
.feature-list { display: grid; gap: .9rem; margin: 1.4rem 0 1.8rem; }
.feature-list li { display: flex; gap: .7rem; align-items: flex-start; }
.feature-list svg { width: 22px; height: 22px; color: var(--gold-deep); flex: none; margin-top: .15rem; }
.feature-list b { font-weight: 600; }
.section--bordeaux .feature-list svg { color: var(--gold); }
.section--bordeaux .feature-list li { color: rgba(255,255,255,.9); }
@media (max-width: 780px) {
  .split { grid-template-columns: 1fr; }
  .split--rev .split__media { order: 0; }
  .split__media img { max-width: 460px; margin-inline: auto; }
}

/* ---------- Über uns – Werte-Chips --------------------------------- */
.chips { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.4rem; }
.chip { background: var(--rose-soft); color: var(--bordeaux); border-radius: 999px; padding: .45rem 1rem; font-size: .9rem; font-weight: 500; display: inline-flex; gap: .4rem; align-items: center; }
.chip svg { width: 16px; height: 16px; color: var(--gold-deep); }
.about__media { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.about__media img { border-radius: var(--radius); box-shadow: var(--shadow-sm); aspect-ratio: 3/4; object-fit: cover; width: 100%; height: 100%; }
.about__media img:first-child { grid-row: span 2; aspect-ratio: 3/5; }
@media (max-width: 780px) { .about__media img:first-child { grid-row: auto; aspect-ratio: 3/4; } }

/* ---------- Galerie ------------------------------------------------- */
.gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: .9rem; }
.gallery figure { position: relative; overflow: hidden; border-radius: var(--radius-sm); box-shadow: var(--shadow-sm); margin: 0; background: var(--rose-soft); }
.gallery button.gallery__item { padding: 0; width: 100%; display: block; }
.gallery img { width: 100%; height: 100%; aspect-ratio: 3/4; object-fit: cover; transition: transform .4s ease; }
.gallery figure:hover img { transform: scale(1.06); }
.gallery figcaption { position: absolute; inset: auto 0 0 0; padding: .7rem .8rem; font-size: .82rem; color: #fff; background: linear-gradient(0deg, rgba(46,20,26,.7), transparent); }

/* ---------- Lightbox ----------------------------------------------- */
.lightbox { position: fixed; inset: 0; z-index: 200; display: none; place-items: center; background: rgba(30,12,16,.82); padding: 1.5rem; }
.lightbox.open { display: grid; }
.lightbox img { max-width: min(92vw, 720px); max-height: 86vh; border-radius: 12px; box-shadow: var(--shadow-lg); border: 4px solid #fff; }
.lightbox__close { position: absolute; top: 1.1rem; right: 1.2rem; width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,.15); color: #fff; display: grid; place-items: center; }
.lightbox__close svg { width: 26px; height: 26px; }

/* ---------- Bewertungen -------------------------------------------- */
.reviews__box {
  max-width: 640px; margin-inline: auto; text-align: center;
  background: #fff; border-radius: var(--radius-lg); padding: clamp(2rem, 5vw, 3rem);
  box-shadow: var(--shadow); border: 1px solid var(--line);
}
.reviews__score { font-family: var(--font-head); font-weight: 700; font-size: 3.4rem; color: var(--bordeaux); line-height: 1; }
.reviews__stars { color: var(--gold); font-size: 1.8rem; letter-spacing: 4px; margin: .5rem 0 .3rem; }
.reviews__meta { color: var(--ink-soft); }
.reviews__logo { display: inline-flex; align-items: center; gap: .5rem; margin: 1.4rem 0; font-weight: 600; color: var(--ink); }
.reviews__logo svg { width: 22px; height: 22px; }

/* ---------- Öffnungszeiten & Anfahrt ------------------------------- */
.hours-map { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: stretch; }
.hours { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-sm); border: 1px solid var(--line); overflow: hidden; }
.hours__status { padding: 1rem 1.4rem; font-weight: 600; font-family: var(--font-head); display: flex; align-items: center; gap: .6rem; border-bottom: 1px solid var(--line); }
.hours__status .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--ink-soft); }
.hours__status.open .dot { background: #2e9e5b; box-shadow: 0 0 0 4px rgba(46,158,91,.18); }
.hours__status.closed .dot { background: #c0473f; box-shadow: 0 0 0 4px rgba(192,71,63,.15); }
.hours table { width: 100%; border-collapse: collapse; }
.hours td { padding: .72rem 1.4rem; border-bottom: 1px solid var(--line); font-size: .97rem; }
.hours tr:last-child td { border-bottom: none; }
.hours td:last-child { text-align: right; color: var(--ink-soft); font-variant-numeric: tabular-nums; }
.hours tr.today td { background: var(--rose-tint); color: var(--bordeaux); font-weight: 600; }
.hours tr.today td:last-child { color: var(--bordeaux); }
.hours__address { padding: 1.2rem 1.4rem; border-top: 1px solid var(--line); font-size: .97rem; }
.hours__address a { font-weight: 600; }

/* Karte mit Consent (Zwei-Klick) */
.map { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line); min-height: 340px; background:
    linear-gradient(135deg, var(--rose-soft), var(--rose-tint)); }
.map__consent { position: absolute; inset: 0; display: grid; place-items: center; text-align: center; padding: 1.5rem; }
.map__consent-inner { max-width: 380px; }
.map__consent svg.pin { width: 44px; height: 44px; color: var(--bordeaux); margin-inline: auto; }
.map__consent h3 { margin: .6rem 0 .4rem; }
.map__consent p { font-size: .88rem; color: var(--ink-soft); margin-bottom: 1rem; }
.map__actions { display: flex; align-items: center; justify-content: center; gap: 1.5rem; flex-wrap: wrap; margin-top: .3rem; }
.map__route { font-size: .9rem; font-weight: 600; white-space: nowrap; }
.map iframe { width: 100%; height: 100%; min-height: 340px; border: 0; display: block; }
.map.loaded .map__consent { display: none; }

@media (max-width: 820px) { .hours-map { grid-template-columns: 1fr; } }

/* ---------- Kontakt ------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--gap); }
.contact-cta { display: grid; gap: 1rem; }
.contact-card {
  display: flex; align-items: center; gap: 1rem; padding: 1.4rem 1.5rem;
  border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-sm);
  border: 1px solid var(--line); transition: transform .18s ease, box-shadow .18s ease;
}
.contact-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.contact-card__ic { width: 56px; height: 56px; border-radius: 14px; display: grid; place-items: center; flex: none; color: #fff; }
.contact-card__ic svg { width: 28px; height: 28px; }
.contact-card--call .contact-card__ic { background: var(--bordeaux); }
.contact-card--wa .contact-card__ic { background: var(--bordeaux); }
.contact-card small { color: var(--ink-soft); font-size: .82rem; }
.contact-card b { font-family: var(--font-head); font-size: 1.15rem; color: var(--bordeaux); display: block; }
.contact-info { background: var(--bordeaux); color: #fff; border-radius: var(--radius); padding: clamp(1.6rem, 4vw, 2.2rem); }
.contact-info h3 { color: #fff; margin-bottom: 1rem; }
.contact-info ul { display: grid; gap: .9rem; }
.contact-info li { display: flex; gap: .8rem; align-items: flex-start; color: rgba(255,255,255,.9); font-size: .97rem; }
.contact-info li svg { width: 22px; height: 22px; color: var(--gold); flex: none; margin-top: .1rem; }
.contact-info a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.socials { display: flex; gap: .6rem; margin-top: 1.4rem; }
.socials a { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; background: rgba(255,255,255,.14); color: #fff; transition: background .2s ease, transform .2s ease; }
.socials a:hover { background: var(--gold); color: #3a2c05; transform: translateY(-2px); }
.socials svg { width: 20px; height: 20px; }
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; } }

/* ---------- Footer -------------------------------------------------- */
.footer { background: #2a1418; color: rgba(255,255,255,.78); padding-block: 3rem 6rem; font-size: .92rem; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem; }
.footer .brand__name { color: #fff; }
.footer p { color: rgba(255,255,255,.7); margin-top: .8rem; max-width: 34ch; }
.footer h4 { color: #fff; font-family: var(--font-head); font-size: 1rem; margin-bottom: .9rem; }
.footer a { color: rgba(255,255,255,.8); }
.footer a:hover { color: var(--gold); }
.footer__links { display: grid; gap: .5rem; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 2.4rem; padding-top: 1.4rem; display: flex; flex-wrap: wrap; gap: .6rem 1.4rem; justify-content: space-between; color: rgba(255,255,255,.6); font-size: .85rem; }
.footer__bottom a { color: rgba(255,255,255,.7); }
@media (max-width: 720px) { .footer__grid { grid-template-columns: 1fr; gap: 1.6rem; } }

/* ---------- Sticky Mobile CTA -------------------------------------- */
.mobile-cta { position: fixed; inset: auto 0 0 0; z-index: 90; display: none; gap: .6rem; padding: .6rem .8rem calc(.6rem + env(safe-area-inset-bottom)); background: rgba(255,255,255,.96); border-top: 1px solid var(--line); box-shadow: 0 -6px 20px rgba(94,31,44,.1); backdrop-filter: blur(8px); }
.mobile-cta .btn { flex: 1; justify-content: center; }
@media (max-width: 640px) { .mobile-cta { display: flex; } body { padding-bottom: 76px; } }

/* ---------- Cookie-Banner ------------------------------------------ */
.cookie { position: fixed; inset: auto 1rem 1rem 1rem; z-index: 120; max-width: 440px; margin-inline: auto; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-lg); border: 1px solid var(--line); padding: 1.2rem 1.3rem; display: none; }
.cookie.show { display: block; animation: slideup .3s ease; }
.cookie p { font-size: .88rem; color: var(--ink-soft); }
.cookie p a { font-weight: 600; }
.cookie__row { display: flex; gap: .6rem; margin-top: .9rem; }
@keyframes slideup { from { transform: translateY(16px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
@media (max-width: 640px) { .cookie { inset: auto .6rem calc(84px) .6rem; } }

/* ---------- Scroll-Reveal (nur bei aktivem JS ausgeblendet) --------- */
html.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
html.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { html.js .reveal { opacity: 1; transform: none; transition: none; } }

/* ---------- Rechtsseiten (Impressum/Datenschutz) ------------------- */
.legal { padding-block: clamp(2.5rem, 6vw, 4.5rem); }
.legal .container { max-width: 820px; }
.legal h1 { margin-bottom: 1.4rem; }
.legal h2 { font-size: 1.35rem; margin: 2rem 0 .7rem; color: var(--bordeaux); }
.legal p, .legal li { color: var(--ink); margin-bottom: .7rem; }
.legal ul { list-style: disc; padding-left: 1.3rem; }
.legal a { text-decoration: underline; text-underline-offset: 3px; }
.legal__back { display: inline-flex; align-items: center; gap: .4rem; margin-bottom: 1.5rem; font-weight: 600; }
.note {
  background: var(--rose-soft); border-left: 4px solid var(--gold);
  border-radius: 10px; padding: 1rem 1.2rem; margin: 1.2rem 0; font-size: .92rem; color: var(--bordeaux-deep);
}
.note strong { color: var(--bordeaux); }
