@font-face {
  font-family: 'Sora';
  src: url('fonts/sora-var.woff2') format('woff2');
  font-weight: 400 700;
  font-display: swap;
}
@font-face {
  font-family: 'Manrope';
  src: url('fonts/manrope-var.woff2') format('woff2');
  font-weight: 400 800;
  font-display: swap;
}

:root {
  --paper: #fbfaf7;
  --paper-deep: #f5efe6;
  --ink: #16120d;
  --ink-soft: #6d6459;
  --accent: #f3750f;
  --accent-deep: #c95c05;
  --accent-soft: #fdebda;
  --accent-light: #f8a35f;
  --line: rgba(22, 18, 13, .11);
  --radius: 24px;
  --radius-sm: 16px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
.container { width: min(1160px, calc(100% - 48px)); margin: 0 auto; }

h1, h2, h3 { font-family: 'Sora', system-ui, sans-serif; font-weight: 600; line-height: 1.08; letter-spacing: -0.035em; text-wrap: balance; }
h1 { font-size: clamp(38px, 5.2vw, 66px); }
h1 em, h2 em { font-style: normal; color: var(--accent); }
h2 { font-size: clamp(28px, 3.4vw, 44px); }
h3 { font-size: 20px; letter-spacing: -0.02em; }

.eyebrow {
  font-size: 12.5px; font-weight: 800; letter-spacing: .2em; text-transform: uppercase;
  color: var(--accent-deep); margin-bottom: 18px;
}
.eyebrow-light { color: var(--accent-light); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 15px 28px; border-radius: 999px;
  font-family: 'Manrope', sans-serif; font-size: 15.5px; font-weight: 700;
  text-decoration: none; cursor: pointer;
  transition: transform .18s ease, background .18s ease, color .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: scale(.98); }
.btn-primary { background: var(--ink); color: #fff; border: 0; }
.btn-primary:hover { background: #000; box-shadow: 0 14px 30px rgba(22, 18, 13, .22); }
.btn-ghost { color: var(--ink); border: 1.5px solid var(--line); background: transparent; }
.btn-ghost:hover { border-color: var(--ink); }
.btn-light { background: #fff; color: var(--ink); }
.btn-light:hover { background: var(--accent-soft); }
.btn svg { width: 17px; height: 17px; fill: currentColor; flex-shrink: 0; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 250, 247, .9); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; gap: 28px; height: 80px; }
.brand { display: flex; align-items: center; margin-right: auto; text-decoration: none; }
.brand svg { height: 40px; width: auto; display: block; }
.nav-links { display: flex; gap: 26px; }
.nav-links a { color: var(--ink-soft); text-decoration: none; font-size: 15px; font-weight: 600; white-space: nowrap; }
.nav-links a:hover { color: var(--ink); }
.nav-links a.active { color: var(--ink); box-shadow: 0 2px 0 var(--accent); }
.btn-tel { background: var(--accent); color: #fff; padding: 12px 22px; font-size: 15px; }
.btn-tel:hover { background: var(--accent-deep); }
.burger { display: none; }

/* ---------- Hero ---------- */
.hero { overflow: hidden; }
.hero-inner {
  display: grid; grid-template-columns: 1.06fr .94fr; align-items: center;
  gap: clamp(40px, 6vw, 84px); padding: clamp(48px, 6vw, 92px) 0 clamp(60px, 7vw, 100px);
}
.hero .lead { margin: 24px 0 0; max-width: 540px; font-size: 18.5px; line-height: 1.7; color: var(--ink-soft); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-facts { list-style: none; display: flex; flex-wrap: wrap; gap: 10px 24px; margin-top: 34px; }
.hero-facts li { position: relative; padding-left: 24px; font-size: 15px; font-weight: 600; color: var(--ink-soft); }
.hero-facts li::before {
  content: ''; position: absolute; left: 0; top: 7px; width: 10px; height: 10px;
  border-radius: 50%; background: var(--accent);
}
.hero-photo { position: relative; }
.hero-photo::before {
  content: ''; position: absolute; inset: 30px -30px -30px 30px;
  background: linear-gradient(135deg, var(--accent-soft), #f6d9bb);
  border-radius: calc(var(--radius) + 8px); z-index: 0;
}
.hero-photo img {
  position: relative; z-index: 1; width: 100%; aspect-ratio: 4 / 4.2; object-fit: cover;
  border-radius: var(--radius);
}
.hero-card {
  position: absolute; z-index: 2; left: -28px; bottom: 34px;
  display: flex; align-items: center; gap: 13px;
  background: #fff; border-radius: 18px; padding: 15px 22px 15px 15px;
  box-shadow: 0 22px 54px rgba(22, 18, 13, .18);
}
.hero-card-icon {
  display: grid; place-items: center; width: 42px; height: 42px; border-radius: 13px;
  background: var(--accent-soft); flex-shrink: 0;
}
.hero-card-icon svg { width: 20px; height: 20px; fill: var(--accent-deep); }
.hero-card b { display: block; font-size: 15px; line-height: 1.3; font-weight: 800; }
.hero-card small { color: var(--ink-soft); font-size: 13.5px; font-weight: 500; }

/* ---------- Sterne / Trust ---------- */
.stars { color: var(--accent); letter-spacing: 2px; }

/* ---------- Page-Hero (Unterseiten) ---------- */
.page-hero { background: var(--paper-deep); padding: clamp(44px, 5.5vw, 76px) 0; }
.page-hero .crumb { margin-bottom: 14px; }
.page-hero p.sub { margin-top: 18px; max-width: 640px; font-size: 18px; color: var(--ink-soft); }
.crumb { font-size: 14px; font-weight: 600; color: var(--ink-soft); }
.crumb a { color: var(--accent-deep); text-decoration: none; }
.crumb a:hover { text-decoration: underline; }

/* ---------- Sections ---------- */
.section { padding: clamp(64px, 8vw, 112px) 0; }
.section-deep { background: var(--paper-deep); }
.section-head { max-width: 680px; margin-bottom: clamp(38px, 4vw, 60px); }
.section-head p.sub { margin-top: 16px; color: var(--ink-soft); }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 88px); align-items: center; }
.split-photo img { width: 100%; aspect-ratio: 4 / 4.4; object-fit: cover; border-radius: var(--radius); }
.split-photo figcaption { margin-top: 12px; font-size: 14px; color: var(--ink-soft); }
.split-photo-wide img { aspect-ratio: 8 / 5; }
.split-copy blockquote p {
  font-size: clamp(18px, 1.9vw, 21.5px); line-height: 1.6; font-weight: 500; color: var(--ink); margin-top: 22px;
}
.split-copy cite { display: block; margin-top: 20px; font-style: normal; font-weight: 800; font-size: 15.5px; }
.split-copy cite::before { content: '– '; color: var(--accent); }
.split-note { margin-top: 24px; color: var(--ink-soft); }

/* ---------- Salon-Karten ---------- */
.salon-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.salon-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .22s ease, box-shadow .22s ease;
}
.salon-card:hover { transform: translateY(-5px); box-shadow: 0 26px 54px rgba(22, 18, 13, .12); }
.salon-card > a.salon-photo { display: block; }
.salon-card img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.salon-body { padding: 28px 30px 30px; display: flex; flex-direction: column; flex: 1; }
.salon-body h3 { font-size: 23px; }
.salon-meta { margin: 6px 0 14px; font-size: 15px; color: var(--ink-soft); font-weight: 600; }
.salon-hours { list-style: none; margin: 0 0 18px; font-size: 15.5px; color: var(--ink-soft); }
.salon-hours li { display: flex; justify-content: space-between; gap: 16px; padding: 7px 0; border-bottom: 1px solid var(--line); }
.salon-hours li span:last-child { text-align: right; font-weight: 600; color: var(--ink); }
.salon-actions { margin-top: auto; display: flex; flex-wrap: wrap; gap: 10px; }
.salon-actions .btn { padding: 12px 20px; font-size: 14.5px; }
.rating-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--accent-soft); color: var(--ink); border-radius: 999px;
  padding: 6px 14px; font-size: 13.5px; font-weight: 700; margin-bottom: 14px; width: fit-content;
}

/* ---------- Leistungen ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; transition: transform .22s ease, box-shadow .22s ease;
}
.feature:hover { transform: translateY(-5px); box-shadow: 0 26px 54px rgba(22, 18, 13, .12); }
.feature img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.feature-body { padding: 24px 26px 28px; }
.feature-body p { margin-top: 9px; color: var(--ink-soft); font-size: 15.5px; }
.service-list { list-style: none; display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 44px; margin-top: 42px; }
.service-list li { display: flex; align-items: center; gap: 13px; font-size: 16px; font-weight: 600; }
.service-list svg {
  width: 24px; height: 24px; flex-shrink: 0; padding: 5px; border-radius: 9px;
  background: var(--accent-soft); stroke: var(--accent-deep); stroke-width: 2.6;
  fill: none; stroke-linecap: round; stroke-linejoin: round;
}

/* ---------- Dunkles Band ---------- */
.band { background: var(--ink); color: var(--paper); padding: clamp(64px, 8vw, 112px) 0; }
.band h2 { color: #fff; }
.band .split-photo img { aspect-ratio: 4 / 4.2; }
.band-list { list-style: none; margin: 30px 0 36px; display: grid; gap: 22px; }
.band-list b { display: block; font-size: 18px; font-weight: 800; margin-bottom: 5px; }
.band-list span { color: #b8ae9f; font-size: 15.5px; }
.band-list li { padding-left: 22px; border-left: 3px solid var(--accent); }
.band p.band-text { color: #b8ae9f; margin-top: 18px; max-width: 560px; }

/* ---------- Preistabelle ---------- */
.price-table { border-collapse: collapse; width: 100%; max-width: 460px; margin-top: 26px; }
.price-table td { padding: 13px 0; border-bottom: 1px solid var(--line); font-size: 16px; }
.price-table td:last-child { text-align: right; font-weight: 700; font-variant-numeric: tabular-nums; }
.band .price-table td { border-color: rgba(251, 250, 247, .16); }
.band .price-table td:last-child { color: var(--accent-light); }
.price-note { margin-top: 18px; font-size: 14.5px; color: var(--ink-soft); max-width: 460px; }
.band .price-note { color: #b8ae9f; }

/* ---------- Galerie ---------- */
.galerie-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.galerie-grid img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-sm); aspect-ratio: 4 / 3; }
.galerie-grid img:nth-child(1) { grid-column: span 3; aspect-ratio: 16 / 10; }
.galerie-grid img:nth-child(2) { grid-column: span 3; aspect-ratio: 16 / 10; }
.galerie-grid img:nth-child(3) { grid-column: span 2; aspect-ratio: 3 / 3.2; }
.galerie-grid img:nth-child(4) { grid-column: span 2; aspect-ratio: 3 / 3.2; }
.galerie-grid img:nth-child(5) { grid-column: span 2; aspect-ratio: 3 / 3.2; }

/* ---------- Team ---------- */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.team-card img { width: 100%; aspect-ratio: 3 / 3.4; object-fit: cover; border-radius: var(--radius-sm); }
.team-card figcaption { padding: 16px 4px 0; }
.team-card b { font-size: 16.5px; font-weight: 800; display: block; }
.team-card span { display: block; color: var(--ink-soft); font-size: 14.5px; margin-top: 2px; }

/* ---------- Foto-Strip ---------- */
.strip { margin: 0; }
.strip img { width: 100%; height: clamp(140px, 22vw, 240px); object-fit: cover; }

/* ---------- Kontakt ---------- */
.kontakt { background: var(--ink); color: var(--paper); padding: clamp(64px, 8vw, 112px) 0; }
.kontakt h2 { color: #fff; }
.kontakt-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 72px); margin-top: clamp(36px, 4vw, 54px); }
.kontakt-col h3 { color: #fff; font-size: 22px; }
.kontakt-col address { font-style: normal; font-size: 17px; line-height: 1.6; margin: 14px 0 18px; color: #d9d2c6; }
.kontakt-links { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; margin: 18px 0 8px; }
.link-light { color: var(--accent-light); text-decoration: none; font-size: 16px; font-weight: 600; }
.link-light:hover { color: #fff; }
.hours { border-collapse: collapse; width: 100%; max-width: 440px; margin-top: 8px; }
.hours td { padding: 11px 0; border-bottom: 1px solid rgba(251, 250, 247, .16); font-size: 15.5px; }
.hours td:last-child { text-align: right; color: #b8ae9f; }
.kontakt-note { margin-top: 26px; color: #b8ae9f; font-size: 15.5px; max-width: 640px; }

/* ---------- Prose (Impressum/Datenschutz) ---------- */
.prose { max-width: 760px; }
.prose h2 { font-size: 22px; margin-top: 34px; }
.prose p { margin-top: 14px; }
.prose a { color: var(--accent-deep); }

/* ---------- Footer ---------- */
.footer { background: var(--ink); border-top: 1px solid rgba(251, 250, 247, .14); padding: 54px 0 30px; color: #b8ae9f; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 40px; }
.footer-grid p { font-size: 15px; margin-top: 16px; max-width: 320px; }
.footer h4 { color: #fff; font-family: 'Sora', sans-serif; font-size: 15px; font-weight: 600; margin-bottom: 14px; }
.footer ul { list-style: none; display: grid; gap: 8px; font-size: 15px; }
.footer a { color: #b8ae9f; text-decoration: none; }
.footer a:hover { color: #fff; }
.footer-logo svg { height: 36px; width: auto; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
  margin-top: 44px; padding-top: 24px; border-top: 1px solid rgba(251, 250, 247, .12); font-size: 14.5px;
}
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { color: var(--accent-light); font-weight: 600; }
.footer-legal a:hover { color: #fff; }

/* ---------- Cookie-Banner ---------- */
.cookie-banner {
  position: fixed; z-index: 90; left: 20px; right: 20px; bottom: 20px;
  max-width: 480px; margin: 0 auto;
  background: #fff; color: var(--ink); border-radius: 18px; padding: 22px 24px;
  box-shadow: 0 26px 60px rgba(22, 18, 13, .3);
  opacity: 0; transform: translateY(16px); pointer-events: none;
  transition: opacity .3s ease, transform .3s ease;
}
.cookie-banner.show { opacity: 1; transform: none; pointer-events: auto; }
.cookie-banner b { font-size: 16px; }
.cookie-banner p { font-size: 14px; color: var(--ink-soft); margin: 8px 0 16px; }
.cookie-banner p a { color: var(--accent-deep); }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-actions .btn { padding: 11px 20px; font-size: 14px; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .btn, .feature, .salon-card { transition: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1060px) {
  .nav-links { gap: 18px; }
  .nav-links a { font-size: 14px; }
}
@media (max-width: 920px) {
  .nav-links {
    display: none; position: absolute; top: 80px; left: 0; right: 0;
    flex-direction: column; gap: 0; background: var(--paper);
    border-bottom: 1px solid var(--line); padding: 10px 24px 18px;
  }
  .nav-links a { padding: 13px 0; font-size: 18px; }
  .nav-links a.active { box-shadow: none; color: var(--accent-deep); }
  .nav-open .nav-links { display: flex; }
  .burger { display: grid; gap: 5px; align-content: center; justify-items: center; min-width: 44px; min-height: 44px; background: none; border: 0; padding: 10px; cursor: pointer; }
  .burger span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; }
  .btn-tel { padding: 11px 18px; }

  .hero-inner { grid-template-columns: 1fr; padding-top: 40px; }
  .hero-photo { max-width: 520px; }
  .hero-photo img { aspect-ratio: 4 / 3.2; }
  .hero-card { left: 10px; }

  .split { grid-template-columns: 1fr; }
  .split-photo img { aspect-ratio: 4 / 3.2; }
  .split-photo-wide img { aspect-ratio: 8 / 5; }
  .split-first-mobile { order: -1; }
  .band .split-photo img { aspect-ratio: 4 / 3.2; }

  .salon-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .service-list { grid-template-columns: 1fr; }
  .galerie-grid { grid-template-columns: 1fr 1fr; }
  .galerie-grid img { grid-column: span 1 !important; aspect-ratio: 4 / 3 !important; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .kontakt-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .container { width: calc(100% - 40px); }
  .brand svg { height: 34px; }
  .btn-tel span { display: none; }
  .btn-tel { padding: 11px 13px; }
  .hero-actions .btn { width: 100%; }
  .team-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-card { left: 8px; bottom: 16px; padding: 12px 16px 12px 12px; }
  .salon-body { padding: 24px 22px 26px; }
}
