/* ============================================================
   PRIMEHAIR — Salon-Editorial Design System
   Creme/Papier · Gold · Ink — Cormorant Garamond + Jost (lokal)
   ============================================================ */

/* ---------- Fonts (lokal gehostet, DSGVO-sicher) ---------- */
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 500 600;
  font-display: swap;
  src: url('assets/fonts/cormorant-garamond-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url('assets/fonts/cormorant-garamond-italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 300 500;
  font-display: swap;
  src: url('assets/fonts/jost-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Questrial';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('assets/fonts/questrial.woff2') format('woff2');
}

/* ---------- Tokens ---------- */
:root {
  --paper:      #FAF7F1;
  --paper-deep: #F1EAE0;
  --ink:        #191512;
  --ink-soft:   #5C5247;
  --gold:       #A8854B;
  --gold-deep:  #84662F;
  --gold-pale:  #E2D3B6;
  --line:       rgba(25, 21, 18, .12);
  --white:      #FFFFFF;

  --font-display: 'Cormorant Garamond', 'Times New Roman', serif;
  --font-body: 'Jost', 'Segoe UI', sans-serif;

  --container: 1200px;
  --radius-arch: 999px 999px 0 0;
  --shadow-soft: 0 18px 50px -18px rgba(25, 21, 18, .22);
  --ease: cubic-bezier(.22, .8, .26, .99);
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
}

/* Feines Papier-Korn über allem */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: .35;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3CfeComponentTransfer%3E%3CfeFuncA type='linear' slope='.05'/%3E%3C/feComponentTransfer%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

::selection { background: var(--gold-pale); color: var(--ink); }

h1, h2, h3 {
  font-family: 'Questrial', var(--font-body);
  font-weight: 400;
  line-height: 1.16;
  letter-spacing: .005em;
}
h1 em, h2 em, h3 em { font-style: normal; color: var(--gold-deep); }

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

/* ---------- Utility: Kicker, Rules, Buttons ---------- */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: .9rem;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.kicker::before {
  content: '';
  width: 2.4rem;
  height: 1px;
  background: var(--gold);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  min-height: 52px;
  padding: .85rem 2.1rem;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .25s var(--ease), background .25s, color .25s, border-color .25s;
}
.btn:active { transform: scale(.97); }

.btn-ink {
  background: var(--ink);
  color: var(--paper);
  border: 1px solid var(--ink);
}
.btn-ink:hover { background: var(--gold-deep); border-color: var(--gold-deep); color: var(--white); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(25, 21, 18, .35);
}
.btn-ghost:hover { border-color: var(--gold-deep); color: var(--gold-deep); }

.btn-paper {
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--paper);
}
.btn-paper:hover { background: var(--gold-pale); border-color: var(--gold-pale); }

.btn-ghost-light {
  background: transparent;
  color: var(--paper);
  border: 1px solid rgba(250, 247, 241, .4);
}
.btn-ghost-light:hover { border-color: var(--gold-pale); color: var(--gold-pale); }

.btn .btn-icon {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 1.6;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

/* ---------- Scroll-Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  transition-delay: var(--d, 0s);
}
.reveal.in-view { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee-track { animation: none !important; }
  .stamp svg { animation: none !important; }
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* ---------- Scroll-Fortschritt (goldene Linie oben) ---------- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  z-index: 120;
  width: 100%;
  height: 3px;
  background: transparent;
  pointer-events: none;
}
.scroll-progress span {
  display: block;
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold), var(--gold-pale));
  transform: scaleX(0);
  transform-origin: left;
}

/* ---------- Parallax-Ebenen ---------- */
[data-parallax] { will-change: transform; }

/* Grid-Kinder dürfen nie breiter als ihre Spur werden (Bild-Blowout) */
.hero-grid > *, .story-grid > *, .services-grid > *, .price-cols > *,
.gallery-grid > *, .team-grid > *, .reviews-grid > *, .insta-grid > *,
.locations-grid > *, .footer-grid > *, .job-grid > * { min-width: 0; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background .3s, box-shadow .3s, border-color .3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(250, 247, 241, .92);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: 84px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
}
.brand img { display: block; }
.brand img.brand-mark { width: 48px; height: 48px; }
.brand img.brand-logo { width: auto; height: 22px; }
.brand-name {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: .42em;
  text-transform: uppercase;
}
.brand-name span { color: var(--gold-deep); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}
.nav-links a {
  position: relative;
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: .5rem 0;
  color: var(--ink);
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--gold-deep);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s var(--ease);
}
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }

.nav-cta { min-height: 44px; padding: .55rem 1.6rem; }

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 48px;
  height: 48px;
  align-items: center;
}
.burger span {
  display: block;
  width: 26px;
  height: 1.5px;
  background: var(--ink);
  transition: transform .3s var(--ease), opacity .2s;
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile-Menü */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: var(--paper);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.4rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s var(--ease), visibility .35s;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 6vw, 2.6rem);
  font-weight: 500;
  color: var(--ink);
}
.mobile-menu a:hover { color: var(--gold-deep); }
.mobile-menu .btn { margin-top: 1rem; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: 130px 0 70px;
  background:
    radial-gradient(900px 520px at 88% 4%, rgba(168, 133, 75, .12), transparent 65%),
    radial-gradient(700px 480px at -5% 95%, rgba(168, 133, 75, .08), transparent 60%),
    var(--paper);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: clamp(2.5rem, 6vw, 5.5rem);
}

.hero h1 {
  font-size: clamp(2.9rem, 6.4vw, 5.1rem);
  margin: 1.4rem 0 1.5rem;
}
.hero h1 em {
  font-style: normal;
  font-weight: 400;
  color: var(--gold-deep);
}
.hero-sub {
  max-width: 33rem;
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--ink-soft);
  margin-bottom: 2.2rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  margin-bottom: 2.4rem;
}
.hero-rating {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  font-size: .92rem;
  color: var(--ink-soft);
}
.stars { display: inline-flex; gap: .18rem; }
.stars svg { width: 17px; height: 17px; fill: var(--gold); }
.hero-rating strong { color: var(--ink); font-weight: 500; }

/* Bild-Collage */
.hero-visual {
  position: relative;
  justify-self: end;
  width: min(100%, 480px);
}
.hero-arch {
  position: relative;
  border-radius: var(--radius-arch);
  overflow: hidden;
  aspect-ratio: 4 / 5.1;
  box-shadow: var(--shadow-soft);
}
.hero-arch::before {
  content: '';
  position: absolute;
  inset: 14px;
  border: none;
  border-radius: var(--radius-arch);
  z-index: 2;
  pointer-events: none;
}
.hero-arch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-small {
  position: absolute;
  left: -19%;
  bottom: -7%;
  width: 46%;
  aspect-ratio: 4 / 5;
  border-radius: 14px;
  overflow: hidden;
  border: 6px solid var(--paper);
  box-shadow: var(--shadow-soft);
}
.hero-small img { width: 100%; height: 100%; object-fit: cover; }

/* Rotierender Stempel */
.stamp {
  position: absolute;
  top: -54px;
  right: -30px;
  width: 124px;
  height: 124px;
  display: grid;
  place-items: center;
}
.stamp svg { width: 100%; height: 100%; animation: spin 26s linear infinite; }
.stamp text {
  font-family: var(--font-body);
  font-size: 9.2px;
  font-weight: 500;
  letter-spacing: 2.6px;
  text-transform: uppercase;
  fill: var(--gold-deep);
}
.stamp::after {
  content: '';
  position: absolute;
  width: 54px;
  height: 54px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  background: url('assets/img/logo-ph.png') center / 32px no-repeat, var(--paper);
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ============================================================
   MARQUEE (schwarzes Band)
   ============================================================ */
.marquee {
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
  padding: 1.05rem 0;
  border-block: 1px solid var(--ink);
}
.marquee-track {
  display: flex;
  width: max-content;
  gap: 3.2rem;
  animation: marquee 36s linear infinite;
}
.marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 3.2rem;
  font-size: .8rem;
  font-weight: 400;
  letter-spacing: .3em;
  text-transform: uppercase;
  white-space: nowrap;
}
.marquee-track i {
  font-style: normal;
  color: var(--gold);
  font-size: .9rem;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================================
   SEKTIONEN — Gemeinsames
   ============================================================ */
.section { padding: clamp(4.5rem, 9vw, 7.5rem) 0; }
.section-deep { background: var(--paper-deep); }
.section-head { max-width: 44rem; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head h2 {
  font-size: clamp(2.1rem, 4.4vw, 3.3rem);
  margin-top: 1.2rem;
}
.section-head h2 em { font-style: normal; font-weight: 400; color: var(--gold-deep); }
.section-head p { margin-top: 1.1rem; color: var(--ink-soft); font-weight: 300; }

/* ============================================================
   STORY
   ============================================================ */
.story-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
}
.story-visual { position: relative; }
.story-arch {
  border-radius: var(--radius-arch);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-soft);
}
.story-arch img { width: 100%; height: 100%; object-fit: cover; }
.story-years {
  position: absolute;
  right: -12px;
  bottom: 26px;
  background: var(--ink);
  color: var(--paper);
  border-radius: 12px;
  padding: 1rem 1.4rem;
  text-align: center;
  box-shadow: var(--shadow-soft);
}
.story-years strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.3rem;
  font-weight: 600;
  line-height: 1;
  color: var(--gold-pale);
}
.story-years small {
  font-size: .68rem;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.story-text h2 { font-size: clamp(2.1rem, 4vw, 3.1rem); margin: 1.2rem 0 1.3rem; }
.story-text h2 em { font-style: normal; font-weight: 400; color: var(--gold-deep); }
.story-text p { color: var(--ink-soft); font-weight: 300; margin-bottom: 1.1rem; }
.story-text p strong { color: var(--ink); font-weight: 500; }

.story-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2.2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.story-stats div strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.1;
}
.story-stats div span {
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* ============================================================
   LEISTUNGEN
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.service-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 2.1rem 1.9rem 1.9rem;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
  border-color: var(--gold-pale);
}
.service-num {
  position: absolute;
  top: 1.5rem;
  right: 1.7rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--gold);
}
.service-card svg {
  width: 34px;
  height: 34px;
  stroke: var(--gold-deep);
  stroke-width: 1.4;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  margin-bottom: 1.2rem;
}
.service-card h3 { font-size: 1.45rem; margin-bottom: .55rem; }
.service-card p { font-size: .95rem; font-weight: 300; color: var(--ink-soft); margin-bottom: 1.2rem; }
.service-price {
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

/* ============================================================
   PREISLISTE (Ink-Sektion)
   ============================================================ */
.prices {
  background: var(--ink);
  color: var(--paper);
}
.prices .kicker { color: var(--gold-pale); }
.prices .kicker::before { background: var(--gold); }
.prices .section-head h2 { color: var(--paper); }
.prices .section-head h2 em { color: var(--gold-pale); }
.prices .section-head p { color: rgba(250, 247, 241, .65); }

.price-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
}
.price-group h3 {
  font-size: 1.5rem;
  color: var(--gold-pale);
  padding-bottom: .8rem;
  margin-bottom: 1.1rem;
  border-bottom: 1px solid rgba(250, 247, 241, .18);
}
.price-row {
  display: flex;
  align-items: baseline;
  gap: .8rem;
  padding: .55rem 0;
}
.price-row .label { font-weight: 300; }
.price-row .label small {
  display: block;
  font-size: .8rem;
  color: rgba(250, 247, 241, .5);
}
.price-row .dots {
  flex: 1;
  border-bottom: 1px dotted rgba(250, 247, 241, .3);
  transform: translateY(-4px);
}
.price-row .amount {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gold-pale);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.price-note {
  margin-top: 2.6rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(250, 247, 241, .15);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
  font-size: .9rem;
  font-weight: 300;
  color: rgba(250, 247, 241, .65);
}

/* ============================================================
   GALERIE
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
}
.gallery-item {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  cursor: pointer;
}
.gallery-item:nth-child(2),
.gallery-item:nth-child(4) { transform: translateY(2.2rem); }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 2.4rem 1.2rem .95rem;
  background: linear-gradient(transparent, rgba(25, 21, 18, .72));
  color: var(--paper);
  font-size: .8rem;
  font-weight: 400;
  letter-spacing: .2em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity .4s;
}
.gallery-item:hover figcaption { opacity: 1; }
@media (hover: none) { .gallery-item figcaption { opacity: 1; } }

/* ============================================================
   TEAM
   ============================================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.team-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 2.4rem 1.8rem;
  text-align: center;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.team-avatar {
  width: 108px;
  height: 108px;
  margin: 0 auto 1.3rem;
  border-radius: 50%;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: var(--paper-deep);
  border: 1px solid var(--gold-pale);
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--gold-deep);
}
.team-avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-card h3 { font-size: 1.45rem; }
.team-role {
  display: block;
  margin-top: .3rem;
  font-size: .74rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.team-card p { margin-top: .9rem; font-size: .94rem; font-weight: 300; color: var(--ink-soft); }
.team-card .btn { margin-top: 1.4rem; }

/* ============================================================
   BEWERTUNGEN
   ============================================================ */
.reviews-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}
.reviews-score {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.reviews-score strong {
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 7vw, 5rem);
  font-weight: 600;
  line-height: 1;
}
.reviews-score .stars svg { width: 21px; height: 21px; }
.reviews-score p { font-size: .9rem; color: var(--ink-soft); margin-top: .4rem; }

/* Durchlaufende Bewertungen (Marquee, pausiert bei Hover) */
.reviews-marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.reviews-track {
  display: flex;
  gap: 1.4rem;
  width: max-content;
  padding: .4rem 0 1rem;
  animation: reviews-scroll 48s linear infinite;
}
.reviews-track:hover { animation-play-state: paused; }
@keyframes reviews-scroll {
  to { transform: translateX(calc(-50% - .7rem)); }
}
@media (prefers-reduced-motion: reduce) {
  .reviews-track { animation: none; flex-wrap: wrap; width: auto; }
  .reviews-track > [aria-hidden="true"] { display: none; }
  .reviews-marquee { -webkit-mask-image: none; mask-image: none; }
}
.review-card {
  width: clamp(280px, 34vw, 400px);
  flex-shrink: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 2rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.review-card .quote-mark {
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: .5;
  color: var(--gold);
}
.review-card blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.18rem;
  line-height: 1.45;
  flex: 1;
}
.review-card footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}
.review-card footer .stars svg { width: 13px; height: 13px; }
.review-source {
  display: block;
  font-size: .68rem;
  letter-spacing: .14em;
  color: var(--gold-deep);
  margin-top: .15rem;
}

/* ============================================================
   INSTAGRAM
   ============================================================ */
.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: .7rem;
}
.insta-tile {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 1;
}
.insta-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease);
}
.insta-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(25, 21, 18, .45);
  opacity: 0;
  transition: opacity .35s;
}
.insta-tile svg {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 26px;
  height: 26px;
  stroke: var(--paper);
  stroke-width: 1.6;
  fill: none;
  z-index: 2;
  opacity: 0;
  transform: scale(.8);
  transition: opacity .35s, transform .35s var(--ease);
}
.insta-tile:hover::after { opacity: 1; }
.insta-tile:hover svg { opacity: 1; transform: scale(1); }
.insta-tile:hover img { transform: scale(1.07); }
.insta-cta { text-align: center; margin-top: 2.4rem; }

/* ============================================================
   STANDORTE
   ============================================================ */
.locations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
}
.location-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.location-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.location-img {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  position: relative;
}
.location-img img { width: 100%; height: 100%; object-fit: cover; }
.location-img img.img-watermark {
  position: absolute;
  right: 12px;
  bottom: 9px;
  width: 58px;
  height: auto;
  opacity: .9;
  pointer-events: none;
}
.location-body {
  padding: 1.9rem 1.9rem 2.1rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  flex: 1;
}
.location-body h3 { font-size: 1.7rem; }
.location-body h3 span { color: var(--gold-deep); }
.location-meta {
  display: flex;
  flex-direction: column;
  gap: .45rem;
  font-size: .95rem;
  font-weight: 300;
  color: var(--ink-soft);
}
.location-meta a { color: var(--ink); font-weight: 400; }
.location-meta a:hover { color: var(--gold-deep); }
.location-meta svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold-deep);
  stroke-width: 1.6;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  transform: translateY(2px);
}
.location-meta li { display: flex; gap: .6rem; }

.hours {
  width: 100%;
  font-size: .9rem;
  font-weight: 300;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}
.hours div {
  display: flex;
  justify-content: space-between;
  padding: .22rem 0;
}
.hours div span:last-child { font-weight: 400; font-variant-numeric: tabular-nums; }
.hours .closed span:last-child { color: var(--gold-deep); }

.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  margin-top: auto;
}
.location-actions .btn { flex: 1 1 calc(50% - .35rem); min-height: 48px; padding: .6rem 1rem; font-size: .74rem; }

/* ============================================================
   CTA-BAND (Haar-Textur)
   ============================================================ */
.cta-band {
  position: relative;
  padding: clamp(5rem, 11vw, 8.5rem) 0;
  background: var(--ink);
  color: var(--paper);
  text-align: center;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: -25% 0;
  z-index: 0;
}
.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(20, 16, 12, .68);
}
.cta-band .container { position: relative; z-index: 1; }
.cta-band h2 {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  max-width: 18ch;
  margin: 0 auto 1.2rem;
}
.cta-band h2 em { font-style: normal; font-weight: 400; color: var(--gold-pale); }
.cta-band p {
  font-weight: 300;
  color: rgba(250, 247, 241, .75);
  max-width: 36rem;
  margin: 0 auto 2.4rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--ink);
  color: rgba(250, 247, 241, .72);
  padding: 4.5rem 0 2rem;
  font-weight: 300;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(250, 247, 241, .14);
}
.footer .brand img { filter: none; opacity: 1; }
.footer .brand img.brand-mark { width: 42px; height: 42px; }
.footer .brand img.brand-logo { width: auto; height: 19px; }
.footer .brand-name { color: var(--paper); }
.footer-claim { margin-top: 1.2rem; font-size: .95rem; max-width: 26rem; }
.footer h4 {
  font-family: var(--font-body);
  font-size: .76rem;
  font-weight: 500;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold-pale);
  margin-bottom: 1.1rem;
}
.footer ul li { margin-bottom: .55rem; font-size: .95rem; }
.footer a:hover { color: var(--paper); }
.footer-social {
  display: flex;
  gap: .8rem;
  margin-top: 1.4rem;
}
.footer-social a {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(250, 247, 241, .25);
  border-radius: 50%;
  transition: border-color .3s, background .3s;
}
.footer-social a:hover { border-color: var(--gold); background: rgba(168, 133, 75, .15); }
.footer-social svg { width: 18px; height: 18px; stroke: var(--paper); stroke-width: 1.6; fill: none; }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.8rem;
  font-size: .82rem;
  color: rgba(250, 247, 241, .45);
}
.footer-bottom nav { display: flex; gap: 1.4rem; }

/* ============================================================
   BUCHUNGS-MODAL
   ============================================================ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 1.2rem;
  background: rgba(25, 21, 18, .55);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s var(--ease), visibility .3s;
}
.modal.open { opacity: 1; visibility: visible; }
.modal-card {
  position: relative;
  width: min(100%, 560px);
  background: var(--paper);
  border-radius: 20px;
  padding: 2.6rem 2.2rem 2.2rem;
  transform: translateY(18px) scale(.98);
  transition: transform .35s var(--ease);
  max-height: 90dvh;
  overflow-y: auto;
}
.modal.open .modal-card { transform: none; }
.modal-card h3 {
  font-size: 1.9rem;
  text-align: center;
  margin-bottom: .4rem;
}
.modal-card > p {
  text-align: center;
  font-size: .95rem;
  font-weight: 300;
  color: var(--ink-soft);
  margin-bottom: 1.8rem;
}
.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  transition: background .25s;
}
.modal-close:hover { background: var(--paper-deep); }
.modal-close svg { width: 20px; height: 20px; stroke: var(--ink); stroke-width: 1.8; }
.modal-locations { display: grid; gap: .9rem; }
.modal-loc {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.4rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  transition: border-color .25s, transform .25s var(--ease), box-shadow .25s;
}
.modal-loc:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}
.modal-loc strong {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  display: block;
}
.modal-loc small {
  font-size: .85rem;
  font-weight: 300;
  color: var(--ink-soft);
}
.modal-loc svg {
  width: 22px;
  height: 22px;
  stroke: var(--gold-deep);
  stroke-width: 1.6;
  fill: none;
  flex-shrink: 0;
}
.modal-note {
  margin-top: 1.4rem;
  text-align: center;
  font-size: .8rem;
  font-weight: 300;
  color: var(--ink-soft);
}
.modal-calls {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .7rem;
  margin-top: 1rem;
}
.modal-calls .btn { min-height: 48px; padding: .6rem 1rem; font-size: .72rem; }

/* Telefon-Zeile im CTA-Band */
.cta-calls {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .8rem;
  margin-top: 1.1rem;
}

/* Telefon-Buttons im Mobile-Menü */
.mobile-calls {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .7rem;
  margin-top: .4rem;
}
.mobile-calls .btn { min-height: 48px; padding: .6rem 1.3rem; font-size: .72rem; }

/* ============================================================
   UNTERSEITEN (Karriere, Impressum, Datenschutz)
   ============================================================ */
.subpage-hero {
  padding: 170px 0 70px;
  background:
    radial-gradient(700px 420px at 90% 0%, rgba(168, 133, 75, .12), transparent 65%),
    var(--paper);
}
.subpage-hero h1 { font-size: clamp(2.6rem, 5.5vw, 4rem); margin-top: 1.3rem; }
.subpage-hero h1 em { font-style: normal; font-weight: 400; color: var(--gold-deep); }
.subpage-hero p {
  max-width: 38rem;
  margin-top: 1.2rem;
  font-weight: 300;
  color: var(--ink-soft);
}

.prose { max-width: 46rem; }
.prose h2 {
  font-size: 1.7rem;
  margin: 2.4rem 0 .8rem;
}
.prose h3 { font-size: 1.25rem; margin: 1.6rem 0 .5rem; }
.prose p, .prose li { font-weight: 300; color: var(--ink-soft); margin-bottom: .8rem; }
.prose ul { list-style: disc; padding-left: 1.3rem; }
.prose a { color: var(--gold-deep); text-decoration: underline; text-underline-offset: 3px; }
.prose strong { color: var(--ink); font-weight: 500; }

/* Job-Cards */
.job-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
  margin-top: 1rem;
}
.job-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 2.2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.job-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-soft); }
.job-card h3 { font-size: 1.6rem; }
.job-tag {
  align-self: flex-start;
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-deep);
  border: 1px solid var(--gold-pale);
  border-radius: 999px;
  padding: .3rem .9rem;
}
.job-card ul { display: flex; flex-direction: column; gap: .45rem; }
.job-card ul li {
  display: flex;
  gap: .6rem;
  font-size: .95rem;
  font-weight: 300;
  color: var(--ink-soft);
}
.job-card ul li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: .55rem;
}
.job-card .btn { margin-top: auto; align-self: flex-start; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 920px) {
  .nav-links { display: none; }
  .nav .nav-cta { display: none; }
  .burger { display: flex; }

  .hero { padding-top: 110px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { justify-self: center; width: min(100%, 400px); margin-top: 1rem; }
  .hero-small { left: -6%; }
  .stamp { top: -42px; right: -10px; width: 100px; height: 100px; }

  .story-grid { grid-template-columns: 1fr; }
  .story-visual { max-width: 420px; margin-inline: auto; }
  .story-years { right: 8px; }
  .story-stats { grid-template-columns: repeat(2, 1fr); gap: 1.4rem; }

  .price-cols { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .review-card { width: min(78vw, 340px); }
  .locations-grid { grid-template-columns: 1fr; }
  .job-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  body { font-size: 1rem; }
  .brand-name { font-size: .9rem; letter-spacing: .3em; }
  .hero-actions .btn { width: 100%; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: .8rem; }
  .gallery-item:nth-child(2), .gallery-item:nth-child(4) { transform: translateY(1.2rem); }
  .insta-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .location-actions { flex-direction: column; }
  .modal-card { padding: 2.2rem 1.4rem 1.6rem; }
  .modal-calls { grid-template-columns: 1fr; }
}

/* ================= ALI CHAT-WIDGET ================= */
.ali-chat { position: fixed; right: 22px; bottom: 22px; z-index: 140; font-family: var(--font-body); }
.ali-fab {
  position: relative; width: 94px; height: auto; border: 0; background: transparent;
  cursor: pointer; padding: 0; filter: drop-shadow(0 10px 18px rgba(0,0,0,.34));
  transition: transform .25s var(--ease);
}
.ali-fab img { width: 100%; height: auto; display: block; }
.ali-fab:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 14px 36px rgba(0,0,0,.36); }
.ali-fab__badge {
  position: absolute; top: -8px; left: -10px; background: var(--gold); color: #fff;
  font-size: .68rem; font-weight: 600; letter-spacing: .02em; padding: 3px 8px; border-radius: 999px;
  box-shadow: 0 2px 8px rgba(0,0,0,.25); white-space: nowrap;
}
.ali-fab.is-active .ali-fab__badge { opacity: 0; }

.ali-panel {
  position: absolute; right: 0; bottom: calc(100% + 14px); width: min(340px, calc(100vw - 36px));
  background: var(--paper); border: 1px solid var(--line); border-radius: 18px;
  box-shadow: 0 24px 60px rgba(0,0,0,.30); overflow: hidden;
  transform: translateY(14px) scale(.96); transform-origin: bottom right; opacity: 0;
  pointer-events: none; transition: opacity .22s var(--ease), transform .22s var(--ease);
}
.ali-panel.is-open { opacity: 1; transform: none; pointer-events: auto; }
.ali-head { display: flex; align-items: center; gap: 10px; padding: 13px 14px; background: var(--ink); color: var(--paper); }
.ali-head__ava { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; object-position: 50% 28%; border: 1.5px solid var(--gold); }
.ali-head__txt { line-height: 1.25; display: flex; flex-direction: column; }
.ali-head__txt strong { font-size: 1rem; }
.ali-head__txt span { font-size: .72rem; color: var(--gold-pale); display: flex; align-items: center; gap: 5px; }
.ali-dot { width: 7px; height: 7px; border-radius: 50%; background: #3fb56a; display: inline-block; box-shadow: 0 0 0 3px rgba(63,181,106,.22); }
.ali-x { margin-left: auto; width: 30px; height: 30px; border: 0; background: transparent; color: var(--paper); cursor: pointer; opacity: .85; }
.ali-x svg { width: 20px; height: 20px; }
.ali-x:hover { opacity: 1; }
.ali-body { padding: 16px; }
.ali-bubble { display: flex; gap: 9px; align-items: flex-start; margin-bottom: 14px; }
.ali-bubble img { width: 34px; height: 34px; border-radius: 50%; object-fit: cover; object-position: 50% 28%; flex-shrink: 0; border: 1px solid var(--gold-pale); }
.ali-bubble p { background: var(--white); border: 1px solid var(--line); border-radius: 4px 14px 14px 14px; padding: 10px 12px; font-size: .9rem; line-height: 1.45; color: var(--ink); }
.ali-quick { display: flex; flex-direction: column; gap: 8px; }
.ali-quick button, .ali-quick a {
  display: block; text-align: left; text-decoration: none; cursor: pointer; width: 100%;
  font-family: var(--font-body); font-size: .88rem; font-weight: 500; color: var(--ink);
  background: var(--white); border: 1px solid var(--gold-pale); border-radius: 10px; padding: 10px 12px;
  transition: background .2s var(--ease), border-color .2s var(--ease), transform .15s var(--ease);
}
.ali-quick button:hover, .ali-quick a:hover { background: var(--gold-pale); border-color: var(--gold); transform: translateX(3px); }
.ali-foot { margin-top: 12px; font-size: .76rem; color: var(--ink-soft); text-align: center; }
@media (max-width: 560px) {
  .ali-chat { right: 14px; bottom: 14px; }
  .ali-panel { bottom: calc(100% + 12px); }
  .ali-fab { width: 72px; height: auto; }
}
