/* TEMIR Friseursalon — shared design system (Hell + Gold) */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ink:      #17191B;
  --ink-2:    #212427;
  --ink-soft: #33383B;
  --stone:    #F1F0EC;
  --stone-2:  #E7E5DF;
  --paper:    #FBFBF9;
  --gold:     #A9812C;
  --gold-2:   #C7A25A;
  --green:    #37655B;
  --text:     #1B1D1F;
  --muted:    #6C7073;
  --line:     rgba(23,25,27,0.10);
  --line-d:   rgba(241,240,236,0.14);
  --shadow:   0 20px 50px rgba(23,25,27,0.10);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', system-ui, sans-serif;
  color: var(--text);
  background: var(--stone);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
h1,h2,h3,h4 { font-family: 'Bricolage Grotesque', system-ui, sans-serif; font-weight: 600; letter-spacing: -0.01em; }
img { max-width: 100%; display: block; }
a { color: inherit; }

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 1.5rem; }
.eyebrow { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; display: inline-flex; align-items: center; gap: 0.55rem; }
.eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--gold); opacity: 0.7; }
.sec-title { font-size: clamp(1.9rem, 4vw, 2.9rem); line-height: 1.1; color: var(--ink); }
.sec-sub { color: var(--muted); font-size: 1.08rem; max-width: 54ch; margin-top: 0.9rem; }
section { padding: 6rem 0; }

/* buttons */
.btn { display: inline-flex; align-items: center; gap: 0.55rem; font-weight: 700; font-size: 1rem; text-decoration: none; border-radius: 999px; padding: 0.9rem 1.7rem; white-space: nowrap; transition: transform .15s ease, box-shadow .15s ease, background .2s ease, border-color .2s ease, color .2s ease; border: 1.5px solid transparent; cursor: pointer; }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-gold { background: var(--gold-2); color: var(--ink); box-shadow: 0 10px 26px rgba(169,129,44,0.30); }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(169,129,44,0.42); }
.btn-gold:active { transform: translateY(0) scale(0.985); }
.btn-line-light { color: var(--stone); border-color: rgba(241,240,236,0.42); background: rgba(255,255,255,0.04); }
.btn-line-light:hover { border-color: var(--gold-2); color: var(--gold-2); }
.btn-line-dark { color: var(--ink); border-color: rgba(23,25,27,0.22); }
.btn-line-dark:hover { border-color: var(--gold); color: var(--gold); }

/* ── NAV ── */
#nav-sentinel { position: absolute; top: 0; left: 0; width: 1px; height: 1px; }
nav.site-nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; display: flex; justify-content: space-between; align-items: center; height: 72px; padding: 0 1.75rem; background: transparent; border-bottom: 1px solid transparent; transition: background .3s ease, backdrop-filter .3s ease, border-color .3s ease, box-shadow .3s ease; }
nav.site-nav.nav-solid { background: rgba(241,240,236,0.88); backdrop-filter: blur(14px); border-bottom: 1px solid var(--line); box-shadow: 0 6px 24px rgba(23,25,27,0.05); }
.nav-logo { display: flex; align-items: center; line-height: 0; }
.nav-logo img { height: 38px; width: auto; filter: brightness(0) invert(1); transition: filter .3s ease; }
nav.site-nav.nav-solid .nav-logo img { filter: none; }
.nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
.nav-links a { color: rgba(241,240,236,0.86); text-decoration: none; font-weight: 600; font-size: 0.95rem; transition: color .2s ease; }
.nav-links a:hover { color: var(--gold-2); }
nav.site-nav.nav-solid .nav-links a { color: var(--ink-soft); }
nav.site-nav.nav-solid .nav-links a:hover { color: var(--gold); }
.nav-cta { background: var(--gold-2); color: var(--ink) !important; padding: 0.55rem 1.25rem; border-radius: 999px; font-weight: 700 !important; display: inline-flex; align-items: center; gap: 0.45rem; }
.nav-cta svg { width: 15px; height: 15px; }
.nav-cta:hover { background: #d3ae66; color: var(--ink) !important; }
/* nav variant on light subpage heroes: keep light text since hero is dark */

/* ── HERO (home) ── */
#hero { position: relative; min-height: 100dvh; display: flex; align-items: flex-end; overflow: hidden; background: var(--ink); }
.hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero-scrim { position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(100deg, rgba(15,16,18,0.90) 0%, rgba(15,16,18,0.70) 38%, rgba(15,16,18,0.25) 70%, rgba(15,16,18,0.45) 100%),
              linear-gradient(0deg, rgba(15,16,18,0.65) 0%, transparent 45%); }
.hero-inner { position: relative; z-index: 2; width: 100%; padding-bottom: 6.5rem; padding-top: 8rem; }
.hero-eyebrow { color: var(--gold-2); }
.hero-eyebrow::before { background: var(--gold-2); opacity: 0.85; }
.hero-title { font-size: clamp(2.6rem, 6.4vw, 4.6rem); line-height: 1.02; color: #FAF9F6; max-width: 15ch; margin-bottom: 1.3rem; }
.hero-title i { font-style: italic; color: var(--gold-2); }
.hero-sub { color: rgba(250,249,246,0.82); font-size: 1.15rem; max-width: 46ch; margin-bottom: 2.1rem; }
.hero-cta { display: flex; gap: 0.9rem; flex-wrap: wrap; }

/* ── STATS ── */
#stats { background: var(--ink); color: var(--stone); padding: 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: 2.1rem 1.5rem; text-align: center; border-right: 1px solid var(--line-d); }
.stat:last-child { border-right: none; }
.stat-num { font-family: 'Bricolage Grotesque', sans-serif; font-size: 1.9rem; font-weight: 700; color: #FAF9F6; line-height: 1; display: inline-flex; align-items: baseline; gap: 0.3rem; }
.stat-num .star { color: var(--gold-2); font-size: 1.35rem; }
.stat-label { font-size: 0.86rem; color: rgba(241,240,236,0.62); margin-top: 0.5rem; font-weight: 500; }

/* ── PREISE (home) ── */
#leistungen { background: var(--stone); }
.preise-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 3rem; }
.preise-card { background: var(--paper); border-radius: 20px; padding: 2.4rem; border: 1px solid var(--line); }
.preise-card.dark { background: var(--ink); border-color: transparent; }
.preise-head { display: flex; align-items: center; gap: 0.85rem; margin-bottom: 1.6rem; }
.preise-icon { width: 2.9rem; height: 2.9rem; border-radius: 12px; background: rgba(169,129,44,0.12); color: var(--gold); display: grid; place-items: center; flex-shrink: 0; }
.preise-icon svg { width: 22px; height: 22px; }
.preise-card.dark .preise-icon { background: rgba(199,162,90,0.16); color: var(--gold-2); }
.preise-head h3 { font-size: 1.5rem; color: var(--ink); }
.preise-card.dark .preise-head h3 { color: var(--paper); }
.preise-item { display: flex; justify-content: space-between; align-items: baseline; padding: 0.72rem 0; gap: 1rem; border-bottom: 1px solid var(--line); }
.preise-card.dark .preise-item { border-bottom-color: var(--line-d); }
.preise-item:last-of-type { border-bottom: none; }
.preise-name { font-weight: 600; font-size: 0.98rem; color: var(--text); }
.preise-card.dark .preise-name { color: #E7E3DB; }
.preise-name small { display: block; font-size: 0.78rem; color: var(--muted); font-weight: 500; }
.preise-card.dark .preise-name small { color: #9aa09c; }
.preise-price { font-weight: 700; white-space: nowrap; color: var(--gold); font-size: 1rem; font-family: 'Bricolage Grotesque', sans-serif; }
.preise-card.dark .preise-price { color: var(--gold-2); }
.preise-foot { margin-top: 1.1rem; font-size: 0.82rem; color: var(--muted); }
.preise-card.dark .preise-foot { color: #9aa09c; }

/* ── SALON GALLERY ── */
#salon { background: var(--stone-2); }
.salon-head { max-width: 60ch; margin-bottom: 3rem; }
.gallery { display: grid; grid-template-columns: 1.4fr 1fr; grid-template-rows: repeat(2, 1fr); gap: 1rem; }
.gallery figure { position: relative; overflow: hidden; border-radius: 18px; background: var(--ink); }
.gallery img { width: 100%; height: 100%; object-fit: cover; object-position: center 32%; transition: transform .7s cubic-bezier(.16,1,.3,1); }
.gallery figure:hover img { transform: scale(1.05); }
.g-tall { grid-row: span 2; }
.g-cap { position: absolute; left: 1rem; bottom: 0.9rem; z-index: 2; color: #FAF9F6; font-size: 0.9rem; font-weight: 600; text-shadow: 0 1px 10px rgba(0,0,0,0.6); }
.gallery figure::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(15,16,18,0.55), transparent 45%); z-index: 1; }

/* ── ÜBER (home) ── */
#ueber { background: var(--stone); }
.ueber-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 3.5rem; align-items: center; }
.ueber-photo { position: relative; border-radius: 22px; overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4/5; }
.ueber-photo img { width: 100%; height: 100%; object-fit: cover; }
.ueber-badge { position: absolute; left: 1.1rem; bottom: 1.1rem; z-index: 2; display: flex; align-items: center; gap: 0.85rem; background: rgba(23,25,27,0.82); backdrop-filter: blur(8px); border: 1px solid rgba(199,162,90,0.35); border-radius: 16px; padding: 0.9rem 1.15rem; }
.ueber-badge-score { font-family: 'Bricolage Grotesque', sans-serif; font-size: 2.1rem; font-weight: 700; color: #FAF9F6; line-height: 1; }
.ueber-badge-stars { color: var(--gold-2); font-size: 0.95rem; letter-spacing: 1px; }
.ueber-badge-text { color: rgba(241,240,236,0.72); font-size: 0.8rem; font-weight: 600; margin-top: 0.15rem; }
.ueber-text p { color: var(--ink-soft); font-size: 1.1rem; margin-bottom: 1.1rem; }
.ueber-pills { display: flex; flex-wrap: wrap; gap: 0.65rem; margin-top: 1.75rem; }
.pill { background: var(--paper); border: 1px solid var(--line); padding: 0.5rem 1.05rem; border-radius: 999px; font-weight: 600; font-size: 0.88rem; color: var(--ink); display: inline-flex; align-items: center; gap: 0.45rem; }
.pill svg { color: var(--gold); width: 15px; height: 15px; flex-shrink: 0; }

/* ── SERVICE CARDS (home) ── */
#services { background: var(--ink); color: var(--stone); }
#services .sec-title { color: #FAF9F6; }
#services .sec-sub { color: rgba(241,240,236,0.66); }
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.15rem; margin-top: 3rem; }
.svc-card { position: relative; border-radius: 18px; overflow: hidden; text-decoration: none; display: block; aspect-ratio: 1/1; background: var(--ink-2); }
.svc-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.16,1,.3,1); }
.svc-card:hover img { transform: scale(1.06); }
.svc-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(15,16,18,0.92) 8%, rgba(15,16,18,0.35) 45%, rgba(15,16,18,0.15) 100%); }
.svc-body { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 1.4rem; }
.svc-body h3 { color: #FAF9F6; font-size: 1.25rem; margin-bottom: 0.2rem; }
.svc-body .svc-more { display: inline-flex; align-items: center; gap: 0.4rem; color: var(--gold-2); font-weight: 700; font-size: 0.9rem; }
.svc-body .svc-more svg { width: 15px; height: 15px; transition: transform .2s ease; }
.svc-card:hover .svc-more svg { transform: translateX(4px); }

/* ── ÖFFNUNGSZEITEN (dark band) ── */
#zeiten { background: var(--ink-2); color: var(--stone); }
#zeiten .sec-title { color: #FAF9F6; }
#zeiten .eyebrow { color: var(--gold-2); }
#zeiten .eyebrow::before { background: var(--gold-2); }
.zeiten-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 3rem; margin-top: 2.75rem; align-items: center; }
.zeiten-row { display: flex; justify-content: space-between; align-items: center; padding: 0.9rem 0; border-bottom: 1px solid var(--line-d); font-size: 1.05rem; }
.zeiten-row.today { padding-left: 0.9rem; margin-left: -0.9rem; border-left: 2px solid var(--gold-2); background: rgba(199,162,90,0.06); border-radius: 0 6px 6px 0; }
.zeiten-row:last-child { border-bottom: none; }
.zeiten-day { font-weight: 600; color: #E7E3DB; }
.zeiten-time { color: var(--gold-2); font-weight: 700; font-family: 'Bricolage Grotesque', sans-serif; }
.zeiten-time.closed { color: #8b8580; font-weight: 600; }
.zeiten-cta { background: rgba(199,162,90,0.07); border: 1px solid rgba(199,162,90,0.28); border-radius: 20px; padding: 2.4rem 2rem; text-align: center; }
.zeiten-cta .zc-icon { width: 3.2rem; height: 3.2rem; border-radius: 50%; background: rgba(199,162,90,0.14); color: var(--gold-2); display: grid; place-items: center; margin: 0 auto 1rem; }
.zeiten-cta .zc-icon svg { width: 26px; height: 26px; }
.zeiten-cta h3 { font-size: 1.35rem; color: #FAF9F6; margin-bottom: 0.5rem; }
.zeiten-cta p { color: #b8b2ab; font-size: 0.95rem; margin-bottom: 1.5rem; }

/* ── KONTAKT ── */
#kontakt { background: var(--stone); }
.kontakt-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 2.5rem; margin-top: 3rem; align-items: stretch; }
.kontakt-info { display: flex; flex-direction: column; gap: 1rem; }
.kontakt-item { display: flex; gap: 1rem; align-items: flex-start; background: var(--paper); padding: 1.4rem 1.5rem; border-radius: 16px; border: 1px solid var(--line); }
.kontakt-icon { width: 2.6rem; height: 2.6rem; border-radius: 10px; background: rgba(169,129,44,0.12); color: var(--gold); display: grid; place-items: center; flex-shrink: 0; }
.kontakt-icon svg { width: 20px; height: 20px; }
.kontakt-item h3 { font-size: 0.76rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.25rem; font-family: 'DM Sans', sans-serif; }
.kontakt-item p, .kontakt-item a { color: var(--ink); text-decoration: none; font-weight: 600; font-size: 1.02rem; }
.kontakt-item a:hover { color: var(--gold); }
.map-wrap { border-radius: 20px; overflow: hidden; border: 1px solid var(--line); min-height: 420px; box-shadow: var(--shadow); }
.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ── BEWERTUNGEN ── */
#bewertungen { background: var(--stone-2); }
.reviews-top { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.reviews-score { display: flex; align-items: center; gap: 1.1rem; margin-top: 1.5rem; }
.reviews-big { font-family: 'Bricolage Grotesque', sans-serif; font-size: 3.6rem; font-weight: 700; color: var(--ink); line-height: 1; }
.reviews-stars { font-size: 1.4rem; color: var(--gold-2); letter-spacing: 1px; }
.reviews-count { font-size: 0.92rem; color: var(--muted); font-weight: 600; margin-top: 0.15rem; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.15rem; margin-top: 2.75rem; }
.review-card { background: var(--paper); border-radius: 18px; padding: 1.7rem; border: 1px solid var(--line); display: flex; flex-direction: column; gap: 0.85rem; }
.review-head { display: flex; align-items: center; gap: 0.8rem; }
.review-av { width: 2.6rem; height: 2.6rem; border-radius: 50%; display: grid; place-items: center; font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: 1.1rem; color: #FAF9F6; flex-shrink: 0; }
.review-name { font-weight: 700; color: var(--ink); font-size: 0.96rem; }
.review-time { font-size: 0.8rem; color: var(--muted); }
.review-rs { color: var(--gold-2); font-size: 0.95rem; letter-spacing: 1px; }
.review-body { font-size: 0.93rem; color: var(--ink-soft); line-height: 1.62; display: -webkit-box; -webkit-line-clamp: 5; -webkit-box-orient: vertical; overflow: hidden; }
.review-body.open { display: block; }
.review-toggle { background: none; border: none; padding: 0; cursor: pointer; font-size: 0.85rem; font-weight: 700; color: var(--gold); font-family: 'DM Sans', sans-serif; align-self: flex-start; }
.review-toggle:hover { text-decoration: underline; }
.reviews-foot { text-align: center; margin-top: 2.25rem; font-size: 0.92rem; color: var(--muted); }
.reviews-foot a { color: var(--gold); font-weight: 700; text-decoration: none; }
.reviews-foot a:hover { text-decoration: underline; }

/* ── FOOTER ── */
footer { background: var(--ink); color: #b8b2ab; padding: 3.5rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; }
.footer-logo img { height: 40px; filter: brightness(0) invert(1); margin-bottom: 1.1rem; }
.footer-nap { line-height: 1.9; font-size: 0.95rem; }
.footer-nap a { color: var(--gold-2); text-decoration: none; }
.footer-col h4 { color: var(--stone); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 1rem; font-family: 'DM Sans', sans-serif; font-weight: 700; }
.footer-col a { display: block; color: #b8b2ab; text-decoration: none; font-weight: 500; font-size: 0.95rem; padding: 0.28rem 0; transition: color .2s ease; }
.footer-col a:hover { color: var(--gold-2); }
.footer-bottom { margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid var(--line-d); font-size: 0.85rem; text-align: center; color: #8b8580; }

/* ── MOBILE FLOAT ── */
.float-call { display: none; position: fixed; bottom: 1.1rem; right: 1.1rem; z-index: 200; background: var(--gold-2); color: var(--ink); padding: 0.9rem 1.4rem; border-radius: 999px; font-weight: 700; text-decoration: none; box-shadow: 0 10px 28px rgba(169,129,44,0.5); align-items: center; gap: 0.5rem; }
.float-call svg { width: 18px; height: 18px; }

/* ── REVEAL ── */
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1); }
[data-reveal].in { opacity: 1; transform: none; }

/* ===================================================================
   SUBPAGE COMPONENTS (service pages, über-uns, legal)
   =================================================================== */

/* page hero (dark graphite, no photo) */
.page-hero { position: relative; background: var(--ink); overflow: hidden; padding: 9.5rem 0 4.5rem; }
.page-hero::before { content: ""; position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(60% 90% at 82% 0%, rgba(199,162,90,0.14), transparent 60%),
              radial-gradient(50% 70% at 0% 100%, rgba(55,101,91,0.12), transparent 60%); }
.page-hero-inner { position: relative; z-index: 1; max-width: 720px; }
.breadcrumb { font-size: 0.86rem; color: rgba(241,240,236,0.55); margin-bottom: 1.4rem; }
.breadcrumb a { color: var(--gold-2); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.page-hero .eyebrow { color: var(--gold-2); }
.page-hero .eyebrow::before { background: var(--gold-2); opacity: 0.85; }
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); line-height: 1.05; color: #FAF9F6; margin-bottom: 1.1rem; }
.page-hero h1 em, .page-hero h1 i { font-style: italic; color: var(--gold-2); }
.page-hero-sub { font-size: 1.12rem; color: rgba(250,249,246,0.78); margin-bottom: 2rem; max-width: 52ch; }
.page-hero .hero-cta { display: flex; gap: 0.9rem; flex-wrap: wrap; }

/* content article + sticky price card */
.content-section { background: var(--stone); }
.content-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 3.5rem; align-items: start; }
.content-body > .eyebrow { margin-bottom: 0.8rem; }
.content-body h2 { font-size: clamp(1.7rem, 3.4vw, 2.3rem); color: var(--ink); line-height: 1.15; margin-bottom: 1.1rem; }
.content-body h3 { font-size: 1.3rem; color: var(--ink); margin: 2rem 0 0.6rem; }
.content-body p { color: var(--ink-soft); font-size: 1.05rem; margin-bottom: 1.1rem; }
.content-body strong { color: var(--ink); }
.content-body ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; margin: 1.25rem 0; }
.content-body ul li { display: flex; gap: 0.7rem; align-items: flex-start; color: var(--ink-soft); }
.content-body ul li::before { content: ""; width: 18px; height: 18px; margin-top: 0.28rem; flex-shrink: 0; background: var(--gold); -webkit-mask: no-repeat center/contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E"); mask: no-repeat center/contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E"); }

.price-card { background: var(--ink); border-radius: 22px; padding: 2.1rem; position: sticky; top: 6.5rem; }
.price-card-title { font-family: 'Bricolage Grotesque', sans-serif; font-size: 1.3rem; color: #FAF9F6; margin-bottom: 1.4rem; display: flex; align-items: center; gap: 0.6rem; }
.price-card-title svg { width: 22px; height: 22px; color: var(--gold-2); }
.price-item { display: flex; justify-content: space-between; align-items: baseline; padding: 0.68rem 0; border-bottom: 1px solid var(--line-d); gap: 1rem; }
.price-item:last-of-type { border-bottom: none; }
.price-name { font-weight: 600; font-size: 0.96rem; color: #E7E3DB; }
.price-name small { display: block; font-size: 0.78rem; color: #9aa09c; font-weight: 500; }
.price-val { font-weight: 700; color: var(--gold-2); white-space: nowrap; font-family: 'Bricolage Grotesque', sans-serif; }
.price-cta { margin-top: 1.6rem; }
.price-cta a { display: flex; justify-content: center; width: 100%; }

/* USP cards */
.usp-section { background: var(--stone-2); }
.usp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.15rem; margin-top: 2.75rem; }
.usp-card { background: var(--paper); border-radius: 18px; padding: 1.9rem; border: 1px solid var(--line); }
.usp-icon { width: 2.9rem; height: 2.9rem; border-radius: 12px; background: rgba(169,129,44,0.12); color: var(--gold); display: grid; place-items: center; margin-bottom: 1rem; }
.usp-icon svg { width: 22px; height: 22px; }
.usp-card h3 { font-size: 1.1rem; color: var(--ink); margin-bottom: 0.4rem; }
.usp-card p { color: var(--muted); font-size: 0.92rem; }

/* FAQ */
.faq-section { background: var(--stone); }
.faq-list { display: flex; flex-direction: column; gap: 0.85rem; margin-top: 2.75rem; max-width: 800px; }
.faq-item { background: var(--paper); border-radius: 16px; padding: 1.5rem 1.75rem; border: 1px solid var(--line); }
.faq-q { font-weight: 700; font-size: 1.04rem; color: var(--ink); margin-bottom: 0.5rem; font-family: 'Bricolage Grotesque', sans-serif; }
.faq-a { color: var(--ink-soft); font-size: 0.98rem; }

/* related */
.related-section { background: var(--stone-2); }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.15rem; margin-top: 2.75rem; }
.related-card { background: var(--paper); border-radius: 16px; padding: 1.6rem; text-decoration: none; border: 1px solid var(--line); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; display: block; }
.related-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: rgba(169,129,44,0.35); }
.related-icon { width: 2.6rem; height: 2.6rem; border-radius: 10px; background: rgba(169,129,44,0.12); color: var(--gold); display: grid; place-items: center; margin-bottom: 0.9rem; }
.related-icon svg { width: 20px; height: 20px; }
.related-card h3 { font-size: 1.08rem; color: var(--ink); margin-bottom: 0.3rem; }
.related-card p { color: var(--muted); font-size: 0.88rem; }

/* legal (impressum / datenschutz) */
.legal-section { background: var(--stone); }
.legal-body { max-width: 760px; }
.legal-body h2 { font-size: 1.4rem; color: var(--ink); margin: 2rem 0 0.7rem; }
.legal-body h3 { font-size: 1.1rem; color: var(--ink); margin: 1.5rem 0 0.5rem; }
.legal-body p { color: var(--ink-soft); font-size: 1rem; margin-bottom: 1rem; }
.legal-body a { color: var(--gold); text-decoration: none; }
.legal-body a:hover { text-decoration: underline; }

/* kontakt on dark subpage variant reuse: force dark card look */
.kontakt-section { background: var(--ink); }
.kontakt-section .sec-title { color: #FAF9F6; }
.kontakt-section .kontakt-item { background: rgba(255,255,255,0.04); border-color: var(--line-d); }
.kontakt-section .kontakt-icon { background: rgba(199,162,90,0.16); color: var(--gold-2); }
.kontakt-section .kontakt-item h3 { color: #9aa09c; }
.kontakt-section .kontakt-item p, .kontakt-section .kontakt-item a { color: #E7E3DB; }
.kontakt-section .kontakt-item a:hover { color: var(--gold-2); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav-links li:not(:last-child) { display: none; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--line-d); }
  .preise-grid, .ueber-grid, .zeiten-grid, .kontakt-grid, .content-grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .gallery { grid-template-columns: 1fr 1fr; grid-template-rows: none; }
  .g-tall { grid-row: auto; aspect-ratio: 4/5; }
  .gallery figure:not(.g-tall) { aspect-ratio: 4/3; }
  .svc-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .usp-grid, .related-grid { grid-template-columns: 1fr 1fr; }
  .ueber-photo { max-width: 460px; margin: 0 auto; }
  .price-card { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .float-call { display: inline-flex; }
}
@media (max-width: 540px) {
  section { padding: 4.25rem 0; }
  .hero-inner { padding-bottom: 4.5rem; }
  .page-hero { padding: 8rem 0 3.5rem; }
  .svc-grid, .usp-grid, .related-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .preise-card { padding: 1.75rem; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
  .gallery img, .svc-card img { transition: none !important; }
}
