/* =========================================================
   Nail Dreams — styles.css
   Palette: rosé-plum + warmes Messing auf Porzellan
   Mobile-first. Lokale Schriften (DSGVO-konform).
   ========================================================= */

/* ---------- Lokale Schriften ---------- */
@font-face {
  font-family: 'Fraunces';
  src: url('assets/fonts/fraunces-latin.woff2') format('woff2');
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('assets/fonts/inter-latin.woff2') format('woff2');
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}

/* ---------- Design-Tokens ---------- */
:root {
  --bg: #FAF5F2;
  --surface: #FFFFFF;
  --surface-2: #F4E9E4;
  --tint: #F3E6E0;
  --ink: #2A1A20;
  --muted: #6E585F;
  --line: #ECDCD5;
  --line-strong: #E0CCC3;

  --primary: #7A2E4A;
  --primary-600: #5E2038;
  --primary-050: #F5E7EC;
  --rose: #C98A9B;
  --blush: #EAD3CC;
  --gold: #B0895A;
  --gold-soft: #D9BE97;
  --gold-text: #8A6529; /* dunkleres Messing für lesbaren Text (AA-Kontrast) */

  --on-primary: #FFFFFF;

  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --radius-xl: 36px;

  --shadow-sm: 0 1px 2px rgba(42,26,32,.05), 0 2px 8px rgba(42,26,32,.04);
  --shadow: 0 10px 30px -12px rgba(90,32,56,.18), 0 4px 12px -6px rgba(42,26,32,.08);
  --shadow-lg: 0 30px 60px -25px rgba(90,32,56,.30), 0 12px 28px -14px rgba(42,26,32,.12);

  --container: 1180px;
  --gutter: clamp(1.15rem, 4vw, 2.5rem);

  --ease: cubic-bezier(.22,.61,.36,1);
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
}

/* ---------- Reset / Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
html:focus-within { scroll-padding-top: 96px; }

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

img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-600); }
button { font: inherit; cursor: pointer; }
address { font-style: normal; }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.12; letter-spacing: -.01em; color: var(--ink); }

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

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

.skip-link {
  position: absolute; left: 50%; top: -100px; transform: translateX(-50%);
  background: var(--primary); color: #fff; padding: .7rem 1.2rem;
  border-radius: 0 0 12px 12px; z-index: 200; transition: top .2s var(--ease);
}
.skip-link:focus { top: 0; color: #fff; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }

.section { padding-block: clamp(3.5rem, 9vw, 7rem); }
.section--tint { background: linear-gradient(180deg, var(--tint), #F7EDE8); }

.section__head { max-width: 640px; margin-bottom: clamp(2rem, 5vw, 3.25rem); }
.section__title { font-size: clamp(1.85rem, 5vw, 2.9rem); }
.section__lead { margin-top: 1rem; color: var(--muted); font-size: 1.05rem; }

/* ---------- Eyebrow ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--font-body); font-size: .78rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase; color: var(--primary);
  margin-bottom: 1rem;
}
.eyebrow__mark { width: 26px; height: 2px; background: linear-gradient(90deg, var(--gold), var(--gold-soft)); border-radius: 2px; display: inline-block; }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--primary);
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  min-height: 48px; padding: .85rem 1.6rem;
  font-family: var(--font-body); font-weight: 600; font-size: .98rem; line-height: 1;
  border: 1px solid transparent; border-radius: 999px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
  will-change: transform;
}
.btn--sm { min-height: 42px; padding: .6rem 1.2rem; font-size: .9rem; }
.btn--block { width: 100%; }

.btn--primary { background: var(--primary); color: var(--on-primary); box-shadow: var(--shadow); }
.btn--primary:hover { background: var(--primary-600); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn--primary:active { transform: translateY(0); }

.btn--ghost { background: transparent; color: var(--primary); border-color: var(--line-strong); }
.btn--ghost:hover { background: var(--primary-050); color: var(--primary-600); border-color: var(--rose); transform: translateY(-2px); }

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250,245,242,.82);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background .3s var(--ease), box-shadow .3s var(--ease);
}
.site-header[data-scrolled] {
  border-bottom-color: var(--line);
  box-shadow: 0 6px 24px -18px rgba(42,26,32,.4);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 74px; }
.brand img { width: 176px; height: auto; }
.brand:focus-visible { outline-offset: 6px; }

.nav { display: none; }
.nav__list { display: flex; align-items: center; gap: 2rem; list-style: none; padding: 0; }
.nav__list a {
  position: relative; color: var(--ink); font-weight: 500; font-size: .98rem; padding: .25rem 0;
}
.nav__list a::after {
  content: ""; position: absolute; left: 0; bottom: -3px; width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--primary)); border-radius: 2px;
  transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease);
}
.nav__list a:hover { color: var(--primary); }
.nav__list a:hover::after { transform: scaleX(1); }

.header__actions { display: flex; align-items: center; gap: .6rem; }
.header__cta { display: none; }

/* Burger */
.burger {
  display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 46px; height: 46px; padding: 0 11px; border: 1px solid var(--line-strong);
  background: var(--surface); border-radius: 12px;
}
.burger span { display: block; height: 2px; width: 100%; 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); }

/* Mobile nav */
.mobile-nav {
  overflow: hidden;
  border-top: 1px solid var(--line);
  background: rgba(250,245,242,.98);
  max-height: 0;
  transition: max-height .38s var(--ease);
}
.mobile-nav[data-open] { max-height: 82vh; overflow-y: auto; -webkit-overflow-scrolling: touch; }
.mobile-nav nav { padding: 1rem var(--gutter) 1.75rem; }
.mobile-nav ul { list-style: none; padding: 0; margin: 0 0 1rem; }
.mobile-nav li { border-bottom: 1px solid var(--line); }
.mobile-nav ul a {
  display: block; padding: 1rem .25rem; font-family: var(--font-display);
  font-size: 1.3rem; color: var(--ink); font-weight: 500;
}
.mobile-nav ul a:hover { color: var(--primary); }
.mobile-nav__tel {
  display: block; text-align: center; margin-top: 1rem; font-weight: 600; letter-spacing: .02em;
}

/* =========================================================
   HERO
   ========================================================= */
.hero { position: relative; padding-top: clamp(2.5rem, 6vw, 4.5rem); padding-bottom: clamp(3rem, 8vw, 6rem); overflow: hidden; }
.hero__sheen {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(60% 55% at 82% 12%, rgba(217,190,151,.28), transparent 60%),
    radial-gradient(55% 50% at 8% 0%, rgba(201,138,155,.22), transparent 55%),
    radial-gradient(70% 60% at 50% 120%, rgba(122,46,74,.06), transparent 60%);
}
.hero__inner { position: relative; z-index: 1; display: grid; gap: clamp(2rem, 6vw, 3.5rem); align-items: center; }

.hero__title {
  font-size: clamp(2.6rem, 10vw, 4.6rem);
  line-height: 1.02; margin: .4rem 0 1.2rem; letter-spacing: -.02em;
}
.hero__title em { font-style: italic; font-weight: 500; color: var(--primary); }
.hero__lead { color: var(--muted); font-size: clamp(1.02rem, 2.5vw, 1.18rem); max-width: 34ch; }
.hero__cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.8rem; }

.hero__proof {
  display: flex; flex-wrap: wrap; gap: clamp(1.2rem, 5vw, 2.4rem);
  list-style: none; padding: 1.6rem 0 0; margin: 1.8rem 0 0; border-top: 1px solid var(--line);
}
.hero__proof li { display: flex; flex-direction: column; }
.hero__proof strong { font-family: var(--font-display); font-size: 1.5rem; color: var(--ink); line-height: 1; }
.hero__proof span { font-size: .82rem; color: var(--muted); margin-top: .35rem; letter-spacing: .01em; }

.hero__media { position: relative; }
.hero__media img {
  width: 100%; border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,.6);
}
.hero__badge {
  position: absolute; left: -.5rem; bottom: 1.4rem;
  display: flex; align-items: center; gap: .7rem;
  background: var(--surface); border: 1px solid var(--line);
  padding: .8rem 1.05rem; border-radius: 16px; box-shadow: var(--shadow);
  font-size: .82rem; color: var(--ink); max-width: 78%;
}
.hero__badge-stars { color: var(--gold); font-size: 1rem; letter-spacing: 1px; }
.hero__badge small { color: var(--muted); }

/* =========================================================
   TRUST
   ========================================================= */
.trust { padding-bottom: clamp(1rem, 4vw, 2rem); }
.trust__grid { display: grid; gap: 1rem; }
.trust__item {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.6rem; box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.trust__item:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--line-strong); }
.trust__ico {
  display: inline-flex; width: 46px; height: 46px; align-items: center; justify-content: center;
  border-radius: 12px; margin-bottom: 1rem; color: var(--primary);
  background: linear-gradient(135deg, var(--primary-050), #fff); border: 1px solid var(--line);
}
.trust__ico svg { width: 24px; height: 24px; }
.trust__title { font-size: 1.2rem; margin-bottom: .4rem; }
.trust__item p { color: var(--muted); font-size: .96rem; }

/* =========================================================
   LEISTUNGEN (Accordion → Grid)
   ========================================================= */
.svc-grid { display: grid; gap: .9rem; }
.svc {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow-sm);
  overflow: hidden; transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.svc[open] { border-color: var(--line-strong); box-shadow: var(--shadow); }
.svc summary {
  display: flex; align-items: center; gap: 1rem; padding: 1.1rem 1.25rem;
  list-style: none; cursor: pointer; min-height: 44px;
}
.svc summary::-webkit-details-marker { display: none; }
.svc__ico {
  flex: 0 0 auto; display: inline-flex; width: 44px; height: 44px;
  align-items: center; justify-content: center; border-radius: 12px; color: var(--primary);
  background: linear-gradient(135deg, var(--primary-050), #fff); border: 1px solid var(--line);
}
.svc__ico svg { width: 24px; height: 24px; }
.svc__head { display: flex; flex-direction: column; flex: 1 1 auto; }
.svc__name { font-family: var(--font-display); font-weight: 600; font-size: 1.12rem; color: var(--ink); }
.svc__tag { font-size: .82rem; color: var(--muted); margin-top: .1rem; }
.svc__chev {
  flex: 0 0 auto; width: 12px; height: 12px; border-right: 2px solid var(--muted);
  border-bottom: 2px solid var(--muted); transform: rotate(45deg); transition: transform .3s var(--ease);
  margin-right: .3rem;
}
.svc[open] .svc__chev { transform: rotate(-135deg); }
.svc__body { padding: 0 1.25rem 1.35rem; }
.svc__body p { color: var(--muted); font-size: .96rem; }
.svc__list { list-style: none; padding: 0; margin: .9rem 0 0; display: grid; gap: .5rem; }
.svc__list li { position: relative; padding-left: 1.4rem; font-size: .94rem; }
.svc__list li::before {
  content: ""; position: absolute; left: 0; top: .55em; width: 8px; height: 8px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
}
.svc-note { margin-top: 1.6rem; color: var(--muted); font-size: .98rem; }

/* =========================================================
   ÜBER UNS
   ========================================================= */
.about { display: grid; gap: clamp(2rem, 6vw, 3.5rem); align-items: center; }
.about__media { position: relative; }
.about__media img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.about__stamp {
  position: absolute; right: 1rem; top: 1rem;
  display: inline-flex; align-items: center; justify-content: center;
  width: 92px; height: 92px; border-radius: 50%;
  background: var(--primary); color: #fff; font-family: var(--font-display);
  font-size: 1rem; text-align: center; line-height: 1.1; box-shadow: var(--shadow);
  border: 3px solid rgba(255,255,255,.35);
}
.about__copy p { color: var(--muted); margin-top: 1rem; }
.about__copy strong { color: var(--ink); }
.about__copy .btn { margin-top: 1.6rem; }
.pullquote {
  margin: 1.6rem 0; padding: 1.2rem 1.4rem;
  background: var(--surface); border: 1px solid var(--line);
  border-left: 3px solid var(--gold); border-radius: var(--radius-sm); box-shadow: var(--shadow-sm);
}
.pullquote p { font-family: var(--font-display); font-style: italic; font-size: 1.22rem; color: var(--ink); margin: 0; }
.pullquote cite { display: block; margin-top: .6rem; font-style: normal; font-size: .84rem; color: var(--muted); }

/* =========================================================
   WARUM WIR
   ========================================================= */
.why-grid { display: grid; gap: 1rem; }
.why-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.6rem; box-shadow: var(--shadow-sm); position: relative;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--line-strong); }
.why-card__num {
  font-family: var(--font-display); font-size: 1.05rem; font-weight: 600; color: var(--gold);
  display: inline-block; margin-bottom: .7rem; letter-spacing: .04em;
}
.why-card h3 { font-size: 1.22rem; margin-bottom: .45rem; }
.why-card p { color: var(--muted); font-size: .96rem; }

/* =========================================================
   ABLAUF / STEPS
   ========================================================= */
.steps { list-style: none; padding: 0; margin: 0; display: grid; gap: 1rem; counter-reset: none; }
.step {
  position: relative; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.5rem 1.5rem 1.5rem 1.5rem; box-shadow: var(--shadow-sm);
}
.step__num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 50%; margin-bottom: .9rem;
  font-family: var(--font-display); font-size: 1.15rem; font-weight: 600;
  color: #fff; background: linear-gradient(135deg, var(--primary), var(--primary-600));
  box-shadow: var(--shadow-sm);
}
.step h3 { font-size: 1.18rem; margin-bottom: .35rem; }
.step p { color: var(--muted); font-size: .95rem; }

/* =========================================================
   STANDORT
   ========================================================= */
.location { display: grid; gap: 1.4rem; }
.location__map { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); }
.location__map img { width: 100%; }
.location__route { position: absolute; right: 1rem; bottom: 1rem; box-shadow: var(--shadow-lg); }
.location__route svg { width: 18px; height: 18px; }

.info-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem; box-shadow: var(--shadow-sm); }
.info-card h3 { font-size: 1.25rem; margin-bottom: .8rem; }
.info-card address { color: var(--muted); line-height: 1.7; }
.info-card__hint { font-size: .8rem; color: var(--gold-text); margin-top: .5rem; }
.info-card__row { display: flex; justify-content: space-between; gap: 1rem; padding: .7rem 0; border-top: 1px solid var(--line); margin-top: .8rem; }
.info-card__row:first-of-type { margin-top: 1rem; }
.info-card__row span { color: var(--muted); font-size: .9rem; }
.info-card__row a { font-weight: 600; }

.hours { margin-top: 1rem; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); overflow: hidden; }
.hours summary { display: flex; align-items: center; justify-content: space-between; padding: 1.1rem 1.4rem; cursor: pointer; list-style: none; font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; min-height: 44px; }
.hours summary::-webkit-details-marker { display: none; }
.hours__chev { width: 11px; height: 11px; border-right: 2px solid var(--muted); border-bottom: 2px solid var(--muted); transform: rotate(45deg); transition: transform .3s var(--ease); }
.hours[open] .hours__chev { transform: rotate(-135deg); }
.hours__body { padding: 0 1.4rem 1.4rem; }
.hours__placeholder { font-size: .85rem; color: var(--gold-text); margin-bottom: .8rem; }
.hours__table { width: 100%; border-collapse: collapse; font-size: .95rem; }
.hours__table th { text-align: left; font-weight: 500; color: var(--ink); padding: .55rem 0; }
.hours__table td { text-align: right; color: var(--muted); padding: .55rem 0; }
.hours__table tr + tr th, .hours__table tr + tr td { border-top: 1px solid var(--line); }

/* =========================================================
   KONTAKT
   ========================================================= */
.contact { display: grid; gap: clamp(2rem, 6vw, 3rem); align-items: start; }
.contact__intro p { color: var(--muted); }
.contact__channels { list-style: none; padding: 0; margin: 1.6rem 0 0; display: grid; gap: .9rem; }
.contact__channels li { display: flex; align-items: center; gap: .8rem; flex-wrap: wrap; }
.contact__channels small { color: var(--muted); font-size: .78rem; }
.contact__ico { display: inline-flex; width: 40px; height: 40px; align-items: center; justify-content: center; border-radius: 11px; color: var(--primary); background: var(--surface); border: 1px solid var(--line); }
.contact__ico svg { width: 20px; height: 20px; }

.contact__form { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.4rem, 4vw, 2.2rem); box-shadow: var(--shadow); display: grid; gap: 1.1rem; }
.field { display: grid; gap: .4rem; }
.field-row { display: grid; gap: 1.1rem; }
.field label { font-size: .88rem; font-weight: 600; color: var(--ink); }
.req { color: var(--primary); margin-left: .15rem; }
.field input, .field select, .field textarea {
  font: inherit; color: var(--ink); background: var(--bg);
  border: 1px solid var(--line-strong); border-radius: var(--radius-sm);
  padding: .8rem .9rem; 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 select:focus, .field textarea:focus {
  outline: none; border-color: var(--primary); background: #fff;
  box-shadow: 0 0 0 4px var(--primary-050);
}
.field input[aria-invalid="true"], .field textarea[aria-invalid="true"] { border-color: #C0392B; box-shadow: 0 0 0 4px rgba(192,57,43,.1); }

.consent { display: grid; grid-template-columns: auto 1fr; gap: .7rem; align-items: start; font-size: .88rem; color: var(--muted); line-height: 1.5; }
.consent input { width: 22px; height: 22px; margin-top: .1rem; accent-color: var(--primary); flex: 0 0 auto; }
.consent a { font-weight: 600; }

.form-status { font-size: .92rem; font-weight: 600; min-height: 1.2em; }
.form-status[data-state="ok"] { color: #1f7a4d; }
.form-status[data-state="error"] { color: #C0392B; }
.form-hint { font-size: .8rem; color: var(--muted); }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer { background: #24141A; color: #E9DCD6; margin-top: clamp(2rem, 6vw, 4rem); }
.footer__top { display: grid; gap: 2.2rem; padding-block: clamp(2.6rem, 6vw, 3.6rem); }
.footer__brand img { width: 200px; filter: brightness(0) invert(1); opacity: .95; }
.footer__brand p { color: #C4B2AC; font-size: .92rem; margin-top: 1rem; max-width: 34ch; }
.social { display: flex; gap: .6rem; margin-top: 1.2rem; }
.social a {
  display: inline-flex; width: 42px; height: 42px; align-items: center; justify-content: center;
  border-radius: 11px; border: 1px solid rgba(255,255,255,.16); color: #E9DCD6;
  transition: background .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
}
.social a:hover { background: rgba(255,255,255,.08); border-color: var(--gold); color: #fff; transform: translateY(-2px); }
.social svg { width: 20px; height: 20px; }

.footer__col h3 { color: #fff; font-size: 1.05rem; margin-bottom: .9rem; }
.footer__col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .55rem; }
.footer__col a { color: #C4B2AC; font-size: .94rem; }
.footer__col a:hover { color: #fff; }
.footer__contact address { color: #C4B2AC; font-size: .94rem; line-height: 1.8; }
.footer__contact a { color: #C4B2AC; }
.footer__contact a:hover { color: #fff; }

.footer__bar { border-top: 1px solid rgba(255,255,255,.12); }
.footer__bar-inner { display: flex; flex-direction: column; align-items: center; gap: .5rem; padding-block: 1.3rem; text-align: center; }
.footer__copy { color: #9B8880; font-size: .84rem; }
.footer__powered { font-size: .84rem; color: #9B8880; }
.footer__powered a { color: #22b8e0; font-weight: 600; }
.footer__powered a:hover { color: #4fcbeb; }

/* =========================================================
   RECHTLICHE SEITEN
   ========================================================= */
.legal { max-width: 760px; }
.legal h1 { margin-bottom: 1.5rem; }
.legal h2 { font-size: 1.3rem; margin: 2rem 0 .6rem; }
.legal p { color: var(--muted); margin-bottom: .6rem; }
.legal em { color: var(--gold-text); font-style: italic; }
.legal__notice {
  background: var(--primary-050); border: 1px solid var(--rose); border-left: 4px solid var(--primary);
  border-radius: var(--radius-sm); padding: 1rem 1.2rem; margin-bottom: 1.5rem; font-size: .92rem; color: var(--ink);
}
.legal__notice strong { color: var(--primary); }
.legal__updated { margin-top: 2rem; font-size: .85rem; }

/* =========================================================
   REVEAL-ANIMATIONEN
   ========================================================= */
[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-reveal].is-visible { opacity: 1; transform: none; }

/* =========================================================
   BREAKPOINTS
   ========================================================= */
@media (min-width: 600px) {
  .trust__grid { grid-template-columns: repeat(3, 1fr); }
  .field-row { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1.6fr 1fr 1fr 1fr; }
}

@media (min-width: 860px) {
  .hero__inner { grid-template-columns: 1.05fr .95fr; }
  .hero__lead { max-width: 40ch; }
  .about { grid-template-columns: .9fr 1.1fr; }
  .location { grid-template-columns: 1.5fr 1fr; align-items: start; }
  .contact { grid-template-columns: 1fr 1.15fr; }
  .why-grid { grid-template-columns: repeat(4, 1fr); }
  .steps { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 940px) {
  .nav { display: block; }
  .header__cta { display: inline-flex; }
  .burger { display: none; }

  /* Leistungen: Accordion → offenes Grid auf Desktop */
  .svc-grid { grid-template-columns: repeat(3, 1fr); gap: 1.1rem; align-items: start; }
  .svc summary { cursor: default; }
  .svc__chev { display: none; }
  .svc__body { display: block !important; }
  .svc { box-shadow: var(--shadow-sm); }

  .footer__bar-inner { flex-direction: row; justify-content: space-between; text-align: left; }
}

@media (min-width: 1040px) {
  .about { grid-template-columns: 1fr 1.1fr; gap: 4rem; }
}

/* =========================================================
   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; }
  [data-reveal] { opacity: 1; transform: none; }
}
