/* ==========================================================================
   Hair-Forst – Friseursalon Herforst
   Farbwelt: Zementgrau / Creme, Moosgrün, Schwarz, Gold-Akzent
   ========================================================================== */

/* --- Schriften ----------------------------------------------------------
   Lokal ausgeliefert, damit beim Seitenaufruf keine Anfrage an Google geht.
   Es sind variable Schriften: eine Datei deckt den ganzen Gewichtsbereich
   ab. Zeichensatz Latin – enthält Umlaute, ß, €, „“ und Gedankenstrich. */
@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 300 400;
  font-display: swap;
  src: url("../fonts/cormorant-garamond-latin.woff2") format("woff2");
}
@font-face {
  font-family: "Cormorant Garamond";
  font-style: italic;
  font-weight: 300 400;
  font-display: swap;
  src: url("../fonts/cormorant-garamond-italic-latin.woff2") format("woff2");
}
@font-face {
  font-family: "Jost";
  font-style: normal;
  font-weight: 200 400;
  font-display: swap;
  src: url("../fonts/jost-latin.woff2") format("woff2");
}

/* --- Design Tokens ------------------------------------------------------ */
:root {
  /* Farben */
  --ink:          #14161a;
  --ink-soft:     #22252a;
  --ink-line:     #33373d;

  --cement:       #9a9a94;
  --cement-dark:  #6e6f6a;
  --cement-light: #c9c7c1;

  --cream:        #f4f1ec;
  --cream-2:      #eae5dd;

  --green:        #4f6f52;
  --green-deep:   #2e4034;
  --green-light:  #8fa88f;

  --gold:         #c7a26b;
  --gold-soft:    #e0cba4;

  /* Typografie */
  --font-display: "Cormorant Garamond", "Georgia", serif;
  --font-body:    "Jost", "Segoe UI", system-ui, sans-serif;

  /* Maße */
  --wrap:      1200px;
  --wrap-slim: 820px;
  --nav-h:     78px;
  --radius:    2px;

  /* Effekte */
  --shadow-sm: 0 2px 12px rgba(20, 22, 26, .06);
  --shadow-md: 0 12px 40px rgba(20, 22, 26, .10);
  --shadow-lg: 0 24px 70px rgba(20, 22, 26, .18);
  --ease:      cubic-bezier(.22, .61, .36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
}

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

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

/* --- Typografie --------------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.12;
  letter-spacing: -.01em;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  /* Die Klasse sitzt teils auf einer Überschrift, deshalb explizit */
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 400;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 1.25rem;
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
  opacity: .55;
}
.eyebrow--center { justify-content: center; }
.eyebrow--light { color: var(--gold-soft); }

.section-title {
  font-size: clamp(2.1rem, 4.6vw, 3.5rem);
}
.section-title em {
  font-style: italic;
  color: var(--green);
}
.section-lead {
  max-width: 58ch;
  margin-top: 1.25rem;
  color: var(--cement-dark);
  font-size: 1.05rem;
}

/* --- Layout ------------------------------------------------------------- */
.wrap {
  width: min(100% - 2.5rem, var(--wrap));
  margin-inline: auto;
}
.section { padding: clamp(4.5rem, 10vw, 8.5rem) 0; }
.section--tight { padding: clamp(3.5rem, 7vw, 6rem) 0; }
.section--cream { background: var(--cream); }
.section--stone { background: var(--cream-2); }
.section--dark  { background: var(--ink); color: var(--cream); }
.section--dark .section-lead { color: var(--cement); }
.section--dark .section-title em { color: var(--gold-soft); }

.section-head { max-width: 62ch; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head--center { margin-inline: auto; text-align: center; }

/* --- Buttons ------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: 1rem 2.1rem;
  border-radius: var(--radius);
  font-size: .8rem;
  font-weight: 400;
  letter-spacing: .18em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background .3s var(--ease), color .3s var(--ease),
              border-color .3s var(--ease), transform .3s var(--ease);
}
.btn:hover { transform: translateY(-2px); }

.btn--primary {
  background: var(--green);
  color: #fff;
  border: 1px solid var(--green);
}
.btn--primary:hover { background: var(--green-deep); border-color: var(--green-deep); }

.btn--ghost {
  border: 1px solid rgba(255, 255, 255, .45);
  color: #fff;
  backdrop-filter: blur(4px);
}
.btn--ghost:hover { background: rgba(255, 255, 255, .12); border-color: #fff; }

.btn--outline {
  border: 1px solid var(--ink);
  color: var(--ink);
}
.btn--outline:hover { background: var(--ink); color: var(--cream); }

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

/* ==========================================================================
   Navigation
   ========================================================================== */
.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 999;
  background: var(--green);
  color: #fff;
  padding: .75rem 1.25rem;
  transition: top .2s;
}
.skip-link:focus { top: 1rem; }

.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background .4s var(--ease), box-shadow .4s var(--ease),
              height .4s var(--ease);
}
.nav__inner {
  width: min(100% - 2.5rem, var(--wrap));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav__logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: .02em;
  color: #fff;
  transition: color .4s var(--ease);
}
.nav__logo span { color: var(--gold); font-style: italic; }

.nav__menu {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}
.nav__link {
  position: relative;
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .82);
  padding: .35rem 0;
  transition: color .3s var(--ease);
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width .35s var(--ease);
}
.nav__link:hover::after,
.nav__link.is-active::after { width: 100%; }
.nav__link:hover { color: #fff; }

.nav__actions { display: flex; align-items: center; gap: 1.2rem; }
.nav__phone {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .82rem;
  letter-spacing: .06em;
  color: rgba(255, 255, 255, .82);
  transition: color .3s var(--ease);
}
.nav__phone:hover { color: var(--gold); }
.nav__cta { padding: .8rem 1.6rem; }

/* Scrolled state */
.nav.is-scrolled {
  background: rgba(244, 241, 236, .94);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  height: 66px;
}
.nav.is-scrolled .nav__logo { color: var(--ink); }
.nav.is-scrolled .nav__link,
.nav.is-scrolled .nav__phone { color: var(--cement-dark); }
.nav.is-scrolled .nav__link:hover,
.nav.is-scrolled .nav__link.is-active { color: var(--ink); }
.nav.is-scrolled .nav__burger span { background: var(--ink); }

/* Burger */
.nav__burger {
  display: none;
  width: 30px;
  height: 22px;
  position: relative;
  z-index: 120;
}
.nav__burger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: #fff;
  transition: transform .35s var(--ease), opacity .25s var(--ease),
              background .3s var(--ease);
}
.nav__burger span:nth-child(1) { top: 2px; }
.nav__burger span:nth-child(2) { top: 10px; }
.nav__burger span:nth-child(3) { top: 18px; }
.nav.is-open .nav__burger span { background: var(--cream); }
.nav.is-open .nav__burger span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav.is-open .nav__burger span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__burger span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: calc(var(--nav-h) + 3rem) 0 4rem;
  overflow: hidden;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroZoom 18s var(--ease) forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.08); }
  to   { transform: scale(1); }
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(20,22,26,.72) 0%, rgba(20,22,26,.42) 42%, rgba(20,22,26,.86) 100%),
    radial-gradient(ellipse at 70% 40%, rgba(79,111,82,.28), transparent 60%);
}

.hero__inner { max-width: 760px; }
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  font-size: .68rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold-soft);
  border: 1px solid rgba(199, 162, 107, .45);
  padding: .55rem 1.2rem;
  border-radius: 40px;
  margin-bottom: 2rem;
}
.hero h1 {
  font-size: clamp(3rem, 9vw, 6.5rem);
  color: #fff;
  letter-spacing: -.02em;
}
.hero h1 em {
  display: block;
  font-style: italic;
  color: var(--gold-soft);
}
.hero__text {
  margin: 1.75rem auto 2.75rem;
  max-width: 52ch;
  color: rgba(255, 255, 255, .82);
  font-size: 1.1rem;
}
.hero__btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
/* --- Marquee ------------------------------------------------------------ */
.marquee {
  background: var(--green-deep);
  color: var(--gold-soft);
  padding: 1.1rem 0;
  overflow: hidden;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}
.marquee__track {
  display: inline-flex;
  gap: 3.5rem;
  animation: marquee 34s linear infinite;
}
.marquee span {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  letter-spacing: .08em;
  display: inline-flex;
  align-items: center;
  gap: 3.5rem;
}
.marquee span::after { content: "✦"; font-size: .7rem; opacity: .6; font-style: normal; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
/* Kein Hover-Stopp: auf Touch-Geraeten bleibt der Zustand nach einem
   Tippen haengen und das Band steht still. Es ist reine Dekoration,
   deshalb nimmt es gar keine Zeigereingaben an. */

/* ==========================================================================
   Über uns
   ========================================================================== */
/* Ohne Begleittext steht das Foto allein und mittig */
.about--solo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.25rem;
}
.about--solo .about__media { width: min(100%, 440px); }

.about__media { position: relative; }
.about__media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}
.about__stamp {
  position: absolute;
  right: -1.5rem;
  bottom: -1.5rem;
  width: 152px;
  height: 152px;
  display: grid;
  place-content: center;
  text-align: center;
  gap: .2rem;
  background: var(--green);
  color: #fff;
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}
.about__stamp strong {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1;
}
.about__stamp span {
  font-size: .62rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  opacity: .85;
}

/* ==========================================================================
   Leistungen
   ========================================================================== */
.services {
  display: grid;
  /* Sechs Leistungen, deshalb feste Dreierreihen statt auto-fit –
     das ergibt zwei volle Zeilen ohne angebrochene dritte. */
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.service {
  position: relative;
  padding: 1.9rem 1.6rem;
  background: var(--cream);
  border: 1px solid rgba(20, 22, 26, .08);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease),
              border-color .4s var(--ease);
}
.service::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s var(--ease);
}
.service:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.service:hover::before { transform: scaleX(1); }

.service__icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(79, 111, 82, .1);
  color: var(--green);
  margin-bottom: 1.1rem;
}
.service__icon svg { width: 20px; height: 20px; }
.service h3 { font-size: 1.35rem; margin-bottom: .5rem; }
.service p { color: var(--cement-dark); font-size: .9rem; }
.service__tags {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
  margin-top: 1.1rem;
}
.service__tags li {
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cement-dark);
  border: 1px solid rgba(20, 22, 26, .12);
  border-radius: 40px;
  padding: .3rem .8rem;
}

/* ==========================================================================
   Preise
   ========================================================================== */
.price-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .5rem;
  margin-bottom: 3rem;
}
.price-tab {
  padding: .7rem 1.6rem;
  border: 1px solid rgba(244, 241, 236, .22);
  border-radius: 40px;
  font-size: .74rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--cement);
  transition: all .3s var(--ease);
}
.price-tab:hover { color: var(--cream); border-color: rgba(244, 241, 236, .5); }
.price-tab.is-active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}

.price-panel { display: none; }
.price-panel.is-active {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 0 4rem;
  animation: fadeUp .5s var(--ease) both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}

.price-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: .5rem 1rem;
  align-items: baseline;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--ink-line);
}
.price-row__name { font-size: 1.02rem; color: var(--cream); }
.price-row__desc {
  grid-column: 1 / -1;
  font-size: .84rem;
  color: var(--cement);
  margin-top: -.35rem;
}
.price-row__value {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--gold-soft);
  white-space: nowrap;
}
.price-note {
  margin-top: 2.5rem;
  font-size: .84rem;
  color: var(--cement);
  text-align: center;
}

/* ==========================================================================
   Galerie
   ========================================================================== */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 1rem;
}
.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--cement-light);
}
.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::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(46, 64, 52, .55), transparent 55%);
  opacity: 0;
  transition: opacity .4s var(--ease);
}
.gallery__item:hover::after { opacity: 1; }

/* Feste Kachelung für genau 6 Bilder – lückenlos in 4 Spalten */
.gallery__item:nth-child(1) { grid-area: 1 / 1 / 3 / 2; }
.gallery__item:nth-child(2) { grid-area: 1 / 2 / 2 / 4; }
.gallery__item:nth-child(3) { grid-area: 1 / 4 / 3 / 5; }
.gallery__item:nth-child(4) { grid-area: 2 / 2 / 3 / 3; }
.gallery__item:nth-child(5) { grid-area: 2 / 3 / 3 / 4; }
.gallery__item:nth-child(6) { grid-area: 3 / 1 / 4 / 5; }

/* ==========================================================================
   Team
   ========================================================================== */
.team {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}
.member__photo {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  margin-bottom: 1.25rem;
}
.member__photo img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  filter: grayscale(1) contrast(1.02);
  transition: filter .6s var(--ease), transform .6s var(--ease);
}
.member:hover .member__photo img { filter: none; transform: scale(1.04); }
.member h3 { font-size: 1.5rem; }
.member__role {
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--green);
  margin-top: .3rem;
}
.member p:last-child {
  margin-top: .7rem;
  font-size: .92rem;
  color: var(--cement-dark);
}

/* ==========================================================================
   Bewertungen
   ========================================================================== */
/* Endlos durchlaufendes Band. Die Karten werden per JS einmal geklont,
   der Lauf endet bei -50 % und beginnt dadurch nahtlos von vorn. Damit
   das aufgeht, traegt jede Karte ihren Abstand selbst (margin statt gap) –
   sonst fehlt am Ende genau eine Luecke und der Umbruch ruckt. */
.review-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);
}
.review-track {
  display: flex;
  width: max-content;
  animation: reviewScroll 48s linear infinite;
}
.review-track .review {
  flex: none;
  width: clamp(255px, 74vw, 375px);
  margin-right: 1.5rem;
}
.review-track .review blockquote { font-size: 1.15rem; }

/* Bewusst kein Hover-Stopp – siehe .marquee oben: auf Touch-Geraeten
   bliebe der Zustand nach einem Tippen haengen. */

@keyframes reviewScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Ohne Animation stehen die Karten ruhig nebeneinander */
.review-marquee.is-static {
  overflow: visible;
  -webkit-mask-image: none;
          mask-image: none;
}
.review-marquee.is-static .review-track {
  width: auto;
  flex-wrap: wrap;
  justify-content: center;
  animation: none;
}
.review-marquee.is-static .review { margin: 0 .75rem 1.5rem; }

.review {
  padding: 1.9rem 1.9rem;
  /* Deckend, sonst scheinen im Stapel die hinteren Karten durch */
  background: var(--ink-soft);
  border: 1px solid var(--ink-line);
  border-radius: var(--radius);
}
.review__stars { color: var(--gold); letter-spacing: .25em; font-size: .9rem; }
.review blockquote {
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--cream);
  margin: 1.1rem 0 1.6rem;
}
/* Solange keine Namen hinterlegt sind, entfaellt der Abstand darunter */
.review blockquote:last-child { margin-bottom: 0; }
.review figcaption {
  font-size: .74rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--cement);
}

/* ==========================================================================
   Kontakt
   ========================================================================== */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
}
.hours { border-top: 1px solid rgba(20, 22, 26, .12); }
.hours li {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .85rem 0;
  border-bottom: 1px solid rgba(20, 22, 26, .12);
  font-size: .97rem;
}
.hours li > span:last-child { margin-left: auto; }
.hours li.is-closed { color: var(--cement); }
.hours li.is-today {
  color: var(--green);
  font-weight: 400;
}
.hours li.is-today::after {
  content: "heute";
  font-size: .62rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  background: var(--green);
  color: #fff;
  padding: .15rem .55rem;
  border-radius: 40px;
  align-self: center;
}
.hours span:last-child { font-variant-numeric: tabular-nums; }

.contact__info { display: grid; gap: 1.5rem; margin-bottom: 2.25rem; }
.contact__item { display: flex; gap: 1rem; align-items: flex-start; }
.contact__item svg {
  flex: none;
  width: 20px;
  height: 20px;
  color: var(--green);
  margin-top: .25rem;
}
.contact__item strong {
  display: block;
  font-size: .7rem;
  font-weight: 400;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--cement-dark);
  margin-bottom: .2rem;
}
.contact__item a:hover { color: var(--green); }

/* Karte: zeigt bis zum Klick nur einen Hinweis, danach das Google-iframe */
.map {
  position: relative;
  width: 100%;
  height: 340px;
  margin-top: 2rem;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--cream-2);
  border: 1px solid rgba(20, 22, 26, .1);
  display: grid;
  place-items: center;
}
.map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(1) contrast(.95);
}

.map__notice {
  max-width: 38ch;
  padding: 2rem 1.5rem;
  text-align: center;
}
.map__notice svg {
  width: 26px;
  height: 26px;
  margin: 0 auto .9rem;
  color: var(--green);
}
.map__notice strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  margin-bottom: .45rem;
}
.map__notice p {
  font-size: .86rem;
  color: var(--cement-dark);
  margin-bottom: 1.35rem;
}
.map__notice a { color: var(--green); text-decoration: underline; }
.map__notice .btn { padding: .75rem 1.6rem; font-size: .72rem; }

.map__link {
  margin-top: .9rem;
  font-size: .86rem;
}
.map__link a {
  color: var(--cement-dark);
  border-bottom: 1px solid rgba(20, 22, 26, .2);
  transition: color .3s var(--ease), border-color .3s var(--ease);
}
.map__link a:hover { color: var(--green); border-color: var(--green); }

/* --- CTA Band ----------------------------------------------------------- */
.cta {
  position: relative;
  padding: clamp(4rem, 9vw, 7rem) 0;
  background: var(--green-deep);
  color: var(--cream);
  text-align: center;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(199, 162, 107, .18), transparent 65%);
}
.cta > * { position: relative; }
.cta h2 { font-size: clamp(2rem, 5vw, 3.4rem); }
.cta p {
  max-width: 46ch;
  margin: 1.25rem auto 2.25rem;
  color: rgba(244, 241, 236, .78);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background: var(--ink);
  color: var(--cement);
  padding: clamp(3.5rem, 7vw, 5.5rem) 0 2rem;
  font-size: .92rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--ink-line);
}
.footer__logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--cream);
  margin-bottom: 1rem;
}
.footer__logo span { color: var(--gold); font-style: italic; }
.footer h4 {
  font-family: var(--font-body);
  font-size: .7rem;
  font-weight: 400;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 1.2rem;
}
.footer li + li { margin-top: .6rem; }
.footer a:hover { color: var(--gold-soft); }

.socials { display: flex; gap: .7rem; margin-top: 1.5rem; }
.socials a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--ink-line);
  border-radius: 50%;
  transition: all .3s var(--ease);
}
.socials a:hover {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}
.socials svg { width: 17px; height: 17px; }

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 2rem;
  font-size: .8rem;
  color: var(--cement-dark);
}
.footer__bottom nav { display: flex; gap: 1.5rem; }

/* ==========================================================================
   Botanische Ornamente
   Ranken an den Seitenrändern und eine Zierleiste unter den Überschriften.
   Beides liegt hinter dem Inhalt und bleibt bewusst blass.
   ========================================================================== */
.section,
.cta {
  position: relative;
  overflow: hidden;
}
.section > .wrap,
.cta > .wrap {
  position: relative;
  z-index: 1;
}

/* Ranken links und rechts – die Kachel wiederholt sich nahtlos */
.section::before,
.section::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  background-repeat: repeat-y;
  background-size: 120px 600px;
  pointer-events: none;
  opacity: .085;
  animation: vineDrift 120s linear infinite;
}
.section::before { left: -14px; }
.section::after  { right: -14px; transform: scaleX(-1); animation-delay: -46s; }

.section--cream::before, .section--cream::after,
.section--stone::before, .section--stone::after {
  background-image: url("../img/orn-edge-green.svg");
}
.section--dark::before, .section--dark::after {
  background-image: url("../img/orn-edge-cream.svg");
  opacity: .06;
}

/* Animiert wird nur background-position, nicht transform – so bleibt die
   Spiegelung der rechten Ranke erhalten. */
@keyframes vineDrift {
  from { background-position: 0 0; }
  to   { background-position: 0 600px; }
}

/* Ein einzelner Zweig schwingt durch die CTA-Ecke */
.cta::before {
  content: "";
  position: absolute;
  top: -70px;
  left: -90px;
  width: 420px;
  height: 420px;
  background: url("../img/orn-corner-cream.svg") no-repeat center / contain;
  opacity: .08;
  pointer-events: none;
  animation: sway 22s ease-in-out infinite alternate;
}
@keyframes sway {
  from { transform: rotate(-1.4deg) translateY(-8px); }
  to   { transform: rotate(1.4deg)  translateY(8px); }
}

/* Zierleiste unter zentrierten Überschriften, wächst beim Einblenden auf */
.section-head--center::after {
  content: "";
  display: block;
  width: 240px;
  height: 26px;
  margin: 1.7rem auto 0;
  background: url("../img/orn-flourish-green.svg") no-repeat center / contain;
  opacity: 0;
  transform: scaleX(.55);
  transition: opacity 1s .3s var(--ease), transform 1.2s .3s var(--ease);
}
.section-head--center.is-visible::after {
  opacity: .9;
  transform: none;
}
.section--dark .section-head--center::after {
  background-image: url("../img/orn-flourish-gold.svg");
}

@media (max-width: 900px) {
  /* Auf schmalen Schirmen würden die Ranken den Text bedrängen */
  .section::before,
  .section::after { display: none; }
  .cta::before { opacity: .05; }
  .section-head--center::after { width: 150px; }
}

/* ==========================================================================
   Scroll-Reveal
   ========================================================================== */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
[data-reveal].is-visible { opacity: 1; transform: none; }

/* ==========================================================================
   Rechtstexte (Impressum / Datenschutz)
   ========================================================================== */
.legal {
  padding: calc(var(--nav-h) + 4rem) 0 5rem;
  background: var(--cream);
}
.legal .wrap { max-width: var(--wrap-slim); }
.legal h1 { font-size: clamp(2.2rem, 5vw, 3.2rem); margin-bottom: 2.5rem; }
.legal h2 {
  font-size: 1.5rem;
  margin: 2.5rem 0 .8rem;
  color: var(--green-deep);
}
.legal h3 { font-size: 1.15rem; margin: 1.6rem 0 .5rem; }
.legal p, .legal li { color: var(--cement-dark); font-size: .97rem; }
.legal p + p { margin-top: .8rem; }
.legal ul { list-style: disc; padding-left: 1.3rem; margin: .8rem 0; }
.legal a { color: var(--green); text-decoration: underline; }
.legal .placeholder {
  background: rgba(199, 162, 107, .16);
  border-left: 3px solid var(--gold);
  padding: .15rem .5rem;
  font-style: italic;
}

/* Rechtstexte: Nav dauerhaft hell */
.nav--solid {
  background: rgba(244, 241, 236, .96);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}
.nav--solid .nav__logo { color: var(--ink); }
.nav--solid .nav__link,
.nav--solid .nav__phone { color: var(--cement-dark); }
.nav--solid .nav__burger span { background: var(--ink); }

/* ==========================================================================
   Responsive
   ========================================================================== */
/* Ab hier wird die Menüzeile eng – Abstände straffen, Telefon ausblenden */
@media (max-width: 1180px) {
  .nav__menu { gap: 1.5rem; }
  .nav__link { font-size: .74rem; letter-spacing: .12em; }
}
@media (max-width: 1040px) {
  .nav__phone { display: none; }
}

@media (max-width: 1024px) {
  .contact__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .services { grid-template-columns: repeat(2, 1fr); }

  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .gallery__item:nth-child(1) { grid-area: 1 / 1 / 3 / 2; }
  .gallery__item:nth-child(2) { grid-area: 1 / 2 / 2 / 3; }
  .gallery__item:nth-child(3) { grid-area: 2 / 2 / 3 / 3; }
  .gallery__item:nth-child(4) { grid-area: 3 / 1 / 4 / 2; }
  .gallery__item:nth-child(5) { grid-area: 3 / 2 / 4 / 3; }
  .gallery__item:nth-child(6) { grid-area: 4 / 1 / 5 / 3; }
}

@media (max-width: 860px) {
  .nav__phone { display: none; }
  .nav__burger { display: block; }

  .nav__menu {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    gap: 1.8rem;
    background: var(--ink);
    clip-path: circle(0% at calc(100% - 42px) 39px);
    transition: clip-path .6s var(--ease);
    pointer-events: none;
  }
  .nav.is-open .nav__menu {
    clip-path: circle(150% at calc(100% - 42px) 39px);
    pointer-events: auto;
  }
  .nav__link {
    font-family: var(--font-display);
    font-size: 1.9rem;
    letter-spacing: .02em;
    text-transform: none;
    color: var(--cream);
  }
  .nav__link::after { display: none; }
  .nav__link:hover { color: var(--gold-soft); }
  .nav__cta { display: none; }

  .price-panel.is-active { grid-template-columns: 1fr; }
  .about__stamp { width: 118px; height: 118px; right: -.75rem; bottom: -.75rem; }
  .about__stamp strong { font-size: 1.9rem; }
}

@media (max-width: 560px) {
  .wrap, .nav__inner { width: min(100% - 2rem, var(--wrap)); }
  .hero__btns .btn { width: 100%; }
  .gallery { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .gallery__item:nth-child(n) { grid-area: auto; }
  .footer__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer__bottom { flex-direction: column; }
  .services { grid-template-columns: 1fr; }
  .review-track .review { padding: 1.6rem 1.4rem; margin-right: 1rem; }
  .review-track .review blockquote { font-size: 1.05rem; }

  /* Einspaltig wären die Porträts bildschirmfüllend hoch – deshalb
     zwei Spalten und entsprechend kleinere Schrift. */
  .team { grid-template-columns: 1fr 1fr; gap: 1.6rem 1.1rem; }
  .member__photo { margin-bottom: .9rem; }
  .member h3 { font-size: 1.25rem; }
  .member__role { font-size: .62rem; letter-spacing: .16em; }
  .member p:last-child { font-size: .84rem; margin-top: .5rem; }
}

/* --- Druck -------------------------------------------------------------- */
@media print {
  .nav, .marquee, .cta, .socials { display: none; }
  body { background: #fff; color: #000; }
}
