/* ============================================================
   Salon Haarliebe — Boho Design System
   Altrosa monochrom + warmes Braun + Creme
   ============================================================ */

:root {
  /* Altrosa-Nuancen */
  --rose-50:  #FAF5EF;
  --rose-100: #F0E1D8;
  --rose-200: #E3BFB3;
  --rose-300: #D9B5A5;
  --rose-400: #C99B8C;
  --rose-500: #C77F8C;
  --rose-700: #8B5A5A;
  --brown-900: #3D2B24;
  --brown-700: #5A4239;

  /* Effects */
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow-soft: 0 8px 32px rgba(139, 90, 90, 0.10);
  --shadow-card: 0 4px 24px rgba(139, 90, 90, 0.08);
  --shadow-hover: 0 12px 40px rgba(139, 90, 90, 0.15);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --duration: 250ms;

  /* Typography */
  --font-heading: "Cormorant Garamond", Georgia, serif;
  --font-body: "Jost", system-ui, -apple-system, sans-serif;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.65;
  color: var(--brown-900);
  background-color: var(--rose-50);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--rose-700); text-decoration: none; transition: color var(--duration) var(--ease-out); }
a:hover { color: var(--brown-900); }

h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 500; line-height: 1.15; color: var(--brown-900); letter-spacing: -0.01em; }
h1 { font-size: clamp(2.75rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 2.5vw, 2rem); }
h4 { font-size: 1.25rem; }
p  { font-weight: 300; }

::selection { background: var(--rose-200); color: var(--brown-900); }

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

/* ---------- Layout Helpers ---------- */
.container { width: 100%; max-width: 1200px; margin-inline: auto; padding-inline: 1.5rem; }
.section { padding-block: clamp(4rem, 10vw, 8rem); position: relative; }
.section--soft { background: var(--rose-100); }
.section--rose { background: var(--rose-200); }
.section--cream { background: var(--rose-50); }

.text-center { text-align: center; }
.eyebrow {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--rose-700);
  display: block;
  margin-bottom: 1rem;
}
.section-title { margin-bottom: 1.25rem; }
.section-intro { max-width: 38rem; margin-inline: auto; color: var(--brown-700); font-size: 1.0625rem; }

/* ---------- Boho Grain Texture ---------- */
body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: 0.04;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  mix-blend-mode: multiply;
}

/* ---------- Blob Decoration ---------- */
.blob {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
}
.blob--svg { width: 100%; height: 100%; }

/* organic clip-path masks for images */
.blob-mask {
  -webkit-clip-path: path("M 44.5,-67.2 C 57.3,-58.3 65.6,-43.6 70.3,-28.4 C 75,-13.2 76.1,2.5 71.4,16.4 C 66.7,30.3 56.2,42.4 43.2,51.2 C 30.2,60 14.7,65.5 -1.4,66.7 C -17.5,67.9 -34.1,64.8 -47.1,55.4 C -60.1,46 -69.5,30.3 -72.1,13.6 C -74.7,-3.1 -70.5,-20.8 -60.9,-33.7 C -51.3,-46.6 -36.3,-54.7 -21.7,-62.5 C -7.1,-70.3 7.1,-77.8 19.6,-76.3 C 32.1,-74.8 43,-69.6 44.5,-67.2 Z");
  clip-path: path("M 44.5,-67.2 C 57.3,-58.3 65.6,-43.6 70.3,-28.4 C 75,-13.2 76.1,2.5 71.4,16.4 C 66.7,30.3 56.2,42.4 43.2,51.2 C 30.2,60 14.7,65.5 -1.4,66.7 C -17.5,67.9 -34.1,64.8 -47.1,55.4 C -60.1,46 -69.5,30.3 -72.1,13.6 C -74.7,-3.1 -70.5,-20.8 -60.9,-33.7 C -51.3,-46.6 -36.3,-54.7 -21.7,-62.5 C -7.1,-70.3 7.1,-77.8 19.6,-76.3 C 32.1,-74.8 43,-69.6 44.5,-67.2 Z");
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 50;
  padding-block: 0.9rem;
  background: rgba(250, 245, 239, 0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid rgba(231, 191, 179, 0.4);
  transition: padding var(--duration) var(--ease-out), background var(--duration) var(--ease-out);
}
.site-header.is-scrolled { padding-block: 0.6rem; background: rgba(250, 245, 239, 0.95); }

.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.site-header__logo { max-height: 48px; width: auto; }
.site-header__logo img { height: 48px; width: auto; }

.main-nav { display: flex; align-items: center; gap: 0.25rem; }
.main-nav a {
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--brown-900);
  padding: 0.6rem 0.9rem;
  border-radius: var(--radius-sm);
  transition: background var(--duration) var(--ease-out), color var(--duration) var(--ease-out);
}
.main-nav a:hover { background: var(--rose-100); color: var(--rose-700); }

.main-nav__cta {
  background: var(--rose-500) !important;
  color: #fff !important;
  padding: 0.7rem 1.25rem !important;
  border-radius: var(--radius-lg) !important;
  font-weight: 500 !important;
  margin-left: 0.5rem;
}
.main-nav__cta:hover { background: var(--brown-900) !important; color: #fff !important; }

.burger {
  display: none;
  width: 44px; height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  align-items: center; justify-content: center;
  border-radius: var(--radius-sm);
}
.burger span { display: block; width: 24px; height: 2px; background: var(--brown-900); position: relative; transition: transform var(--duration) var(--ease-out), opacity 0.1s; }
.burger span::before, .burger span::after {
  content: ""; position: absolute; left: 0; width: 24px; height: 2px; background: var(--brown-900);
  transition: transform var(--duration) var(--ease-out);
}
.burger span::before { transform: translateY(-7px); }
.burger span::after  { transform: translateY(7px); }
.burger.is-open span { background: transparent; }
.burger.is-open span::before { transform: rotate(45deg); }
.burger.is-open span::after  { transform: rotate(-45deg); }

@media (max-width: 900px) {
  .burger { display: flex; }
  .main-nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(85vw, 360px);
    background: var(--rose-50);
    flex-direction: column;
    align-items: stretch;
    padding: 5rem 1.5rem 2rem;
    gap: 0.25rem;
    transform: translateX(100%);
    transition: transform 300ms var(--ease-out);
    box-shadow: -20px 0 60px rgba(61, 43, 36, 0.18);
    overflow-y: auto;
  }
  .main-nav.is-open { transform: translateX(0); }
  .main-nav a { padding: 1rem 1rem; font-size: 1.05rem; border-bottom: 1px solid rgba(231, 191, 179, 0.3); border-radius: 0; }
  .main-nav__cta { margin: 1rem 0 0; text-align: center; border-radius: var(--radius-lg) !important; border-bottom: none !important; }
  .nav-backdrop {
    position: fixed; inset: 0; background: rgba(61, 43, 36, 0.45);
    opacity: 0; visibility: hidden; transition: opacity 300ms var(--ease-out), visibility 300ms;
    z-index: 49;
  }
  .nav-backdrop.is-open { opacity: 1; visibility: visible; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding-top: 7rem;
  padding-bottom: 4rem;
  background: linear-gradient(170deg, var(--rose-100) 0%, var(--rose-50) 55%, var(--rose-50) 100%);
  overflow: hidden;
}
.hero::before, .hero::after {
  content: ""; position: absolute; pointer-events: none; z-index: 0; border-radius: 50%; filter: blur(2px);
}
.hero::before {
  width: 320px; height: 320px; top: -80px; right: -60px;
  background: radial-gradient(circle, rgba(231, 191, 179, 0.55) 0%, transparent 70%);
}
.hero::after {
  width: 260px; height: 260px; bottom: -80px; left: -40px;
  background: radial-gradient(circle, rgba(199, 127, 140, 0.22) 0%, transparent 70%);
}
.hero__inner {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
  max-width: 1200px; margin-inline: auto; padding-inline: 1.5rem;
}
@media (min-width: 880px) {
  .hero__inner { grid-template-columns: 1.05fr 0.95fr; gap: 4rem; }
}
.hero__content { text-align: center; }
@media (min-width: 880px) { .hero__content { text-align: left; max-width: 32rem; } }
.hero__logo { max-width: 240px; margin: 0 auto 1.75rem; }
@media (min-width: 880px) { .hero__logo { margin: 0 0 1.75rem; } }
.hero__logo img { width: 100%; height: auto; }
.hero__eyebrow {
  font-family: var(--font-body); font-weight: 400;
  font-size: 0.78rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--rose-700); display: block; margin-bottom: 0.85rem;
}
.hero__title {
  font-family: var(--font-heading); font-weight: 500;
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  line-height: 1.08; color: var(--brown-900);
  margin-bottom: 1rem; letter-spacing: -0.01em;
}
.hero__title em { font-style: italic; color: var(--rose-500); font-weight: 400; }
.hero__tagline {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  font-weight: 400;
  margin-bottom: 0.5rem;
  color: var(--brown-700);
  letter-spacing: 0.02em;
}
.hero__sub {
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose-700);
  margin-bottom: 2rem;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 0.85rem; justify-content: center; margin-bottom: 1.75rem; }
@media (min-width: 880px) { .hero__cta { justify-content: flex-start; } }

.hero__media { position: relative; }
.hero__media-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 8px solid #fff;
  transform: rotate(-1.5deg);
}
.hero__media-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero__media-frame::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(139, 90, 90, 0.18) 100%);
}
.hero__badge {
  position: absolute; bottom: 1.25rem; left: -1.25rem;
  background: var(--rose-500); color: #fff;
  font-family: var(--font-heading); font-style: italic;
  padding: 0.85rem 1.25rem; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card); transform: rotate(2deg);
  font-size: 1rem; line-height: 1.2; max-width: 12rem;
}
@media (max-width: 879px) { .hero__badge { left: 1rem; } }

.btn {
  display: inline-flex;
  align-items: center; justify-content: center; gap: 0.5rem;
  min-height: 48px;
  padding: 0.85rem 1.75rem;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  border-radius: var(--radius-lg);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform var(--duration) var(--ease-out), background var(--duration) var(--ease-out), color var(--duration) var(--ease-out), box-shadow var(--duration) var(--ease-out);
  text-align: center;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--primary { background: var(--rose-500); color: #fff; }
.btn--primary:hover { background: var(--brown-900); color: #fff; box-shadow: var(--shadow-hover); }
.btn--ghost { background: rgba(255,255,255,0.12); color: #fff; border-color: rgba(255,255,255,0.5); backdrop-filter: blur(6px); }
.btn--ghost:hover { background: rgba(255,255,255,0.22); color: #fff; }
.btn--solid-ghost { background: transparent; color: var(--brown-900); border-color: var(--rose-300); }
.btn--solid-ghost:hover { background: var(--rose-100); color: var(--brown-900); }
.btn--lg { min-height: 56px; padding: 1rem 2rem; font-size: 1rem; }
.btn .icon { width: 18px; height: 18px; stroke-width: 2; }

.hero__social { display: flex; gap: 0.75rem; justify-content: center; }
@media (min-width: 880px) { .hero__social { justify-content: flex-start; } }
.hero__social a {
  display: inline-flex; width: 44px; height: 44px; align-items: center; justify-content: center;
  border-radius: 50%; background: #fff; color: var(--rose-700);
  border: 1px solid var(--rose-200);
  box-shadow: var(--shadow-card);
  transition: background var(--duration) var(--ease-out), color var(--duration) var(--ease-out), transform var(--duration) var(--ease-out);
}
.hero__social a:hover { background: var(--rose-500); color: #fff; transform: translateY(-3px); border-color: var(--rose-500); }
.hero__social .icon { width: 20px; height: 20px; stroke-width: 1.75; }

.scroll-hint {
  position: absolute; bottom: 1rem; left: 50%; transform: translateX(-50%);
  color: var(--rose-700); z-index: 3;
  animation: bob 2.4s ease-in-out infinite;
}
.scroll-hint .icon { width: 22px; height: 22px; }
@keyframes bob { 0%,100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 8px); } }

/* ---------- Cards / Generic ---------- */
.card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-card);
  transition: transform var(--duration) var(--ease-out), box-shadow var(--duration) var(--ease-out);
  border: 1px solid rgba(231, 191, 179, 0.25);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }

.grid { display: grid; gap: 1.75rem; }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 30rem), 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 22rem), 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 17rem), 1fr)); }

/* ---------- About ---------- */
.about__media { position: relative; }
.about__media img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-xl); }
.about__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 880px) {
  .about__layout { grid-template-columns: 1fr 1fr; gap: 4rem; }
  .about__layout--reverse .about__media { order: 2; }
}
.about__text p { margin-bottom: 1.1rem; color: var(--brown-700); }
.about__text p:first-of-type::first-letter {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 500;
  float: left;
  line-height: 0.9;
  padding: 0.2rem 0.6rem 0 0;
  color: var(--rose-500);
}

/* ---------- Services ---------- */
.service-card { text-align: center; padding: 2.5rem 1.75rem; }
.service-card__icon {
  display: inline-flex; width: 72px; height: 72px;
  align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--rose-100);
  color: var(--rose-700);
  margin-bottom: 1.5rem;
  transition: background var(--duration) var(--ease-out), color var(--duration) var(--ease-out);
}
.service-card:hover .service-card__icon { background: var(--rose-500); color: #fff; }
.service-card__icon .icon { width: 32px; height: 32px; stroke-width: 1.75; }
.service-card h3 { margin-bottom: 0.75rem; }
.service-card p { color: var(--brown-700); font-size: 0.95rem; }

/* ---------- Team ---------- */
.team-card { text-align: center; padding: 2rem 1.5rem; }
.team-card__avatar {
  width: 140px; height: 140px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  overflow: hidden;
  background: var(--rose-200);
  position: relative;
  display: flex; align-items: center; justify-content: center;
  color: var(--rose-700);
}
.team-card__avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-card__avatar .icon { width: 56px; height: 56px; stroke-width: 1.5; }
.team-card h3 { font-size: 1.5rem; margin-bottom: 0.25rem; }
.team-card__role { color: var(--rose-700); font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; }

/* ---------- Reviews ---------- */
.review-card { display: flex; flex-direction: column; padding: 2rem; height: 100%; }
.review-card__stars { display: flex; gap: 2px; margin-bottom: 1rem; color: var(--rose-500); }
.review-card__stars .icon { width: 18px; height: 18px; fill: currentColor; stroke: none; }
.review-card__quote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.125rem;
  line-height: 1.5;
  color: var(--brown-900);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}
.review-card__quote::before { content: "\201C"; color: var(--rose-400); font-size: 2.5rem; line-height: 0; vertical-align: -0.4em; margin-right: 0.15em; }
.review-card__author { display: flex; align-items: center; gap: 0.75rem; }
.review-card__avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--rose-200); color: var(--rose-700);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-size: 1.25rem; font-weight: 600;
  flex-shrink: 0;
}
.review-card__name { font-weight: 500; color: var(--brown-900); font-size: 0.95rem; }
.review-card__meta { color: var(--brown-700); font-size: 0.78rem; opacity: 0.75; }
.review-card__pill {
  display: inline-block; font-size: 0.7rem; letter-spacing: 0.08em;
  padding: 0.2rem 0.7rem; border-radius: 999px;
  background: var(--rose-100); color: var(--rose-700);
  margin-top: 0.5rem;
}

.reviews__cta { text-align: center; margin-top: 3rem; }
.reviews__google-link {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.95rem; color: var(--brown-700);
  padding: 0.7rem 1.4rem; border-radius: var(--radius-lg);
  border: 1px solid var(--rose-300); background: #fff;
  transition: background var(--duration) var(--ease-out), color var(--duration) var(--ease-out), transform var(--duration) var(--ease-out);
}
.reviews__google-link:hover { background: var(--rose-100); color: var(--brown-900); transform: translateY(-2px); }
.reviews__google-link .icon { width: 18px; height: 18px; }

/* ---------- Opening Hours ---------- */
.hours-card { max-width: 42rem; margin-inline: auto; padding: 2.5rem; }
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table tr { border-bottom: 1px solid rgba(231, 191, 179, 0.4); }
.hours-table tr:last-child { border-bottom: none; }
.hours-table td { padding: 0.9rem 0.25rem; font-size: 1.05rem; }
.hours-table td:first-child { font-family: var(--font-heading); font-size: 1.25rem; color: var(--brown-900); }
.hours-table td:last-child { text-align: right; color: var(--brown-700); }
.hours-table .is-closed { color: var(--rose-500); font-style: italic; font-size: 0.95rem; }
.hours-table .is-today { color: var(--rose-700); font-weight: 500; }
.hours-cta { text-align: center; margin-top: 2rem; }

/* ---------- Career ---------- */
.career-card { max-width: 48rem; margin-inline: auto; padding: 3rem; }
.career-card h3 { color: var(--rose-700); margin-bottom: 0.5rem; font-size: 1.5rem; }
.career-card h4 { margin: 1.75rem 0 0.75rem; color: var(--brown-900); font-family: var(--font-body); font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase; font-size: 0.85rem; }
.career-card ul { list-style: none; margin-bottom: 1rem; }
.career-card li { padding-left: 1.75rem; position: relative; margin-bottom: 0.5rem; color: var(--brown-700); }
.career-card li::before { content: ""; position: absolute; left: 0; top: 0.65em; width: 8px; height: 8px; border-radius: 50%; background: var(--rose-300); }
.career-card p { color: var(--brown-700); margin-bottom: 1rem; }
.career-card .contact-block { background: var(--rose-100); padding: 1.5rem; border-radius: var(--radius-md); margin-top: 1.5rem; }

/* ---------- Contact ---------- */
.contact__layout { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 880px) { .contact__layout { grid-template-columns: 1fr 1fr; gap: 3rem; } }
.contact__info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact__item { display: flex; gap: 1rem; align-items: flex-start; }
.contact__item .icon-wrap {
  flex-shrink: 0; width: 48px; height: 48px; border-radius: 50%;
  background: var(--rose-100); color: var(--rose-700);
  display: inline-flex; align-items: center; justify-content: center;
}
.contact__item .icon { width: 22px; height: 22px; stroke-width: 1.75; }
.contact__item h4 { margin-bottom: 0.25rem; font-family: var(--font-body); font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase; font-size: 0.8rem; color: var(--rose-700); }
.contact__item p, .contact__item a { color: var(--brown-900); font-size: 1.05rem; }
.contact__map { border-radius: var(--radius-lg); overflow: hidden; min-height: 360px; box-shadow: var(--shadow-card); border: 1px solid var(--rose-200); }
.contact__map iframe { width: 100%; height: 100%; min-height: 360px; border: 0; display: block; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--brown-900);
  color: var(--rose-100);
  padding-block: 3rem 2rem;
}
.site-footer__inner { display: flex; flex-direction: column; gap: 2rem; align-items: center; text-align: center; }
.site-footer__nav { display: flex; flex-wrap: wrap; gap: 1.25rem; justify-content: center; }
.site-footer__nav a { color: var(--rose-100); font-size: 0.9rem; letter-spacing: 0.04em; }
.site-footer__nav a:hover { color: var(--rose-300); }
.site-footer__social { display: flex; gap: 1rem; }
.site-footer__social a {
  width: 44px; height: 44px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(243, 225, 216, 0.1); color: var(--rose-100);
  border: 1px solid rgba(243, 225, 216, 0.2);
  transition: background var(--duration) var(--ease-out), transform var(--duration) var(--ease-out);
}
.site-footer__social a:hover { background: var(--rose-500); transform: translateY(-3px); }
.site-footer__social .icon { width: 20px; height: 20px; stroke-width: 1.75; }
.site-footer__copy { font-size: 0.8rem; color: rgba(243, 225, 216, 0.6); letter-spacing: 0.04em; }
.site-footer__legal { display: flex; gap: 1.25rem; flex-wrap: wrap; justify-content: center; }
.site-footer__legal a { color: rgba(243, 225, 216, 0.6); font-size: 0.8rem; }
.site-footer__legal a:hover { color: var(--rose-200); }

/* ---------- Legal Pages ---------- */
.legal { padding-top: 8rem; padding-bottom: 5rem; }
.legal__inner { max-width: 46rem; margin-inline: auto; }
.legal h1 { font-size: clamp(2rem, 4vw, 2.75rem); margin-bottom: 2rem; }
.legal h2 { font-size: 1.5rem; margin: 2.5rem 0 1rem; color: var(--rose-700); }
.legal h3 { font-size: 1.15rem; margin: 2rem 0 0.75rem; color: var(--brown-900); }
.legal h4 { font-size: 1rem; margin: 1.5rem 0 0.5rem; color: var(--brown-900); font-family: var(--font-body); font-weight: 500; }
.legal p { margin-bottom: 1rem; color: var(--brown-700); }
.legal ul { margin: 0 0 1rem 1.5rem; }
.legal li { margin-bottom: 0.5rem; color: var(--brown-700); }
.legal a { color: var(--rose-700); text-decoration: underline; text-underline-offset: 3px; }
.legal__back {
  display: inline-flex; align-items: center; gap: 0.5rem;
  margin-bottom: 2rem; font-size: 0.9rem; color: var(--brown-700);
}
.legal__back .icon { width: 18px; height: 18px; }

/* ---------- Reveal Animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal--delay-1 { transition-delay: 80ms; }
.reveal--delay-2 { transition-delay: 160ms; }
.reveal--delay-3 { transition-delay: 240ms; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
  .scroll-hint { animation: none; }
}

/* ---------- Utility ---------- */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 1rem; top: -100px;
  background: var(--brown-900); color: #fff;
  padding: 0.75rem 1.25rem; border-radius: var(--radius-sm);
  z-index: 200; transition: top 200ms var(--ease-out);
  font-size: 0.9rem;
}
.skip-link:focus { top: 1rem; }