/* =====================================================================
   Millenium Beauty & Nails — Rosé Clair
   Production stylesheet. Mobile-first, responsive, design tokens from
   the handoff README. No framework, no build step.
   ===================================================================== */

/* ---- Design tokens ---------------------------------------------------- */
:root {
  /* Colours */
  --bg: #fbf5f3;            /* warmes Blush-Weiss */
  --bg-blush: #fdeef1;      /* helle Sektion */
  --ink: #3a2a2e;           /* Text primär */
  --ink-2: #6e565c;         /* Text sekundär */
  --muted: #a98a92;         /* Labels / gedämpft */
  --muted-2: #b9a4aa;
  --accent: #c8607a;        /* Marke Rosé */
  --accent-grad: linear-gradient(135deg, #c8607a, #e09aac);
  --hero-grad: linear-gradient(160deg, #f6d3d9, #f3b9c5);
  --overlay: linear-gradient(90deg, rgba(58,28,36,.55), rgba(58,28,36,.05));
  --card: #ffffff;
  --line: #f1e3e6;
  --line-2: #e3c3cb;
  --line-3: #e6d6d2;
  --footer-bg: #3a2a2e;
  --footer-ink: #d8bcc2;
  --footer-muted: #b89aa1;
  --footer-logo: #f6e7ea;

  /* Radii */
  --r-card: 24px;
  --r-img: 16px;
  --r-pill: 40px;

  /* Shadows */
  --shadow-card: 0 20px 44px -26px rgba(120,70,80,.45);
  --shadow-card-soft: 0 20px 44px -28px rgba(120,70,80,.45);

  /* Type */
  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-ui: 'Jost', system-ui, -apple-system, 'Segoe UI', sans-serif;

  /* Layout */
  --maxw: 1280px;
  --gutter: clamp(20px, 5vw, 48px);
}

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

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-ui);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; }

a { color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  margin: 0;
  color: var(--ink);
  line-height: 1.05;
}

p { margin: 0; }

button { font: inherit; cursor: pointer; }

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

/* Skip link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--accent);
  color: #fff;
  padding: 12px 20px;
  border-radius: 0 0 12px 0;
  font-size: 14px;
}
.skip-link:focus { left: 0; }

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

.section { padding-block: clamp(48px, 9vw, 84px); }
.section--tight { padding-block: clamp(36px, 7vw, 64px); }
.bg-blush { background: var(--bg-blush); }

.eyebrow {
  font-family: var(--font-ui);
  font-size: 13px;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin: 0 0 12px;
}

.section-head { text-align: center; margin-bottom: clamp(28px, 5vw, 44px); }
.section-head h2,
.section-head h3 { font-size: clamp(30px, 6vw, 46px); }

.lead {
  font-weight: 300;
  font-size: clamp(15px, 2.4vw, 17px);
  line-height: 1.8;
  color: var(--ink-2);
}

/* ---- Buttons ---------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 15px;
  text-decoration: none;
  padding: 14px 30px;
  border-radius: var(--r-pill);
  border: 1px solid transparent;
  transition: transform .15s ease, background-color .15s ease, color .15s ease, box-shadow .15s ease;
}
.btn--primary { background: var(--accent); color: #fff; }
.btn--primary:hover { background: #b5566d; transform: translateY(-1px); }
.btn--light { background: #fff; color: var(--accent); box-shadow: 0 10px 30px -16px rgba(120,70,80,.5); }
.btn--light:hover { transform: translateY(-1px); }
.btn--ghost { border-color: var(--line-2); color: var(--accent); background: transparent; }
.btn--ghost:hover { background: var(--bg-blush); }

/* ---- Header / Nav ----------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251,245,243,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-block: 14px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  flex: 0 0 auto;
}
.brand__logo {
  height: clamp(30px, 4.4vw, 40px);
  width: auto;
  display: block;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.6vw, 22px);
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 14px;
  white-space: nowrap;
}
.nav__links a {
  text-decoration: none;
  color: var(--ink-2);
  font-weight: 400;
  padding: 6px 2px;
  transition: color .15s ease;
}
.nav__links a:hover { color: var(--accent); }
.nav__links a[aria-current="page"] { color: var(--accent); font-weight: 500; }

.nav__cta { flex: 0 0 auto; }

.nav__toggle {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--line-2);
  background: #fff;
  border-radius: 12px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.nav__toggle span { width: 20px; height: 2px; background: var(--accent); border-radius: 2px; transition: transform .2s ease, opacity .2s ease; }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
@media (max-width: 1024px) {
  .nav__toggle { display: flex; }
  .nav__menu {
    position: absolute;
    left: 0; right: 0;
    top: 100%;
    background: rgba(251,245,243,.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
    display: grid;
    gap: 4px;
    padding: 12px var(--gutter) 22px;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: opacity .2s ease, transform .2s ease, visibility .2s;
  }
  .nav__menu[data-open="true"] {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    visibility: visible;
  }
  .nav__links {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
    font-size: 16px;
  }
  .nav__links li { width: 100%; }
  .nav__links a { display: block; width: 100%; padding: 13px 4px; border-bottom: 1px solid var(--line); }
  .nav__menu .nav__cta { margin-top: 14px; }
  .nav__menu .btn { width: 100%; justify-content: center; }
}
@media (min-width: 1025px) {
  .nav__menu { display: flex; align-items: center; gap: 24px; }
}

/* ---- Hero slider ------------------------------------------------------ */
.hero {
  position: relative;
  overflow: hidden;
  background: #f3b9c5;
  height: clamp(440px, 70vh, 600px);
}
.hero__track {
  display: flex;
  height: 100%;
  transition: transform .7s cubic-bezier(.6,0,.2,1);
}
.hero__slide {
  position: relative;
  flex: 0 0 100%;
  height: 100%;
  display: flex;
  align-items: center;
}
.hero__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero__slide::after {
  content: "";
  position: absolute; inset: 0;
  background: var(--overlay);
}
.hero__content {
  position: relative;
  margin-inline: var(--gutter);
  padding-bottom: 56px;
  max-width: 540px;
  z-index: 2;
  animation: fadeUp .8s ease both;
}
.hero__eyebrow {
  font-size: 13px;
  letter-spacing: .42em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 16px;
}
.hero__title {
  font-size: clamp(40px, 9vw, 66px);
  line-height: .98;
  color: #fff;
}
.hero__title em { font-style: italic; }
.hero__text {
  font-weight: 300;
  font-size: clamp(14px, 2.6vw, 16px);
  line-height: 1.7;
  color: #fbe3e9;
  margin: 22px 0 28px;
}

.hero__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 0;
  background: rgba(255,255,255,.85);
  color: var(--accent);
  font-size: 22px;
  display: grid; place-items: center;
  z-index: 5;
  transition: background-color .15s ease;
}
.hero__arrow:hover { background: #fff; }
.hero__arrow--prev { left: 18px; }
.hero__arrow--next { right: 18px; }

.hero__dots {
  position: absolute;
  bottom: 24px;
  right: var(--gutter);
  display: flex;
  gap: 9px;
  z-index: 5;
}
.hero__dot {
  width: 9px; height: 9px;
  border: 0;
  border-radius: 9px;
  background: #e3c3cb;
  transition: width .35s ease, background-color .35s ease;
}
.hero__dot[aria-current="true"] { width: 30px; background: var(--accent); }

@media (max-width: 560px) {
  .hero__arrow { display: none; }
}
/* Wenn die Pfeile sichtbar sind (>560px), den Slider-Inhalt rechts neben
   dem Zurück-Pfeil starten, damit der runde Pfeil den Text nicht überlappt.
   Pfeil: left 18px + 48px Breite = 66px, plus Abstand. */
@media (min-width: 561px) {
  .hero__content { margin-left: 84px; }
}

/* ---- Treatment cards -------------------------------------------------- */
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
@media (max-width: 900px) { .cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .cards { grid-template-columns: 1fr; } }

.card {
  display: block;
  text-decoration: none;
  background: var(--card);
  border-radius: var(--r-card);
  padding: 18px;
  box-shadow: var(--shadow-card);
  transition: transform .18s ease, box-shadow .18s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 28px 50px -26px rgba(120,70,80,.5); }
.card__img { width: 100%; height: 180px; object-fit: cover; border-radius: var(--r-img); }
.card__title { font-size: 25px; margin-top: 16px; }
.card__sub { font-size: 13px; color: var(--muted); margin: 4px 0 12px; }
.card__price { font-size: 14px; color: var(--accent); font-weight: 500; }

/* ---- Vorteile (two boxes) -------------------------------------------- */
.vorteile {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}
@media (max-width: 800px) { .vorteile { grid-template-columns: 1fr; } }

.vbox {
  border-radius: 26px;
  padding: clamp(28px, 5vw, 46px);
}
.vbox--accent { background: var(--accent); color: #fff; }
.vbox--accent .vbox__text { color: #fbe3e9; }
.vbox--light { background: #fff; box-shadow: var(--shadow-card-soft); }
.vbox--light .vbox__text { color: var(--ink-2); }
.vbox h3 { font-size: clamp(26px, 4vw, 33px); margin-bottom: 8px; }
.vbox--accent h3 { color: #fff; }
.vbox__text { font-weight: 300; font-size: 15px; line-height: 1.7; margin-bottom: 24px; }
.checklist { display: flex; flex-direction: column; gap: 14px; font-size: 15px; line-height: 1.5; list-style: none; margin: 0; padding: 0; }
.checklist li { display: flex; gap: 12px; }
.checklist .check { flex: 0 0 auto; }
.vbox--accent .check { color: #fff; }
.vbox--light .check { color: var(--accent); }
.vbox--light .checklist { color: var(--ink); }

/* ---- About teaser ----------------------------------------------------- */
.teaser {
  display: grid;
  grid-template-columns: 5fr 7fr;
  align-items: center;
  background: var(--bg-blush);
}
.teaser__img { width: 100%; height: 100%; min-height: 360px; object-fit: cover; }
.teaser__body { padding: clamp(40px, 6vw, 72px) var(--gutter); }
.teaser__body h2 { font-size: clamp(32px, 5vw, 48px); margin-bottom: 20px; }
@media (max-width: 800px) {
  .teaser { grid-template-columns: 1fr; }
  .teaser__img { min-height: 280px; }
}

/* ---- Foto-Platzhalter (kein Stock-Porträt) --------------------------- */
.photo-placeholder {
  display: flex;
  align-items: flex-end;
  background: var(--hero-grad);
  color: #fff;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 16px;
  box-sizing: border-box;
}

/* ---- Gallery ---------------------------------------------------------- */
.gallery-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  margin-bottom: 32px;
}
.gallery-head h2 { font-size: clamp(30px, 6vw, 46px); }
.gallery-link {
  color: var(--accent);
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity .15s ease;
}
.gallery-link:hover { opacity: .7; }
.lightwidget-widget { display: block; }
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.gallery img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 18px; }
@media (max-width: 720px) { .gallery { grid-template-columns: repeat(2, 1fr); } }

/* ---- Termine + Karte -------------------------------------------------- */
.termine-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 26px;
  align-items: stretch;
}
@media (max-width: 860px) { .termine-grid { grid-template-columns: 1fr; } }

.hours-card {
  background: #fff;
  border-radius: 26px;
  padding: clamp(28px, 5vw, 44px);
  box-shadow: var(--shadow-card-soft);
}
.hours-card h2,
.hours-card h3 { font-size: clamp(26px, 4vw, 34px); margin-bottom: 18px; }
.hours-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 16px;
  color: var(--ink-2);
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.hours-row:last-of-type { border-bottom: 0; }
.hours-row .val { color: var(--ink); }
.hours-row--closed { color: var(--muted-2); }
.hours-note { font-weight: 300; font-size: 13.5px; color: var(--muted); margin-top: 16px; }

.map-card { border-radius: 26px; overflow: hidden; min-height: 340px; position: relative; }
.map-card iframe { border: 0; width: 100%; height: 100%; min-height: 340px; display: block; }

/* ---- Map + Google-Bewertungs-QR ------------------------------------- */
.map-and-qr { display: flex; gap: 26px; align-items: stretch; }
.map-and-qr .map-card { flex: 1 1 auto; min-width: 0; }
@media (max-width: 600px) { .map-and-qr { flex-direction: column; } }

.review-qr {
  flex: 0 0 auto;
  background: #fff;
  border-radius: 26px;
  padding: clamp(18px, 3vw, 26px);
  box-shadow: var(--shadow-card-soft);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 12px;
}
.review-qr__title { font-weight: 500; color: var(--ink); font-size: 16px; }
.review-qr__code { display: block; line-height: 0; border-radius: 12px; }
.review-qr__code:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; }
.review-qr img { width: 150px; height: 150px; display: block; }
.review-qr__hint { font-size: 13px; color: var(--muted); max-width: 170px; line-height: 1.5; }

/* ---- Page banner (subpages) ------------------------------------------ */
.banner {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  display: flex;
  align-items: center;
}
.banner--photo { min-height: 340px; }
.banner__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.banner--plain { background: linear-gradient(120deg, #f6d3d9, #f3b9c5); }
.banner--plain::before {
  content: "";
  position: absolute; inset: 0;
  background: repeating-linear-gradient(135deg, transparent, transparent 22px, rgba(255,255,255,.16) 22px, rgba(255,255,255,.16) 24px);
}
.banner--photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(58,28,36,.5), rgba(58,28,36,.1));
}
.banner__inner { position: relative; z-index: 2; }
.banner__eyebrow { color: #fff; }
.banner h1 {
  font-size: clamp(36px, 8vw, 64px);
  color: #fff;
}

/* Centered page intro (Über uns / Kontakt) */
.page-intro { text-align: center; padding-block: clamp(48px, 8vw, 72px) clamp(24px, 4vw, 40px); }
.page-intro h1 { font-size: clamp(38px, 7vw, 58px); }

/* ---- Detail two-column (subpages) ------------------------------------ */
.detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 56px);
  align-items: start;
}
@media (max-width: 860px) { .detail { grid-template-columns: 1fr; } }
.detail h2 { font-size: clamp(28px, 4.5vw, 36px); margin-bottom: 18px; }
.detail .lead { margin-bottom: 26px; }
.detail__imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.detail__imgs img,
.detail__img { width: 100%; height: 220px; object-fit: cover; border-radius: var(--r-img); }

.info-card {
  background: #fff;
  border-radius: var(--r-card);
  padding: clamp(28px, 4vw, 40px);
  box-shadow: var(--shadow-card-soft);
}
.info-card h2 { font-size: clamp(24px, 4vw, 30px); margin-bottom: 20px; }
.info-card .checklist { color: var(--ink); }
.info-card .check { color: var(--accent); }
.info-note {
  margin-top: 26px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 14px;
  color: var(--ink-2);
}

/* ---- Behandlungen list cards ----------------------------------------- */
.list-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 760px) { .list-cards { grid-template-columns: 1fr; } }
.list-card {
  display: flex;
  gap: 22px;
  text-decoration: none;
  background: #fff;
  border-radius: var(--r-card);
  padding: 24px;
  box-shadow: var(--shadow-card-soft);
  transition: transform .18s ease, box-shadow .18s ease;
}
.list-card:hover { transform: translateY(-3px); box-shadow: 0 28px 50px -26px rgba(120,70,80,.5); }
.list-card__img { flex: 0 0 150px; width: 150px; height: 150px; object-fit: cover; border-radius: var(--r-img); }
.list-card h2 { font-size: 30px; }
.list-card p { font-weight: 300; font-size: 14px; line-height: 1.6; color: var(--ink-2); margin: 8px 0 14px; }
.list-card .more { font-size: 14px; color: var(--accent); font-weight: 500; }
@media (max-width: 480px) {
  .list-card { flex-direction: column; }
  .list-card__img { width: 100%; flex-basis: auto; height: 200px; }
}

/* ---- Accordion (Preise) ---------------------------------------------- */
.accordion {
  background: #fff;
  border-radius: 22px;
  padding: 8px clamp(18px, 3vw, 26px);
  box-shadow: var(--shadow-card-soft);
}
.accordion details { border-bottom: 1px solid var(--line); }
.accordion details:last-child { border-bottom: 0; }
.accordion summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  font-size: 16px;
  color: var(--ink);
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary .num { color: var(--accent); margin-right: 16px; font-weight: 500; }
.accordion summary .price { color: var(--accent); font-weight: 500; white-space: nowrap; }
.accordion .acc-body {
  padding: 0 0 18px 42px;
  font-weight: 300;
  font-size: 13.5px;
  color: var(--ink-2);
}
.accordion summary .label { display: flex; align-items: baseline; }
.accordion summary::after {
  content: "+";
  color: var(--accent);
  font-size: 20px;
  margin-left: auto;
  padding-left: 12px;
}
.accordion details[open] summary::after { content: "–"; }

/* ---- Stats (Über uns) ------------------------------------------------- */
.stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.stat { background: var(--bg-blush); border-radius: var(--r-img); padding: 22px; }
.stat__num { font-family: var(--font-display); font-size: 30px; color: var(--accent); }
.stat__label { font-size: 13px; color: var(--ink-2); }

/* ---- Contact ---------------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 48px); }
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info { font-size: 16px; line-height: 1.9; color: var(--ink-2); margin-bottom: 26px; }
.contact-info b { color: var(--ink); }
.contact-info a { color: var(--accent); text-decoration: none; font-weight: 500; }
.contact-info a:hover { text-decoration: underline; }
.socials { display: flex; gap: 12px; margin-top: 18px; }
.social {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--accent-grad);
  display: grid; place-items: center;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
}
.social:hover { filter: brightness(1.05); }

.form-card {
  background: #fff;
  border-radius: 26px;
  padding: clamp(28px, 4vw, 40px);
  box-shadow: 0 24px 50px -30px rgba(120,70,80,.5);
}
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.field label { font-size: 13px; color: var(--ink-2); font-weight: 500; }
.field input,
.field textarea {
  font-family: var(--font-ui);
  font-size: 15px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
  background: #fff;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(200,96,122,.15);
}
.field textarea { min-height: 130px; resize: vertical; }
.form-card .btn { width: 100%; justify-content: center; margin-top: 4px; }
.form-status { margin-top: 14px; font-size: 14px; min-height: 1.2em; }
.form-status[data-state="ok"] { color: #2f7d4f; }
.form-status[data-state="err"] { color: #b3261e; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ---- Footer ----------------------------------------------------------- */
.site-footer {
  background: var(--footer-bg);
  color: var(--footer-ink);
}
.site-footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
  padding-block: 40px;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: .24em;
  color: var(--footer-logo);
  text-decoration: none;
}
.footer-links { display: flex; flex-wrap: wrap; gap: 22px; font-size: 13px; }
.footer-links a { color: var(--footer-ink); text-decoration: none; }
.footer-links a:hover { color: #fff; }
.footer-copy { font-size: 12px; letter-spacing: .1em; color: var(--footer-muted); }

/* ---- Utilities -------------------------------------------------------- */
.mt-1 { margin-top: 16px; }
.mt-2 { margin-top: 24px; }
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

/* ---- Motion / print --------------------------------------------------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .hero__track { transition: none; }
}
