/* =========================================================================
   Haarstudio Tülay Hofbauer – Styles
   Lokale Schriften, warme Premium-Palette, Mobile-First.
   ========================================================================= */

/* ---------- Lokale Schriften (kein externes CDN) ---------- */
@font-face {
  font-family: 'Inter';
  src: url('assets/fonts/inter-var.woff2') format('woff2');
  font-weight: 300 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Playfair Display';
  src: url('assets/fonts/playfair-var.woff2') format('woff2');
  font-weight: 400 800;
  font-style: normal;
  font-display: swap;
}

/* ---------- Design-Tokens ---------- */
:root {
  --ink: #241c18;
  --ink-soft: #5e524b;
  --ink-faint: #8a7d73;
  --bg: #f6f1eb;
  --bg-alt: #efe6db;
  --surface: #ffffff;
  --surface-warm: #fbf7f1;
  --brand: #2e2022;        /* tiefes Espresso – Primäraktionen */
  --brand-700: #3d2c2e;
  --accent: #b07a56;       /* Bronze – Akzente */
  --accent-deep: #8c5c3c;
  --rose: #c9a7a0;
  --line: #e4d7c8;
  --line-soft: #ece2d5;

  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 26px;
  --shadow-sm: 0 1px 2px rgba(46, 32, 34, .05), 0 2px 8px rgba(46, 32, 34, .04);
  --shadow: 0 6px 20px rgba(46, 32, 34, .08), 0 2px 6px rgba(46, 32, 34, .05);
  --shadow-lg: 0 24px 60px rgba(46, 32, 34, .14), 0 8px 24px rgba(46, 32, 34, .08);

  --container: 1160px;
  --container-narrow: 780px;
  --pad: clamp(1.1rem, 5vw, 2rem);
  --header-h: 72px;

  --ease: cubic-bezier(.4, 0, .2, 1);
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-head: 'Playfair Display', Georgia, 'Times New Roman', serif;
}

/* ---------- Reset / Basis ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html:focus-within { scroll-padding-top: calc(var(--header-h) + 16px); }

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

h1, h2, h3 { font-family: var(--font-head); font-weight: 600; line-height: 1.12; letter-spacing: -.01em; color: var(--ink); }
h1 { font-size: clamp(2.35rem, 7vw, 4rem); }
h2 { font-size: clamp(1.8rem, 4.6vw, 2.85rem); }
h3 { font-size: 1.25rem; line-height: 1.25; }

::selection { background: var(--accent); color: #fff; }

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute; left: 12px; top: -60px;
  background: var(--brand); color: #fff; padding: 10px 16px;
  border-radius: 8px; z-index: 200; transition: top .2s var(--ease);
}
.skip-link:focus { top: 12px; }

/* ---------- Layout-Helfer ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--pad); }
.container-narrow { max-width: var(--container-narrow); }
.section { padding-block: clamp(3.5rem, 9vw, 6.5rem); }
.section-alt { background: var(--bg-alt); }
.muted { color: var(--ink-faint); }

.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-size: .8rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent-deep); margin-bottom: 1rem;
}
.eyebrow-dot { width: 22px; height: 1px; background: var(--accent); display: inline-block; }

.section-head { max-width: 640px; margin-bottom: clamp(2rem, 5vw, 3.25rem); }
.section-head.reveal { text-align: left; }
.section-intro { margin-top: .9rem; color: var(--ink-soft); font-size: 1.1rem; }

.note-line {
  display: flex; align-items: center; gap: .6rem;
  margin-top: 1.6rem; color: var(--ink-soft); font-size: .98rem;
}
.note-line .ico { width: 20px; height: 20px; fill: var(--accent); flex: none; }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--brand); --btn-fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  min-height: 48px; padding: .8rem 1.4rem;
  background: var(--btn-bg); color: var(--btn-fg);
  border: 1px solid transparent; border-radius: 100px;
  font-size: .98rem; font-weight: 600; letter-spacing: .01em;
  transition: transform .18s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease), color .2s var(--ease);
  will-change: transform;
}
.btn .ico { width: 18px; height: 18px; fill: currentColor; }
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn:active { transform: translateY(0); }
.btn-lg { min-height: 54px; padding: 1rem 1.8rem; font-size: 1.02rem; }
.btn-block { width: 100%; }

.btn-primary { background: var(--brand); color: #fff; }
.btn-primary:hover { background: var(--brand-700); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent-deep); box-shadow: none; }
.btn-ghost { background: transparent; color: var(--ink); }
.btn-ghost:hover { background: rgba(46,32,34,.06); box-shadow: none; }
.btn-light { background: #fff; color: var(--brand); }
.btn-light:hover { background: #fff; }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn-outline-light:hover { border-color: #fff; background: rgba(255,255,255,.1); box-shadow: none; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(246, 241, 235, .8);
  backdrop-filter: saturate(1.4) blur(14px);
  -webkit-backdrop-filter: saturate(1.4) blur(14px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .3s var(--ease), background .3s var(--ease), border-color .3s var(--ease);
}
.site-header.is-scrolled {
  background: rgba(246, 241, 235, .92);
  box-shadow: 0 1px 0 rgba(46,32,34,.06), 0 8px 24px rgba(46,32,34,.05);
  border-color: var(--line-soft);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: var(--header-h); }

.brand { display: inline-flex; align-items: center; gap: .7rem; }
.brand-mark { border-radius: 50%; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-family: var(--font-head); font-size: 1.18rem; font-weight: 600; color: var(--ink); }
.brand-sub { font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-faint); }

.nav-desktop { display: none; }
.header-actions { display: flex; align-items: center; gap: .6rem; }
.header-call { display: none; }

/* Burger */
.burger {
  width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 12px;
  background: var(--surface); display: inline-flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 5px;
}
.burger span { width: 20px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .3s var(--ease), opacity .2s var(--ease); }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobiles Menü */
.mobile-nav {
  position: fixed; top: var(--header-h); left: 0; right: 0; z-index: 99;
  background: var(--surface); border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  padding: 1rem var(--pad) 1.5rem;
  transform: translateY(-12px); opacity: 0; visibility: hidden; pointer-events: none;
  transition: transform .28s var(--ease), opacity .28s var(--ease), visibility 0s linear .28s;
  max-height: calc(100dvh - var(--header-h)); overflow-y: auto;
}
.mobile-nav.is-open {
  transform: translateY(0); opacity: 1; visibility: visible; pointer-events: auto;
  transition: transform .28s var(--ease), opacity .28s var(--ease), visibility 0s;
}
.mobile-nav nav { display: flex; flex-direction: column; }
.mobile-nav nav a {
  padding: .95rem .25rem; font-size: 1.1rem; font-weight: 500;
  border-bottom: 1px solid var(--line-soft); color: var(--ink);
}
.mobile-nav nav a:active { color: var(--accent-deep); }
.mobile-nav-actions { display: grid; gap: .6rem; margin-top: 1.2rem; }

.scrim {
  position: fixed; inset: 0; z-index: 98;
  background: rgba(36, 28, 24, .45); backdrop-filter: blur(2px);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .28s var(--ease), visibility 0s linear .28s;
}
.scrim.is-open { opacity: 1; visibility: visible; pointer-events: auto; transition: opacity .28s var(--ease), visibility 0s; }

/* ---------- Hero ---------- */
.hero { position: relative; padding-block: clamp(2.5rem, 7vw, 5rem) clamp(3rem, 8vw, 5.5rem); overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(60% 55% at 85% 8%, rgba(176,122,86,.14), transparent 60%),
    radial-gradient(50% 45% at 5% 85%, rgba(201,167,160,.16), transparent 60%);
}
.hero-grid { display: grid; gap: clamp(2rem, 5vw, 3.5rem); align-items: center; }
.hero-copy { max-width: 620px; }
.hero-lead { margin-top: 1.25rem; font-size: 1.18rem; color: var(--ink-soft); max-width: 34ch; }
.hero h1 { margin-top: .3rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }
.hero-trust { display: flex; align-items: center; gap: .8rem; margin-top: 2.2rem; flex-wrap: wrap; }
.hero-trust p { font-size: .95rem; color: var(--ink-soft); }
.stars { color: var(--accent); letter-spacing: 2px; font-size: 1.05rem; }

.hero-media { position: relative; }
.hero-img {
  width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5; object-fit: cover;
}
.hero-badge {
  position: absolute; left: -14px; bottom: 26px;
  background: var(--surface); border-radius: var(--radius); box-shadow: var(--shadow-lg);
  padding: .85rem 1.1rem; display: flex; align-items: center; gap: .7rem;
  border: 1px solid var(--line-soft);
}
.hero-badge-num { font-family: var(--font-head); font-size: 2rem; font-weight: 700; color: var(--brand); line-height: 1; }
.hero-badge-label { font-size: .72rem; line-height: 1.2; color: var(--ink-faint); text-transform: uppercase; letter-spacing: .04em; }

/* ---------- Trust-Leiste ---------- */
.trustbar { background: var(--brand); color: #f3e9df; }
.trustbar-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.1rem 1rem; padding-block: 1.6rem; }
.trust-item { display: flex; align-items: center; gap: .65rem; font-size: .98rem; }
.trust-item strong { color: #fff; }
.trust-item .ico { width: 22px; height: 22px; fill: var(--accent); flex: none; }

/* ---------- Karten-Raster ---------- */
.cards-3 { display: grid; gap: 1.3rem; grid-template-columns: 1fr; }

.service-card {
  background: var(--surface); border: 1px solid var(--line-soft);
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-media { aspect-ratio: 9 / 7; overflow: hidden; }
.service-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.service-card:hover .service-media img { transform: scale(1.05); }
.service-body { padding: 1.3rem 1.4rem 1.5rem; }
.service-body h3 { margin-bottom: .5rem; }
.service-body p { color: var(--ink-soft); font-size: 1rem; }

.service-tags { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.8rem; }
.service-tags li {
  background: var(--surface-warm); border: 1px solid var(--line);
  padding: .55rem 1rem; border-radius: 100px; font-size: .92rem; color: var(--ink-soft);
}

/* ---------- Über uns ---------- */
.about-grid { display: grid; gap: clamp(2rem, 5vw, 3.5rem); align-items: center; }
.about-media img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); aspect-ratio: 4/5; object-fit: cover; }
.about-copy p { color: var(--ink-soft); margin-top: 1rem; }
.about-copy h2 + p { margin-top: 1.2rem; }
.checklist { display: grid; gap: .7rem; margin: 1.6rem 0 2rem; }
.checklist li { position: relative; padding-left: 2rem; color: var(--ink); }
.checklist li::before {
  content: ""; position: absolute; left: 0; top: .18em;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--accent);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 16.2l-3.5-3.5L4 14.2 9 19l11-11-1.5-1.5z'/%3E%3C/svg%3E") center/13px no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 16.2l-3.5-3.5L4 14.2 9 19l11-11-1.5-1.5z'/%3E%3C/svg%3E") center/13px no-repeat;
}

/* ---------- Vorteile ---------- */
.benefits { gap: 1.1rem; }
.benefit {
  background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--radius);
  padding: 1.6rem 1.5rem; box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.benefit:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--line); }
.benefit-ico {
  display: inline-flex; width: 52px; height: 52px; border-radius: 14px;
  background: linear-gradient(135deg, rgba(176,122,86,.16), rgba(201,167,160,.16));
  align-items: center; justify-content: center; margin-bottom: 1rem;
}
.benefit-ico svg { width: 26px; height: 26px; fill: none; stroke: var(--accent-deep); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.benefit h3 { margin-bottom: .5rem; }
.benefit p { color: var(--ink-soft); font-size: 1rem; }

/* ---------- Ablauf ---------- */
.steps { display: grid; gap: 1.1rem; grid-template-columns: 1fr; counter-reset: step; }
.step {
  position: relative; background: var(--surface); border: 1px solid var(--line-soft);
  border-radius: var(--radius); padding: 1.5rem 1.5rem 1.6rem; box-shadow: var(--shadow-sm);
}
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--brand); color: #fff; font-family: var(--font-head);
  font-size: 1.25rem; font-weight: 600; margin-bottom: 1rem;
}
.step h3 { margin-bottom: .45rem; }
.step p { color: var(--ink-soft); font-size: 1rem; }

/* ---------- Stimmen ---------- */
.quote {
  background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--radius);
  padding: 1.7rem 1.6rem; box-shadow: var(--shadow-sm);
}
.quote blockquote { font-family: var(--font-head); font-size: 1.24rem; line-height: 1.4; margin: .8rem 0 1rem; color: var(--ink); }
.quote figcaption { color: var(--ink-faint); font-size: .92rem; font-weight: 500; }

.gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: .8rem; margin-top: 2rem; }
.gallery img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-sm); aspect-ratio: 4/5; object-fit: cover; }

/* ---------- Standort ---------- */
.standort-grid { display: grid; gap: clamp(2rem, 5vw, 3rem); align-items: center; }
.address-block { margin: 1.4rem 0; }
.address-block p { margin-top: .5rem; color: var(--ink-soft); }
.address-block a { color: var(--accent-deep); font-weight: 600; }
.hours { margin: 1.4rem 0 1.8rem; }
.hours h3 { margin-bottom: .6rem; }
.hours-note {
  display: flex; gap: .6rem; align-items: flex-start; color: var(--ink-soft);
  background: var(--surface-warm); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: .9rem 1rem; font-size: .96rem;
}
.hours-note .ico { width: 22px; height: 22px; fill: var(--accent); flex: none; margin-top: 1px; }
.standort-map { position: relative; }
.standort-map img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow); aspect-ratio: 16/9; object-fit: cover; }
.map-pin {
  position: absolute; top: 46%; left: 50%; width: 18px; height: 18px; margin: -9px 0 0 -9px;
  background: var(--accent); border: 3px solid #fff; border-radius: 50%; box-shadow: var(--shadow);
}
.map-pin::after {
  content: ""; position: absolute; inset: -8px; border-radius: 50%;
  border: 2px solid var(--accent); opacity: .5; animation: ping 2.4s var(--ease) infinite;
}
@keyframes ping { 0% { transform: scale(.6); opacity: .6; } 100% { transform: scale(2.2); opacity: 0; } }

/* ---------- Accordion / FAQ ---------- */
.accordion { display: grid; gap: .8rem; }
.acc-item { background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.acc-trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.15rem 1.3rem; background: transparent; text-align: left;
  font-size: 1.08rem; font-weight: 600; color: var(--ink); min-height: 56px;
}
.acc-ico { width: 22px; height: 22px; fill: none; stroke: var(--accent-deep); stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; flex: none; transition: transform .3s var(--ease); }
.acc-trigger[aria-expanded="true"] .acc-ico { transform: rotate(180deg); }
.acc-panel { overflow: hidden; height: 0; transition: height .32s var(--ease); }
.acc-inner { padding: 0 1.3rem 1.3rem; color: var(--ink-soft); }
.acc-inner a { color: var(--accent-deep); font-weight: 600; }

/* ---------- Kontakt ---------- */
.section-contact { background: var(--bg-alt); }
.contact-grid { display: grid; gap: clamp(2rem, 5vw, 3.5rem); align-items: start; }
.contact-copy p { color: var(--ink-soft); margin-top: 1rem; }
.contact-list { display: grid; gap: 1rem; margin-top: 1.8rem; }
.contact-list li { display: flex; align-items: center; gap: .8rem; color: var(--ink); }
.contact-list .ico { width: 22px; height: 22px; fill: var(--accent-deep); flex: none; }
.contact-list a { color: var(--ink); font-weight: 500; }
.contact-list a:hover { color: var(--accent-deep); }

.contact-form {
  background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--radius-lg);
  padding: clamp(1.4rem, 4vw, 2.2rem); box-shadow: var(--shadow);
}
.field { display: grid; gap: .4rem; margin-bottom: 1.1rem; }
.field-row { display: grid; gap: 1.1rem; grid-template-columns: 1fr; }
.field label { font-size: .92rem; font-weight: 600; color: var(--ink); }
.field input, .field textarea {
  font: inherit; color: var(--ink); background: var(--surface-warm);
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: .85rem 1rem; min-height: 48px; width: 100%;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--accent); background: #fff;
  box-shadow: 0 0 0 3px rgba(176,122,86,.16);
}
.field input.invalid, .field textarea.invalid { border-color: #c0392b; box-shadow: 0 0 0 3px rgba(192,57,43,.12); }
.req { color: var(--accent-deep); }
.field-error { color: #b23a2b; font-size: .85rem; }

.field-consent { margin-top: .3rem; }
.consent { display: flex; align-items: flex-start; gap: .7rem; font-weight: 400; font-size: .95rem; color: var(--ink-soft); cursor: pointer; }
.consent input { width: 22px; height: 22px; min-width: 22px; margin-top: 1px; accent-color: var(--brand); cursor: pointer; }
.consent a { color: var(--accent-deep); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }

.form-status { margin-top: 1rem; padding: .9rem 1.1rem; border-radius: var(--radius-sm); font-size: .96rem; }
.form-status.ok { background: #e9f4ec; color: #1f6b3b; border: 1px solid #bfe3ca; }
.form-status.err { background: #fbeae8; color: #a33224; border: 1px solid #f0c6c0; }
.form-hint { margin-top: .9rem; font-size: .82rem; color: var(--ink-faint); }

/* ---------- Finale CTA ---------- */
.cta-band { background: linear-gradient(135deg, var(--brand), var(--brand-700)); color: #fff; }
.cta-band-inner { text-align: center; padding-block: clamp(3rem, 8vw, 5rem); }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.82); margin-top: .8rem; font-size: 1.1rem; }
.cta-band-actions { display: flex; flex-wrap: wrap; gap: .8rem; justify-content: center; margin-top: 2rem; }

/* ---------- Footer ---------- */
.site-footer { background: #201618; color: #cbbfb6; padding-top: clamp(3rem, 7vw, 4.5rem); }
.footer-grid { display: grid; gap: 2.2rem; grid-template-columns: 1fr; }
.footer-brand .brand-name { color: #fff; }
.footer-brand .brand-sub { color: #9a8b81; }
.footer-note { margin-top: 1rem; max-width: 34ch; color: #b3a69c; font-size: .96rem; }
.socials { display: flex; gap: .6rem; margin-top: 1.3rem; }
.social {
  width: 44px; height: 44px; border-radius: 12px; display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  transition: background .2s var(--ease), transform .2s var(--ease);
}
.social svg { width: 22px; height: 22px; fill: #d8ccc3; }
.social:hover { background: var(--accent); transform: translateY(-2px); }
.social:hover svg { fill: #fff; }

.footer-col h3 { color: #fff; font-family: var(--font-body); font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 1rem; }
.footer-col a, .footer-col address { display: block; color: #c1b4aa; padding: .3rem 0; font-size: .98rem; }
.footer-col a:hover { color: var(--accent); }
.footer-col address a { padding: .3rem 0 0; }
.footer-col address a:hover { color: var(--accent); }

.footer-bottom {
  display: flex; flex-direction: column; gap: .6rem; align-items: center; text-align: center;
  margin-top: 2.5rem; padding-block: 1.6rem; border-top: 1px solid rgba(255,255,255,.1);
  font-size: .9rem; color: #9a8b81;
}
.wowobot { color: #22b8e0; font-weight: 600; }
.wowobot:hover { text-decoration: underline; text-underline-offset: 2px; }

/* ---------- Nach-oben-Button ---------- */
.to-top {
  position: fixed; right: 18px; bottom: 18px; z-index: 90;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--brand); color: #fff; display: inline-flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg); opacity: 0; transform: translateY(12px) scale(.9); pointer-events: none;
  transition: opacity .3s var(--ease), transform .3s var(--ease), background .2s var(--ease);
}
.to-top svg { width: 24px; height: 24px; fill: #fff; }
.to-top.is-visible { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.to-top:hover { background: var(--brand-700); }

/* ---------- Reveal-Animationen ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-reveal-delay="1"] { transition-delay: .08s; }
.reveal[data-reveal-delay="2"] { transition-delay: .16s; }
.reveal[data-reveal-delay="3"] { transition-delay: .24s; }

/* =========================================================================
   Responsive
   ========================================================================= */
@media (min-width: 560px) {
  .field-row { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (min-width: 720px) {
  .cards-3 { grid-template-columns: repeat(3, 1fr); }
  .benefits { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .trustbar-grid { grid-template-columns: repeat(4, 1fr); }
  .gallery { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.3fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}

@media (min-width: 900px) {
  :root { --header-h: 80px; }
  .nav-desktop { display: flex; align-items: center; gap: .3rem; }
  .nav-desktop a {
    padding: .55rem .9rem; border-radius: 100px; font-size: .96rem; font-weight: 500; color: var(--ink-soft);
    transition: color .2s var(--ease), background .2s var(--ease);
  }
  .nav-desktop a:hover { color: var(--ink); background: rgba(46,32,34,.05); }
  .header-call { display: inline-flex; }
  .burger { display: none; }
  .mobile-nav, .scrim { display: none !important; }

  .hero-grid { grid-template-columns: 1.05fr .95fr; }
  .about-grid { grid-template-columns: .9fr 1.1fr; }
  .benefits { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: repeat(4, 1fr); }
  .standort-grid { grid-template-columns: 1fr 1.2fr; }
  .contact-grid { grid-template-columns: .85fr 1.15fr; }
  .section-head { margin-bottom: 3.25rem; }
}

@media (min-width: 1100px) {
  .hero-lead { font-size: 1.25rem; }
}

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important; animation-iteration-count: 1 !important;
    transition-duration: .001ms !important; scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .map-pin::after { display: none; }
}

/* ---------- Rechtliche Seiten / 404 ---------- */
.legal h1 { margin-bottom: 1.4rem; }
.legal h2 { font-size: 1.4rem; margin: 2rem 0 .7rem; }
.legal p { color: var(--ink-soft); margin-bottom: .6rem; }
.legal-notice {
  background: var(--surface-warm); border: 1px solid var(--line);
  border-left: 4px solid var(--accent); border-radius: var(--radius-sm);
  padding: 1rem 1.2rem; margin-bottom: 2rem; color: var(--ink-soft);
}
.legal-ph { color: var(--ink); background: var(--surface); border: 1px dashed var(--line);
  border-radius: var(--radius-sm); padding: .9rem 1.1rem; }
.legal-back { margin-top: 2.5rem; }
.legal-back a { color: var(--accent-deep); font-weight: 600; }

.error-page { min-height: 60vh; display: grid; place-items: center; text-align: center; }
.error-page .big { font-family: var(--font-head); font-size: clamp(4rem, 16vw, 8rem); color: var(--accent); line-height: 1; }

/* ---------- Print ---------- */
@media print {
  .site-header, .to-top, .cta-band, .contact-form, .burger, .mobile-nav, .scrim { display: none !important; }
  body { background: #fff; color: #000; }
}
