/* ==========================================================================
   Kamm & Schere – Friseursalon Frankfurt Eckenheim
   Stylesheet
   ========================================================================== */

/* --- Design Tokens ------------------------------------------------------ */
:root {
  --ink:        #1A1815;
  --ink-2:      #3D3833;
  --ink-3:      #6E665D;
  --cream:      #F8F5F0;
  --cream-2:    #F0EAE1;
  --sand:       #E4DACB;
  --line:       #E3DCD1;
  --line-dark:  #38332D;
  --cta-bg:     #3C312A;
  --accent:     #A26B45;
  --accent-2:   #895733;
  --accent-soft:#F3E7DB;
  --white:      #FFFFFF;

  --font-display: 'Jost', 'Helvetica Neue', Arial, sans-serif;
  --font-body:    'Inter', 'Helvetica Neue', Arial, sans-serif;

  --wrap: 1240px;
  --gap: clamp(1.5rem, 4vw, 3rem);
  --section-y: clamp(4.5rem, 9vw, 8.5rem);
  --radius: 2px;
  --shadow: 0 18px 50px -28px rgba(26, 24, 21, .35);
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* --- Reset -------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

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

img, picture, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; }
button, input, textarea, select { font: inherit; color: inherit; }
ul { list-style: none; padding: 0; }

/* --- Typography --------------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -.02em;
}
h1 { font-size: clamp(2.6rem, 6.4vw, 5rem); }
h2 { font-size: clamp(2rem, 4.2vw, 3.3rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); line-height: 1.25; letter-spacing: -.01em; }
h4 { font-size: 1.05rem; letter-spacing: 0; }
p { text-wrap: pretty; }

.eyebrow {
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: .9rem;
  margin-bottom: 1.4rem;
}
.eyebrow::before {
  content: "";
  width: 34px; height: 1px;
  background: var(--accent);
  flex: none;
}
.eyebrow.is-centered { justify-content: center; }
.eyebrow.is-light { color: var(--sand); }
.eyebrow.is-light::before { background: var(--sand); }

.lead { font-size: clamp(1.05rem, 1.5vw, 1.2rem); color: var(--ink-2); }
.muted { color: var(--ink-3); }

/* --- Layout ------------------------------------------------------------- */
.wrap {
  width: min(100% - 2.5rem, var(--wrap));
  margin-inline: auto;
}
@media (max-width: 560px) { .wrap { width: min(100% - 2rem, var(--wrap)); } }

.section { padding-block: var(--section-y); }
.section--tight { padding-block: clamp(3rem, 6vw, 5.5rem); }
.section--cream2 { background: var(--cream-2); }
.section--white { background: var(--white); }
.section--dark { background: var(--ink); color: #CFC7BC; }
.section--dark h2, .section--dark h3 { color: var(--white); }

.section-head { max-width: 660px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head.is-centered { margin-inline: auto; text-align: center; }
.section-head p { margin-top: 1.2rem; }

.grid { display: grid; gap: var(--gap); }
@media (min-width: 760px)  { .grid--2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 860px)  { .grid--3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1000px) { .grid--4 { grid-template-columns: repeat(4, 1fr); } }

/* --- Buttons ------------------------------------------------------------ */
.btn {
  --btn-bg: var(--ink);
  --btn-fg: var(--cream);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  padding: 1.05rem 1.9rem;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 1px solid var(--btn-bg);
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background .3s var(--ease), color .3s var(--ease),
              border-color .3s var(--ease), transform .3s var(--ease);
}
.btn:hover { --btn-bg: var(--accent); --btn-fg: var(--white); transform: translateY(-2px); }
.btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.btn svg { width: 17px; height: 17px; flex: none; }

.btn--accent { --btn-bg: var(--accent); --btn-fg: var(--white); }
.btn--accent:hover { --btn-bg: var(--ink); --btn-fg: var(--cream); }

.btn--ghost { --btn-bg: transparent; --btn-fg: var(--ink); border-color: var(--ink); }
.btn--ghost:hover { --btn-bg: var(--ink); --btn-fg: var(--cream); border-color: var(--ink); }

.btn--light { --btn-bg: var(--white); --btn-fg: var(--ink); }
.btn--light:hover { --btn-bg: var(--accent); --btn-fg: var(--white); }

.btn--outline-light { --btn-bg: transparent; --btn-fg: var(--white); border-color: rgba(255,255,255,.4); }
.btn--outline-light:hover { --btn-bg: var(--white); --btn-fg: var(--ink); border-color: var(--white); }

.btn-row { display: flex; flex-wrap: wrap; gap: .9rem; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--font-display);
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  padding-bottom: .35rem;
  border-bottom: 1px solid var(--line);
  transition: color .3s var(--ease), border-color .3s var(--ease);
}
.link-arrow span { transition: transform .3s var(--ease); }
.link-arrow:hover { color: var(--accent); border-color: var(--accent); }
.link-arrow:hover span { transform: translateX(5px); }

/* --- Topbar ------------------------------------------------------------- */
.topbar {
  background: var(--ink);
  color: #B9B0A4;
  font-size: .8rem;
  letter-spacing: .02em;
}
.topbar .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  min-height: 42px;
  padding-block: .35rem;
}
.topbar a { color: var(--cream); text-decoration: none; transition: color .25s var(--ease); }
.topbar a:hover { color: var(--accent); }
.topbar-item { display: inline-flex; align-items: center; gap: .5rem; }
.topbar-item svg { width: 14px; height: 14px; opacity: .8; }
@media (max-width: 720px) { .topbar-hours { display: none; } .topbar .wrap { justify-content: center; } }

/* --- Header ------------------------------------------------------------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 245, 240, .92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s var(--ease);
}
.header.is-stuck { box-shadow: 0 10px 30px -22px rgba(26,24,21,.5); }
.header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 78px;
}

.brand { text-decoration: none; display: block; line-height: 1; }
.brand-name {
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink);
  white-space: nowrap;
}
.brand-name em { font-style: normal; color: var(--accent); }
.brand-sub {
  display: block;
  margin-top: .38rem;
  font-size: .62rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.nav { display: flex; align-items: center; gap: 2.1rem; }
.nav a {
  font-family: var(--font-display);
  font-size: .86rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  position: relative;
  padding-block: .4rem;
  transition: color .25s var(--ease);
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s var(--ease);
}
.nav a:hover { color: var(--accent); }
.nav a:hover::after, .nav a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.nav a[aria-current="page"] { color: var(--accent); }

.nav > .btn { display: none; }
.header-cta { display: inline-flex; }
.header-cta .btn { padding: .85rem 1.4rem; font-size: .76rem; }

.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  align-items: center;
  justify-content: center;
  background: none;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  position: relative;
  width: 20px; height: 1.5px;
  background: var(--ink);
  transition: background .2s var(--ease);
}
.nav-toggle span::before, .nav-toggle span::after {
  content: "";
  position: absolute; left: 0;
  width: 20px; height: 1.5px;
  background: var(--ink);
  transition: transform .3s var(--ease);
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after  { top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after  { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 1000px) {
  .nav-toggle { display: inline-flex; }
  .header-cta { display: none; }
  .nav {
    position: fixed;
    inset: 0 0 auto 0;
    top: var(--header-offset, 78px);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    padding: .5rem 1.25rem 2rem;
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
    max-height: calc(100vh - var(--header-offset, 78px));
    overflow-y: auto;
  }
  .nav.is-open { transform: translateY(0); opacity: 1; visibility: visible; }
  .nav a { padding: 1.05rem 0; border-bottom: 1px solid var(--line); font-size: 1rem; }
  .nav a::after { display: none; }
  .nav > .btn { display: inline-flex; margin-top: 1.5rem; }
}

/* --- Hero --------------------------------------------------------------- */
.hero { background: var(--cream); overflow: hidden; }
.hero-inner {
  display: grid;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: center;
  padding-block: clamp(3.5rem, 7vw, 7rem);
}
@media (min-width: 900px) {
  .hero-inner { grid-template-columns: 1.02fr .98fr; }
}
.hero h1 { margin-bottom: 1.8rem; }
.hero h1 em { font-style: normal; color: var(--accent); }
.hero p { max-width: 46ch; margin-bottom: 2.4rem; }

.hero-media { position: relative; }
.hero-media img {
  width: 100%;
  aspect-ratio: 4 / 4.4;
  object-fit: cover;
  object-position: 62% 30%;
  border-radius: var(--radius);
}
@media (min-width: 900px) { .hero-media img { aspect-ratio: 4 / 4.6; } }
.hero-badge {
  position: absolute;
  left: clamp(-1.75rem, -1vw, -.5rem);
  bottom: clamp(1.25rem, 3vw, 2.5rem);
  background: var(--white);
  padding: 1.35rem 1.7rem;
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  max-width: 230px;
}
.hero-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -.01em;
}
.hero-badge span { font-size: .84rem; color: var(--ink-3); line-height: 1.5; display: block; margin-top: .25rem; }

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem 2rem;
  padding-top: 2.4rem;
  margin-top: 2.4rem;
  border-top: 1px solid var(--line);
}
.hero-facts li {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-size: .87rem;
  color: var(--ink-2);
}
.hero-facts svg { width: 16px; height: 16px; color: var(--accent); flex: none; }

/* --- Marquee / Stripe --------------------------------------------------- */
.stripe {
  background: var(--ink);
  color: var(--sand);
  padding-block: 1.05rem;
  overflow: hidden;
}
.stripe-track {
  display: flex;
  gap: 3.5rem;
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: .8rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  animation: marquee 34s linear infinite;
  width: max-content;
}
.stripe-track li { display: flex; align-items: center; gap: 3.5rem; }
.stripe-track li::after { content: "◆"; font-size: .5rem; color: var(--accent); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .stripe-track { animation: none; } }

/* --- Service Cards ------------------------------------------------------ */
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--sand); }
.card-media { overflow: hidden; background: var(--cream-2); }
.card-media img {
  width: 100%;
  aspect-ratio: 4 / 3.4;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.card:hover .card-media img { transform: scale(1.05); }
.card-body { padding: 1.9rem; display: flex; flex-direction: column; flex: 1; gap: .9rem; }
.card-body h3 { margin-bottom: -.2rem; }
.card-body p { font-size: .95rem; }
.card-price {
  font-family: var(--font-display);
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
}
.card-list { display: grid; gap: .5rem; font-size: .93rem; margin-top: auto; padding-top: .4rem; }
.card-list li { display: flex; gap: .6rem; align-items: baseline; }
.card-list li::before { content: "—"; color: var(--accent); flex: none; }

/* --- Split (Text + Bild) ------------------------------------------------ */
.split {
  display: grid;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
}
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split--reverse .split-media { order: 2; }
}
.split-media img {
  width: 100%;
  aspect-ratio: 4 / 3.6;
  object-fit: cover;
  border-radius: var(--radius);
}
.split-media.is-tall img { aspect-ratio: 4 / 4.6; }
.split-text p + p { margin-top: 1.1rem; }
.split-text .btn-row { margin-top: 2.2rem; }

.stat-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2.2rem;
  border-top: 1px solid var(--line);
}
.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--ink);
  line-height: 1;
  margin-bottom: .45rem;
}
.stat span { font-size: .85rem; color: var(--ink-3); }

/* --- Image collage ------------------------------------------------------ */
.collage { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.collage img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius); }
.collage-tall { aspect-ratio: 3 / 4.6; }
.collage-short { aspect-ratio: 3 / 3.2; }
.collage > div:first-child { margin-top: clamp(1.5rem, 4vw, 3rem); }

/* --- Gallery ------------------------------------------------------------ */
.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(.6rem, 1.4vw, 1.1rem);
}
@media (min-width: 720px) { .gallery { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1040px) { .gallery { grid-template-columns: repeat(6, 1fr); } }
.gallery figure { position: relative; overflow: hidden; border-radius: var(--radius); background: var(--cream-2); }
.gallery img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.gallery figure:hover img { transform: scale(1.06); }
.gallery figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.4rem .9rem .8rem;
  background: linear-gradient(to top, rgba(26,24,21,.75), transparent);
  color: #fff;
  font-family: var(--font-display);
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}

/* --- Reviews ------------------------------------------------------------ */
.review {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.section--dark .review { background: #221F1B; border-color: #35302A; }
.stars { display: flex; gap: .2rem; color: var(--accent); }
.stars svg { width: 16px; height: 16px; }
.review blockquote {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--ink-2);
  margin: 0;
}
.section--dark .review blockquote { color: #CFC7BC; }
.review-source {
  margin-top: auto;
  padding-top: .4rem;
  font-family: var(--font-display);
  font-size: .74rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-3);
  display: flex;
  align-items: center;
  gap: .5rem;
}
.review-source::before { content: ""; width: 20px; height: 1px; background: currentColor; }

/* --- Preisliste --------------------------------------------------------- */
.section--prices .wrap > * { max-width: 940px; margin-inline: auto; }

.price-nav {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}
.price-nav a {
  font-family: var(--font-display);
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: .7rem 1.25rem;
  background: var(--white);
  transition: all .3s var(--ease);
}
.price-nav a:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }

.price-block { scroll-margin-top: 130px; }
.price-block + .price-block { margin-top: clamp(3rem, 6vw, 4.5rem); }
.price-block-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: .5rem 1.5rem;
  padding-bottom: 1.1rem;
  border-bottom: 2px solid var(--ink);
  margin-bottom: .4rem;
}
.price-block-head p { font-size: .92rem; color: var(--ink-3); max-width: 46ch; }

.price-list li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: .4rem 1.5rem;
  align-items: baseline;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--line);
}
.price-list .price-name {
  font-family: var(--font-display);
  font-size: 1.08rem;
  color: var(--ink);
  font-weight: 500;
  letter-spacing: -.005em;
}
.price-list .price-desc {
  grid-column: 1 / 2;
  font-size: .89rem;
  color: var(--ink-3);
  margin-top: .2rem;
}
.price-list .price-value {
  grid-row: 1;
  grid-column: 2;
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 500;
  color: var(--accent);
  white-space: nowrap;
}

.note {
  background: var(--accent-soft);
  border-left: 3px solid var(--accent);
  padding: 1.5rem 1.7rem;
  border-radius: var(--radius);
  font-size: .95rem;
  color: var(--ink-2);
}
.note strong { color: var(--ink); }

/* --- Info Cards / Kontakt ----------------------------------------------- */
.info-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
}
.info-card .icon {
  width: 46px; height: 46px;
  display: grid;
  place-items: center;
  background: var(--accent-soft);
  border-radius: 50%;
  color: var(--accent);
  margin-bottom: .3rem;
}
.info-card .icon svg { width: 20px; height: 20px; }
.info-card h3 { font-size: 1.2rem; }
.info-card p { font-size: .95rem; }
.info-card a:not(.btn):not(.link-arrow) {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--sand);
  transition: color .25s var(--ease), border-color .25s var(--ease);
}
.info-card a:not(.btn):not(.link-arrow):hover { color: var(--accent); border-color: var(--accent); }
.info-card .btn { margin-top: auto; }

.hours { width: 100%; border-collapse: collapse; }
.hours th, .hours td { text-align: left; padding: .85rem 0; border-bottom: 1px solid var(--line); font-weight: 400; font-size: .97rem; }
.hours td { text-align: right; font-family: var(--font-display); color: var(--ink); font-weight: 500; }
.hours tr:last-child th, .hours tr:last-child td { border-bottom: 0; }
.hours .is-closed td { color: var(--ink-3); font-weight: 400; }
.hours tr.is-today th, .hours tr.is-today td { color: var(--accent); }
.hours tr.is-today th::after {
  content: "Heute";
  font-family: var(--font-display);
  font-size: .6rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  background: var(--accent);
  color: #fff;
  padding: .2rem .5rem;
  border-radius: 100px;
  margin-left: .6rem;
  vertical-align: middle;
}

/* --- Formular ----------------------------------------------------------- */
.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.75rem, 4vw, 2.8rem);
}
.field { display: grid; gap: .5rem; margin-bottom: 1.2rem; }
.field label {
  font-family: var(--font-display);
  font-size: .76rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink);
}
.field input, .field textarea, .field select {
  width: 100%;
  padding: .95rem 1rem;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: .97rem;
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--white);
}
.field textarea { min-height: 140px; resize: vertical; }
.field-row { display: grid; gap: 0 1.2rem; }
@media (min-width: 620px) { .field-row { grid-template-columns: 1fr 1fr; } }
.form-consent { display: flex; gap: .75rem; align-items: flex-start; font-size: .87rem; color: var(--ink-3); margin-bottom: 1.6rem; }
.form-consent input { width: 18px; height: 18px; margin-top: .2rem; flex: none; accent-color: var(--accent); }
.form-consent a { color: var(--ink); }
.form-hint { font-size: .85rem; color: var(--ink-3); margin-top: 1.2rem; }
.form-status { display: none; margin-top: 1.2rem; padding: 1rem 1.2rem; background: var(--accent-soft); border-radius: var(--radius); font-size: .92rem; color: var(--ink); }
.form-status.is-visible { display: block; }

/* --- Map ---------------------------------------------------------------- */
.map-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--cream-2);
  min-height: 340px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 2rem;
}
.map-card.is-loaded { display: block; padding: 0; min-height: 0; }
.map-card iframe { width: 100%; height: clamp(320px, 45vw, 460px); border: 0; display: block; }
.map-consent { max-width: 420px; display: grid; gap: 1rem; justify-items: center; }
.map-consent p { font-size: .92rem; color: var(--ink-3); }

/* --- CTA Band ----------------------------------------------------------- */
.cta-band { background: var(--cta-bg); color: #DCD4C9; position: relative; overflow: hidden; }
.cta-band::after {
  content: "";
  position: absolute;
  right: -180px; top: -180px;
  width: 460px; height: 460px;
  border: 1px solid rgba(162,107,69,.5);
  border-radius: 50%;
}
.cta-band .wrap { position: relative; z-index: 1; }
.cta-inner {
  display: grid;
  gap: 2rem;
  align-items: center;
  padding-block: clamp(3.5rem, 7vw, 6rem);
}
@media (min-width: 900px) { .cta-inner { grid-template-columns: 1.2fr auto; gap: 3rem; } }
.cta-inner h2 { color: var(--white); margin-bottom: 1.1rem; }
.cta-inner p { max-width: 50ch; }
.cta-phone {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  color: var(--white);
  text-decoration: none;
  letter-spacing: -.01em;
  transition: color .25s var(--ease);
}
.cta-phone:hover { color: var(--accent); }
.cta-phone svg { width: 24px; height: 24px; color: var(--accent); }

/* --- Footer ------------------------------------------------------------- */
.footer { background: #131210; color: #8E867C; padding-block: clamp(3.5rem, 6vw, 5rem) 0; font-size: .92rem; }
.footer-grid { display: grid; gap: 2.5rem; padding-bottom: 3rem; }
@media (min-width: 760px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
@media (min-width: 1000px) { .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1.2fr; } }
.footer .brand-name { color: var(--cream); }
.footer .brand-sub { color: #6F6961; }
.footer h4 {
  color: var(--cream);
  font-size: .78rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: 1.3rem;
}
.footer p { line-height: 1.8; }
.footer ul { display: grid; gap: .7rem; }
.footer a { text-decoration: none; transition: color .25s var(--ease); }
.footer a:hover { color: var(--accent); }
.footer-about { max-width: 34ch; margin-top: 1.5rem; }
.footer-bottom {
  border-top: 1px solid #262320;
  padding-block: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: .6rem 1.8rem;
  justify-content: space-between;
  font-size: .84rem;
}
.footer-bottom nav { display: flex; flex-wrap: wrap; gap: 1.4rem; }

/* --- Page Hero (Unterseiten) -------------------------------------------- */
.page-hero {
  background: var(--cream-2);
  padding-block: clamp(3rem, 6vw, 5.5rem);
  border-bottom: 1px solid var(--line);
}
.page-hero .inner { max-width: 760px; }
.page-hero h1 { font-size: clamp(2.3rem, 5vw, 4rem); margin-bottom: 1.4rem; }
.page-hero p { font-size: clamp(1.02rem, 1.4vw, 1.15rem); }
.crumbs {
  display: flex;
  gap: .6rem;
  align-items: center;
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 1.6rem;
  font-family: var(--font-display);
}
.crumbs a { text-decoration: none; color: var(--ink-3); transition: color .25s var(--ease); }
.crumbs a:hover { color: var(--accent); }

/* --- Legal -------------------------------------------------------------- */
.legal { max-width: 760px; }
.legal h2 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); margin-top: 2.8rem; margin-bottom: 1rem; }
.legal h3 { font-size: 1.1rem; margin-top: 1.8rem; margin-bottom: .6rem; }
.legal p, .legal li { font-size: .97rem; }
.legal p + p { margin-top: .9rem; }
.legal ul { list-style: disc; padding-left: 1.3rem; display: grid; gap: .5rem; margin-top: .8rem; }
.legal a { color: var(--accent); }

/* --- Mobile Call Bar ---------------------------------------------------- */
.callbar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  display: none;
  background: rgba(26,24,21,.97);
  backdrop-filter: blur(8px);
  border-top: 1px solid #332E28;
  padding: .55rem .75rem calc(.55rem + env(safe-area-inset-bottom));
  gap: .55rem;
}
.callbar a {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .85rem .5rem;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
}
.callbar svg { width: 16px; height: 16px; }
.callbar .is-primary { background: var(--accent); color: #fff; }
.callbar .is-secondary { background: transparent; color: var(--cream); border: 1px solid #443E37; }
@media (max-width: 760px) {
  .callbar { display: flex; }
  body { padding-bottom: 68px; }
}

/* --- Reveal Animation --------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .card:hover, .btn:hover { transform: none; }
}

/* --- Utilities ---------------------------------------------------------- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: var(--cream);
  padding: .9rem 1.4rem;
  z-index: 200;
}
.skip-link:focus { left: 1rem; top: 1rem; }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* --- Kontakt-Layout ----------------------------------------------------- */
.contact-grid { display: grid; gap: clamp(2rem, 4vw, 3rem); align-items: start; }
@media (min-width: 940px) { .contact-grid { grid-template-columns: 1.1fr .9fr; } }
.contact-aside { display: grid; gap: 1.25rem; }

/* --- Team --------------------------------------------------------------- */
.team-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.75rem, 3vw, 2.4rem);
  display: grid;
  gap: 1rem;
  align-content: start;
}
.team-card .role {
  font-family: var(--font-display);
  font-size: .76rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent);
}
.team-card p { font-size: .96rem; }

/* --- Zitat -------------------------------------------------------------- */
.pullquote {
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2.15rem);
  line-height: 1.35;
  color: var(--ink);
  letter-spacing: -.015em;
}
.pullquote + .review-source { justify-content: center; margin-top: 1.6rem; }
