/* ============================================================
   Haarstudio EXIS — site-custom.css
   ARCHITECTURE: MODERN-BOLD swiss-grid / bento
   energetic split hero (Grotesk type + 3-img crossfade)
   + bento Leistungen + dark stat band + reviews marquee
   ============================================================ */

/* ---------- Image treatment (subtle warm, color) ---------- */
.hero-media .km, .bento-tile img, .team-card-img img,
.ms-media img, .bleed > img, .stat-photo img, .page-hero-media img {
  filter: saturate(1.05) contrast(1.03);
}

/* ============================================================
   HERO — energetic split (text left · crossfade media right)
   ============================================================ */
.hero {
  position: relative; display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: clamp(580px, 90vh, 900px);
  background: var(--c-bg); overflow: hidden;
  border-bottom: 3px solid var(--c-ink);
}
.hero-text {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(2.2rem, 6vw, 5.5rem) clamp(1.5rem, 5vw, 5rem);
  background:
    radial-gradient(120% 90% at 6% 12%, rgba(255,106,61,0.1), transparent 52%),
    var(--c-bg);
}
/* faint oversized "EST. 2000" watermark behind type */
.hero-text::before {
  content: "EST. 2000"; position: absolute; top: 6%; left: clamp(1.5rem,5vw,5rem);
  font-family: var(--f-display); font-weight: 700; font-size: clamp(3rem, 7vw, 6rem);
  color: rgba(26,26,26,0.05); letter-spacing: -0.03em; pointer-events: none; z-index: 0;
}
.hero-eyebrow {
  position: relative; z-index: 1;
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-body); font-size: 0.74rem; letter-spacing: 0.26em;
  text-transform: uppercase; color: var(--c-coral-deep); font-weight: 600;
  margin-bottom: var(--gap-md);
}
.hero-eyebrow .dot { width: 6px; height: 6px; background: var(--c-coral); border-radius: 50%; }
.hero-title {
  position: relative; z-index: 1;
  font-family: var(--f-display); font-weight: 700;
  font-size: clamp(3.2rem, 8.2vw, 6.6rem);
  line-height: 0.94; letter-spacing: -0.035em; color: var(--c-ink);
  margin: 0 0 var(--gap-md); text-transform: none;
}
.hero-title em { font-style: normal; color: var(--c-coral); display: block; }
.hero-sub {
  position: relative; z-index: 1;
  font-family: var(--f-body); font-size: clamp(1.05rem, 1.4vw, 1.22rem);
  color: var(--c-text-mute); max-width: 44ch; line-height: 1.6; margin: 0 0 var(--gap-lg);
}
.hero-actions { position: relative; z-index: 1; display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: var(--gap-lg); }
.hero-trust {
  position: relative; z-index: 1;
  display: flex; flex-wrap: wrap; gap: 10px; align-items: center;
  font-family: var(--f-body); font-size: 0.8rem;
}
.hero-trust .chip {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--c-paper); border: 1.5px solid var(--c-ink); border-radius: var(--radius);
  padding: 0.5rem 0.9rem; color: var(--c-ink); font-weight: 500;
}
.hero-trust .chip .ic { color: var(--c-coral-deep); }
.hero-trust .chip b { font-weight: 600; }

/* char-split reveal */
.hero-title .word { display: inline-block; white-space: nowrap; }
.hero-title .char {
  display: inline-block;
  opacity: 0; transform: translateY(40px) rotate(4deg); filter: blur(6px);
  transition: opacity .6s cubic-bezier(.2,.7,.2,1), transform .6s cubic-bezier(.2,.7,.2,1), filter .6s;
}
.hero-title.split-in .char { opacity: 1; transform: none; filter: blur(0); }

/* soft entrance on supporting hero elements */
.hero-text > .hero-eyebrow,
.hero-text > .hero-sub,
.hero-text > .hero-actions,
.hero-text > .hero-trust { opacity: 0; transform: translateY(18px); animation: soft-in .8s cubic-bezier(.2,.7,.2,1) forwards; }
.hero-text > .hero-eyebrow { animation-delay: .15s; }
.hero-text > .hero-sub     { animation-delay: .6s; }
.hero-text > .hero-actions { animation-delay: .75s; }
.hero-text > .hero-trust   { animation-delay: .9s; }
@keyframes soft-in { to { opacity: 1; transform: none; } }

/* MEDIA — 3-image Ken-Burns crossfade stack */
.hero-media { position: relative; overflow: hidden; background: var(--c-ink); }
.hero-media .km {
  position: absolute; inset: -4%;
  background-size: cover; background-position: center 36%;
  opacity: 0; will-change: transform, opacity;
  animation: km-zoom 16s ease-in-out infinite alternate;
}
.hero-media .km.k1 { animation: km-zoom 16s ease-in-out infinite alternate, km-fade1 21s ease-in-out infinite; }
.hero-media .km.k2 { animation: km-zoom 16s ease-in-out infinite alternate -8s, km-fade2 21s ease-in-out infinite; }
.hero-media .km.k3 { animation: km-zoom 16s ease-in-out infinite alternate -4s, km-fade3 21s ease-in-out infinite; }
@keyframes km-zoom { 0%{transform:scale(1) translate(0,0)} 100%{transform:scale(1.1) translate(-1.5%,-2%)} }
@keyframes km-fade1 { 0%,28%{opacity:1} 38%,95%{opacity:0} 100%{opacity:1} }
@keyframes km-fade2 { 0%,28%{opacity:0} 38%,61%{opacity:1} 71%,100%{opacity:0} }
@keyframes km-fade3 { 0%,61%{opacity:0} 71%,95%{opacity:1} 100%{opacity:0} }
/* coral edge + bottom gradient */
.hero-media::before { content:""; position:absolute; left:0; top:0; bottom:0; width:5px; background: var(--c-coral); z-index: 3; }
.hero-media::after {
  content:""; position:absolute; inset:0; z-index: 2; pointer-events:none;
  background: linear-gradient(0deg, rgba(26,26,26,0.5), transparent 42%),
              linear-gradient(280deg, rgba(26,26,26,0.32), transparent 50%);
}
.hero-media-chip {
  position: absolute; z-index: 4; left: 22px; bottom: 22px;
  background: rgba(26,26,26,0.88); color: var(--c-cream);
  border-radius: var(--radius); padding: 0.6rem 1rem;
  font-family: var(--f-body); font-size: 0.78rem; font-weight: 500;
  display: inline-flex; align-items: center; gap: 8px;
  border-left: 3px solid var(--c-coral);
  opacity: 0; transform: translateY(14px);
  animation: soft-in .9s cubic-bezier(.2,.7,.2,1) 1.2s forwards;
}
.hero-media-chip .star { color: var(--c-coral); }

.scroll-cue {
  position: absolute; bottom: 16px; left: clamp(1.5rem,5vw,5rem); z-index: 5;
  font-family: var(--f-body); font-size: 0.64rem; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--c-text-faint);
  animation: cue 2.4s ease-in-out infinite;
}
@keyframes cue { 0%,100%{transform:translateY(0);opacity:.6} 50%{transform:translateY(6px);opacity:1} }

@media (max-width: 940px) {
  .hero { grid-template-columns: 1fr; min-height: 0; }
  .hero-media { min-height: 62vw; max-height: 440px; order: -1; }
  .hero-text { padding: var(--gap-xl) var(--gap-md) var(--gap-lg); }
  .hero-title { font-size: clamp(2.8rem, 13vw, 4.4rem); }
  .scroll-cue { display: none; }
}

/* ============================================================
   DARK STAT BAND (right under hero) — counters
   ============================================================ */
.stat-band { background: var(--c-ink); color: var(--c-cream); padding: var(--gap-xl) 0; }
.stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap-lg); }
.stat { text-align: center; padding: 0 var(--gap-md); position: relative; }
.stat + .stat::before { content:""; position:absolute; left:0; top:10%; bottom:10%; width:1px; background: rgba(247,245,242,0.16); }
.stat .num { font-family: var(--f-display); font-weight: 700; font-size: clamp(2.6rem, 6vw, 4.2rem); line-height: 1; color: var(--c-coral); letter-spacing: -0.03em; }
.stat .num .suf { color: var(--c-cream); }
.stat .lbl { font-family: var(--f-body); font-size: 0.86rem; color: var(--c-cream-mute); margin-top: 8px; letter-spacing: 0.02em; }
@media (max-width: 680px) {
  .stat-grid { grid-template-columns: 1fr; gap: var(--gap-md); }
  .stat + .stat::before { display: none; }
  .stat { padding: var(--gap-md) 0; border-top: 1px solid rgba(247,245,242,0.12); }
}

/* ============================================================
   SECTION HEADERS (swiss tag style)
   ============================================================ */
.section-head { max-width: 680px; margin: 0 0 var(--gap-xl); }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(2.1rem, 4vw, 3.4rem); }
.section-head p { color: var(--c-text-mute); font-size: 1.08rem; }
.tag {
  display: inline-flex; align-items: center; gap: 9px; margin-bottom: var(--gap-sm);
  font-family: var(--f-body); font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--c-coral-deep); font-weight: 600;
}
.tag::before { content:""; width: 28px; height: 2px; background: var(--c-coral); }

/* ============================================================
   VORTEILE strip
   ============================================================ */
.vorteile { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; border: 1.5px solid var(--c-ink); }
.vorteil { padding: var(--gap-md); display: flex; gap: 12px; align-items: flex-start; border-right: 1.5px solid var(--c-rule); border-bottom: 1.5px solid var(--c-rule); background: var(--c-paper); }
.vorteil .vic { flex-shrink: 0; width: 30px; height: 30px; background: var(--c-coral); color: var(--c-ink); display: grid; place-items: center; font-weight: 700; font-size: 0.9rem; }
.vorteil p { margin: 0; font-size: 0.92rem; color: var(--c-text-mute); }
.vorteil p b { color: var(--c-ink); font-weight: 600; }
@media (min-width: 821px) {
  .vorteile .vorteil:nth-child(3n) { border-right: 0; }
  .vorteile .vorteil:nth-last-child(-n+3) { border-bottom: 0; }
}
@media (max-width: 820px) { .vorteile { grid-template-columns: 1fr 1fr; } .vorteil { border-right: 0; } }
@media (max-width: 520px) { .vorteile { grid-template-columns: 1fr; } }

/* ============================================================
   BENTO GRID — Leistungen (swiss, sharp, coral accents)
   ============================================================ */
.bento { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 210px; gap: 14px; }
.bento-tile {
  position: relative; overflow: hidden; border-radius: var(--radius);
  background: var(--c-ink); display: flex; isolation: isolate;
  border: 1.5px solid var(--c-ink);
}
.bento-tile a { position: absolute; inset: 0; z-index: 4; }
.bento-tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.35) saturate(1.05) contrast(1.04); transition: transform 1s cubic-bezier(.2,.7,.2,1), filter .55s; }
.bento-tile:hover img { transform: scale(1.06); filter: grayscale(0) saturate(1.1) contrast(1.05); }
.bento-tile::after { content:""; position: absolute; inset: 0; z-index: 1; pointer-events: none; background: linear-gradient(180deg, rgba(26,26,26,0.1) 0%, rgba(26,26,26,0.0) 32%, rgba(26,26,26,0.78) 100%); }
.bento-tile .bt-body { position: relative; z-index: 2; margin-top: auto; padding: var(--gap-md); color: var(--c-cream); }
.bento-tile .bt-kicker { font-family: var(--f-body); font-size: 0.64rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--c-coral); font-weight: 600; display: block; margin-bottom: 5px; }
.bento-tile .bt-title { font-family: var(--f-display); font-weight: 700; font-size: 1.5rem; line-height: 1; margin: 0; color: #fff; letter-spacing: -0.02em; }
.bento-tile .bt-price { font-family: var(--f-body); font-size: 0.8rem; color: rgba(247,245,242,0.85); margin-top: 7px; }
.bento-tile .bt-arrow { position: absolute; z-index: 3; top: 14px; right: 14px; width: 34px; height: 34px; border-radius: var(--radius); background: var(--c-coral); color: var(--c-ink); display: grid; place-items: center; font-weight: 700; transform: translate(6px,-6px); opacity: 0; transition: .35s; }
.bento-tile:hover .bt-arrow { transform: none; opacity: 1; }
/* tinted (no-photo) tiles */
.bento-tile.tint-coral { background: var(--c-coral); border-color: var(--c-coral); }
.bento-tile.tint-ink { background: var(--c-ink-2); }
.bento-tile.tint-coral::after, .bento-tile.tint-ink::after { display: none; }
.bento-tile.tint-coral .bt-title, .bento-tile.tint-coral .bt-kicker { color: var(--c-ink); }
.bento-tile.tint-coral .bt-kicker { color: rgba(26,26,26,0.7); }
.bento-tile.tint-coral .bt-price { color: rgba(26,26,26,0.78); }
.bento-tile.tint-coral .bt-arrow { background: var(--c-ink); color: var(--c-coral); }
/* spans — 4-col math */
.bento-tile.wide { grid-column: span 2; }
.bento-tile.tall { grid-row: span 2; }
.bento-tile.big { grid-column: span 2; grid-row: span 2; }
@media (max-width: 880px) {
  .bento { grid-template-columns: repeat(2,1fr); grid-auto-rows: 172px; }
  .bento-tile.big { grid-column: span 2; grid-row: span 2; }
  .bento-tile.tall { grid-row: span 1; }
}
@media (max-width: 520px) {
  .bento { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .bento-tile.wide, .bento-tile.big { grid-column: span 1; grid-row: span 1; }
}

/* ============================================================
   MAGAZINE SPLIT (editorial text + image)
   ============================================================ */
.msplit { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4.5rem); align-items: center; }
.msplit + .msplit { margin-top: var(--gap-2xl); }
.msplit.reverse .ms-text { order: 2; }
.ms-text h3 { font-size: clamp(1.8rem, 3vw, 2.6rem); }
.ms-text .kicker { font-family: var(--f-body); font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--c-coral-deep); font-weight: 600; display: block; margin-bottom: var(--gap-sm); }
.ms-text p { color: var(--c-text-mute); }
.ms-text .price-hint { display: inline-block; margin-top: var(--gap-sm); font-family: var(--f-body); font-size: 0.85rem; color: var(--c-ink); background: var(--c-coral-soft); border-radius: var(--radius); padding: 0.45rem 0.9rem; font-weight: 600; }
.ms-media { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-soft); border: 1.5px solid var(--c-ink); }
.ms-media img { width: 100%; aspect-ratio: 4/3.2; object-fit: cover; transition: transform 1.4s cubic-bezier(.2,.7,.2,1); transform: scale(1.06); }
.msplit.in-view .ms-media img { transform: scale(1); }
.ms-media .mtag { position: absolute; top: 14px; left: 14px; background: var(--c-coral); color: var(--c-ink); font-family: var(--f-body); font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.4rem 0.8rem; border-radius: var(--radius); font-weight: 600; }
.ms-text .perk-list { margin-top: var(--gap-md); }
@media (max-width: 820px) {
  .msplit { grid-template-columns: 1fr; gap: var(--gap-lg); }
  .msplit.reverse .ms-text { order: 0; }
}

/* ============================================================
   BRAND ROW
   ============================================================ */
.brand-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; border: 1.5px solid var(--c-ink); }
.brand-cell { padding: var(--gap-lg) var(--gap-md); border-right: 1.5px solid var(--c-rule); background: var(--c-paper); transition: background .3s; }
.brand-cell:last-child { border-right: 0; }
.brand-cell:hover { background: var(--c-ink); }
.brand-cell:hover .bn, .brand-cell:hover .bnote { color: var(--c-cream); }
.brand-cell .bn { font-family: var(--f-display); font-weight: 700; font-size: 1.35rem; color: var(--c-ink); letter-spacing: -0.01em; transition: color .3s; }
.brand-cell .bn::after { content:""; display:block; width: 22px; height: 3px; background: var(--c-coral); margin-top: 8px; }
.brand-cell .bnote { font-family: var(--f-body); font-size: 0.82rem; color: var(--c-text-mute); margin-top: 10px; transition: color .3s; }
@media (max-width: 820px) { .brand-row { grid-template-columns: 1fr 1fr; } .brand-cell:nth-child(2n) { border-right: 0; } .brand-cell:nth-child(-n+2){border-bottom:1.5px solid var(--c-rule);} }
@media (max-width: 480px) { .brand-row { grid-template-columns: 1fr; } .brand-cell { border-right: 0; border-bottom: 1.5px solid var(--c-rule); } .brand-cell:last-child{border-bottom:0;} }

/* ============================================================
   TEAM CARDS
   ============================================================ */
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--gap-lg); }
.team-card { background: var(--c-paper); border-radius: var(--radius); overflow: hidden; border: 1.5px solid var(--c-ink); transition: transform .4s, box-shadow .4s; }
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.team-card-img { aspect-ratio: 4/4.2; overflow: hidden; background: var(--c-ink); position: relative; }
.team-card-img img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.5) contrast(1.04); transition: transform 1s, filter .55s; }
.team-card:hover .team-card-img img { transform: scale(1.05); filter: grayscale(0) contrast(1.05); }
.team-card-img .role-badge { position: absolute; bottom: 12px; left: 12px; background: var(--c-coral); color: var(--c-ink); font-family: var(--f-body); font-size: 0.64rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600; padding: 0.35rem 0.7rem; border-radius: var(--radius); }
.team-card-body { padding: var(--gap-md); }
.team-card-body h3 { font-size: 1.4rem; margin-bottom: 4px; }
.team-card-body .spec { font-family: var(--f-body); font-size: 0.82rem; color: var(--c-coral-deep); font-weight: 600; margin-bottom: var(--gap-sm); }
.team-card-body .quote { font-family: var(--f-body); font-style: italic; font-size: 0.98rem; color: var(--c-text-mute); line-height: 1.5; }
@media (max-width: 820px) { .team-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 520px) { .team-grid { grid-template-columns: 1fr; } }

/* ============================================================
   PRICE TABLES (2-up grid of blocks)
   ============================================================ */
.price-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--gap-lg); align-items: start; }
@media (max-width: 760px) { .price-grid { grid-template-columns: 1fr; } }
.price-block { background: var(--c-paper); border-radius: var(--radius); border: 1.5px solid var(--c-ink); overflow: hidden; }
.price-block-head { display: flex; align-items: center; justify-content: space-between; gap: var(--gap-md); padding: var(--gap-md) var(--gap-lg); background: var(--c-ink); }
.price-block-head h3 { font-size: 1.5rem; margin: 0; color: var(--c-cream); }
.price-block-head .badge { font-family: var(--f-body); font-size: 0.64rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--c-coral); font-weight: 600; }
.price-row { display: grid; grid-template-columns: 1fr auto; gap: var(--gap-md); align-items: baseline; padding: 0.8rem var(--gap-lg); border-bottom: 1px solid var(--c-rule-soft); transition: background .2s; }
.price-row:last-child { border-bottom: 0; }
.price-row:hover { background: var(--c-coral-soft); }
.price-row .svc { font-family: var(--f-body); font-size: 0.96rem; color: var(--c-ink); }
.price-row .pr { font-family: var(--f-display); font-weight: 600; font-size: 1.02rem; color: var(--c-coral-deep); text-align: right; white-space: nowrap; font-variant-numeric: tabular-nums; }
.price-row.note-row { grid-template-columns: 1fr; }
.price-row.note-row .svc { font-style: italic; color: var(--c-text-mute); font-size: 0.85rem; }

/* ============================================================
   TREUEBONUS / loyalty card mockup
   ============================================================ */
.perk-block { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4rem); align-items: center; }
@media (max-width: 820px) { .perk-block { grid-template-columns: 1fr; gap: var(--gap-lg); } }
.loyalty-card {
  position: relative; aspect-ratio: 1.6/1; border-radius: var(--radius);
  background: var(--c-ink); color: var(--c-cream);
  border: 1.5px solid var(--c-ink); box-shadow: var(--shadow-soft);
  padding: var(--gap-lg); display: flex; flex-direction: column; justify-content: space-between;
  overflow: hidden; transform: rotate(-1.5deg); transition: transform .5s;
}
.loyalty-card:hover { transform: rotate(0) scale(1.02); }
.loyalty-card::before { content:""; position:absolute; right:-50px; top:-50px; width:170px; height:170px; border-radius:50%; background: rgba(255,106,61,0.16); }
.loyalty-card .lc-top { display: flex; justify-content: space-between; align-items: center; position: relative; z-index: 1; }
.loyalty-card .lc-logo { height: 22px; }
.loyalty-card .lc-label { font-family: var(--f-body); font-size: 0.64rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--c-coral); font-weight: 600; }
.loyalty-card .lc-stamps { display: grid; grid-template-columns: repeat(8, 1fr); gap: 7px; position: relative; z-index: 1; }
.loyalty-card .stamp { aspect-ratio: 1; border-radius: 50%; border: 1.5px dashed rgba(247,245,242,0.4); display: grid; place-items: center; }
.loyalty-card .stamp.on { background: var(--c-coral); border-style: solid; border-color: var(--c-coral); }
.loyalty-card .stamp.on::after { content:"✓"; color: var(--c-ink); font-size: 0.62rem; font-weight: 700; }
.loyalty-card .stamp.gift { background: var(--c-cream); border-style: solid; border-color: var(--c-cream); }
.loyalty-card .stamp.gift::after { content:"★"; color: var(--c-coral-deep); font-size: 0.62rem; }
.loyalty-card .lc-foot { font-family: var(--f-display); font-weight: 600; font-size: 1.05rem; position: relative; z-index: 1; }
.loyalty-card .lc-foot b { color: var(--c-coral); }

.perk-list { list-style: none; padding: 0; margin: var(--gap-md) 0 0; }
.perk-list li { position: relative; padding: 0.5rem 0 0.5rem 1.9rem; color: var(--c-text-mute); border-bottom: 1px solid var(--c-rule-soft); }
.perk-list li::before { content:""; position: absolute; left: 0; top: 0.95rem; width: 10px; height: 10px; background: var(--c-coral); }

/* ============================================================
   REVIEWS — marquee strip + cards
   ============================================================ */
.review-marquee { background: var(--c-ink); color: var(--c-cream); overflow: hidden; padding: 1.1rem 0; border-top: 3px solid var(--c-coral); border-bottom: 3px solid var(--c-coral); }
.rm-track { display: inline-flex; gap: 3rem; white-space: nowrap; animation: marq 32s linear infinite; }
.rm-track span { font-family: var(--f-display); font-weight: 600; font-size: clamp(1.1rem,2.4vw,1.7rem); letter-spacing: -0.01em; }
.rm-track span::before { content:"★ "; color: var(--c-coral); }
@keyframes marq { to { transform: translateX(-50%); } }
.review-marquee:hover .rm-track { animation-play-state: paused; }

.reviews-rail { display: flex; gap: var(--gap-md); overflow-x: auto; scroll-snap-type: x mandatory; padding: 4px 0 var(--gap-md); margin: 0 calc(-1 * clamp(1.25rem,4vw,2.5rem)); padding-left: clamp(1.25rem,4vw,2.5rem); padding-right: clamp(1.25rem,4vw,2.5rem); -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.reviews-rail::-webkit-scrollbar { display: none; }
.review-card { scroll-snap-align: start; flex: 0 0 min(360px, 84vw); background: var(--c-paper); border-radius: var(--radius); padding: var(--gap-lg); border: 1.5px solid var(--c-ink); display: flex; flex-direction: column; }
/* QA-fix: cards in the horizontal rail sit off-screen-right, so the vertical reveal observer never fires on them — keep them visible regardless. */
.reviews-rail .review-card.reveal { opacity: 1; transform: none; }
.review-card .stars { color: var(--c-coral); letter-spacing: 3px; margin-bottom: var(--gap-sm); }
.review-card .body { font-family: var(--f-body); font-size: 1.04rem; color: var(--c-ink); line-height: 1.55; margin-bottom: var(--gap-md); }
.review-card .who { font-family: var(--f-display); font-weight: 600; font-size: 0.92rem; color: var(--c-coral-deep); margin-top: auto; }
/* full grid for reviews page */
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--gap-md); }
.reviews-grid .review-card { flex: none; }
@media (max-width: 880px) { .reviews-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .reviews-grid { grid-template-columns: 1fr; } }

/* ============================================================
   CTA banner (coral, bold)
   ============================================================ */
.cta-banner { background: var(--c-coral); border-radius: var(--radius); padding: clamp(2.5rem,6vw,4.5rem); text-align: center; color: var(--c-ink); position: relative; overflow: hidden; border: 1.5px solid var(--c-ink); }
.cta-banner::before { content:""; position:absolute; left:-60px; bottom:-60px; width:230px; height:230px; border-radius:50%; background:rgba(26,26,26,0.08); }
.cta-banner h2 { color: var(--c-ink); font-size: clamp(2.1rem,4.5vw,3.6rem); position: relative; z-index: 1; }
.cta-banner p { color: rgba(26,26,26,0.82); max-width: 48ch; margin: 0 auto var(--gap-lg); position: relative; z-index: 1; }
.cta-banner .cta-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; position: relative; z-index: 1; }
.cta-banner .btn-dark { background: var(--c-ink); color: var(--c-cream); border-color: var(--c-ink); }
.cta-banner .btn-dark:hover { background: #000; transform: translateY(-2px); }
.cta-banner .btn-outline-dark { background: transparent; border: 1.5px solid var(--c-ink); color: var(--c-ink); }
.cta-banner .btn-outline-dark:hover { background: var(--c-ink); color: var(--c-cream); }

/* ============================================================
   FEATURE STRIP (full bleed dark)
   ============================================================ */
.bleed { position: relative; min-height: clamp(440px, 64vh, 640px); display: grid; place-items: center; overflow: hidden; isolation: isolate; }
.bleed > img { position: absolute; inset: 0; width: 100%; height: 120%; object-fit: cover; z-index: -2; will-change: transform; filter: grayscale(0.3) contrast(1.06); }
.bleed::after { content:""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(120deg, rgba(26,26,26,0.78), rgba(26,26,26,0.42)); }
.bleed .bleed-inner { text-align: center; color: var(--c-cream); padding: 0 var(--gap-lg); max-width: 760px; }
.bleed .bleed-inner h2 { color: #fff; font-size: clamp(2.3rem, 5.5vw, 4.4rem); }
.bleed .bleed-inner .eyebrow { color: var(--c-coral); }
.bleed .bleed-inner p { color: rgba(247,245,242,0.9); font-size: 1.12rem; max-width: 50ch; margin: 0 auto var(--gap-lg); }

/* ============================================================
   PAGE-HERO (sub-pages)
   ============================================================ */
.page-hero { position: relative; display: grid; grid-template-columns: 1.15fr 0.85fr; min-height: clamp(320px, 46vh, 480px); background: var(--c-bg); overflow: hidden; border-bottom: 3px solid var(--c-ink); }
.page-hero-text { position: relative; z-index: 1; display: flex; flex-direction: column; justify-content: center; padding: clamp(2rem,5vw,4rem) clamp(1.5rem,5vw,4.5rem); background: radial-gradient(110% 100% at 5% 12%, rgba(255,106,61,0.1), transparent 55%), var(--c-bg); }
.page-hero-text h1 { font-size: clamp(2.6rem, 5.5vw, 4.6rem); text-transform: none; }
.page-hero-text p { color: var(--c-text-mute); max-width: 44ch; }
.page-hero-media { position: relative; overflow: hidden; background: var(--c-ink); }
.page-hero-media::before { content:""; position:absolute; left:0; top:0; bottom:0; width:5px; background: var(--c-coral); z-index: 2; }
.page-hero-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transform: scale(1.06); animation: km-zoom 18s ease-in-out infinite alternate; }
.page-hero-media::after { content:""; position:absolute; inset:0; background: linear-gradient(0deg, rgba(26,26,26,0.35), transparent 45%); }
@media (max-width: 820px) {
  .page-hero { grid-template-columns: 1fr; min-height: 0; }
  .page-hero-media { min-height: 220px; order: -1; }
  .page-hero-text { padding: var(--gap-xl) var(--gap-md) var(--gap-lg); }
  .page-hero-text h1 { font-size: clamp(2.4rem,10vw,3.4rem); }
}

/* ============================================================
   SERVICE GROUPS (leistungen page)
   ============================================================ */
.svc-group { padding: var(--gap-xl) 0; border-top: 1.5px solid var(--c-rule); }
.svc-group:first-of-type { border-top: 0; }
.svc-group-label { display: inline-flex; align-items: center; gap: 14px; margin-bottom: var(--gap-lg); }
.svc-group-label .num { font-family: var(--f-display); font-weight: 700; font-size: 1.05rem; color: var(--c-ink); background: var(--c-coral); width: 40px; height: 40px; border-radius: var(--radius); display: grid; place-items: center; }
.svc-group-label h2 { margin: 0; font-size: clamp(1.9rem,3vw,2.6rem); }
.svc-items { display: grid; gap: var(--gap-2xl); }

/* ============================================================
   STORY block (team page)
   ============================================================ */
.story-split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4.5rem); align-items: center; }
@media (max-width: 820px) { .story-split { grid-template-columns: 1fr; gap: var(--gap-lg); } }
.story-photo { position: relative; border-radius: var(--radius); overflow: hidden; border: 1.5px solid var(--c-ink); box-shadow: var(--shadow-soft); }
.story-photo img { width: 100%; aspect-ratio: 4/4.4; object-fit: cover; filter: grayscale(0.2) contrast(1.05); }
.story-photo .year-stamp { position: absolute; bottom: 16px; right: 16px; background: var(--c-coral); color: var(--c-ink); font-family: var(--f-display); font-weight: 700; font-size: 1.4rem; padding: 0.5rem 0.9rem; border-radius: var(--radius); }

/* pull quote */
.pullquote { text-align: center; max-width: 820px; margin: 0 auto; }
.pullquote p { font-family: var(--f-display); font-weight: 500; font-size: clamp(1.7rem,3.8vw,2.9rem); line-height: 1.2; color: var(--c-ink); letter-spacing: -0.02em; }
.pullquote p em { color: var(--c-coral-deep); font-style: normal; }
.pullquote .attr { font-family: var(--f-body); font-size: 0.8rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--c-text-faint); margin-top: var(--gap-md); }

/* values grid */
.values { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; border: 1.5px solid var(--c-ink); }
.value { padding: var(--gap-lg); border-right: 1.5px solid var(--c-rule); background: var(--c-paper); }
.value:last-child { border-right: 0; }
.value .vic { font-family: var(--f-display); font-size: 1.6rem; color: var(--c-coral); }
.value h3 { font-size: 1.3rem; margin: var(--gap-sm) 0 8px; }
.value p { color: var(--c-text-mute); font-size: 0.94rem; margin: 0; }
@media (max-width: 760px) { .values { grid-template-columns: 1fr; } .value { border-right: 0; border-bottom: 1.5px solid var(--c-rule); } .value:last-child{border-bottom:0;} }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4rem); align-items: start; }
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; gap: var(--gap-lg); } }
.info-card { background: var(--c-paper); border-radius: var(--radius); padding: var(--gap-lg); border: 1.5px solid var(--c-ink); }
.info-card + .info-card { margin-top: var(--gap-md); }
.info-card h3 { font-size: 1.4rem; margin-bottom: var(--gap-md); }
.info-row { display: flex; gap: 12px; padding: 0.5rem 0; align-items: baseline; }
.info-row .lbl { font-family: var(--f-body); font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--c-text-faint); font-weight: 600; min-width: 88px; }
.info-row .val { color: var(--c-ink); }
.info-row a.val { border-bottom: 1.5px solid var(--c-coral); transition: color .2s; }
.info-row a.val:hover { color: var(--c-coral-deep); }
.hours-table { width: 100%; border-collapse: collapse; font-family: var(--f-body); }
.hours-table td { padding: 0.55rem 0; border-bottom: 1px solid var(--c-rule-soft); font-size: 0.95rem; }
.hours-table tr:last-child td { border-bottom: 0; }
.hours-table td:last-child { text-align: right; color: var(--c-ink); font-weight: 500; }
.hours-table tr.closed td { color: var(--c-text-faint); }
.hours-table tr.today td { color: var(--c-coral-deep); font-weight: 700; }
.hours-table tr.today td:first-child::before { content:"● "; color: var(--c-coral); }
.map-card { display: block; position: relative; border-radius: var(--radius); overflow: hidden; border: 1.5px solid var(--c-ink); aspect-ratio: 16/9; }
.map-card .map-pin { position: absolute; inset: 0; display: grid; place-items: center; background: var(--c-ink); color: var(--c-cream); text-align: center; transition: background .3s; }
.map-card:hover .map-pin { background: var(--c-coral); color: var(--c-ink); }
.map-card .map-pin .pin-ic { font-size: 2.2rem; margin-bottom: 8px; }
.map-card .map-pin .pin-label { font-family: var(--f-display); font-weight: 600; letter-spacing: 0.02em; }
.map-card .map-pin .pin-sub { font-size: 0.8rem; opacity: 0.9; margin-top: 4px; }

/* anfahrt grid */
.anfahrt-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: var(--gap-md); }
.anfahrt-item { background: var(--c-paper); border: 1.5px solid var(--c-ink); border-radius: var(--radius); padding: var(--gap-md); }
.anfahrt-item .ai-ic { font-size: 1.5rem; }
.anfahrt-item .ai-lbl { font-family: var(--f-body); font-size: 0.66rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--c-coral-deep); font-weight: 600; margin: 8px 0 4px; }
.anfahrt-item .ai-val { font-family: var(--f-display); font-weight: 600; font-size: 1rem; color: var(--c-ink); }
@media (max-width: 820px) { .anfahrt-grid { grid-template-columns: 1fr 1fr; } }

/* form */
.form-grid { display: grid; gap: var(--gap-md); }
.form-grid .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--gap-md); }
@media (max-width: 520px) { .form-grid .row2 { grid-template-columns: 1fr; } }
.field label { display: block; font-family: var(--f-body); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--c-text-faint); font-weight: 600; margin-bottom: 6px; }
.field input, .field textarea, .field select {
  width: 100%; font-family: var(--f-body); font-size: 0.95rem; color: var(--c-ink);
  background: var(--c-bg); border: 1.5px solid var(--c-rule); border-radius: var(--radius);
  padding: 0.7rem 0.9rem; transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--c-coral); box-shadow: 0 0 0 3px rgba(255,106,61,0.22); }
.field textarea { resize: vertical; min-height: 110px; }
.form-note { font-size: 0.78rem; color: var(--c-text-faint); }

/* ============================================================
   LEGAL pages
   ============================================================ */
.legal { max-width: 780px; }
.legal h1 { font-size: clamp(2.2rem,4vw,3.2rem); margin-bottom: var(--gap-lg); }
.legal h2 { font-size: 1.4rem; margin-top: var(--gap-xl); }
.legal p, .legal li { color: var(--c-text-mute); }
.legal ul { padding-left: 1.2rem; }
.legal-flag { background: var(--c-coral-soft); border: 1.5px solid var(--c-coral); border-radius: var(--radius); padding: var(--gap-md); margin-bottom: var(--gap-xl); color: var(--c-ink); }
.legal-flag b { color: var(--c-coral-deep); }
.legal a { color: var(--c-coral-deep); border-bottom: 1.5px solid var(--c-coral); }

/* ============================================================
   helpers
   ============================================================ */
.bg-surface { background: var(--c-bg-2); }
.bg-ink { background: var(--c-ink); color: var(--c-cream); }
.bg-ink h2, .bg-ink h3 { color: var(--c-cream); }
.bg-ink .tag { color: var(--c-coral); }
.bg-ink p { color: var(--c-cream-mute); }
