/* ==========================================================================
   Meze Yesek — theme.css
   Visual revision layer. Bootstrap/fonts.css from the old export are no
   longer loaded by index.html; this file is the single source of styling
   for the new design (see report for what was retired and why).
   ========================================================================== */

:root {
  --burgundy: #7B1E25;
  --burgundy-dark: #551216;
  --cream: #F6F0E6;
  --cream-soft: #FBF8F2;
  --ink: #24211E;
  --olive: #6E7A57;
  --border-soft: rgba(36, 33, 30, 0.12);

  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Karla', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container: 1240px;
  --gap-section: clamp(56px, 8vw, 128px);
  --radius-sm: 3px;
}

@import url('https://fonts.googleapis.com/css2?family=Karla:wght@400;500;600;700&family=Playfair+Display:wght@400;600;700&display=swap');

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 768px) {
  .container { padding: 0 48px; }
}

a { color: inherit; }

h1, h2, h3 {
  font-family: var(--font-display);
  color: var(--burgundy);
  margin: 0;
  line-height: 1.15;
  font-weight: 700;
}

.eyebrow-label {
  text-align: center;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin: 0 0 12px;
}
.motif {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 0 0 20px;
  color: var(--olive);
}
.motif::before,
.motif::after {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--olive);
}
.motif svg { width: 20px; height: 20px; flex-shrink: 0; }
.about-text .eyebrow-label { text-align: left; }
.about-text .motif { justify-content: flex-start; }

.section-head { text-align: center; margin-bottom: 56px; }
.section-head h2 { font-size: clamp(30px, 4vw, 42px); }

/* Imza Lezzetler only: swap the eyebrow/heading sizes (big tag, small line) */
.dishes .section-head .eyebrow-label { font-size: clamp(24px, 3vw, 32px); }
.dishes .section-head h2 { font-size: 16px; }

/* focus visibility (accessibility) */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--olive);
  outline-offset: 2px;
}

/* ---------------------------------------------------------------------- */
/* Header                                                                  */
/* ---------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--cream);
  border-bottom: 1px solid var(--border-soft);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 1280px;
  padding-left: 32px;
  padding-right: 32px;
  min-height: 76px;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}
/* desktop: nav links centered in the header, independent of the logo */
@media (min-width: 768px) {
  .site-header .container { position: relative; }
  .site-nav {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}
.site-nav a {
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  position: relative;
  padding-bottom: 4px;
}
.site-nav a:hover,
.site-nav a:focus-visible { color: var(--burgundy); }
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 2px;
  background: var(--burgundy);
  transition: right 0.2s ease;
}
.site-nav a:hover::after,
.site-nav a:focus-visible::after { right: 0; }

.site-logo { flex-shrink: 0; display: flex; align-items: center; gap: 2px; }
.site-logo a { display: block; line-height: 0; }
.site-logo img { width: 56px; height: 56px; border-radius: 50%; }
.header-instagram {
  width: 56px;
  height: 56px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  color: var(--burgundy);
  opacity: 0.85;
  transition: opacity 0.2s ease;
}
.header-instagram:hover { opacity: 1; }
.header-instagram svg { width: 32px; height: 32px; }

.header-order { flex: 1; display: flex; justify-content: flex-end; }
.header-order a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  color: var(--burgundy);
  white-space: nowrap;
  min-height: 44px;
  padding: 0 2px;
  border-bottom: 2px solid var(--burgundy);
}
.header-order a:hover { color: var(--burgundy-dark); border-color: var(--burgundy-dark); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  position: relative;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle span::before { position: absolute; top: -7px; }
.nav-toggle span::after { position: absolute; top: 7px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: rotate(45deg); top: 0; }
.nav-toggle[aria-expanded="true"] span::after { transform: rotate(-45deg); top: 0; }

@media (max-width: 767px) {
  .nav-toggle { display: flex; order: 3; }
  .site-nav {
    order: 4;
    flex-basis: 100%;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    display: none;
    padding: 8px 0 10px;
  }
  .site-nav a { padding: 10px 4px; min-height: 44px; display: flex; align-items: center; }
  .site-header.nav-open .site-nav { display: flex; }
  .header-order { order: 2; flex: none; }
  .site-logo { order: 1; }
  .site-header .container { flex-wrap: wrap; }
}

/* ---------------------------------------------------------------------- */
/* Hero                                                                    */
/* ---------------------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 560px;
  display: flex;
  align-items: center;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(112, 22, 29, 0.97) 0%,
    rgba(125, 31, 38, 0.93) 25%,
    rgba(125, 31, 38, 0.72) 42%,
    rgba(125, 31, 38, 0.28) 58%,
    rgba(125, 31, 38, 0) 72%
  );
}
.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.1s ease-in-out;
}
.hero-slide.is-active { opacity: 1; }

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: var(--burgundy);
  transition: opacity 400ms ease;
}
.site-loader.is-hidden { opacity: 0; pointer-events: none; }
body.is-loading { overflow: hidden; }
.site-loader-logo {
  width: 128px;
  height: 128px;
  border-radius: 50%;
  opacity: 0;
  animation: siteLoaderLogoIn 400ms ease both;
}
.site-loader-word {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--cream);
  opacity: 0;
  transform: translateX(-10px);
  clip-path: inset(0 100% 0 0);
  animation: siteLoaderWordIn 450ms cubic-bezier(0.22, 1, 0.36, 1) 180ms both;
}
@keyframes siteLoaderLogoIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes siteLoaderWordIn {
  from { opacity: 0; transform: translateX(-10px); clip-path: inset(0 100% 0 0); }
  to { opacity: 1; transform: translateX(0); clip-path: inset(0 0 0 0); }
}
@media (prefers-reduced-motion: reduce) {
  .site-loader-logo,
  .site-loader-word {
    animation: none;
    opacity: 1;
    transform: none;
    clip-path: none;
  }
}

.hero-copy {
  position: relative;
  z-index: 2;
  color: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 620px;
  padding: 56px clamp(28px, 5vw, 72px);
}
.hero-copy h1 {
  color: var(--cream);
  font-size: clamp(36px, 4.4vw, 56px);
}
.hero-copy p {
  margin: 20px 0 32px;
  font-size: 18px;
  max-width: 42ch;
  color: rgba(246, 240, 230, 0.88);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  padding: 15px 30px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.btn-cream { background: var(--cream); color: var(--burgundy); }
.btn-cream:hover { background: var(--cream-soft); }

/* The two protected order elements keep their original markup/classes
   (.wb_button). We only style them here — never touch their HTML. */
.hero-copy a.wb_button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  color: var(--burgundy) !important;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  padding: 15px 30px;
  border-radius: var(--radius-sm);
  width: 100%;
  max-width: 300px;
  transition: background-color 0.2s ease;
}
.hero-copy a.wb_button:hover { background: var(--cream-soft); }
.hero-copy a.wb_button span { display: inline-flex; align-items: center; gap: 8px; }

.btn-hero-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 14px;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  padding: 15px 30px;
  border-radius: var(--radius-sm);
  width: 100%;
  max-width: 300px;
  transition: background-color 0.2s ease;
}
.btn-hero-whatsapp:hover { background: #1ebe5a; }

@media (max-width: 900px) {
  .hero { min-height: 480px; }
  .hero-copy { max-width: 100%; padding: 40px 24px; }
}

/* ---------------------------------------------------------------------- */
/* Signature dishes                                                        */
/* ---------------------------------------------------------------------- */
.dishes { padding: var(--gap-section) 0; }
.dish-group { margin-top: 64px; }
.dish-group:first-of-type { margin-top: 48px; }
.dish-group-title {
  font-size: clamp(26px, 3.4vw, 34px);
  text-align: center;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-soft);
}
.dish-carousel {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.dish-viewport {
  flex: 1;
  overflow: hidden;
}
.dish-track {
  display: flex;
  gap: 40px;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.dish-track .dish-card {
  flex: 0 0 calc((100% - 2 * 40px) / 3);
  min-width: 0;
}
.dish-arrow {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(123, 30, 37, 0.25);
  background: var(--cream-soft);
  color: var(--burgundy);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  transition: background-color 0.2s ease, opacity 0.2s ease;
}
.dish-arrow:hover { background: var(--cream); }
.dish-arrow:disabled { opacity: 0.25; cursor: default; pointer-events: none; }
.dish-card { }
.dish-card .dish-photo,
.dish-photo--empty {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  background: var(--border-soft);
}
.dish-card .dish-photo img { width: 100%; height: 100%; object-fit: cover; }
.dish-card h4 { font-size: 22px; margin-bottom: 10px; color: var(--burgundy); font-family: var(--font-display); font-weight: 700; }
.dish-card p { margin: 0; font-size: 15.5px; color: var(--ink); opacity: 0.85; }

@media (max-width: 900px) {
  .dish-track { gap: 24px; }
  .dish-track .dish-card { flex: 0 0 calc((100% - 24px) / 2); }
}
@media (max-width: 600px) {
  .dish-track .dish-card { flex: 0 0 100%; }
  .dish-arrow { width: 40px; height: 40px; }
}

/* ---------------------------------------------------------------------- */
/* About                                                                   */
/* ---------------------------------------------------------------------- */
.about {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: var(--burgundy);
  color: var(--cream);
}
.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(88px, 9vw, 132px) 32px clamp(26px, 3vw, 42px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(56px, 8vw, 128px);
  align-items: center;
  position: relative;
  z-index: 1;
}
.about-row { padding: clamp(26px, 3vw, 42px) 32px; }
.about-photo {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid rgba(246, 240, 230, 0.85);
  background: rgba(246, 240, 230, 0.06);
}
.about-photo picture { display: block; width: 100%; height: 100%; }
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
/* Same label system as the İmza Lezzetler section head, recolored for the
   burgundy band; the motif keeps its line+leaf arrangement here too. */
.about-text .eyebrow-label {
  font-size: clamp(24px, 3vw, 32px);
  color: #C9CFAF;
}
.about-text .motif { color: rgba(246, 240, 230, 0.65); }
.about-text .motif::before,
.about-text .motif::after { background: rgba(246, 240, 230, 0.45); }
.about-text h2 {
  font-size: clamp(36px, 3vw, 48px);
  line-height: 1.12;
  color: var(--cream);
  margin-bottom: 22px;
}
.about-text p:not(.eyebrow-label) {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  max-width: 540px;
  color: rgba(246, 240, 230, 0.88);
  line-height: 1.75;
  margin: 0;
}

/* Empty photo slots for the alternating story rows (images to come) */
.about-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid rgba(246, 240, 230, 0.85);
  background: rgba(246, 240, 230, 0.06);
}
.about-media picture { display: block; width: 100%; height: 100%; }
.about-media img { width: 100%; height: 100%; object-fit: cover; }
.about-media--empty {
  display: flex;
  align-items: center;
  justify-content: center;
  border-style: dashed;
  border-color: rgba(246, 240, 230, 0.4);
  color: rgba(246, 240, 230, 0.3);
}
.about-media--empty svg { width: 44px; height: 44px; }

.about-closing {
  position: relative;
  z-index: 1;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(24px, 2.8vw, 34px);
  font-weight: 600;
  color: var(--cream);
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(48px, 5vw, 72px) 32px clamp(88px, 9vw, 132px);
}
.about-decor {
  position: absolute;
  right: -36px;
  top: 50%;
  transform: translateY(-50%);
  height: min(70%, 860px);
  width: auto;
  color: var(--cream);
  opacity: 0.22;
  pointer-events: none;
  z-index: 0;
}

@media (max-width: 900px) {
  .about-inner { grid-template-columns: 1fr; gap: 40px; padding: 64px 24px 32px; }
  .about-row { padding: 32px 24px; }
  .about-row .about-media { order: -1; }
  .about-photo, .about-media { max-width: 520px; width: 100%; }
  .about-decor { display: none; }
  .about-closing { padding: 40px 24px 64px; }
}

/* ---------------------------------------------------------------------- */
/* Contact + footer                                                       */
/* ---------------------------------------------------------------------- */
.contact { padding: var(--gap-section) 0 80px; }
.contact .section-head p { opacity: 0.75; }

.contact-form { max-width: 640px; margin: 0 auto; }
.contact-form table { width: 100%; border-collapse: collapse; }
.contact-form table,
.contact-form tbody,
.contact-form tr { display: block; width: 100%; }
.contact-form th {
  display: block;
  text-align: left;
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
  margin-bottom: 6px;
}
.contact-form td { display: block; padding: 0 0 18px; }
/* honeypot anti-spam field: kept present for the backend, hidden from
   real visitors without display:none/visibility:hidden (bots skip those) */
.contact-form textarea.hpc {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.contact-form tr.form-footer td { padding: 6px 0 0; text-align: left !important; }
.contact-form .form-control {
  width: 100%;
  font-family: var(--font-body);
  font-size: 16px;
  padding: 13px 16px;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm);
  background: var(--cream-soft);
  color: var(--ink);
}
.contact-form .form-control:focus { border-color: var(--burgundy); outline: none; }
.contact-form textarea.form-control { resize: vertical; min-height: 120px; }
.contact-form button[type="submit"] {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  background: var(--burgundy);
  color: var(--cream);
  border: none;
  padding: 15px 34px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.contact-form button[type="submit"]:hover { background: var(--burgundy-dark); }
.contact-form .text-danger { color: var(--burgundy); }

.site-footer {
  background: var(--burgundy-dark);
  color: rgba(246, 240, 230, 0.85);
  padding: 48px 0;
  font-size: 16.5px;
}
.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
}
.footer-contact { display: flex; flex-wrap: wrap; gap: 10px 32px; }
.footer-contact a { text-decoration: none; color: var(--cream); }
.footer-contact a:hover { text-decoration: underline; }
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin: -11px;
  color: var(--cream);
  opacity: 0.85;
  transition: opacity 0.2s ease;
}
.footer-social a:hover { opacity: 1; }
.footer-social svg { width: 27px; height: 27px; }
.footer-note { width: 100%; opacity: 0.55; font-size: 13px; margin-top: 20px; }

/* ---------------------------------------------------------------------- */
/* Floating helper buttons (WhatsApp + back-to-top)                       */
/* ---------------------------------------------------------------------- */
.float-btn {
  position: fixed;
  bottom: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(36, 33, 30, 0.25);
  z-index: 40;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease, visibility 0.2s ease;
}
.float-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(36, 33, 30, 0.3); }

.float-whatsapp { left: 24px; background: #25D366; color: #fff; }
.float-top {
  right: 24px;
  background: var(--burgundy);
  color: var(--cream);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
}
.float-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.float-top:hover { transform: translateY(-2px); }

.float-tooltip {
  position: absolute;
  bottom: 50%;
  transform: translateY(50%);
  white-space: nowrap;
  background: var(--ink);
  color: var(--cream-soft);
  font-size: 13px;
  font-weight: 600;
  padding: 7px 12px;
  border-radius: var(--radius-sm);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease;
}
.float-whatsapp .float-tooltip { left: calc(100% + 12px); }
.float-top .float-tooltip { right: calc(100% + 12px); }
.float-btn:hover .float-tooltip,
.float-btn:focus-visible .float-tooltip { opacity: 1; }

@media (max-width: 480px) {
  .float-btn { bottom: 16px; }
  .float-whatsapp { left: 16px; }
  .float-top { right: 16px; }
  .float-tooltip { display: none; }
}

/* ---------------------------------------------------------------------- */
/* Platform selection modal ("Bulunduğumuz Platformlar")                  */
/* ---------------------------------------------------------------------- */
.platform-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.platform-modal[hidden] { display: none; }
.platform-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(36, 33, 30, 0.6);
}
.platform-modal-panel {
  position: relative;
  width: min(92vw, 420px);
  background: var(--cream);
  border-radius: 6px;
  padding: 36px 28px 28px;
  box-shadow: 0 18px 48px rgba(36, 33, 30, 0.35);
  animation: platformModalIn 250ms cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes platformModalIn {
  from { opacity: 0; transform: translateY(10px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.platform-modal-close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--ink);
  opacity: 0.6;
  transition: opacity 0.15s ease;
}
.platform-modal-close:hover { opacity: 1; }
.platform-modal-title {
  font-size: 24px;
  text-align: center;
  margin-bottom: 12px;
}
.platform-modal .motif { margin-bottom: 24px; }
.platform-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.platform-list a {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 14px;
  text-decoration: none;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm);
  background: var(--cream-soft);
  transition: border-color 0.15s ease, background-color 0.15s ease;
}
.platform-list a:hover { border-color: var(--burgundy); background: #fff; }
.platform-logo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: #fff;
  border: 1px solid var(--border-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}
.platform-logo img { width: 100%; height: 100%; object-fit: cover; }
.platform-name {
  flex: 1;
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
}
.platform-go { color: var(--burgundy); flex-shrink: 0; }
body.modal-open { overflow: hidden; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; animation: none !important; }
}
