/* ==========================================================================
   YorKlean — Professional Car Valeting & Detailing
   Design system: gloss black, graphite panels, electric blue accents.
   All colours are CSS custom properties. Never hardcode colours below.
   ========================================================================== */

:root {
  --radius: 0.75rem;

  --background: #0a0d12;
  --surface: #141821;
  --surface-2: #1c212c;
  --foreground: #f7f9fc;
  --muted-foreground: #9aa4b5;

  --brand: #2f6bff;
  --brand-glow: #4aa8ff;
  --silver: #c9d1de;

  --border: #262d3a;
  --input: #202634;

  --gradient-brand: linear-gradient(135deg, var(--brand), var(--brand-glow));
  --gradient-panel: linear-gradient(160deg, #1e2432, var(--surface));
  --shadow-glow: 0 0 0 1px rgba(47, 107, 255, 0.4), 0 18px 45px -18px rgba(47, 107, 255, 0.7);
  --shadow-panel: 0 24px 60px -30px rgba(0, 0, 0, 0.9);

  --font-display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-sans: "Barlow", ui-sans-serif, system-ui, -apple-system, sans-serif;

  --header-h: 72px;
  --max: 1280px;
}

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

* { margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }

body {
  background-color: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  padding-top: var(--header-h);
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.05;
  font-weight: 700;
}

::selection { background: rgba(47, 107, 255, 0.45); }

:focus-visible { outline: 2px solid var(--brand); outline-offset: 3px; }

/* Layout helpers --------------------------------------------------------- */
.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 1rem; }
@media (min-width: 640px) { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

.section { padding: 6rem 0; }
.section--alt { background: rgba(20, 24, 33, 0.5); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.section-heading { max-width: 42rem; margin: 0 auto; text-align: center; }
.eyebrow {
  margin-bottom: 1rem;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--brand);
}
.section-heading h2 { font-size: clamp(2.25rem, 5vw, 3rem); }
.section-heading p { margin-top: 1rem; color: var(--muted-foreground); }

.panel {
  background-image: var(--gradient-panel);
  border: 1px solid rgba(47, 107, 255, 0.18);
  box-shadow: var(--shadow-panel);
  border-radius: 1rem;
}

.glow { box-shadow: var(--shadow-glow); }
.text-brand { color: var(--brand); }
.text-muted { color: var(--muted-foreground); }
.gradient-brand { background-image: var(--gradient-brand); }
.text-brand-gradient {
  background-image: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.grid { display: grid; gap: 1.25rem; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
@media (max-width: 1023px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 639px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: minmax(0, 1fr); }
  .grid-4.keep-2, .grid-2.keep-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* Buttons ---------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  border-radius: 999px;
  padding: 1rem 2rem;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}
.btn:hover { transform: translateY(-1px) scale(1.02); }
.btn--primary { background-image: var(--gradient-brand); color: #fff; box-shadow: var(--shadow-glow); }
.btn--outline { border-color: rgba(47, 107, 255, 0.6); color: var(--brand); }
.btn--outline:hover { background-image: var(--gradient-brand); color: #fff; }
.btn--ghost { border-color: var(--border); background: rgba(20, 24, 33, 0.6); color: var(--foreground); }
.btn--ghost:hover { border-color: var(--brand); color: var(--brand); }
.btn--sm { padding: 0.7rem 1.4rem; }
.btn--block { display: flex; width: 100%; }

/* Header ----------------------------------------------------------------- */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  height: var(--header-h);
  display: flex;
  align-items: center;
  border-bottom: 1px solid transparent;
  background: linear-gradient(to bottom, var(--background), rgba(10, 13, 18, 0));
  transition: background-color 0.3s ease, border-color 0.3s ease;
}
.header.is-scrolled {
  background: rgba(10, 13, 18, 0.9);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--border);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }

.logo { font-family: var(--font-display); font-size: 1.6rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.02em; }
.logo span { color: var(--brand); }

.nav { display: none; align-items: center; gap: 1.75rem; }
.nav a {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-foreground);
  transition: color 0.2s ease;
}
.nav a:hover { color: var(--brand); }
.nav a.is-active { color: var(--foreground); }
@media (min-width: 1024px) { .nav { display: flex; } }

.header__actions { display: flex; align-items: center; gap: 0.5rem; }
.phone-link {
  display: none;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.55rem 1rem;
  font-size: 14px;
  font-weight: 600;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.phone-link:hover { color: var(--brand); border-color: var(--brand); }
@media (min-width: 768px) { .phone-link { display: inline-flex; } }
.header .btn--primary { display: none; }
@media (min-width: 640px) { .header .btn--primary { display: inline-flex; padding: 0.8rem 1.5rem; } }

.menu-toggle {
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: transparent;
}
@media (min-width: 1024px) { .menu-toggle { display: none; } }

.mobile-nav {
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0;
  z-index: 49;
  display: none;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(10, 13, 18, 0.98);
  backdrop-filter: blur(16px);
  padding: 1rem;
}
.mobile-nav.is-open { display: block; }
.mobile-nav a {
  display: block;
  border-radius: 0.6rem;
  padding: 0.85rem 0.75rem;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-foreground);
}
.mobile-nav a:hover { background: var(--surface-2); color: var(--foreground); }
.mobile-nav .btn { margin-top: 0.75rem; }

/* Hero ------------------------------------------------------------------- */
.hero { position: relative; display: flex; align-items: center; min-height: 92svh; overflow: hidden; isolation: isolate; }
.hero__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.hero__scrim {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to right, var(--background), rgba(10, 13, 18, 0.85) 45%, rgba(10, 13, 18, 0.3));
}
.hero__glow {
  position: absolute; top: 33%; left: -10rem; z-index: -1;
  width: 36rem; height: 36rem; border-radius: 999px;
  background-image: var(--gradient-brand);
  opacity: 0.3; filter: blur(140px);
}
.hero__inner { width: 100%; padding-top: 4rem; padding-bottom: 6rem; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 0.75rem;
  margin-bottom: 1.5rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(20, 24, 33, 0.6);
  backdrop-filter: blur(8px);
  padding: 0.4rem 1rem;
  font-size: 11px; font-weight: 700; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--brand);
}
.hero h1 { max-width: 48rem; font-size: clamp(2.75rem, 8vw, 6rem); line-height: 0.92; }
.hero__sub { margin-top: 1.75rem; max-width: 36rem; font-size: 1.125rem; color: var(--muted-foreground); }
.hero__cta { margin-top: 2.5rem; display: flex; flex-wrap: wrap; gap: 0.75rem; }

.trust-strip { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: rgba(20, 24, 33, 0.5); }
.trust-strip ul {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 0.75rem 2rem; padding: 1.25rem 0; text-align: center;
}
.trust-strip li {
  display: flex; align-items: center; gap: 2rem;
  font-size: 11px; font-weight: 700; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--muted-foreground);
}
.trust-strip li::after { content: ""; width: 4px; height: 4px; border-radius: 999px; background: var(--brand); }
.trust-strip li:last-child::after { display: none; }

/* Page header ------------------------------------------------------------ */
.page-header { position: relative; padding: 5rem 0 3.5rem; border-bottom: 1px solid var(--border); background: rgba(20, 24, 33, 0.4); }
.page-header h1 { font-size: clamp(2.25rem, 6vw, 3.75rem); max-width: 50rem; }
.page-header p { margin-top: 1rem; max-width: 42rem; color: var(--muted-foreground); }

/* Service cards ---------------------------------------------------------- */
.card-grid { margin-top: 3.5rem; }
.service-card { display: flex; flex-direction: column; overflow: hidden; scroll-margin-top: 7rem; transition: transform 0.3s ease; }
.service-card:hover { transform: translateY(-4px); }
.service-card__media { position: relative; height: 13rem; overflow: hidden; }
.service-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.service-card:hover .service-card__media img { transform: scale(1.05); }
.service-card__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, var(--surface), rgba(20, 24, 33, 0.2) 60%, transparent);
}
.service-card__body { display: flex; flex-direction: column; flex: 1; padding: 1.5rem; }
.service-card h3 { font-size: 1.5rem; }
.service-card p { margin-top: 0.75rem; font-size: 0.9rem; color: var(--muted-foreground); }

.ticks { margin-top: 1.25rem; display: grid; gap: 0.5rem; font-size: 0.9rem; }
.ticks li { display: flex; gap: 0.5rem; align-items: flex-start; }
.ticks li::before {
  content: "";
  flex: 0 0 auto;
  margin-top: 0.45rem;
  width: 0.55rem; height: 0.3rem;
  border-left: 2px solid var(--brand);
  border-bottom: 2px solid var(--brand);
  transform: rotate(-45deg);
}
.service-card .btn, .pkg .btn { margin-top: 1.75rem; }

/* Packages --------------------------------------------------------------- */
.pkg { position: relative; display: flex; flex-direction: column; padding: 2rem; }
.pkg--featured { box-shadow: var(--shadow-glow); }
@media (min-width: 1024px) { .pkg--featured { transform: translateY(-0.75rem); } }
.pkg__badge {
  position: absolute; top: -0.75rem; left: 2rem;
  border-radius: 999px; padding: 0.25rem 1rem;
  background-image: var(--gradient-brand); color: #fff;
  font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
}
.pkg h3 { font-size: 1.85rem; }
.pkg__tagline { margin-top: 0.5rem; font-size: 0.9rem; color: var(--muted-foreground); }
.pkg__price { margin-top: 1.5rem; font-size: 1.1rem; font-weight: 600; color: var(--brand); }
.pkg .ticks { flex: 1; margin-top: 1.5rem; }
.pkg-note { margin: 2.5rem auto 0; max-width: 48rem; text-align: center; font-size: 0.875rem; color: var(--muted-foreground); }

/* Gallery ---------------------------------------------------------------- */
.filters { margin-top: 2.5rem; display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem; }
.filter {
  border: 1px solid var(--border);
  border-radius: 999px;
  background: transparent;
  padding: 0.55rem 1rem;
  font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted-foreground);
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}
.filter:hover { border-color: rgba(47, 107, 255, 0.6); color: var(--foreground); }
.filter.is-active { border-color: var(--brand); background: rgba(47, 107, 255, 0.15); color: var(--brand); }

.gallery { margin-top: 2.5rem; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); grid-auto-rows: 220px; grid-auto-flow: row dense; gap: 1rem; }
@media (max-width: 1023px) { .gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: 170px; gap: 0.75rem; } }
.gallery__item {
  position: relative; overflow: hidden; border: 1px solid var(--border);
  border-radius: 1rem; padding: 0; background: none; cursor: zoom-in;
}
.gallery__item.is-tall { grid-row: span 2; }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery__item:hover img { transform: scale(1.05); }
.gallery__item span {
  position: absolute; inset: auto 0 0 0; padding: 0.75rem; text-align: left;
  background: linear-gradient(to top, rgba(10, 13, 18, 0.9), transparent);
  font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
}
.gallery__item[hidden] { display: none; }

.lightbox {
  position: fixed; inset: 0; z-index: 60;
  display: none; align-items: center; justify-content: center;
  padding: 1rem;
  background: rgba(10, 13, 18, 0.95);
  backdrop-filter: blur(8px);
}
.lightbox.is-open { display: flex; }
.lightbox img { max-height: 85svh; width: auto; border-radius: 1rem; object-fit: contain; }
.lightbox__close {
  position: absolute; top: 1.25rem; right: 1.25rem;
  width: 44px; height: 44px; border-radius: 999px;
  border: 1px solid var(--border); background: transparent; cursor: pointer;
  font-size: 1.25rem; line-height: 1;
}

/* Before & after --------------------------------------------------------- */
.ba-grid { margin-top: 3.5rem; }
.ba__label { margin-bottom: 0.75rem; font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted-foreground); }
.ba {
  position: relative; width: 100%; aspect-ratio: 3 / 2;
  overflow: hidden; border-radius: 1rem; border: 1px solid var(--border);
}
.ba img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba__before { position: absolute; inset: 0; width: 50%; overflow: hidden; }
.ba__before img { width: auto; max-width: none; height: 100%; }
.ba__tag {
  position: absolute; bottom: 0.75rem;
  border-radius: 999px; padding: 0.25rem 0.75rem;
  background: rgba(10, 13, 18, 0.8);
  font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
}
.ba__tag--before { left: 0.75rem; }
.ba__tag--after { right: 0.75rem; color: var(--brand); }
.ba__divider { position: absolute; top: 0; bottom: 0; width: 2px; background: var(--brand); pointer-events: none; }
.ba__handle {
  position: absolute; inset: 0; width: 100%; height: 100%;
  margin: 0; opacity: 0; cursor: ew-resize;
}
.ba__knob {
  position: absolute; top: 50%; transform: translate(-50%, -50%);
  width: 40px; height: 40px; border-radius: 999px;
  background-image: var(--gradient-brand); box-shadow: var(--shadow-glow);
  display: grid; place-items: center; color: #fff; font-size: 14px;
  pointer-events: none;
}

/* Why / process cards ---------------------------------------------------- */
.icon-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 3rem; height: 3rem; border-radius: 0.85rem;
  background-image: var(--gradient-brand); box-shadow: var(--shadow-glow);
}
.icon-badge svg { width: 1.5rem; height: 1.5rem; stroke: #fff; }
.info-card { padding: 1.75rem; }
.info-card h3 { margin-top: 1.25rem; font-size: 1.25rem; }
.info-card p { margin-top: 0.5rem; font-size: 0.9rem; color: var(--muted-foreground); }
.step-num { font-family: var(--font-display); font-size: 3rem; font-weight: 700; color: rgba(47, 107, 255, 0.35); line-height: 1; }

/* About ------------------------------------------------------------------ */
.about-grid { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .about-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.about__media { position: relative; }
.about__media img { width: 100%; border-radius: 1rem; border: 1px solid var(--border); object-fit: cover; }
.about__stamp {
  position: absolute; right: -0.5rem; bottom: -1.5rem;
  border-radius: 1rem; padding: 1rem 1.5rem;
  background-image: var(--gradient-brand); color: #fff; box-shadow: var(--shadow-glow);
}
.about__stamp p:first-child { font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; }
.about__stamp p:last-child { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; text-transform: uppercase; }
.about__copy h2 { font-size: clamp(2.25rem, 5vw, 3rem); }
.about__copy > div { margin-top: 1.5rem; display: grid; gap: 1rem; color: var(--muted-foreground); }

/* Reviews ---------------------------------------------------------------- */
.review { padding: 2rem; }
.stars { color: var(--brand); letter-spacing: 0.2em; font-size: 1rem; }
.review blockquote { margin-top: 1.25rem; font-size: 1.1rem; line-height: 1.6; }
.review figcaption { margin-top: 1.25rem; font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted-foreground); }

/* Social ----------------------------------------------------------------- */
.social-tile { position: relative; overflow: hidden; border-radius: 1rem; border: 1px solid var(--border); aspect-ratio: 9 / 16; }
.social-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.social-tile:hover img { transform: scale(1.05); }
.social-tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(10, 13, 18, 0.8), transparent 60%); }
.social-cta { margin-top: 2.5rem; display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem; }

/* Booking / contact ------------------------------------------------------ */
.booking-grid { display: grid; gap: 2rem; margin-top: 3.5rem; align-items: start; }
@media (min-width: 1024px) { .booking-grid { grid-template-columns: 1.5fr 1fr; } }
.form { padding: 2rem; }
.form__row { display: grid; gap: 1rem; }
@media (min-width: 640px) { .form__row--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); } .form__row--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.field { display: grid; gap: 0.4rem; margin-bottom: 1rem; }
.field label { font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted-foreground); }
.field input, .field select, .field textarea {
  width: 100%;
  border: 1px solid var(--input);
  border-radius: 0.6rem;
  background: rgba(10, 13, 18, 0.6);
  padding: 0.8rem 0.9rem;
  font-size: 0.95rem;
  transition: border-color 0.2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--brand); outline: none; }
.field textarea { min-height: 8rem; resize: vertical; }
.field input[type="file"] { padding: 0.6rem; font-size: 0.85rem; color: var(--muted-foreground); }

.alert { border-radius: 0.75rem; padding: 1rem 1.25rem; margin-bottom: 1.5rem; font-size: 0.95rem; border: 1px solid var(--border); }
.alert--ok { border-color: rgba(47, 107, 255, 0.6); background: rgba(47, 107, 255, 0.12); }
.alert--error { border-color: #7a2b2b; background: rgba(122, 43, 43, 0.18); }

.contact-card { padding: 2rem; }
.contact-card h3 { font-size: 1.4rem; }
.contact-card dl { margin-top: 1.5rem; display: grid; gap: 1rem; font-size: 0.95rem; }
.contact-card dt { font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted-foreground); }
.contact-card dd a:hover { color: var(--brand); }
.contact-actions { margin-top: 1.5rem; display: grid; gap: 0.75rem; }

/* Footer ----------------------------------------------------------------- */
.footer { border-top: 1px solid var(--border); background: rgba(20, 24, 33, 0.5); padding: 4rem 0 7rem; }
@media (min-width: 768px) { .footer { padding-bottom: 3rem; } }
.footer__grid { display: grid; gap: 2.5rem; }
@media (min-width: 768px) { .footer__grid { grid-template-columns: 2fr 1fr 1fr; } }
.footer h4 { font-size: 0.95rem; letter-spacing: 0.16em; }
.footer ul { margin-top: 1rem; display: grid; gap: 0.6rem; font-size: 0.9rem; color: var(--muted-foreground); }
.footer a:hover { color: var(--brand); }
.footer__bottom {
  margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid var(--border);
  display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: space-between;
  font-size: 0.8rem; color: var(--muted-foreground);
}

/* Mobile sticky action bar ----------------------------------------------- */
.mobile-bar {
  position: fixed; inset: auto 0 0 0; z-index: 55;
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
  background: rgba(10, 13, 18, 0.96);
  backdrop-filter: blur(16px);
}
@media (min-width: 768px) { .mobile-bar { display: none; } }
.mobile-bar a {
  display: grid; place-items: center; gap: 0.2rem;
  padding: 0.7rem 0.5rem;
  font-size: 10px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted-foreground);
}
.mobile-bar a svg { width: 20px; height: 20px; }
.mobile-bar a.is-primary { background-image: var(--gradient-brand); color: #fff; }

/* Legal pages ------------------------------------------------------------ */
.prose { max-width: 48rem; margin: 0 auto; display: grid; gap: 1.25rem; color: var(--muted-foreground); }
.prose h2 { margin-top: 1.5rem; font-size: 1.5rem; color: var(--foreground); }
.prose ul { display: grid; gap: 0.5rem; padding-left: 1.1rem; list-style: disc; }

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