:root {
  --bg: #f7f5f0;
  --bg2: #f3f2ee;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-solid: #ffffff;
  --text: #1f2328;
  --muted: rgba(31, 35, 40, 0.66);
  --border: rgba(31, 35, 40, 0.10);
  --shadow: 0 10px 30px rgba(31, 35, 40, 0.10);
  --shadow-soft: 0 8px 20px rgba(31, 35, 40, 0.08);
  --accent: #2b2f33;
  --accent-soft: rgba(43, 47, 51, 0.10);

  --radius-lg: 18px;
  --radius-md: 14px;
  --radius-sm: 12px;

  --container: 1100px;
  --pad-x: 22px;

  color-scheme: light;
}

html[data-theme="dark"] {
  --bg: #0f1113;
  --bg2: #11151a;
  --surface: rgba(20, 23, 27, 0.72);
  --surface-solid: #14171b;
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.64);
  --border: rgba(255, 255, 255, 0.12);
  --shadow: 0 14px 40px rgba(0, 0, 0, 0.55);
  --shadow-soft: 0 10px 26px rgba(0, 0, 0, 0.42);
  --accent: rgba(255, 255, 255, 0.92);
  --accent-soft: rgba(255, 255, 255, 0.10);

  color-scheme: dark;
}

* { box-sizing: border-box; }
html, body { height: 100%; }

body {
  margin: 0;
  font-family: ui-sans-serif, "SF Pro Text", "Segoe UI Variable", "Avenir Next", system-ui, -apple-system, "Segoe UI",
    Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  letter-spacing: -0.01em;
  color: var(--text);
  background:
    radial-gradient(1200px 700px at 12% -6%, rgba(255, 255, 255, 0.65), transparent 60%),
    radial-gradient(900px 600px at 88% 0%, rgba(255, 255, 255, 0.45), transparent 55%),
    linear-gradient(180deg, var(--bg), var(--bg2));
}

a { color: inherit; text-decoration: none; }

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

.sr-only {
  position: absolute !important;
  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;
  top: 10px;
  left: 10px;
  z-index: 9999;
  padding: 10px 12px;
  border-radius: 12px;
  background: var(--surface-solid);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  transform: translateY(-120%);
  transition: transform 180ms ease;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 12px 0;
}

.nav {
  max-width: var(--container);
  margin: 0 auto;
  padding: 10px var(--pad-x);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  border-radius: calc(var(--radius-lg) + 6px);
  transition: background-color 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
  border: 1px solid transparent;
}

.site-header.site-header--scrolled .nav {
  background: var(--surface);
  border-color: var(--border);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.nav__left { display: flex; align-items: center; gap: 10px; }

.homeLink {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 14px;
  transition: background-color 200ms ease, color 200ms ease;
  border: 1px solid transparent;
}
.homeLink:hover {
  background: var(--accent-soft);
  color: var(--text);
  border-color: var(--border);
}

.homeLink__icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  stroke: currentColor;
}

.homeLink__text {
  font-weight: 500;
  letter-spacing: -0.01em;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 999px;
  transition: background-color 200ms ease;
}
.logo:hover { background: var(--accent-soft); }

.logo__mark {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0) 60%),
    linear-gradient(145deg, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.15));
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
}
html[data-theme="dark"] .logo__mark {
  background:
    radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0) 60%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.90), rgba(255, 255, 255, 0.18));
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.42);
}

.logo__text { font-weight: 650; letter-spacing: -0.02em; }

.nav__center {
  display: flex;
  justify-content: center;
  gap: 6px;
  align-items: center;
}

.nav__link {
  padding: 10px 12px;
  border-radius: 999px;
  color: var(--muted);
  transition: background-color 180ms ease, color 180ms ease;
}
.nav__link:hover { background: var(--accent-soft); color: var(--text); }

.nav__right { display: flex; justify-content: flex-end; align-items: center; }

.themeToggle {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface-solid);
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease;
}
.themeToggle:hover { transform: translateY(-1px); box-shadow: var(--shadow-soft); }

.themeToggle__icon {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(0,0,0,0.85), rgba(0,0,0,0.15));
}
html[data-theme="dark"] .themeToggle {
  background: rgba(20, 23, 27, 0.9);
}
html[data-theme="dark"] .themeToggle__icon {
  background: linear-gradient(135deg, rgba(255,255,255,0.90), rgba(255,255,255,0.18));
}

.themeToggle__text { font-size: 13px; font-weight: 620; }

.nav__toggle {
  display: none;
  justify-self: center;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 10px 12px;
  background: var(--surface-solid);
  cursor: pointer;
}
.nav__toggleIcon {
  display: inline-block;
  width: 18px;
  height: 12px;
  position: relative;
}
.nav__toggleIcon::before,
.nav__toggleIcon::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--text);
  opacity: 0.72;
}
.nav__toggleIcon::before { top: 2px; }
.nav__toggleIcon::after { bottom: 2px; }

@media (max-width: 860px) {
  .nav { grid-template-columns: 1fr auto auto; }
  .nav__toggle { display: inline-flex; }
  .nav__center {
    display: none;
    grid-column: 1 / -1;
    justify-content: flex-start;
    flex-wrap: wrap;
    padding: 10px 4px 2px;
    gap: 6px;
  }
  .nav.nav--open .nav__center { display: flex; }
}

.section { padding: 64px 0; }
.section--alt { padding: 64px 0; }

.sectionHead {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
.sectionHead__title {
  margin: 0;
  font-size: clamp(20px, 2.2vw, 26px);
  letter-spacing: -0.03em;
}
.sectionHead__desc { margin: 0; color: var(--muted); max-width: 60ch; }

.hero { padding: 46px 0 56px; }
.hero__inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 22px;
  align-items: stretch;
}

.hero__copy { padding: 22px 0 0; }

.hero__kicker {
  display: inline-block;
  margin: 0 0 14px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--muted);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hero__title {
  margin: 0;
  font-size: clamp(34px, 4.5vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.hero__subtitle {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  max-width: 58ch;
}

.hero__actions { display: flex; gap: 12px; margin-top: 20px; flex-wrap: wrap; }

.hero__panel {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background:
    radial-gradient(900px 300px at 30% 10%, rgba(255,255,255,0.60), transparent 65%),
    radial-gradient(700px 500px at 80% 90%, rgba(0,0,0,0.07), transparent 55%),
    var(--surface);
  box-shadow: var(--shadow-soft);
  padding: 18px;
  display: grid;
  gap: 12px;
  align-content: start;
  overflow: hidden;
  position: relative;
}

.hero__panel::after {
  content: "";
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.22), transparent 55%),
    radial-gradient(circle at 70% 60%, rgba(0,0,0,0.06), transparent 52%);
  transform: rotate(9deg);
  pointer-events: none;
}

.heroCard {
  position: relative;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--surface-solid);
  box-shadow: 0 10px 18px rgba(0,0,0,0.06);
  padding: 14px;
  overflow: hidden;
  z-index: 1;
}

.heroCard__title { font-weight: 700; letter-spacing: -0.02em; }
.heroCard__meta { margin-top: 8px; color: var(--muted); font-size: 13px; line-height: 1.5; }

.heroCard--a::before,
.heroCard--b::before,
.heroCard--c::before {
  content: "";
  position: absolute;
  inset: -40px;
  opacity: 0.9;
  pointer-events: none;
}

.heroCard--a::before { background: radial-gradient(circle at 30% 30%, rgba(214, 185, 152, 0.22), transparent 55%); }
.heroCard--b::before { background: radial-gradient(circle at 30% 30%, rgba(169, 176, 182, 0.22), transparent 55%); }
.heroCard--c::before { background: radial-gradient(circle at 30% 30%, rgba(29, 31, 33, 0.10), transparent 55%); }

@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__panel { order: -1; }
  .hero { padding-top: 26px; }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  cursor: pointer;
  font-weight: 650;
  letter-spacing: -0.01em;
  transition: transform 160ms ease, box-shadow 160ms ease;
  user-select: none;
}

.btn--primary {
  background: var(--accent);
  border-color: rgba(0, 0, 0, 0.12);
  color: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 28px rgba(0,0,0,0.18);
}
html[data-theme="dark"] .btn--primary {
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 14px 30px rgba(0,0,0,0.42);
}

.btn--ghost { background: var(--surface-solid); color: var(--text); }
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-soft); }
.btn:active { transform: translateY(0px); }
.btn--full { width: 100%; }

.grid { display: grid; gap: 14px; }
.cards { grid-template-columns: repeat(3, minmax(0, 1fr)); }

@media (max-width: 980px) {
  .cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .cards { grid-template-columns: 1fr; }
}

.card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: 0 1px 0 rgba(0,0,0,0.02);
  padding: 16px;
  position: relative;
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background-color 220ms ease;
}

.card::before {
  content: "";
  position: absolute;
  inset: -60px;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.42), transparent 60%),
    radial-gradient(circle at 80% 70%, rgba(0,0,0,0.05), transparent 55%);
  opacity: 0.65;
  pointer-events: none;
  transform: rotate(8deg);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(31, 35, 40, 0.16);
  background: rgba(255,255,255,0.82);
}
html[data-theme="dark"] .card:hover {
  border-color: rgba(255,255,255,0.16);
  background: rgba(20, 23, 27, 0.76);
}

.card__head { position: relative; z-index: 1; }
.card__title { margin: 0; font-size: 18px; letter-spacing: -0.03em; }
.card__desc { margin: 10px 0 0; color: var(--muted); line-height: 1.6; }

.tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 14px;
  position: relative;
  z-index: 1;
}

.tag {
  font-size: 12px;
  color: var(--muted);
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.60);
}
html[data-theme="dark"] .tag { background: rgba(20, 23, 27, 0.55); }

.spaces {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 14px;
}

.space {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: 0 1px 0 rgba(0,0,0,0.02);
  overflow: hidden;
  display: grid;
  grid-template-rows: 150px auto;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.space:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
  border-color: rgba(31, 35, 40, 0.16);
}
html[data-theme="dark"] .space:hover { border-color: rgba(255,255,255,0.16); }

.space__media {
  background:
    radial-gradient(700px 240px at 15% 20%, rgba(255,255,255,0.55), transparent 60%),
    radial-gradient(500px 300px at 85% 70%, rgba(0,0,0,0.08), transparent 60%),
    linear-gradient(135deg, rgba(214, 185, 152, 0.22), rgba(169, 176, 182, 0.18));
  border-bottom: 1px solid var(--border);
}

.space__body { padding: 16px 16px 18px; }
.space__title { margin: 0; font-size: 18px; letter-spacing: -0.03em; }
.space__desc { margin: 10px 0 0; color: var(--muted); line-height: 1.6; }

.space__list {
  margin: 12px 0 0;
  padding: 0 0 0 18px;
  color: var(--muted);
  line-height: 1.7;
}

.space__chips { margin-top: 12px; display: flex; flex-wrap: wrap; gap: 8px; }

.chip {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 10px;
  font-size: 12px;
  color: var(--muted);
  background: rgba(255,255,255,0.55);
}
html[data-theme="dark"] .chip { background: rgba(20, 23, 27, 0.55); }

.metric { margin-top: 12px; }
.metric__label { font-size: 12px; color: var(--muted); margin-bottom: 8px; }
.metric__bar {
  height: 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.50);
  overflow: hidden;
}
html[data-theme="dark"] .metric__bar { background: rgba(20, 23, 27, 0.55); }
.metric__bar > span {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(31,35,40,0.80), rgba(31,35,40,0.35));
  opacity: 0.82;
}
html[data-theme="dark"] .metric__bar > span {
  background: linear-gradient(90deg, rgba(255,255,255,0.78), rgba(255,255,255,0.26));
}

.space__note {
  margin-top: 12px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.56);
  padding: 12px;
  color: var(--muted);
  line-height: 1.6;
}
html[data-theme="dark"] .space__note { background: rgba(20, 23, 27, 0.55); }

.space--living { grid-column: 1 / span 7; grid-row: span 2; }
.space--bed { grid-column: 8 / span 5; }
.space--kitchen { grid-column: 8 / span 5; }
.space--bath { grid-column: 1 / span 7; }

@media (max-width: 980px) {
  .space--living, .space--bed, .space--kitchen, .space--bath { grid-column: 1 / -1; }
  .space { grid-template-rows: 140px auto; }
}

.space--living .space__media {
  background:
    radial-gradient(900px 260px at 15% 20%, rgba(255,255,255,0.58), transparent 60%),
    radial-gradient(700px 380px at 90% 90%, rgba(0,0,0,0.08), transparent 60%),
    linear-gradient(135deg, rgba(214, 185, 152, 0.22), rgba(238, 232, 220, 0.22));
}
.space--bed .space__media {
  background:
    radial-gradient(800px 240px at 20% 25%, rgba(255,255,255,0.52), transparent 60%),
    radial-gradient(600px 420px at 85% 70%, rgba(0,0,0,0.08), transparent 58%),
    linear-gradient(135deg, rgba(169, 176, 182, 0.20), rgba(214, 185, 152, 0.16));
}
.space--kitchen .space__media {
  background:
    radial-gradient(700px 220px at 10% 30%, rgba(255,255,255,0.50), transparent 60%),
    radial-gradient(640px 400px at 85% 70%, rgba(0,0,0,0.10), transparent 60%),
    linear-gradient(135deg, rgba(29, 31, 33, 0.10), rgba(169, 176, 182, 0.18));
}
.space--bath .space__media {
  background:
    radial-gradient(820px 240px at 18% 22%, rgba(255,255,255,0.54), transparent 60%),
    radial-gradient(700px 420px at 86% 72%, rgba(0,0,0,0.09), transparent 60%),
    linear-gradient(135deg, rgba(238, 232, 220, 0.22), rgba(169, 176, 182, 0.16));
}

.subscribe {
  border-radius: calc(var(--radius-lg) + 6px);
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  padding: 20px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 16px;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.subscribe::before {
  content: "";
  position: absolute;
  inset: -60px;
  background:
    radial-gradient(circle at 20% 40%, rgba(214, 185, 152, 0.22), transparent 55%),
    radial-gradient(circle at 80% 30%, rgba(169, 176, 182, 0.18), transparent 52%);
  transform: rotate(6deg);
  opacity: 0.9;
  pointer-events: none;
}

.subscribe__copy { position: relative; z-index: 1; }
.subscribe__title { margin: 0; font-size: 22px; letter-spacing: -0.03em; }
.subscribe__desc { margin: 10px 0 0; color: var(--muted); line-height: 1.7; }

.subscribe__form {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: start;
}

.input {
  width: 100%;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface-solid);
  padding: 12px 14px;
  font-size: 14px;
  color: var(--text);
  outline: none;
  transition: box-shadow 160ms ease, border-color 160ms ease;
}
.input:focus {
  border-color: rgba(31, 35, 40, 0.24);
  box-shadow: 0 0 0 6px rgba(31, 35, 40, 0.08);
}
html[data-theme="dark"] .input:focus {
  border-color: rgba(255,255,255,0.22);
  box-shadow: 0 0 0 6px rgba(255,255,255,0.10);
}
.input--error {
  border-color: rgba(180, 65, 65, 0.55);
  box-shadow: 0 0 0 6px rgba(180, 65, 65, 0.10);
}

.formHint {
  grid-column: 1 / -1;
  margin: 2px 0 0;
  min-height: 18px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

@media (max-width: 980px) {
  .subscribe { grid-template-columns: 1fr; }
  .subscribe__form { grid-template-columns: 1fr; }
}

.about {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 14px;
}

.about__card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  padding: 18px;
}

.about__title { margin: 0; font-size: 22px; letter-spacing: -0.03em; }
.about__desc { margin: 12px 0 0; color: var(--muted); line-height: 1.75; }

.about__points {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.mini {
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.52);
  border-radius: var(--radius-md);
  padding: 12px;
}
html[data-theme="dark"] .mini { background: rgba(20, 23, 27, 0.55); }
.mini__k { font-weight: 750; letter-spacing: -0.02em; }
.mini__v { margin-top: 8px; color: var(--muted); font-size: 13px; line-height: 1.55; }

.about__side { display: grid; gap: 14px; align-content: start; }

.contactCard {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  padding: 18px;
}

.contactCard__title { margin: 0; font-size: 18px; letter-spacing: -0.03em; }
.contactCard__desc { margin: 10px 0 0; color: var(--muted); line-height: 1.6; }

.contactCard__row {
  margin-top: 12px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  border-top: 1px solid var(--border);
  padding-top: 12px;
  color: var(--muted);
  font-size: 13px;
}
.contactCard__value { color: var(--text); opacity: 0.92; }

.quoteCard {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background:
    radial-gradient(700px 280px at 20% 10%, rgba(255,255,255,0.55), transparent 60%),
    radial-gradient(600px 420px at 90% 90%, rgba(0,0,0,0.08), transparent 60%),
    var(--surface);
  box-shadow: var(--shadow-soft);
  padding: 18px;
}

.quoteCard__text {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: -0.02em;
}
.quoteCard__meta { margin: 12px 0 0; color: var(--muted); font-size: 13px; }

@media (max-width: 980px) {
  .about { grid-template-columns: 1fr; }
  .about__points { grid-template-columns: 1fr; }
}

.footer {
  padding: 28px 0 40px;
  border-top: 1px solid var(--border);
  background: rgba(255,255,255,0.22);
}
html[data-theme="dark"] .footer { background: rgba(0,0,0,0.18); }

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.footer__brand { font-weight: 750; letter-spacing: -0.02em; }
.footer__copy { margin-top: 6px; color: var(--muted); font-size: 13px; }

.footer__right { display: flex; gap: 12px; flex-wrap: wrap; }
.footer__link {
  color: var(--muted);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 9px 12px;
  background: rgba(255,255,255,0.50);
  transition: transform 160ms ease, box-shadow 160ms ease, color 160ms ease;
}
html[data-theme="dark"] .footer__link { background: rgba(20, 23, 27, 0.55); }
.footer__link:hover { transform: translateY(-1px); box-shadow: var(--shadow-soft); color: var(--text); }

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