/* ==========================================================================
   Beautyloft Bremen – Hand- & Fußpflege by Lydia
   Design-System: Dunkles Editorial-Theme, Marken-DNA erhalten
   (Nude #C9AD9C, El Messiri, Schwarzweiß-Fotografie, Schmetterlings-Bildmarke)
   Radius-System: Buttons = 12px | Karten & Bilder = 18px
   Akzentfarbe: Nude – seitenweit fix
   ========================================================================== */

:root {
  --nude: #C9AD9C;
  --nude-soft: #E3D4C9;
  --nude-deep: #8C7361;
  --ink: #F4ECE4;
  --surface: #FBF7F2;
  --surface-2: #EFE4D9;
  --text: #3B322A;
  --text-soft: #716356;
  --line: rgba(59, 50, 42, 0.12);
  --white: #FFFFFF;
  --heading: #33291F;
  --dark: #2E2822;
  --r-btn: 12px;
  --r-card: 18px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow: 0 24px 60px -26px rgba(78, 62, 48, 0.32);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.8;
  color: var(--text);
  background: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.container { max-width: 1220px; margin-inline: auto; padding-inline: clamp(1.25rem, 4vw, 2.5rem); }
.container--narrow { max-width: 840px; }

/* ---------- Typografie ---------- */

h1, h2, h3, h4 { font-family: 'El Messiri', serif; color: var(--heading); line-height: 1.15; margin: 0 0 0.55em; letter-spacing: 0; text-wrap: balance; }
h1 { font-size: clamp(2.9rem, 6vw, 5rem); font-weight: 700; }
h2 { font-size: clamp(2.2rem, 4vw, 3.3rem); font-weight: 600; }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.55rem); font-weight: 600; }
p { margin: 0 0 1.1em; max-width: 66ch; }
p:last-child { margin-bottom: 0; }
.lead { font-size: clamp(1.08rem, 1.5vw, 1.25rem); color: var(--text-soft); }
.accent { color: var(--nude-deep); }

.eyebrow {
  display: inline-block;
  font-family: 'Manrope', sans-serif;
  font-size: 0.8rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--nude-deep);
  margin-bottom: 1rem;
}

/* ---------- Buttons: weiche Rechtecke, direktionale Füllung ---------- */

.btn {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; gap: 0.7rem;
  font-family: 'Manrope', sans-serif; font-size: 0.94rem; font-weight: 800; line-height: 1;
  text-decoration: none; cursor: pointer;
  border-radius: var(--r-btn);
  padding: 1.05rem 1.8rem;
  white-space: nowrap;
  border: 1.5px solid transparent;
  transition: color 0.45s var(--ease), border-color 0.45s var(--ease), transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.btn::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.55s var(--ease);
}
.btn > * , .btn { z-index: 0; }
.btn span, .btn svg { position: relative; z-index: 1; }
.btn:active { transform: scale(0.98); }

.btn--primary { background: var(--nude-deep); color: var(--white); }
.btn--primary::before { background: var(--dark); }
.btn--primary:hover { color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--primary:hover::before { transform: scaleX(1); }

.btn--ghost { background: transparent; color: var(--nude-deep); border-color: var(--nude-deep); }
.btn--ghost::before { background: var(--nude-deep); }
.btn--ghost:hover { color: var(--white); transform: translateY(-2px); }
.btn--ghost:hover::before { transform: scaleX(1); }

.btn .arr { display: inline-block; transition: transform 0.45s var(--ease); }
.btn:hover .arr { transform: translateX(4px); }

/* ---------- Header ---------- */

.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 40;
  background: transparent;
  transition: background-color 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.5s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(244, 236, 228, 0.97);
  border-bottom-color: var(--line);
}
.site-header__inner { display: flex; align-items: center; justify-content: space-between; height: 92px; gap: 1.6rem; }
.site-header__logo { display: flex; align-items: center; gap: 0.9rem; text-decoration: none; }
.site-header__logo img.mark { height: 46px; width: auto; }
.site-header__logo img.word { height: 24px; width: auto; }
.site-nav { display: flex; align-items: center; gap: 1.9rem; }
.site-nav a {
  font-size: 0.94rem; font-weight: 600; color: var(--text); text-decoration: none;
  padding-block: 0.4rem; border-bottom: 2px solid transparent;
  transition: color 0.4s var(--ease), border-color 0.4s var(--ease);
}
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--nude-deep); border-bottom-color: var(--nude-deep); }
.site-header .btn { padding: 0.75rem 1.3rem; font-size: 0.86rem; }

.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(--heading); 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: 900px) {
  .nav-toggle { display: flex; }
  .site-header__cta { display: none; }
  .site-nav {
    position: fixed; inset: 92px 0 0 0; z-index: 39;
    flex-direction: column; justify-content: center; gap: 1.5rem;
    background: rgba(244, 236, 228, 0.97);
    backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
    transform: translateY(-110%);
    transition: transform 0.6s var(--ease);
  }
  .site-nav.is-open { transform: translateY(0); }
  .site-nav a { font-size: 1.35rem; font-weight: 700; opacity: 0; transform: translateY(16px); transition: opacity 0.5s var(--ease), transform 0.5s var(--ease); }
  .site-nav.is-open a { opacity: 1; transform: translateY(0); }
  .site-nav.is-open a:nth-child(1) { transition-delay: 0.06s; }
  .site-nav.is-open a:nth-child(2) { transition-delay: 0.12s; }
  .site-nav.is-open a:nth-child(3) { transition-delay: 0.18s; }
  .site-nav.is-open a:nth-child(4) { transition-delay: 0.24s; }
}

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

.section { padding-block: clamp(4.5rem, 9vw, 8rem); }
.section--tint { background: var(--surface); }

.section-head { max-width: 720px; margin-bottom: clamp(2.4rem, 5vw, 4rem); }

/* ---------- Hero: Editorial Split auf Dunkel ---------- */

.hero { position: relative; padding-top: 92px; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; z-index: 0; pointer-events: none;
  width: 60vw; height: 60vw; max-width: 900px; max-height: 900px;
  right: -18vw; top: -14vw;
  background: radial-gradient(circle, rgba(201, 173, 156, 0.28) 0%, transparent 62%);
}
.hero__mark {
  position: absolute; z-index: 0; pointer-events: none;
  left: -6rem; bottom: -7rem; width: 30rem; opacity: 0.08;
}
.hero__grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.02fr 0.98fr;
  gap: clamp(2.5rem, 5vw, 5rem); align-items: center;
  min-height: min(86dvh, 820px);
  padding-block: clamp(3rem, 6vw, 5rem);
}
.hero h1 { font-size: clamp(2.4rem, 4.3vw, 3.9rem); }
.hero h1 .line { display: block; overflow: hidden; white-space: nowrap; }
@media (max-width: 480px) { .hero h1 .line { white-space: normal; } }
.hero h1 .line > span { display: inline-block; }
.hero .lead { margin-bottom: 2.2rem; }
.hero__ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero__visual { position: relative; }
.hero__visual .frame { position: relative; border-radius: var(--r-card); overflow: hidden; box-shadow: var(--shadow); }
.hero__visual .frame::after {
  content: ""; position: absolute; inset: 0;
  border: 1px solid rgba(59, 50, 42, 0.08); border-radius: inherit; pointer-events: none;
}
.hero__visual img { width: 100%; aspect-ratio: 4 / 3.2; object-fit: cover; object-position: center; transform: scale(1.05); }
@media (prefers-reduced-motion: no-preference) {
  @keyframes hero-kenburns {
    from { transform: scale(1.05) translate(0, 0); }
    to   { transform: scale(1.16) translate(1.8%, -1.4%); }
  }
  .hero__visual img { animation: hero-kenburns 22s ease-in-out infinite alternate; will-change: transform; }
}
.hero__rating {
  position: absolute; left: -1.4rem; bottom: 1.8rem;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-card);
  padding: 1rem 1.3rem; box-shadow: var(--shadow);
  font-size: 0.9rem; line-height: 1.5; color: var(--text-soft);
}
.hero__rating strong { display: block; font-family: 'El Messiri', serif; font-size: 1.4rem; color: var(--nude-deep); }

@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; min-height: auto; }
  .hero__rating { position: static; display: inline-block; margin-top: 1rem; }
  .hero .btn { width: 100%; justify-content: center; }
  .hero__mark { display: none; }
}

/* ---------- Stats-Zähler ---------- */

.stats { border-block: 1px solid var(--line); background: var(--surface); }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stats__item { padding: 2rem 1.5rem; border-left: 1px solid var(--line); text-align: left; }
.stats__item:first-child { border-left: 0; }
.stats__num { font-family: 'El Messiri', serif; font-size: clamp(2.1rem, 3.2vw, 2.9rem); font-weight: 700; color: var(--nude-deep); line-height: 1.1; }
.stats__label { font-size: 0.9rem; color: var(--text-soft); line-height: 1.5; }
@media (max-width: 900px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stats__item:nth-child(3) { border-left: 0; }
  .stats__item { border-top: 1px solid var(--line); }
  .stats__item:nth-child(-n+2) { border-top: 0; }
}

/* ---------- Leistungs-Stack (Sticky) ---------- */

.stack { position: relative; }
.stack-card {
  position: sticky; top: 92px;
  min-height: calc(100dvh - 92px);
  display: flex; align-items: center;
  background: var(--ink);
  border-top: 1px solid var(--line);
  padding-block: clamp(2.5rem, 5vw, 4rem);
}
.stack-card > .container { width: 100%; }
@media (max-width: 900px) {
  .stack-card > .container { display: block !important; }
  .stack-card > .container > div:first-child { margin-bottom: 1.8rem; }
}
.stack-card__visual { border-radius: var(--r-card); overflow: hidden; box-shadow: var(--shadow); position: relative; }
.stack-card__visual::after { content: ""; position: absolute; inset: 0; border: 1px solid rgba(59, 50, 42, 0.08); border-radius: inherit; pointer-events: none; }
.stack-card__visual img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; filter: grayscale(0.2); }
.stack-card__num { font-family: 'El Messiri', serif; color: var(--nude); font-size: 1rem; margin-bottom: 0.6rem; }
.stack-card ul { list-style: none; padding: 0; margin: 1.2rem 0 1.8rem; display: grid; gap: 0.5rem; }
.stack-card ul li { padding-left: 1.5rem; position: relative; color: var(--text-soft); }
.stack-card ul li::before { content: "→"; position: absolute; left: 0; color: var(--nude-deep); }
@media (max-width: 900px) {
  .stack-card { position: static; grid-template-columns: 1fr; min-height: auto; }
}

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

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 6vw, 6rem); align-items: center; }
.split__visual { border-radius: var(--r-card); overflow: hidden; box-shadow: var(--shadow); position: relative; }
.split__visual::after { content: ""; position: absolute; inset: 0; border: 1px solid rgba(59, 50, 42, 0.08); border-radius: inherit; pointer-events: none; }
.split__visual img { width: 100%; object-fit: cover; }
.tagline-row { display: flex; flex-wrap: wrap; gap: 0.6rem 1.6rem; margin: 1.4rem 0 2rem; color: var(--nude-deep); font-family: 'El Messiri', serif; font-size: 1.15rem; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } }

/* ---------- Bewertungen ---------- */

.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.review {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-card);
  padding: 1.9rem;
  display: flex; flex-direction: column; gap: 1rem;
  transition: transform 0.5s var(--ease), border-color 0.5s var(--ease);
}
.review:hover { transform: translateY(-4px); border-color: rgba(140, 115, 97, 0.5); }
.review__stars { color: var(--nude-deep); letter-spacing: 0.2em; font-size: 0.95rem; }
.review p { font-size: 0.97rem; color: var(--text); margin: 0; }
.review footer { font-size: 0.85rem; color: var(--text-soft); }
@media (max-width: 900px) { .reviews { grid-template-columns: 1fr; } }

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

.faq { display: grid; gap: 0.9rem; max-width: 820px; }
.faq details { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-card); overflow: hidden; }
.faq details[open] { border-color: rgba(201, 173, 156, 0.35); }
.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: 600; color: var(--heading); font-size: 1.05rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.5rem; font-weight: 400; color: var(--nude-deep); 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(--text-soft); }

/* ---------- Preise ---------- */

.price-group { margin-bottom: clamp(2.4rem, 5vw, 3.8rem); }
.price-group h2 { font-size: clamp(1.5rem, 2.6vw, 1.95rem); }
.price-group h2::after { content: ""; display: block; width: 64px; height: 2px; background: var(--nude-deep); margin-top: 0.5rem; }
.price-list { list-style: none; margin: 1.2rem 0 0; padding: 0; }
.price-list li { display: grid; grid-template-columns: 1fr auto auto; gap: 1.5rem; align-items: baseline; padding: 0.85rem 0.6rem; border-radius: 10px; }
.price-list li:nth-child(even) { background: var(--surface); }
.price-list .p-name { font-weight: 500; color: var(--text); }
.price-list .p-dur { color: var(--text-soft); font-size: 0.88rem; white-space: nowrap; }
.price-list .p-price { font-family: 'Manrope', sans-serif; font-weight: 800; color: var(--nude-deep); 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; }
}

/* ---------- Behandlungs-Karten & Ablauf ---------- */

.treatment-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem; }
.treatment-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-card); padding: 1.8rem; transition: transform 0.5s var(--ease), border-color 0.5s var(--ease); }
.treatment-card:hover { transform: translateY(-4px); border-color: rgba(140, 115, 97, 0.5); }
.treatment-card h3 { font-size: 1.12rem; margin-bottom: 0.4rem; }
.treatment-card p { font-size: 0.95rem; color: var(--text-soft); margin: 0; }
@media (max-width: 680px) { .treatment-grid { grid-template-columns: 1fr; } }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; counter-reset: step; }
.step { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-card); padding: 1.8rem; }
.step h3 { font-size: 1.06rem; display: flex; align-items: center; gap: 0.7rem; }
.step h3::before {
  counter-increment: step; content: counter(step);
  display: inline-flex; align-items: center; justify-content: center;
  width: 2rem; height: 2rem; border-radius: 999px; flex-shrink: 0;
  background: rgba(201, 173, 156, 0.25); color: var(--nude-deep);
  font-family: 'Manrope', sans-serif; font-size: 0.95rem; font-weight: 800;
}
.step p { font-size: 0.95rem; color: var(--text-soft); margin: 0; }
@media (max-width: 800px) { .steps { grid-template-columns: 1fr; } }

/* ---------- Seiten-Hero ---------- */

.page-hero { padding-top: calc(92px + clamp(2.5rem, 6vw, 5rem)); }
.page-hero__img { margin-top: clamp(2rem, 4vw, 3.5rem); border-radius: var(--r-card); overflow: hidden; box-shadow: var(--shadow); position: relative; }
.page-hero__img::after { content: ""; position: absolute; inset: 0; border: 1px solid rgba(59, 50, 42, 0.08); border-radius: inherit; pointer-events: none; }
.page-hero__img img { width: 100%; aspect-ratio: 21 / 9; object-fit: cover; }
.breadcrumb { font-size: 0.85rem; color: var(--text-soft); margin-bottom: 1.6rem; }
.breadcrumb a { color: var(--text-soft); text-decoration: none; }
.breadcrumb a:hover { color: var(--nude); }

/* ---------- Leistungs-Übersichtskarten ---------- */

.svc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem; }
.svc-card { position: relative; display: flex; flex-direction: column; justify-content: flex-end; min-height: 400px; border-radius: var(--r-card); overflow: hidden; text-decoration: none; box-shadow: var(--shadow); }
.svc-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease), filter 1s var(--ease); filter: grayscale(0.25); }
.svc-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(20, 18, 16, 0.88) 0%, rgba(20, 18, 16, 0.25) 50%, rgba(20, 18, 16, 0.1) 75%); }
.svc-card:hover img { transform: scale(1.05); filter: grayscale(0); }
.svc-card__body { position: relative; z-index: 1; padding: 1.8rem; }
.svc-card__body h3 { color: var(--white); margin-bottom: 0.3rem; }
.svc-card__body p { color: rgba(237, 231, 225, 0.85); font-size: 0.94rem; margin: 0; max-width: 44ch; }
.svc-card__more { position: relative; z-index: 1; display: inline-flex; align-items: center; gap: 0.5rem; margin: 0.8rem 1.8rem 1.7rem; font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 0.85rem; color: var(--nude-soft); }
@media (max-width: 800px) { .svc-grid { grid-template-columns: 1fr; } .svc-card { min-height: 320px; } }

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

.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(2.5rem, 5vw, 5rem); }
.contact-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-card); padding: 2rem; margin-bottom: 1.4rem; }
.contact-card h3 { font-size: 1.05rem; margin-bottom: 0.7rem; }
.contact-card p { margin-bottom: 0.4rem; }
.hours { width: 100%; border-collapse: collapse; }
.hours td { padding: 0.55rem 0; border-bottom: 1px solid var(--line); font-size: 0.97rem; color: var(--text-soft); }
.hours tr:last-child td { border-bottom: 0; }
.hours td:last-child { text-align: right; font-weight: 600; color: var(--text); }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

/* ---------- CTA-Band ---------- */

.cta-band { position: relative; overflow: hidden; background: var(--surface); border-block: 1px solid var(--line); }
.cta-band__mark { position: absolute; right: -5rem; top: 50%; transform: translateY(-50%); width: 24rem; opacity: 0.06; pointer-events: none; }
.cta-band__inner { position: relative; text-align: center; max-width: 640px; margin-inline: auto; }
.cta-band__inner .btn { margin-top: 1.6rem; }

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

.legal h2 { font-size: 1.45rem; margin-top: 2.4em; }
.legal h3 { font-size: 1.12rem; margin-top: 1.8em; }
.legal p, .legal li { color: var(--text-soft); }
.legal strong { color: var(--text); }

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

.site-footer { background: var(--dark); color: rgba(237, 228, 218, 0.75); padding-block: clamp(3.5rem, 6vw, 5rem) 2rem; border-top: 1px solid var(--line); }
.site-footer a { color: rgba(244, 236, 228, 0.92); text-decoration: none; }
.site-footer a:hover { color: var(--nude); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 3rem; }
.footer-grid h4 { color: var(--white) !important; font-size: 0.95rem; margin-bottom: 1rem; font-family: 'Manrope', sans-serif; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.5rem; font-size: 0.94rem; }
.footer-grid img { height: 60px; width: auto; margin-bottom: 1rem; }
.footer-grid p { font-size: 0.92rem; line-height: 1.7; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.12); padding-top: 1.6rem; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: 0.84rem; color: rgba(237, 228, 218, 0.6); }
.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(--nude); }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .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(--surface-2); border: 1px solid var(--line); 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.1rem; margin-bottom: 0.5rem; }
.cookie-banner p { font-size: 0.87rem; color: var(--text-soft); margin-bottom: 1.1rem; }
.cookie-banner__row { display: flex; gap: 0.7rem; flex-wrap: wrap; }
.cookie-banner .btn { padding: 0.7rem 1.2rem; font-size: 0.84rem; }
.cookie-toggle { display: flex; align-items: center; gap: 0.6rem; font-size: 0.88rem; font-weight: 600; margin-bottom: 1rem; color: var(--text); }
.cookie-toggle input { accent-color: var(--nude); width: 1.1rem; height: 1.1rem; }
.cookie-toggle span small { display: block; font-weight: 400; color: var(--text-soft); }

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

.wa-float {
  position: fixed; right: 1.4rem; bottom: 1.4rem; z-index: 50;
  display: inline-flex; align-items: center; justify-content: center;
  width: 60px; height: 60px; border-radius: 999px;
  background: var(--nude-deep); color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: var(--shadow);
  transition: transform 0.5s var(--ease), background-color 0.5s var(--ease);
}
.wa-float:hover { background: var(--dark); color: var(--white); 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; }
}
@media (max-width: 640px) { .wa-float { width: 54px; height: 54px; right: 1rem; bottom: 1rem; } }

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

.reveal { opacity: 1; }
@media (prefers-reduced-motion: no-preference) {
  .js .reveal { opacity: 0; transform: translateY(26px); }
  .js .hero h1 .line > span { transform: translateY(110%); }
}

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

.skip-link { position: absolute; left: -999px; top: 0; z-index: 100; background: var(--nude-deep); 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(--nude-deep); outline-offset: 2px; }
