/* =========================================================
   Kosmetikstudio Primavera – Stylesheet
   Mobile First · Premium · DSGVO-freundlich (lokale Schriften)
   ========================================================= */

:root {
  /* Warme, elegante Farbwelt (Beauty / Spa) */
  --bg:        #FBF7F3;   /* warmes Elfenbein */
  --bg-alt:    #F5ECE4;   /* sanfter Nude-Ton */
  --surface:   #FFFFFF;
  --ink:       #2E2429;   /* tiefes Espresso-Plum */
  --ink-soft:  #6C5B60;   /* gedämpfter Text */
  --brand:     #B26E7A;   /* Altrosa / Rosé */
  --brand-deep:#8A5560;   /* tiefes Rosé (CTA / Hover) */
  --brand-tint:#F3E4E4;   /* zartes Rosé-Flächen */
  --gold:      #C4A265;   /* Champagner-Akzent */
  --muted:     #F1E7E0;
  --border:    #E9DDD4;
  --ring:      #8A5560;

  --wowobot:   #22b8e0;

  --font-head: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --maxw: 1180px;
  --radius: 18px;
  --radius-lg: 26px;
  --radius-sm: 12px;

  --shadow-sm: 0 1px 2px rgba(46,36,41,.05), 0 2px 8px rgba(46,36,41,.05);
  --shadow-md: 0 10px 30px -12px rgba(46,36,41,.18);
  --shadow-lg: 0 30px 60px -24px rgba(46,36,41,.26);

  --ease: cubic-bezier(.22,.61,.36,1);
}

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

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(--brand-deep); text-decoration: none; }
a:hover { color: var(--ink); }

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

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 20px; }

.eyebrow {
  font-size: .78rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  color: var(--brand-deep); margin-bottom: .8rem;
}
.muted { color: var(--ink-soft); }

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

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--font-body); font-weight: 600; font-size: 1rem;
  padding: 14px 26px; border-radius: 999px; border: 1.5px solid transparent;
  cursor: pointer; min-height: 48px;
  transition: transform .2s var(--ease), background-color .2s var(--ease), box-shadow .2s var(--ease), color .2s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--brand-deep); color: #fff; box-shadow: var(--shadow-md); }
.btn-primary:hover { background: var(--ink); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--border); }
.btn-ghost:hover { background: var(--surface); color: var(--ink); border-color: var(--brand); transform: translateY(-2px); }
.btn-sm { padding: 10px 18px; min-height: 42px; font-size: .92rem; }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: saturate(1.4) blur(12px);
  -webkit-backdrop-filter: saturate(1.4) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background-color .3s var(--ease), box-shadow .3s var(--ease);
}
.site-header.scrolled { border-color: var(--border); box-shadow: var(--shadow-sm); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 70px; }

.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--ink); }
.brand:hover { color: var(--ink); }
.brand-mark { color: var(--brand); display: grid; place-items: center; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name { font-family: var(--font-head); font-weight: 600; font-size: 1.34rem; letter-spacing: .01em; }
.brand-sub { font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); }

.nav-desktop { display: none; gap: 30px; }
.nav-desktop a { color: var(--ink); font-weight: 500; font-size: .96rem; position: relative; padding: 6px 0; }
.nav-desktop a::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 2px;
  background: var(--brand); transition: width .25s var(--ease);
}
.nav-desktop a:hover { color: var(--brand-deep); }
.nav-desktop a:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 12px; }
.header-actions .btn-primary { display: none; }

/* Burger */
.burger {
  width: 46px; height: 46px; display: inline-flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 5px;
  background: var(--surface); border: 1px solid var(--border); border-radius: 12px; cursor: pointer;
  transition: border-color .2s var(--ease);
}
.burger span { display: block; width: 22px; 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); }

/* Mobile Nav */
.nav-mobile {
  display: flex; flex-direction: column; gap: 4px;
  padding: 10px 20px 22px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  position: relative; z-index: 101;
}
.nav-mobile[hidden] { display: none; }
.nav-mobile a {
  color: var(--ink); font-weight: 500; font-size: 1.08rem;
  padding: 15px 12px; border-radius: 12px; min-height: 48px; display: flex; align-items: center;
}
.nav-mobile a:hover, .nav-mobile a:active { background: var(--brand-tint); color: var(--brand-deep); }
.nav-mobile-cta {
  margin-top: 8px; background: var(--brand-deep); color: #fff !important;
  justify-content: center; font-weight: 600;
}
.nav-mobile-cta:hover { background: var(--ink); }
/* Reveal-Animation für mobiles Menü */
.nav-mobile { animation: slideDown .28s var(--ease); }
@keyframes slideDown { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }

.nav-scrim {
  position: fixed; inset: 0; top: 0; z-index: 90;
  background: rgba(46,36,41,.32); backdrop-filter: blur(1px);
}
.nav-scrim[hidden] { display: none; }

/* ---------- Sections ---------- */
.section { padding: 72px 0; }
.section-alt { background: var(--bg-alt); }
.section-head { max-width: 640px; margin-bottom: 42px; }
.section-head h2 { font-size: clamp(1.9rem, 5vw, 2.6rem); }
.section-intro { color: var(--ink-soft); margin-top: 14px; font-size: 1.05rem; }

/* ---------- Hero ---------- */
.hero { padding: 40px 0 64px; position: relative; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; z-index: -1; width: 520px; height: 520px;
  top: -240px; right: -160px; border-radius: 50%;
  background: radial-gradient(circle at center, var(--brand-tint), transparent 68%);
}
.hero-grid { display: grid; gap: 40px; }
.hero-copy h1 { font-size: clamp(2.35rem, 9vw, 3.6rem); margin: .3rem 0 1rem; }
.lead { font-size: 1.14rem; color: var(--ink-soft); max-width: 44ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin: 26px 0 24px; }
.hero-cta .btn { flex: 1 1 auto; }

.hero-badges { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: 10px 18px; }
.hero-badges li { display: inline-flex; align-items: center; gap: 8px; font-size: .9rem; font-weight: 500; color: var(--ink); }
.hero-badges svg { color: var(--brand); flex: none; }

.hero-media { position: relative; }
.hero-image {
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg);
  border: 1px solid var(--border); background: var(--muted);
}
.hero-image img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
.hero-chip {
  position: absolute; left: 16px; bottom: 16px;
  background: color-mix(in srgb, var(--surface) 92%, transparent);
  backdrop-filter: blur(8px); border: 1px solid var(--border);
  border-radius: 16px; padding: 12px 16px; box-shadow: var(--shadow-md);
  display: flex; flex-direction: column;
}
.hero-chip-title { font-size: .7rem; text-transform: uppercase; letter-spacing: .12em; color: var(--brand-deep); font-weight: 600; }
.hero-chip-sub { font-weight: 600; font-size: .98rem; }
.hero-chip-note { font-size: .78rem; color: var(--ink-soft); }

/* ---------- Trust ---------- */
.trust { padding: 8px 0 8px; }
.trust-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2px;
  background: var(--border); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
}
.trust-item { background: var(--surface); padding: 22px 18px; text-align: center; display: flex; flex-direction: column; gap: 4px; }
.trust-num { font-family: var(--font-head); font-weight: 600; font-size: 1.5rem; color: var(--brand-deep); }
.trust-label { font-size: .82rem; color: var(--ink-soft); line-height: 1.4; }

/* ---------- Cards / Leistungen ---------- */
.cards { display: grid; gap: 20px; }
.card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 26px 24px; box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--brand-tint); }
.card-icon {
  width: 54px; height: 54px; border-radius: 15px; display: grid; place-items: center;
  background: var(--brand-tint); color: var(--brand-deep); margin-bottom: 16px;
}
.card-icon svg { width: 28px; height: 28px; }
.card h3 { font-size: 1.28rem; margin-bottom: 8px; }
.card > p { color: var(--ink-soft); font-size: .96rem; }

/* Accordion */
.acc { margin-top: 16px; border-top: 1px solid var(--border); padding-top: 8px; }
.acc summary {
  list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between;
  gap: 10px; font-weight: 600; font-size: .94rem; color: var(--brand-deep);
  padding: 10px 2px; min-height: 44px;
}
.acc summary::-webkit-details-marker { display: none; }
.acc summary::after {
  content: ""; width: 10px; height: 10px; flex: none;
  border-right: 2px solid var(--brand-deep); border-bottom: 2px solid var(--brand-deep);
  transform: rotate(45deg); transition: transform .25s var(--ease); margin-bottom: 3px;
}
.acc[open] summary::after { transform: rotate(-135deg); margin-bottom: -3px; }
.acc[open] summary { color: var(--ink); }
.acc-body, .price-list { animation: fadeIn .3s var(--ease); }
@keyframes fadeIn { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: translateY(0); } }

.price-list { list-style: none; padding: 6px 0 4px; display: flex; flex-direction: column; gap: 2px; }
.price-list li { display: flex; align-items: baseline; gap: 8px; padding: 8px 2px; font-size: .92rem; flex-wrap: wrap; }
.price-list li > span:first-child { color: var(--ink); }
.price-list em { font-style: normal; color: var(--ink-soft); font-size: .82rem; display: block; }
.price-list .dot { flex: 1 1 auto; border-bottom: 1px dotted var(--border); transform: translateY(-3px); min-width: 12px; }
.price-list .price { font-weight: 600; color: var(--brand-deep); white-space: nowrap; }
.tag-new {
  background: var(--gold); color: #3a2a12; font-size: .64rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; padding: 2px 7px; border-radius: 999px; align-self: center;
}
.acc-note { font-size: .82rem; color: var(--ink-soft); margin-top: 6px; }
.price-hint { text-align: center; color: var(--ink-soft); font-size: .9rem; margin-top: 28px; }

/* ---------- Über uns ---------- */
.about-grid { display: grid; gap: 36px; }
.about-media { display: flex; flex-direction: column; gap: 16px; }
.about-portrait {
  position: relative; aspect-ratio: 4/5; border-radius: var(--radius-lg);
  background: linear-gradient(160deg, var(--brand-tint), var(--muted));
  border: 1px solid var(--border); display: grid; place-items: center; color: var(--brand);
  box-shadow: var(--shadow-md); overflow: hidden;
}
.about-portrait::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255,255,255,.5), transparent 55%);
}
.ph-tag {
  position: absolute; bottom: 14px; left: 14px; background: var(--surface);
  color: var(--ink-soft); font-size: .72rem; font-weight: 600; letter-spacing: .06em;
  text-transform: uppercase; padding: 6px 12px; border-radius: 999px; border: 1px solid var(--border);
}
.about-signature { display: flex; flex-direction: column; }
.sig-name { font-family: var(--font-head); font-size: 1.2rem; font-weight: 600; }
.sig-role { font-size: .86rem; color: var(--ink-soft); }
.about-copy h2 { font-size: clamp(1.8rem, 5vw, 2.4rem); margin-bottom: 16px; }
.about-copy p { color: var(--ink-soft); margin-bottom: 14px; }
.about-facts { list-style: none; padding: 0; margin-top: 22px; display: flex; flex-direction: column; gap: 14px; }
.about-facts li { padding-left: 18px; border-left: 3px solid var(--brand-tint); }
.about-facts strong { display: block; color: var(--ink); font-family: var(--font-head); font-weight: 600; }
.about-facts li { color: var(--ink-soft); font-size: .95rem; }

/* ---------- Features ---------- */
.feature-grid { display: grid; gap: 18px; }
.feature { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feature-icon { width: 48px; height: 48px; border-radius: 14px; background: var(--brand-tint); color: var(--brand-deep); display: grid; place-items: center; margin-bottom: 14px; }
.feature-icon svg { width: 24px; height: 24px; }
.feature h3 { font-size: 1.15rem; margin-bottom: 6px; }
.feature p { color: var(--ink-soft); font-size: .93rem; }

/* ---------- Steps ---------- */
.steps { list-style: none; padding: 0; display: grid; gap: 18px; counter-reset: step; }
.step { position: relative; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 24px; box-shadow: var(--shadow-sm); }
.step-num {
  display: inline-grid; place-items: center; width: 44px; height: 44px; border-radius: 50%;
  background: var(--brand-deep); color: #fff; font-family: var(--font-head); font-weight: 600; font-size: 1.2rem;
  margin-bottom: 14px;
}
.step h3 { font-size: 1.2rem; margin-bottom: 6px; }
.step p { color: var(--ink-soft); font-size: .95rem; }

/* ---------- Standort ---------- */
.standort-grid { display: grid; gap: 30px; }
.address-card { font-style: normal; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); }
.addr-line { margin-bottom: 6px; }
.addr-meta { display: grid; gap: 14px; margin: 20px 0 24px; }
.addr-meta dt { font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; color: var(--brand-deep); font-weight: 600; }
.addr-meta dd { font-size: .98rem; }
.map-placeholder {
  position: relative; aspect-ratio: 4/3; border-radius: var(--radius-lg); overflow: hidden;
  background: linear-gradient(150deg, #EDE3DA, #F5ECE4); border: 1px solid var(--border);
  display: grid; place-items: center; box-shadow: var(--shadow-md);
}
.map-grid { position: absolute; inset: 0; background-image: linear-gradient(var(--border) 1px, transparent 1px), linear-gradient(90deg, var(--border) 1px, transparent 1px); background-size: 40px 40px; opacity: .5; }
.map-pin { color: var(--brand-deep); position: relative; z-index: 1; filter: drop-shadow(0 6px 10px rgba(138,85,96,.35)); animation: pinFloat 3s ease-in-out infinite; }
@keyframes pinFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
.map-label { position: absolute; bottom: 14px; z-index: 1; background: var(--surface); border: 1px solid var(--border); border-radius: 999px; padding: 7px 14px; font-size: .82rem; font-weight: 600; box-shadow: var(--shadow-sm); }

/* ---------- Kontakt ---------- */
.section-contact { background: var(--bg-alt); }
.contact-grid { display: grid; gap: 32px; }
.contact-intro h2 { font-size: clamp(1.9rem, 5vw, 2.5rem); margin-bottom: 14px; }
.contact-intro > p { color: var(--ink-soft); }
.contact-points { list-style: none; padding: 0; margin-top: 22px; display: flex; flex-direction: column; gap: 12px; }
.contact-points li { display: flex; align-items: center; gap: 10px; font-weight: 500; }
.contact-points svg { color: var(--brand); flex: none; }

.contact-form { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 26px; box-shadow: var(--shadow-md); }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.field-row { display: grid; gap: 16px; }
.field label { font-size: .88rem; font-weight: 600; color: var(--ink); }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  background: var(--bg); border: 1.5px solid var(--border); border-radius: 12px;
  padding: 13px 14px; min-height: 48px; width: 100%;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease), background-color .2s var(--ease);
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--brand); background: var(--surface);
  box-shadow: 0 0 0 4px var(--brand-tint);
}
.field input:user-invalid, .field textarea:user-invalid { border-color: #C0564C; }

.field-check { display: flex; align-items: flex-start; gap: 12px; margin: 6px 0 20px; }
.field-check input { width: 22px; height: 22px; min-width: 22px; margin-top: 2px; accent-color: var(--brand-deep); cursor: pointer; }
.field-check label { font-size: .86rem; color: var(--ink-soft); line-height: 1.5; }
.field-check a { text-decoration: underline; }

.form-note { font-size: .78rem; color: var(--ink-soft); margin-top: 12px; }
.form-status { margin-top: 14px; padding: 12px 14px; border-radius: 12px; font-size: .9rem; font-weight: 500; }
.form-status.ok { background: #E7F1E9; color: #2C6E49; border: 1px solid #BEDBC6; }
.form-status.err { background: #FBEAE7; color: #B03A2E; border: 1px solid #F1C9C2; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #EAD9DC; padding: 56px 0 26px; }
.footer-top { display: grid; gap: 34px; padding-bottom: 34px; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer-brand .brand-name { color: #fff; font-size: 1.5rem; }
.footer-brand p { color: rgba(234,217,220,.72); font-size: .92rem; margin-top: 10px; }
.footer-brand a { color: #EAD9DC; }
.footer-brand a:hover { color: #fff; }
.footer-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.footer-nav h3 { font-family: var(--font-body); font-size: .74rem; text-transform: uppercase; letter-spacing: .12em; color: var(--gold); margin-bottom: 12px; font-weight: 700; }
.footer-nav a { display: block; color: rgba(234,217,220,.82); font-size: .94rem; padding: 5px 0; }
.footer-nav a:hover { color: #fff; }
.footer-hours { color: rgba(234,217,220,.82); font-size: .92rem; }
.footer-hours .muted { color: rgba(234,217,220,.5); }

.footer-bottom {
  display: flex; flex-direction: column; gap: 8px; align-items: center; text-align: center;
  padding-top: 22px;
}
.copyright { color: rgba(234,217,220,.6); font-size: .82rem; }
.powered { font-size: .86rem; color: rgba(234,217,220,.7); }
.wowobot { color: var(--wowobot); font-weight: 600; }
.wowobot:hover { color: var(--wowobot); text-decoration: underline; }

/* ---------- Rechtliche Seiten / 404 ---------- */
.legal { padding: 40px 0 60px; }
.legal-inner { max-width: 760px; }
.legal-inner h1 { font-size: clamp(2rem, 6vw, 2.8rem); margin-bottom: 8px; }
.legal-inner h2 { font-family: var(--font-head); font-size: 1.3rem; margin: 30px 0 8px; }
.legal-inner p { color: var(--ink-soft); margin-bottom: 10px; }
.legal-note {
  background: var(--brand-tint); border: 1px solid var(--border); border-left: 4px solid var(--brand);
  border-radius: 12px; padding: 16px 18px; margin: 20px 0 26px; font-size: .92rem; color: var(--ink);
}
.legal-back { margin-top: 34px; }
.legal-back a { font-weight: 600; }

.notfound { min-height: 60vh; display: grid; place-items: center; text-align: center; padding: 60px 20px; }
.notfound h1 { font-size: clamp(3rem, 12vw, 5rem); color: var(--brand-deep); }
.notfound p { color: var(--ink-soft); margin: 10px 0 26px; }

/* ---------- Reveal-Animation ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); will-change: opacity, transform; }
.reveal.is-visible { opacity: 1; transform: none; }

/* =========================================================
   Responsive
   ========================================================= */
@media (min-width: 560px) {
  .hero-cta .btn { flex: 0 0 auto; }
  .field-row { grid-template-columns: 1fr 1fr; }
  .trust-inner { grid-template-columns: repeat(4, 1fr); }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 900px) {
  .section { padding: 96px 0; }
  .hero { padding: 56px 0 88px; }
  .nav-desktop { display: flex; }
  .burger { display: none; }
  .header-actions .btn-primary { display: inline-flex; }

  .hero-grid { grid-template-columns: 1.05fr .95fr; align-items: center; gap: 56px; }
  .cards { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .feature-grid { grid-template-columns: repeat(3, 1fr); }
  .about-grid { grid-template-columns: .8fr 1.2fr; align-items: center; gap: 56px; }
  .standort-grid { grid-template-columns: 1fr 1.1fr; align-items: center; }
  .contact-grid { grid-template-columns: .9fr 1.1fr; align-items: start; }

  .footer-top { grid-template-columns: 1.2fr 1.6fr; gap: 48px; }
  .footer-nav { grid-template-columns: repeat(3, 1fr); }
  .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}

@media (min-width: 1100px) {
  .hero-copy h1 { font-size: 3.7rem; }
}

/* prefers-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; }
  .reveal { opacity: 1; transform: none; }
  .map-pin { animation: none; }
}
