/* =========================================================
   Art of Hair – Friseursalon Greifswald
   Dunkles Editorial-Design · Kupfer/Bronze-Akzent
   Verwandte Handschrift zur Ropella-Referenz, eigene Marke.
   ========================================================= */

/* ---------- Fonts (selbst gehostet, DSGVO-freundlich) ---------- */
@font-face { font-family:"Inter"; font-style:normal; font-weight:400; font-display:swap; src:url("../fonts/inter-400.woff2") format("woff2"); }
@font-face { font-family:"Inter"; font-style:normal; font-weight:500; font-display:swap; src:url("../fonts/inter-500.woff2") format("woff2"); }
@font-face { font-family:"Inter"; font-style:normal; font-weight:600; font-display:swap; src:url("../fonts/inter-600.woff2") format("woff2"); }
@font-face { font-family:"Inter"; font-style:normal; font-weight:700; font-display:swap; src:url("../fonts/inter-700.woff2") format("woff2"); }
@font-face { font-family:"Inter Tight"; font-style:normal; font-weight:600; font-display:swap; src:url("../fonts/inter-tight-600.woff2") format("woff2"); }
@font-face { font-family:"Inter Tight"; font-style:normal; font-weight:700; font-display:swap; src:url("../fonts/inter-tight-700.woff2") format("woff2"); }
@font-face { font-family:"Inter Tight"; font-style:normal; font-weight:800; font-display:swap; src:url("../fonts/inter-tight-800.woff2") format("woff2"); }

/* ---------- Design Tokens ---------- */
:root {
  /* Warme, dunkle Basis */
  --bg:          #141210;   /* warmes Fast-Schwarz */
  --bg-2:        #1b1815;   /* Sektion etwas heller */
  --surface:     #221e1a;   /* Karten */
  --surface-2:   #2a2521;   /* Karten-Hover / Eingaben */
  --line:        #322c26;   /* feine Linien */
  --line-2:      #423a32;

  /* Warmes Off-White für Text */
  --ink:         #f4efe8;   /* Überschriften */
  --body:        #d8cfc4;   /* Fließtext */
  --muted:       #a69b8d;   /* Sekundärtext */
  --faint:       #7d7367;

  /* Gebranntes Kupfer / Bronze – Hauptakzent (satt, rötlicher Unterton) */
  --accent:      #b06b3f;   /* sattes gebranntes Kupfer, deutlich rötlicher */
  --accent-2:    #c68255;   /* wärmerer, hellerer Ton für Hover/Highlights */
  --accent-dark: #7f4626;   /* tiefes Bronze für Fills */
  --accent-050:  rgba(176,107,63,.10);
  --accent-100:  rgba(176,107,63,.20);
  --accent-line: rgba(176,107,63,.34);

  /* Gedecktes Weinrot – Sekundärakzent (Anlehnung ans rote Herz im Logo) */
  --wine:        #9c4650;
  --wine-2:      #b6555f;

  --ok:          #5fae7e;
  --closed:      #cf6f63;

  --radius:      16px;
  --radius-sm:   11px;
  --radius-lg:   26px;
  --shadow-sm:   0 1px 2px rgba(0,0,0,.4);
  --shadow:      0 18px 44px -22px rgba(0,0,0,.75);
  --shadow-lg:   0 34px 80px -30px rgba(0,0,0,.85);

  --container:   1180px;
  --gutter:      clamp(20px, 5vw, 48px);
  --disp:        "Inter Tight", "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font:        "Inter", system-ui, -apple-system, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

/* ---------- Reset / Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 106px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--body);
  background: var(--bg);
  line-height: 1.68;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
/* Sanfter warmer Verlauf über den Seitenhintergrund */
body::before {
  content: ""; position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(70% 50% at 88% -6%, rgba(176,107,63,.10), transparent 60%),
    radial-gradient(60% 45% at 0% 100%, rgba(156,70,80,.07), transparent 60%);
}
/* ---------- FloatingLines-Hintergrund (globaler Haar-Effekt) ---------- */
.fx-lines-bg {
  position: fixed;
  inset: 0;
  z-index: 0;               /* hinter dem Content, über dem body-Background */
  pointer-events: none;     /* Klicks gehen durch */
  opacity: 0.55;            /* deutlicher, aber weiterhin Hintergrund */
  mix-blend-mode: lighten;  /* schärfere Konturen als screen (kein additives Verwaschen) */
}
.fx-lines-bg canvas { display: block; width: 100%; height: 100%; }
/* Content liegt über dem Effekt. Header bleibt sticky (z-index 100) – nicht anfassen. */
main, .site-footer { position: relative; z-index: 1; }
/* Effekt auf Mobile und bei reduzierter Bewegung ausblenden (JS initialisiert dort ohnehin nicht). */
@media (max-width: 768px) { .fx-lines-bg { display: none; } }
@media (prefers-reduced-motion: reduce) { .fx-lines-bg { display: none; } }

/* ---------- Weiche, neblige Übergänge (solide Sektion <-> animierter Bereich) ----------
   Fade-Overlay an Kanten, an denen eine Sektion mit solidem Hintergrund an den
   transparenten FloatingLines-Bereich grenzt. --fade-color je Sektion überschreibbar. */
.fade-out-bottom { position: relative; }
.fade-out-bottom::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -100px;
  height: 100px;
  background: linear-gradient(to bottom,
    var(--fade-color, var(--bg)) 0%,
    rgba(20,18,16,0.55) 45%,
    transparent 100%);
  pointer-events: none;
  z-index: 2;
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  -webkit-mask-image: linear-gradient(to bottom, black 0%, transparent 90%);
          mask-image: linear-gradient(to bottom, black 0%, transparent 90%);
}
.fade-in-top { position: relative; }
.fade-in-top::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: -100px;
  height: 100px;
  background: linear-gradient(to top,
    var(--fade-color, var(--bg)) 0%,
    rgba(20,18,16,0.55) 45%,
    transparent 100%);
  pointer-events: none;
  z-index: 2;
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  -webkit-mask-image: linear-gradient(to top, black 0%, transparent 90%);
          mask-image: linear-gradient(to top, black 0%, transparent 90%);
}
/* Marquee-Sektionen dürfen die Fade-Pseudo-Elemente (top/bottom) nicht abschneiden.
   Deshalb overflow:visible – die horizontale Klippung übernimmt bei .brands das innere
   .brand-marquee, bei .filmstrip der innere .film-clip-Wrapper. So entsteht KEIN
   horizontaler Überlauf (docW bleibt = Viewport). */
.filmstrip.fade-out-bottom, .filmstrip.fade-in-top,
.brands.fade-out-bottom, .brands.fade-in-top { overflow: visible; }
.film-clip { overflow: hidden; }

img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent-2); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 { font-family: var(--disp); color: var(--ink); line-height: 1.12; letter-spacing: -.015em; margin: 0 0 .5em; font-weight: 700; }
h1 { font-size: clamp(2.35rem, 6vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(1.85rem, 3.6vw, 2.7rem); }
h3 { font-size: 1.3rem; }
p  { margin: 0 0 1rem; }
address { font-style: normal; }
strong { color: var(--ink); }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--accent); color: #1a1512; font-weight: 700; padding: 12px 18px; border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; }
:focus-visible { outline: 2px solid var(--accent-2); outline-offset: 3px; border-radius: 4px; }

/* ---------- Reveal-Mechanik ----------
   Standard: alles sichtbar. Erst wenn JS läuft (html.js) wird animiert.
   Ohne JS greift die Verstecken-Regel nie → Content bleibt sichtbar. */
.js .reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.js .reveal.is-in { opacity: 1; transform: none; }
.js .reveal-d1 { transition-delay: .08s; }
.js .reveal-d2 { transition-delay: .16s; }
.js .reveal-d3 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) { .js .reveal { opacity: 1 !important; transform: none !important; transition: none !important; } }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  font: inherit; font-weight: 600; font-size: .98rem; line-height: 1;
  padding: .92em 1.5em; border-radius: 999px; border: 1.5px solid transparent;
  cursor: pointer; text-decoration: none; white-space: nowrap;
  transition: transform .12s ease, background .18s ease, box-shadow .18s ease, color .18s ease, border-color .18s ease;
}
.btn:hover { text-decoration: none; }
.btn:active { transform: translateY(1px); }
.btn-primary { background: linear-gradient(135deg, var(--accent-dark), #6a3818); color: var(--ink); box-shadow: 0 12px 26px -14px rgba(127,70,38,.9); }
.btn-primary:hover { background: linear-gradient(135deg, var(--accent), var(--accent-dark)); color: var(--ink); box-shadow: 0 16px 32px -14px rgba(127,70,38,1); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn-ghost:hover { background: var(--accent-050); border-color: var(--accent-line); color: var(--accent-2); }
.btn-lg { font-size: 1.06rem; padding: 1.02em 1.85em; }
.btn-block { width: 100%; }
/* Call-Button – der wichtigste CTA */
.btn-call { background: var(--surface); color: var(--ink); border-color: var(--line-2); font-variant-numeric: tabular-nums; }
.btn-call:hover { background: var(--accent-050); border-color: var(--accent-line); color: var(--accent-2); }
.btn-call svg { color: var(--accent); flex: none; }
.btn-call.btn-primary { color: var(--ink); }
.btn-call.btn-primary svg { color: var(--accent-2); }

/* ---------- Social-Icons ---------- */
.social-links { display: inline-flex; align-items: center; gap: 8px; }
.social-links a {
  display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px;
  border-radius: 12px; border: 1px solid var(--line-2); background: var(--surface); color: var(--body);
  transition: color .16s ease, border-color .16s ease, background .16s ease, transform .12s ease;
}
.social-links a:hover { color: var(--accent-2); border-color: var(--accent-line); background: var(--accent-050); transform: translateY(-2px); }
.social-links svg { width: 19px; height: 19px; }

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(20,18,16,.82);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--line);
}
/* min-height statt height, damit nichts umbricht/stapelt */
.header-inner { display: flex; align-items: center; gap: 28px; min-height: 92px; max-width: 1440px; padding-block: 14px; padding-inline: clamp(18px, 3.5vw, 34px); }

.brand { display: inline-flex; align-items: center; gap: 12px; flex: none; text-decoration: none; }
.brand:hover { text-decoration: none; }
.brand img { height: 40px; width: auto; }
.brand .brand-sub { display: none; }

/* Klappbarer Bereich: Navigation + Aktionen */
.header-collapse { display: flex; align-items: center; gap: clamp(16px, 2vw, 32px); margin-left: auto; }
.main-nav ul { display: flex; align-items: center; gap: 2px; list-style: none; margin: 0; padding: 0; }
.main-nav a {
  display: inline-block; padding: 9px 12px; border-radius: 10px; white-space: nowrap;
  color: var(--body); font-weight: 500; font-size: .92rem; text-decoration: none;
  transition: background .15s ease, color .15s ease;
}
.main-nav a:hover { background: var(--accent-050); color: var(--accent-2); text-decoration: none; }
.main-nav a[aria-current="page"] { color: var(--accent-2); }

.header-cta { display: flex; align-items: center; gap: 10px; flex: none; }
.header-social { display: inline-flex; }
.header-call { display: inline-flex; flex-direction: column; align-items: flex-end; gap: 3px; }
.header-call .btn { padding: .72em 1.15em; font-size: .95rem; }
.header-call .call-hint { font-size: .68rem; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); white-space: nowrap; }

/* Hamburger */
.nav-toggle {
  display: none; width: 46px; height: 46px; border: 1px solid var(--line-2);
  background: var(--surface); border-radius: 13px; cursor: pointer; padding: 0;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .25s ease, opacity .2s ease; }
.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); }

/* Öffnungsstatus-Badge */
.open-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .82rem; font-weight: 600; color: var(--body);
  background: var(--surface); border: 1px solid var(--line-2);
  padding: 7px 14px; border-radius: 999px; white-space: nowrap;
}
.open-badge .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--faint); flex: none; }
.open-badge.is-open { background: rgba(95,174,126,.12); border-color: rgba(95,174,126,.4); color: #a9dcbc; }
.open-badge.is-open .dot { background: var(--ok); box-shadow: 0 0 0 4px rgba(95,174,126,.18); }
.open-badge.is-closed { background: rgba(207,111,99,.12); border-color: rgba(207,111,99,.38); color: #e8b3ab; }
.open-badge.is-closed .dot { background: var(--closed); }

/* =========================================================
   HERO (mit Signature-Bild)
   ========================================================= */
.hero { position: relative; min-height: min(88vh, 760px); display: flex; align-items: flex-end; overflow: hidden; isolation: isolate; }
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg picture { display: block; width: 100%; height: 100%; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background:
    linear-gradient(180deg, rgba(20,18,16,.55) 0%, rgba(20,18,16,.30) 34%, rgba(20,18,16,.72) 78%, var(--bg) 100%),
    linear-gradient(90deg, rgba(20,18,16,.72) 0%, rgba(20,18,16,.22) 55%, transparent 100%);
}
.hero-inner { padding-block: clamp(48px, 8vw, 96px); max-width: 760px; }
.hero .eyebrow { color: var(--accent-2); }
.hero h1 { color: #fff; margin-bottom: .32em; text-shadow: 0 2px 30px rgba(0,0,0,.5); }
.hero h1 .accent { color: var(--accent-2); }
.hero-lead { font-size: clamp(1.06rem, 1.6vw, 1.24rem); color: #eee7dd; max-width: 52ch; text-shadow: 0 1px 16px rgba(0,0,0,.5); }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin: 1.9rem 0 1.1rem; }
.hero-note { display: inline-flex; align-items: center; gap: 8px; font-size: .9rem; color: #e7ddd0; }
.hero-note svg { color: var(--accent-2); flex: none; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 1.5rem; }

.eyebrow { font-family: var(--disp); text-transform: uppercase; letter-spacing: .18em; font-size: .76rem; font-weight: 700; color: var(--accent); margin: 0 0 1rem; }

/* =========================================================
   VORTEILE (Pill-Row)
   ========================================================= */
.pill-strip { background: var(--bg-2); border-block: 1px solid var(--line); }
.pill-row { display: flex; flex-wrap: wrap; gap: 12px; padding: 26px 0; justify-content: center; }
.pill {
  display: inline-flex; align-items: center; gap: 11px; padding: 11px 18px 11px 14px;
  background: var(--surface); border: 1px solid var(--line-2); border-radius: 999px;
  font-size: .93rem; font-weight: 500; color: var(--body);
}
.pill svg { color: var(--accent); flex: none; width: 20px; height: 20px; }
.pill strong { color: var(--ink); font-weight: 600; }

/* =========================================================
   SECTIONS
   ========================================================= */
.section { padding: clamp(60px, 8vw, 116px) 0; position: relative; }
.section-alt { background: var(--bg-2); }
.section-head { max-width: 720px; margin: 0 auto clamp(38px, 4.4vw, 62px); text-align: center; }
.section-head.left { margin-inline: 0; text-align: left; }
.section-head .eyebrow { margin-bottom: .8rem; }
.section-intro { font-size: 1.12rem; color: var(--muted); margin: .5rem 0 0; }
.hr-accent { width: 54px; height: 3px; border: 0; margin: 0 auto; background: linear-gradient(90deg, var(--accent), var(--wine)); border-radius: 2px; }
.section-head.left .hr-accent { margin-inline: 0; }

/* Intro / Willkommen */
.intro-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(30px, 5vw, 68px); align-items: center; }
.intro-copy h2 { margin-bottom: .55em; }
.intro-copy p { color: var(--body); }
.intro-media { position: relative; }
.intro-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; aspect-ratio: 4/3; object-fit: cover; border: 1px solid var(--line); }
.intro-media .stamp {
  position: absolute; right: -14px; bottom: -18px; background: linear-gradient(135deg, var(--accent-2), var(--accent));
  color: #1c1510; border-radius: 18px; padding: 14px 20px; box-shadow: var(--shadow-lg); text-align: center; max-width: 190px;
}
.intro-media .stamp b { font-family: var(--disp); display: block; font-size: 1.9rem; font-weight: 800; line-height: 1; }
.intro-media .stamp span { font-size: .78rem; font-weight: 600; }

/* =========================================================
   FILMSTRIP (Salon-Impressionen)
   ========================================================= */
.filmstrip { padding: clamp(48px, 6vw, 84px) 0; overflow: hidden; }
.filmstrip .section-head { margin-bottom: clamp(28px, 3vw, 44px); }
.film-track {
  display: flex; gap: 18px; width: max-content;
  animation: film-scroll 52s linear infinite;
}
.filmstrip:hover .film-track { animation-play-state: paused; }
.film-item { flex: none; width: clamp(260px, 34vw, 420px); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); background: var(--surface); }
.film-item img { width: 100%; aspect-ratio: 3/2; object-fit: cover; }
@keyframes film-scroll { from { transform: translateX(0); } to { transform: translateX(calc(-50% - 9px)); } }
@media (prefers-reduced-motion: reduce) {
  .film-track { animation: none; overflow-x: auto; width: 100%; padding-bottom: 8px; }
}

/* =========================================================
   LEISTUNGEN (Cards)
   ========================================================= */
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
  position: relative; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 32px 30px; box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--accent-line); }
.card-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px; border-radius: 15px; margin-bottom: 20px;
  background: var(--accent-050); color: var(--accent-2); border: 1px solid var(--accent-line);
}
.card h3 { margin-bottom: .45em; }
.card p { color: var(--body); margin-bottom: .6rem; }
.card-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; }
.card-tags span { font-size: .8rem; color: var(--muted); background: var(--bg-2); border: 1px solid var(--line); border-radius: 999px; padding: 4px 11px; }
.card-price { color: var(--accent-2); font-weight: 600; font-size: .95rem; font-family: var(--disp); }

.cards-cta { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 44px; }

/* =========================================================
   MARKEN-TICKER
   ========================================================= */
.brands { padding: clamp(46px, 6vw, 80px) 0; overflow: hidden; }
.brand-marquee { position: relative; width: 100%; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.brand-track { display: flex; align-items: center; gap: 16px; width: max-content; animation: brand-scroll 42s linear infinite; }
.brands:hover .brand-track { animation-play-state: paused; }
.brand-chip {
  flex: none; display: inline-flex; align-items: center; justify-content: center;
  height: 96px; width: 190px; padding: 22px 26px; border-radius: var(--radius);
  background: #f3efe9; border: 1px solid var(--line);
}
.brand-chip img { max-height: 100%; max-width: 100%; width: auto; object-fit: contain; }
.brand-chip .brand-word { font-family: var(--disp); font-weight: 800; letter-spacing: .04em; font-size: 1.35rem; color: #1a1512; text-transform: uppercase; }
@keyframes brand-scroll { from { transform: translateX(0); } to { transform: translateX(calc(-50% - 8px)); } }
@media (prefers-reduced-motion: reduce) { .brand-track { animation: none; flex-wrap: wrap; width: 100%; justify-content: center; } .brand-marquee { -webkit-mask-image: none; mask-image: none; } }
.brands-note { text-align: center; color: var(--muted); font-size: .96rem; margin-top: 26px; }

/* =========================================================
   TEAM
   ========================================================= */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.team-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .2s ease, border-color .2s ease; }
.team-card:hover { transform: translateY(-4px); border-color: var(--accent-line); }
.team-card .photo { aspect-ratio: 4/5; overflow: hidden; background: var(--surface-2); }
.team-card .photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.team-card .meta { padding: 18px 20px 22px; }
.team-card .meta h3 { margin: 0 0 .15em; font-size: 1.18rem; }
.team-card .meta span { color: var(--accent-2); font-size: .88rem; font-weight: 600; letter-spacing: .02em; }

.team-teaser { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.team-teaser .photo img { border-radius: var(--radius-lg); border: 1px solid var(--line); box-shadow: var(--shadow-lg); width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: top center; max-height: 560px; }
.team-teaser .copy h2 { margin-bottom: .5em; }

/* Neutraler Foto-Platzhalter (bis freigegebene Team-Fotos vorliegen).
   Nutzt bestehende Design-Tokens; deckt Gruppenfoto (3/4) und Einzelporträts (4/5) ab. */
.team__placeholder {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; width: 100%; height: 100%; text-align: center;
  background:
    radial-gradient(120% 120% at 50% 0%, var(--accent-050) 0%, transparent 60%),
    var(--surface-2);
  border: 1.5px dashed var(--accent-line);
  color: var(--accent-2);
}
.team__placeholder svg { width: 44px; height: 44px; opacity: .75; }
.team__placeholder span {
  font-family: var(--disp); text-transform: uppercase; letter-spacing: .14em;
  font-size: .72rem; font-weight: 700; color: var(--muted);
}
/* Einzelporträt: Container (.team-card .photo) liefert bereits aspect-ratio 4/5 + Rundung via overflow */
.team-card .photo .team__placeholder { border-radius: 0; }
/* Gruppenfoto: .photo-Container hat keine eigene Größe -> Verhältnis/Radius hier setzen (wie Original-Bild) */
.team-teaser .photo .team__placeholder {
  aspect-ratio: 3/4; height: auto; max-height: 560px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* =========================================================
   PREISLISTE (Leistungen-Seite)
   ========================================================= */
.rules-banner {
  background: linear-gradient(135deg, rgba(156,70,80,.16), rgba(176,107,63,.10));
  border: 1px solid var(--accent-line); border-radius: var(--radius-lg);
  padding: clamp(24px, 3.4vw, 38px); margin-bottom: clamp(34px, 4vw, 52px);
}
.rules-banner h2 { font-size: 1.4rem; margin-bottom: .7em; }
.rules-list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2,1fr); gap: 14px 30px; }
.rules-list li { position: relative; padding-left: 30px; color: var(--body); font-size: .98rem; }
.rules-list li svg { position: absolute; left: 0; top: 3px; color: var(--accent); width: 19px; height: 19px; }

.filter-chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 36px; }
.chip {
  font: inherit; font-weight: 600; font-size: .92rem; cursor: pointer;
  padding: 9px 18px; border-radius: 999px; border: 1.5px solid var(--line-2);
  background: var(--surface); color: var(--body);
  transition: background .16s ease, color .16s ease, border-color .16s ease;
}
.chip:hover { border-color: var(--accent-line); color: var(--accent-2); }
.chip.is-active { background: linear-gradient(135deg, var(--accent-2), var(--accent)); color: #1c1510; border-color: transparent; }

.price-wrap { max-width: 880px; margin: 0 auto; }
.price-group { margin-bottom: 34px; }
.price-group.is-hidden { display: none; }
.price-group > h3 { display: flex; align-items: baseline; gap: 12px; font-size: 1.32rem; margin-bottom: 8px; padding-bottom: 12px; border-bottom: 1px solid var(--accent-line); }
.price-group > h3 .grp-note { font-family: var(--font); font-size: .82rem; font-weight: 500; color: var(--muted); letter-spacing: 0; }
.price-list { list-style: none; margin: 0; padding: 0; }
.price-row {
  display: flex; align-items: baseline; gap: 14px; padding: 13px 4px;
  border-bottom: 1px dashed var(--line-2);
}
.price-row.is-hidden { display: none; }
.price-row .p-name { color: var(--body); }
.price-row .p-name b { color: var(--ink); font-weight: 600; }
.price-row .p-dots { flex: 1 1 auto; border-bottom: 1px dotted var(--line-2); transform: translateY(-4px); min-width: 18px; }
.price-row .p-price { flex: none; color: var(--accent-2); font-weight: 700; font-family: var(--disp); font-variant-numeric: tabular-nums; white-space: nowrap; }
.price-empty { text-align: center; color: var(--muted); padding: 30px 0; display: none; }
.price-note { color: var(--muted); font-size: .92rem; margin-top: 26px; text-align: center; }

/* =========================================================
   FAQ
   ========================================================= */
.faq-wrap { max-width: 840px; margin: 0 auto; }
.faq-list { display: grid; gap: 12px; }
.faq-item { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; transition: border-color .18s ease; }
.faq-item[open] { border-color: var(--accent-line); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 20px 56px 20px 24px; position: relative;
  font-family: var(--disp); font-weight: 600; color: var(--ink); font-size: 1.08rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: ""; position: absolute; right: 24px; top: 50%; width: 11px; height: 11px;
  margin-top: -7px; border-right: 2px solid var(--accent); border-bottom: 2px solid var(--accent);
  transform: rotate(45deg); transition: transform .22s ease;
}
.faq-item[open] summary::after { transform: rotate(-135deg); }
.faq-item summary:hover { color: var(--accent-2); }
.faq-answer { padding: 0 24px 22px; }
.faq-answer p { margin: 0; color: var(--body); }

/* =========================================================
   ÖFFNUNGSZEITEN / KONTAKT / MAPS
   ========================================================= */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(22px, 3.4vw, 40px); align-items: start; }
.info-block { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 30px; box-shadow: var(--shadow-sm); }
.info-block h3 { margin-bottom: .7em; }
.info-block address { color: var(--body); margin-bottom: 18px; line-height: 1.85; }
.contact-list { list-style: none; margin: 0 0 22px; padding: 0; display: grid; gap: 14px; }
.contact-list li { display: flex; align-items: baseline; gap: 14px; }
.ci-label { flex: none; width: 74px; color: var(--muted); font-size: .82rem; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; }
.contact-list a { color: var(--body); font-weight: 600; }
.contact-list a:hover { color: var(--accent-2); }

.hours-table { width: 100%; border-collapse: collapse; margin-bottom: 16px; }
.hours-table th, .hours-table td { text-align: left; padding: 11px 0; border-bottom: 1px solid var(--line); font-weight: 500; }
.hours-table th { color: var(--body); font-weight: 500; }
.hours-table td { color: var(--ink); text-align: right; font-variant-numeric: tabular-nums; }
.hours-table tr:last-child th, .hours-table tr:last-child td { border-bottom: 0; }
.hours-table tr.is-today th, .hours-table tr.is-today td { color: var(--accent-2); font-weight: 700; }
.hours-table tr.is-today th::after { content: " · heute"; color: var(--accent); font-weight: 600; font-size: .8em; }
.hours-closed td { color: var(--faint); }

.callout-appt {
  margin-top: 20px; display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  background: linear-gradient(135deg, rgba(156,70,80,.18), rgba(176,107,63,.10));
  border: 1px solid var(--accent-line); border-radius: var(--radius); padding: 18px 20px;
}
.callout-appt svg { color: var(--accent-2); flex: none; }
.callout-appt strong { color: var(--ink); }
.callout-appt p { margin: 0; font-size: .96rem; }

/* Maps */
.map-wrap { margin-top: clamp(30px, 4vw, 52px); }
.map-consent {
  position: relative; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line);
  min-height: 360px; display: grid; place-items: center; text-align: center;
  background:
    linear-gradient(rgba(20,18,16,.82), rgba(20,18,16,.9)),
    repeating-linear-gradient(45deg, #1e1a16 0 22px, #24201b 22px 44px);
}
.map-consent-inner { padding: 34px; max-width: 480px; }
.map-consent-inner p { margin: 0 0 8px; color: var(--body); }
.map-consent-inner > p:first-child { font-family: var(--disp); font-size: 1.2rem; color: var(--ink); }
.map-consent-note { font-size: .84rem; color: var(--muted); margin: 12px 0 18px !important; }
.map-consent .btn { margin-bottom: 14px; }
.map-direct-link { font-size: .9rem; font-weight: 600; }
.map-frame { width: 100%; height: 440px; border: 0; display: block; border-radius: var(--radius-lg); }

/* =========================================================
   GALERIE (Salon-Seite)
   ========================================================= */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gallery-item { margin: 0; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); background: var(--surface-2); }
.gallery-item img { width: 100%; height: 100%; aspect-ratio: 3/2; object-fit: cover; transition: transform .5s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.tall img { aspect-ratio: 3/4; }

/* =========================================================
   CTA-BAND
   ========================================================= */
.cta-band { position: relative; overflow: hidden; }
.cta-band .container { position: relative; z-index: 1; }
.cta-inner {
  background: linear-gradient(135deg, var(--surface), var(--bg-2));
  border: 1px solid var(--accent-line); border-radius: var(--radius-lg);
  padding: clamp(34px, 5vw, 60px); text-align: center; box-shadow: var(--shadow);
}
.cta-inner h2 { margin-bottom: .35em; }
.cta-inner p { color: var(--muted); max-width: 54ch; margin-inline: auto; margin-bottom: 1.6rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; align-items: center; }
.cta-hint { font-size: .9rem; color: var(--muted); margin-top: 1rem; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer { background: #100e0c; color: var(--muted); border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.1fr; gap: 40px; padding: clamp(48px, 6vw, 76px) var(--gutter) 46px; max-width: var(--container); margin-inline: auto; }
.footer-brand img { height: 42px; width: auto; margin-bottom: 16px; }
.footer-tagline { max-width: 34ch; font-size: .95rem; color: var(--muted); }
.footer-social { margin-top: 18px; }
.footer-col h4 { font-family: var(--disp); color: var(--ink); font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col address { color: var(--muted); line-height: 1.95; }
.footer-col a { color: var(--body); }
.footer-col a:hover { color: var(--accent-2); }
.footer-hours { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.footer-hours li { display: flex; justify-content: space-between; gap: 16px; font-size: .95rem; }
.footer-hours span:first-child { color: var(--faint); }
.footer-links { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer-bottom { border-top: 1px solid var(--line); }
.footer-bottom-inner { display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; padding-block: 22px; font-size: .85rem; color: var(--faint); max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.footer-bottom-inner a { color: var(--muted); }

/* =========================================================
   LEGAL (Impressum / Datenschutz)
   ========================================================= */
.legal { padding: clamp(42px, 6vw, 76px) 0 clamp(56px, 8vw, 96px); }
.legal-inner { max-width: 820px; margin: 0 auto; }
.legal .page-title { margin-bottom: .3em; }
.legal-lead { color: var(--muted); font-size: 1.08rem; margin-bottom: 2.4rem; }
.legal h2 { font-size: 1.5rem; margin: 2.4rem 0 .7rem; }
.legal h3 { font-size: 1.16rem; margin: 1.7rem 0 .5rem; }
.legal p, .legal li { color: var(--body); }
.legal ul { padding-left: 1.2rem; margin: 0 0 1rem; }
.legal ul li { margin-bottom: .4rem; }
.legal .data-block { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 26px; margin: 0 0 1.6rem; }
.legal .data-block p { margin: 0; line-height: 1.95; }
.legal a { color: var(--accent-2); font-weight: 500; }
.legal .todo { background: rgba(156,70,80,.14); border: 1px dashed var(--wine-2); border-radius: 10px; padding: 4px 10px; color: #e8b3ab; font-size: .9rem; }
.breadcrumb { font-size: .9rem; color: var(--muted); margin-bottom: 1.4rem; }
.breadcrumb a { color: var(--muted); }
.page-hero { padding: clamp(40px, 6vw, 72px) 0 0; }
.page-hero .eyebrow { color: var(--accent); }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1000px) {
  .cards-grid, .team-grid { grid-template-columns: repeat(2, 1fr); }
  .intro-grid, .team-teaser, .contact-grid { grid-template-columns: 1fr; }
  .intro-media, .team-teaser .photo { order: -1; max-width: 560px; margin-inline: auto; }
  .team-teaser .photo img { max-height: 480px; }
  .rules-list { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* Unter dieser Breite: Nav + Aktionen komplett ins Hamburger-Menü.
   Breakpoint bewusst hoch gewählt, damit die lange Navigation nicht umbricht. */
@media (max-width: 1120px) {
  .header-collapse {
    position: fixed; inset: 92px 0 auto 0; margin: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    padding: 12px var(--gutter) 22px;
    background: rgba(20,18,16,.98); border-bottom: 1px solid var(--line); box-shadow: var(--shadow);
    max-height: calc(100vh - 92px); overflow-y: auto;
    transform: translateY(-10px); opacity: 0; pointer-events: none;
    transition: transform .2s ease, opacity .2s ease;
  }
  .header-collapse.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .main-nav { width: 100%; }
  .main-nav ul { flex-direction: column; align-items: stretch; gap: 2px; }
  .main-nav a { display: block; padding: 14px 12px; font-size: 1.05rem; border-radius: 10px; }
  .header-cta { flex-direction: column; align-items: stretch; gap: 12px; margin-top: 16px; padding-top: 18px; border-top: 1px solid var(--line); }
  .header-call { align-items: stretch; }
  .header-call .btn { width: 100%; justify-content: center; font-size: 1.05rem; padding: .9em 1.2em; }
  .header-call .call-hint { text-align: center; }
  .header-social { justify-content: center; }
  .nav-toggle { display: flex; margin-left: auto; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .cards-grid, .team-grid, .gallery-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom-inner { justify-content: flex-start; }
  .intro-media .stamp { right: 8px; bottom: -14px; }
  .gallery-item.tall { grid-row: span 1; }
  .gallery-item.tall img { aspect-ratio: 3/2; }
  .cta-actions { flex-direction: column; }
  .cta-actions .btn { width: 100%; }
}
