/* ==========================================================================
   Art of Beauty – Kosmetikstudio Gütersloh
   Design-System nach Behance-Referenz „LUMI" (Aesthetic Beauty Studio):
   Creme/Ivory + Taupe/Mocha + Dunkelbraun, Playfair Display mit kursiven
   Akzentwörtern, große abgerundete Bild-Panels, Pill-Labels, Kreis-Buttons,
   Marquee-Ticker, unregelmäßiges Galerie-Grid.
   Radius: Panels 28px | Karten 18px | Pills/Buttons voll rund
   ========================================================================== */

:root {
  --cream: #F5F1EA;
  --cream-2: #EFE9DF;
  --taupe: #8B7360;
  --taupe-soft: #B49B86;
  --brown: #3E3128;
  --brown-2: #55463A;
  --white: #FFFFFF;
  --line: rgba(62, 49, 40, 0.12);
  --r-panel: 28px;
  --r-card: 18px;
  --ease: cubic-bezier(0.25, 1, 0.5, 1);
  --shadow: 0 26px 60px -28px rgba(62, 49, 40, 0.35);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 1.02rem; font-weight: 400; line-height: 1.75;
  color: var(--brown); background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--taupe); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--brown); }
::selection { background: var(--taupe); color: var(--white); }

.container { max-width: 1280px; margin-inline: auto; padding-inline: clamp(1rem, 3vw, 2rem); }
.container--narrow { max-width: 860px; }

/* ---------- Typografie: Serif mit kursivem Akzent ---------- */

h1, h2, h3 { font-family: 'Playfair Display', serif; color: var(--brown); line-height: 1.12; margin: 0 0 0.5em; font-weight: 600; letter-spacing: 0.01em; text-wrap: balance; }
h1 { font-size: clamp(2.6rem, 5.4vw, 4.6rem); }
h2 { font-size: clamp(2.1rem, 3.8vw, 3.2rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h4 { font-family: 'Manrope', sans-serif; margin: 0 0 0.5em; }
em, .it { font-style: italic; font-weight: 500; }
p { margin: 0 0 1.1em; max-width: 66ch; }
p:last-child { margin-bottom: 0; }
.lead { font-size: clamp(1.05rem, 1.4vw, 1.2rem); color: var(--brown-2); }

.label {
  display: inline-block;
  font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.18em;
  color: var(--taupe);
  margin-bottom: 1rem;
}

/* Statement-Typografie (zentriert, mit Inline-Ornament) */
.statement {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3.2vw, 2.6rem);
  line-height: 1.35; text-align: center;
  max-width: 900px; margin-inline: auto;
  color: var(--brown);
}
.statement .leaf { display: inline-block; vertical-align: middle; width: 2.2em; height: auto; margin-inline: 0.15em; opacity: 0.7; }

/* ---------- Buttons: Pills mit Pfeil ---------- */

.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: 'Manrope', sans-serif; font-size: 0.9rem; font-weight: 700; line-height: 1;
  text-decoration: none; cursor: pointer;
  border-radius: 999px; padding: 0.95rem 1.7rem;
  white-space: nowrap; border: 1px solid transparent;
  transition: background-color 0.45s var(--ease), color 0.45s var(--ease), border-color 0.45s var(--ease), transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.btn:active { transform: scale(0.98); }
.btn .arr { display: inline-block; transition: transform 0.45s var(--ease); }
.btn:hover .arr { transform: translateX(4px); }

.btn--dark { background: var(--brown); color: var(--white); }
.btn--dark:hover { background: var(--taupe); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--light { background: var(--white); color: var(--brown); }
.btn--light:hover { background: var(--brown); color: var(--white); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--brown); border-color: var(--brown); }
.btn--ghost:hover { background: var(--brown); color: var(--white); transform: translateY(-2px); }

/* Kreis-Pfeil-Button (Signature) */
.circle-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 2.6rem; height: 2.6rem; border-radius: 999px;
  background: var(--white); color: var(--brown);
  font-size: 1.1rem; text-decoration: none;
  transition: transform 0.45s var(--ease), background-color 0.45s var(--ease), color 0.45s var(--ease);
}

/* Pill-Label auf Bildern (Signature) */
.pill {
  display: inline-block;
  background: rgba(255, 255, 255, 0.92);
  color: var(--brown);
  font-size: 0.78rem; font-weight: 700;
  border-radius: 999px; padding: 0.45rem 1rem;
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
}

/* ---------- Header (schwebend über Panel) ---------- */

.site-header { position: absolute; top: 0; left: 0; right: 0; z-index: 40; }
.site-header.is-fixed { position: fixed; }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; height: 108px; padding-top: 1.6rem; gap: 1.4rem; }
.site-header__logo img { height: 88px; width: auto; }
.site-nav { display: flex; align-items: center; gap: 1.7rem; }
.site-nav a { font-size: 0.9rem; font-weight: 600; color: var(--white); text-decoration: none; opacity: 0.92; transition: opacity 0.3s; }
.site-nav a:hover, .site-nav a[aria-current="page"] { opacity: 1; text-decoration: underline; text-underline-offset: 5px; }
.site-header .btn { padding: 0.7rem 1.3rem; font-size: 0.84rem; }

/* Header-Variante auf hellen Unterseiten-Panels bleibt weiß, da immer über Bild */

.nav-toggle { display: none; flex-direction: column; justify-content: center; gap: 6px; width: 44px; height: 44px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; height: 2px; width: 100%; background: var(--white); border-radius: 2px; transition: transform 0.5s var(--ease), opacity 0.3s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 1020px) {
  .nav-toggle { display: flex; }
  .site-header__cta { display: none; }
  .site-nav {
    position: fixed; inset: 0; z-index: 39;
    flex-direction: column; justify-content: center; gap: 1.5rem;
    background: rgba(62, 49, 40, 0.97);
    transform: translateY(-110%);
    transition: transform 0.6s var(--ease);
  }
  .site-nav.is-open { transform: translateY(0); }
  .site-nav a { font-size: 1.3rem; font-weight: 700; }
}

/* ---------- Hero-Panel (Signature: Nav + Headline im Bild) ---------- */

.panel-wrap { padding: 0 clamp(0.8rem, 1.6vw, 1.4rem) clamp(0.8rem, 1.6vw, 1.4rem); }
.panel-wrap .hero-panel { border-radius: 0 0 var(--r-panel) var(--r-panel); }
.hero-panel {
  position: relative; overflow: hidden;
  border-radius: var(--r-panel);
  min-height: min(92dvh, 860px);
  display: flex; align-items: flex-end;
  color: var(--white);
  box-shadow: var(--shadow);
}
.hero-panel__bg { position: absolute; inset: 0; }
.hero-panel__bg img { width: 100%; height: 100%; object-fit: cover; object-position: 68% 30%; transform: scale(1.04); }
@media (prefers-reduced-motion: no-preference) {
  @keyframes panelzoom { from { transform: scale(1.04); } to { transform: scale(1.13); } }
  .hero-panel__bg img { animation: panelzoom 24s ease-in-out infinite alternate; will-change: transform; }
}
.hero-panel::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(45, 34, 26, 0.62) 0%, rgba(45, 34, 26, 0.12) 42%, rgba(45, 34, 26, 0.25) 100%);
}
.hero-panel__content { position: relative; z-index: 2; width: 100%; padding: clamp(1.6rem, 4vw, 3.4rem); display: flex; justify-content: space-between; align-items: flex-end; gap: 2rem; }
.hero-panel__content h1 { color: var(--white); margin-bottom: 0.3em; }
.hero-panel__content .sub { color: rgba(255, 255, 255, 0.88); font-size: 0.95rem; max-width: 44ch; }
.hero-panel__side { position: absolute; z-index: 2; top: 140px; right: clamp(1.6rem, 4vw, 3.4rem); text-align: right; }
.hero-panel__side .note { color: rgba(255, 255, 255, 0.85); font-size: 0.85rem; max-width: 24ch; margin-bottom: 0.9rem; }
@media (max-width: 760px) {
  .hero-panel__content { flex-direction: column; align-items: flex-start; }
  .hero-panel__side { display: none; }
  .hero-panel { min-height: 84dvh; }
}

/* Unterseiten-Panel (kleiner) */
.page-panel { min-height: min(62dvh, 560px); }
.page-panel h1 { font-size: clamp(2.2rem, 4.6vw, 3.6rem); }

/* ---------- Marquee-Ticker ---------- */

.ticker { overflow: hidden; border-block: 1px solid var(--line); background: var(--cream-2); padding-block: 0.9rem; }
.ticker__track { display: flex; gap: 2.5rem; width: max-content; }
.ticker__track span { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--brown-2); white-space: nowrap; }
.ticker__track span::after { content: "•"; margin-left: 2.5rem; color: var(--taupe); }
@media (prefers-reduced-motion: no-preference) {
  @keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
  .ticker__track { animation: ticker 36s linear infinite; }
}

/* ---------- Sections ---------- */

.section { padding-block: clamp(4rem, 8vw, 7.5rem); }
.section-head { max-width: 760px; margin-bottom: clamp(2.2rem, 4.5vw, 3.8rem); }
.section-head--split { display: flex; justify-content: space-between; align-items: flex-end; gap: 2rem; max-width: none; flex-wrap: wrap; }

/* ---------- About-Split ---------- */

.about { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.about__img { border-radius: var(--r-panel); overflow: hidden; box-shadow: var(--shadow); }
.about__img img { width: 100%; aspect-ratio: 4 / 4.6; object-fit: cover; }
.about__portrait { display: flex; gap: 1.2rem; align-items: center; margin-top: 1.6rem; }
.about__portrait img { width: 92px; height: 116px; object-fit: cover; border-radius: 14px; }
.about__portrait figcaption { font-family: 'Playfair Display', serif; font-style: italic; font-size: 1.05rem; color: var(--brown-2); max-width: 30ch; }
@media (max-width: 860px) { .about { grid-template-columns: 1fr; } }

/* ---------- Service-Karten (Pill-Label + Kreis-Pfeil) ---------- */

.svc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; }
.svc-card { position: relative; display: block; border-radius: var(--r-card); overflow: hidden; text-decoration: none; aspect-ratio: 3 / 3.9; box-shadow: 0 16px 40px -22px rgba(62, 49, 40, 0.3); }
.svc-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease); }
.svc-card:hover img { transform: scale(1.06); }
.svc-card .pill { position: absolute; top: 0.9rem; left: 0.9rem; z-index: 2; max-width: calc(100% - 1.8rem); white-space: normal; text-align: left; }
.svc-card .circle-btn { position: absolute; bottom: 0.9rem; right: 0.9rem; z-index: 2; }
.svc-card:hover .circle-btn { background: var(--brown); color: var(--white); transform: translate(2px, -2px); }
.svc-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(45, 34, 26, 0.18), transparent 40%); }
@media (max-width: 1000px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .svc-grid { grid-template-columns: 1fr; } .svc-card { aspect-ratio: 4 / 3.4; } }

/* ---------- Full-Bleed-Band ---------- */

.band { position: relative; overflow: hidden; border-radius: var(--r-panel); min-height: 480px; display: flex; align-items: center; justify-content: center; text-align: center; color: var(--white); box-shadow: var(--shadow); }
.band img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.band::after { content: ""; position: absolute; inset: 0; background: rgba(45, 34, 26, 0.38); }
.band__content { position: relative; z-index: 2; max-width: 620px; padding: 2rem; }
.band__content h2 { color: var(--white); }

/* ---------- Fakten-Kreise ---------- */

.circles { display: flex; justify-content: center; gap: clamp(0.8rem, 2.5vw, 2rem); flex-wrap: wrap; }
.circle-fact {
  width: clamp(120px, 15vw, 165px); height: clamp(120px, 15vw, 165px);
  border: 1px solid var(--line); border-radius: 999px;
  display: flex; align-items: center; justify-content: center; text-align: center;
  padding: 1rem;
  font-family: 'Playfair Display', serif; font-size: clamp(0.82rem, 1.1vw, 1rem); color: var(--brown-2);
  transition: border-color 0.5s var(--ease), transform 0.5s var(--ease);
}
.circle-fact:hover { border-color: var(--taupe); transform: translateY(-4px); }

/* ---------- Galerie (unregelmäßiges Raster) ---------- */

.gallery { display: grid; grid-template-columns: repeat(6, 1fr); grid-auto-rows: 130px; gap: 1rem; grid-auto-flow: dense; }
.gallery > div { border-radius: var(--r-card); overflow: hidden; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease); }
.gallery > div:hover img { transform: scale(1.05); }
.g-a { grid-column: span 2; grid-row: span 3; }
.g-b { grid-column: span 2; grid-row: span 2; }
.g-c { grid-column: span 2; grid-row: span 3; }
.g-d { grid-column: span 2; grid-row: span 3; }
.g-e { grid-column: span 2; grid-row: span 2; }
.g-f { grid-column: span 2; grid-row: span 2; }
@media (max-width: 760px) {
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 140px; }
  .g-a, .g-b, .g-c, .g-d, .g-e, .g-f { grid-column: span 1; grid-row: span 2; }
}

/* ---------- Team ---------- */

.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.team-card { background: var(--white); border-radius: var(--r-card); padding: 1.6rem; text-align: center; box-shadow: 0 16px 40px -26px rgba(62, 49, 40, 0.3); }
.team-card img { width: 128px; height: 160px; object-fit: cover; border-radius: 14px; margin: 0 auto 1rem; }
.team-card h3 { margin-bottom: 0.2rem; font-size: 1.2rem; }
.team-card p { font-size: 0.88rem; color: var(--brown-2); margin: 0; }
@media (max-width: 760px) { .team-grid { grid-template-columns: 1fr; } }

/* ---------- Dunkle Sektion / Karten ---------- */

.dark-card {
  background: var(--taupe); color: #F7F2EB;
  border-radius: var(--r-panel);
  padding: clamp(2.2rem, 5vw, 4rem);
  box-shadow: var(--shadow);
}
.dark-card h2, .dark-card h3 { color: var(--white); }
.dark-card .lead { color: rgba(247, 242, 235, 0.85); }

/* ---------- Behandlungs-/Preis-Layouts ---------- */

.treatment-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
.treatment-card { background: var(--white); border-radius: var(--r-card); padding: 1.7rem; transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease); }
.treatment-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.treatment-card h3 { font-size: 1.15rem; margin-bottom: 0.4rem; }
.treatment-card p { font-size: 0.94rem; color: var(--brown-2); margin: 0; }
@media (max-width: 680px) { .treatment-grid { grid-template-columns: 1fr; } }

.price-group { margin-bottom: clamp(2.2rem, 4.5vw, 3.6rem); }
.price-group h2 { font-size: clamp(1.6rem, 2.6vw, 2.1rem); }
.price-group h2 em { color: var(--taupe); }
.price-list { list-style: none; margin: 1rem 0 0; padding: 0; }
.price-list li { display: grid; grid-template-columns: 1fr auto auto; gap: 1.4rem; align-items: baseline; padding: 0.8rem 0.7rem; border-radius: 12px; }
.price-list li:nth-child(even) { background: var(--white); }
.price-list .p-name { font-weight: 500; }
.price-list .p-dur { color: var(--brown-2); font-size: 0.86rem; white-space: nowrap; }
.price-list .p-price { font-family: 'Playfair Display', serif; font-weight: 600; font-size: 1.05rem; color: var(--taupe); white-space: nowrap; }
@media (max-width: 560px) { .price-list li { grid-template-columns: 1fr auto; } .price-list .p-dur { grid-column: 1; grid-row: 2; } }

/* ---------- FAQ ---------- */

.faq { display: grid; gap: 0.9rem; max-width: 820px; }
.faq details { background: var(--white); border-radius: var(--r-card); overflow: hidden; }
.faq summary { cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1.25rem 1.6rem; font-weight: 700; font-size: 1rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--taupe); transition: transform 0.4s var(--ease); flex-shrink: 0; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .faq__body { padding: 0 1.6rem 1.4rem; color: var(--brown-2); }

/* ---------- Kontakt ---------- */

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 4vw, 4rem); }
.contact-card { background: var(--white); border-radius: var(--r-card); padding: 2rem; margin-bottom: 1.3rem; }
.contact-card h3 { font-size: 1.1rem; margin-bottom: 0.6rem; }
.contact-card p { margin-bottom: 0.4rem; }
.hours { width: 100%; border-collapse: collapse; }
.hours td { padding: 0.5rem 0; border-bottom: 1px solid var(--line); font-size: 0.95rem; color: var(--brown-2); }
.hours tr:last-child td { border-bottom: 0; }
.hours td:last-child { text-align: right; font-weight: 700; color: var(--brown); }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }

/* ---------- CTA-Panel (Footer-Bereich, "Ready to Glow") ---------- */

.glow-panel {
  background: var(--taupe);
  border-radius: var(--r-panel);
  color: #F7F2EB;
  padding: clamp(2.4rem, 5vw, 4.5rem);
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(2rem, 4vw, 4rem); align-items: center;
  box-shadow: var(--shadow);
  position: relative; overflow: hidden;
}
.glow-panel h2 { color: var(--white); font-size: clamp(2.4rem, 4.4vw, 3.6rem); }
.glow-panel p { color: rgba(247, 242, 235, 0.88); }
.glow-panel__imgs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.8rem; }
.glow-panel__imgs img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; border-radius: 14px; }
@media (max-width: 860px) { .glow-panel { grid-template-columns: 1fr; } }

/* ---------- Rechtstexte ---------- */

.legal h2 { font-size: 1.5rem; margin-top: 2.4em; }
.legal h3 { font-size: 1.15rem; margin-top: 1.8em; font-family: 'Manrope', sans-serif; font-weight: 700; }
.legal p, .legal li { color: var(--brown-2); }
.legal strong { color: var(--brown); }
.legal-panel { padding-top: 130px; }

/* ---------- Footer ---------- */

.site-footer { padding: clamp(2.5rem, 5vw, 4rem) 0 1.6rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.2rem; margin-bottom: 2.5rem; }
.footer-grid h4 { font-size: 0.8rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.14em; color: var(--taupe); margin-bottom: 0.9rem; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.45rem; font-size: 0.93rem; }
.footer-grid a { color: var(--brown-2); text-decoration: none; }
.footer-grid a:hover { color: var(--taupe); }
.footer-grid img { height: 48px; width: auto; margin-bottom: 1rem; }
.footer-grid p { font-size: 0.92rem; color: var(--brown-2); }
.footer-bottom { border-top: 1px solid var(--line); padding-top: 1.4rem; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: 0.83rem; color: var(--brown-2); }
.footer-bottom button { background: none; border: 0; color: inherit; font: inherit; cursor: pointer; text-decoration: underline; text-underline-offset: 3px; padding: 0; }
.footer-bottom button:hover { color: var(--taupe); }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- Cookie-Banner ---------- */

.cookie-banner {
  position: fixed; z-index: 60; inset-inline: 1rem; bottom: 1rem;
  max-width: 480px; margin-inline: auto;
  background: var(--white); border-radius: var(--r-card);
  padding: 1.6rem; box-shadow: var(--shadow);
  transform: translateY(130%); opacity: 0;
  transition: transform 0.7s var(--ease), opacity 0.7s var(--ease);
}
.cookie-banner.is-visible { transform: translateY(0); opacity: 1; }
.cookie-banner h2 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.cookie-banner p { font-size: 0.86rem; color: var(--brown-2); margin-bottom: 1rem; }
.cookie-banner__row { display: flex; gap: 0.7rem; flex-wrap: wrap; }
.cookie-banner .btn { padding: 0.7rem 1.2rem; font-size: 0.82rem; }
.cookie-toggle { display: flex; align-items: center; gap: 0.6rem; font-size: 0.87rem; font-weight: 600; margin-bottom: 1rem; }
.cookie-toggle input { accent-color: var(--taupe); width: 1.1rem; height: 1.1rem; }
.cookie-toggle span small { display: block; font-weight: 400; color: var(--brown-2); }

/* ---------- WhatsApp ---------- */

.wa-float {
  position: fixed; right: 1.4rem; bottom: 1.4rem; z-index: 50;
  display: inline-flex; align-items: center; justify-content: center;
  width: 58px; height: 58px; border-radius: 999px;
  background: var(--brown); color: var(--white);
  box-shadow: var(--shadow);
  transition: transform 0.5s var(--ease), background-color 0.5s var(--ease);
}
.wa-float:hover { background: var(--taupe); transform: translateY(-3px); }
.wa-float:active { transform: scale(0.96); }
@media (prefers-reduced-motion: no-preference) {
  @keyframes wa-in { from { transform: scale(0); opacity: 0; } to { transform: scale(1); opacity: 1; } }
  .wa-float { animation: wa-in 0.65s cubic-bezier(0.34, 1.56, 0.64, 1) 1.2s backwards; }
}

/* ---------- Reveals ---------- */

.reveal { opacity: 1; }
@media (prefers-reduced-motion: no-preference) {
  .js .reveal { opacity: 0; transform: translateY(24px); }
}

/* ---------- Fokus & Skip ---------- */

.skip-link { position: absolute; left: -999px; top: 0; z-index: 100; background: var(--brown); color: var(--white); padding: 0.8rem 1.2rem; border-radius: 0 0 12px 0; }
.skip-link:focus { left: 0; }
:focus-visible { outline: 3px solid var(--taupe); outline-offset: 2px; }
