/* ==========================================================================
   Roomiva — public website styles.

   Mobile-first. No external fonts, no icon font, no CSS framework: the
   premium feel comes from spacing, scale, weight contrast and restraint
   rather than decoration, which also keeps this file the only stylesheet
   the page loads (no render-blocking third-party request).

   Theming: light tokens are the base on :root; a system dark preference
   overrides them; an explicit [data-theme] attribute (set by scripts/theme.js
   from a user's own toggle choice) wins over both. Every token is defined in
   all three places it can change — see the two @media/[data-theme] blocks
   below — so nothing is ever un-themed.
   ========================================================================== */

:root {
  color-scheme: light dark;

  /* ---- surfaces ---- */
  --bg: #f6f4ef;
  --surface: #ffffff;
  --surface-muted: #ede9e1;
  --surface-inverse: #16191a;
  --border: #e2ddd1;
  --border-strong: #cbc3b2;

  /* ---- text ---- */
  --text: #16191a;
  --text-muted: #585f5e;
  --text-inverse: #f6f4ef;

  /* ---- accent (teal) ---- */
  --accent: #0e6f68;
  --accent-hover: #0a544f;
  --accent-contrast: #ffffff;
  --accent-soft: #e4f0ee;

  /* ---- warm material tone, used sparingly (badges, dividers, icons) ---- */
  --material: #a98f66;
  --material-soft: #efe6d6;

  /* ---- feedback ---- */
  --scrim: rgba(10, 14, 13, 0.55);
  --focus-ring: #0e6f68;
  --shadow-color: 20 24 22;

  /* ---- scale ---- */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --container-width: 1180px;
  --header-height: 72px;

  /* ---- motion (overridden to 0 under reduced motion, below) ---- */
  --duration-fast: 160ms;
  --duration-base: 280ms;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme='light']) {
    --bg: #0b0d0e;
    --surface: #15191a;
    --surface-muted: #1d2223;
    --surface-inverse: #f6f4ef;
    --border: #262c2d;
    --border-strong: #3a4243;

    --text: #f3f1ea;
    --text-muted: #a7afae;
    --text-inverse: #16191a;

    --accent: #4fd3c4;
    --accent-hover: #6ee0d3;
    --accent-contrast: #06211e;
    --accent-soft: #12302c;

    --material: #c9b28a;
    --material-soft: #24211a;

    --scrim: rgba(0, 0, 0, 0.6);
    --focus-ring: #4fd3c4;
    --shadow-color: 0 0 0;
  }
}

:root[data-theme='dark'] {
  --bg: #0b0d0e;
  --surface: #15191a;
  --surface-muted: #1d2223;
  --surface-inverse: #f6f4ef;
  --border: #262c2d;
  --border-strong: #3a4243;

  --text: #f3f1ea;
  --text-muted: #a7afae;
  --text-inverse: #16191a;

  --accent: #4fd3c4;
  --accent-hover: #6ee0d3;
  --accent-contrast: #06211e;
  --accent-soft: #12302c;

  --material: #c9b28a;
  --material-soft: #24211a;

  --scrim: rgba(0, 0, 0, 0.6);
  --focus-ring: #4fd3c4;
  --shadow-color: 0 0 0;
}

@media (prefers-reduced-motion: reduce) {
  :root {
    --duration-fast: 0ms;
    --duration-base: 0ms;
  }
}

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

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family:
    -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

h1,
h2,
h3,
h4,
p,
figure {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  color: inherit;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

/* ------------------------------------------------------------ utilities */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin-inline: auto;
  padding-inline: 20px;
}

@media (min-width: 640px) {
  .container {
    padding-inline: 32px;
  }
}

.section {
  padding-block: 72px;
}

.section--surface {
  background: var(--surface);
}

@media (min-width: 900px) {
  .section {
    padding-block: 112px;
  }
}

.section-head {
  max-width: 640px;
  margin-bottom: 40px;
}

.section-head--center {
  max-width: 640px;
  margin-inline: auto;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.eyebrow::before {
  content: '';
  width: 18px;
  height: 1px;
  background: var(--accent);
}

h2.section-title {
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  font-weight: 650;
}

.section-lede {
  margin-top: 16px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 56ch;
}

.section-head--center .section-lede {
  margin-inline: auto;
}

.visually-hidden {
  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: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  background: var(--surface-inverse);
  color: var(--text-inverse);
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  transform: translateY(-140%);
  transition: transform var(--duration-fast) var(--ease);
  font-weight: 600;
}

.skip-link:focus-visible {
  transform: translateY(0);
}

/* focus ring, everywhere, consistently */
:focus-visible {
  outline: 2.5px solid var(--focus-ring);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ------------------------------------------------------------- buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  text-decoration: none;
  transition:
    background-color var(--duration-fast) var(--ease),
    color var(--duration-fast) var(--ease),
    transform var(--duration-fast) var(--ease),
    box-shadow var(--duration-fast) var(--ease);
  white-space: nowrap;
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: var(--accent);
  color: var(--accent-contrast);
}

.btn-primary:hover {
  background: var(--accent-hover);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border-strong);
}

.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-ghost {
  background: transparent;
  color: var(--accent);
  padding-inline: 4px;
}

.btn-ghost::after {
  content: '→';
  transition: transform var(--duration-fast) var(--ease);
  display: inline-block;
}

.btn-ghost:hover::after {
  transform: translateX(3px);
}

/* A truthfully inert "coming soon" pill. Not a link, not a button that goes
   anywhere: styled clearly differently from .btn so it never reads as
   clickable. */
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--surface-muted);
  border: 1px dashed var(--border-strong);
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 600;
}

.status-pill .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--material);
}

/* ================================================================ header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-height);
  display: flex;
  align-items: center;
  background: color-mix(in srgb, var(--bg) 86%, transparent);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--border);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-decoration: none;
  color: var(--text);
}

.wordmark-mark {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: linear-gradient(155deg, var(--accent), var(--accent-hover));
  position: relative;
  flex: none;
}

.wordmark-mark::after {
  content: '';
  position: absolute;
  inset: 8px;
  border-radius: 4px;
  border: 2px solid var(--accent-contrast);
  opacity: 0.9;
}

.nav-desktop {
  display: none;
}

@media (min-width: 940px) {
  .nav-desktop {
    display: flex;
    align-items: center;
    gap: 4px;
  }

  .nav-desktop a {
    padding: 10px 16px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    color: var(--text-muted);
    transition:
      color var(--duration-fast) var(--ease),
      background-color var(--duration-fast) var(--ease);
  }

  .nav-desktop a:hover {
    color: var(--text);
    background: var(--surface-muted);
  }
}

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

.theme-toggle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  color: var(--text);
  flex: none;
}

.theme-toggle:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.theme-toggle svg {
  width: 18px;
  height: 18px;
}

.icon-sun {
  display: block;
}
.icon-moon {
  display: none;
}

:root[data-theme='dark'] .icon-sun {
  display: none;
}
:root[data-theme='dark'] .icon-moon {
  display: block;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme='light']) .icon-sun {
    display: none;
  }
  :root:not([data-theme='light']) .icon-moon {
    display: block;
  }
}

.header-pill {
  display: none;
}

@media (min-width: 640px) {
  .header-pill {
    display: inline-flex;
  }
}

.nav-toggle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  flex: none;
}

@media (min-width: 940px) {
  .nav-toggle {
    display: none;
  }
}

.nav-toggle svg {
  width: 20px;
  height: 20px;
}

/* Mobile menu: a full-panel sheet, not a cramped dropdown, so every target
   stays comfortably large with one hand. */
.nav-mobile {
  position: fixed;
  inset: var(--header-height) 0 0 0;
  z-index: 49;
  background: var(--bg);
  padding: 24px 20px 40px;
  overflow-y: auto;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity var(--duration-base) var(--ease),
    transform var(--duration-base) var(--ease);
}

.nav-mobile[data-open='true'] {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

@media (min-width: 940px) {
  .nav-mobile {
    display: none;
  }
}

.nav-mobile ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nav-mobile a {
  display: block;
  padding: 18px 8px;
  font-size: 21px;
  font-weight: 600;
  text-decoration: none;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}

.nav-mobile .btn {
  margin-top: 24px;
  width: 100%;
}

.nav-mobile .status-pill {
  margin-top: 14px;
  width: 100%;
  justify-content: center;
}

/* ================================================================== hero */
.hero {
  padding-block: 56px 40px;
}

@media (min-width: 900px) {
  .hero {
    padding-block: 88px 56px;
  }
}

.hero-inner {
  display: grid;
  gap: 28px;
}

@media (min-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 56px;
  }
}

.hero h1 {
  font-size: clamp(34px, 5.4vw, 60px);
  line-height: 1.06;
  letter-spacing: -0.02em;
  font-weight: 700;
}

.hero-sub {
  margin-top: 20px;
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 52ch;
}

.hero-note {
  margin-top: 18px;
  padding: 14px 16px;
  border-left: 3px solid var(--accent);
  background: var(--accent-soft);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--text);
  max-width: 52ch;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 30px;
}

/* ------------------------------------------------------ compare slider */
.compare {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface-muted);
  box-shadow: 0 24px 60px -20px rgb(var(--shadow-color) / 0.35);
  /* Allow the browser to handle vertical page scroll natively; only
     horizontal movement is interpreted as a drag by JavaScript. */
  touch-action: pan-y;
  user-select: none;
  -webkit-user-select: none;
}

.compare img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.compare-after {
  clip-path: inset(0 calc(100% - var(--compare-pos, 50%)) 0 0);
}

.compare-label {
  position: absolute;
  top: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  background: var(--scrim);
  pointer-events: none;
}

.compare-label--before {
  left: 14px;
}

.compare-label--after {
  right: 14px;
}

.compare-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--compare-pos, 50%);
  width: 2px;
  background: #fff;
  box-shadow: 0 0 0 1px rgb(0 0 0 / 0.25);
  transform: translateX(-1px);
  pointer-events: none;
}

.compare-handle {
  position: absolute;
  top: 50%;
  left: var(--compare-pos, 50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  color: #16191a;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  box-shadow: 0 6px 20px rgb(0 0 0 / 0.35);
  cursor: ew-resize;
  touch-action: none;
}

.compare-handle svg {
  width: 12px;
  height: 12px;
}

.compare-handle:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

.compare-caption {
  margin-top: 14px;
  font-size: 13.5px;
  color: var(--text-muted);
  text-align: center;
}

/* No-JS / failed-asset fallback: two stacked, fully visible frames instead
   of a broken overlay. `.js-ready` is added to <html> only once the script
   has actually initialised the slider. */
html:not(.js-ready) .compare-after {
  clip-path: none;
  position: static;
  margin-top: 10px;
  border-radius: var(--radius-lg);
}
html:not(.js-ready) .compare {
  aspect-ratio: auto;
  box-shadow: none;
  background: none;
}
html:not(.js-ready) .compare-before {
  position: static;
  border-radius: var(--radius-lg);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
html:not(.js-ready) .compare-divider,
html:not(.js-ready) .compare-handle {
  display: none;
}
html:not(.js-ready) .compare-label {
  position: static;
  display: inline-block;
  margin-bottom: 8px;
  color: var(--text);
  background: var(--surface-muted);
}

/* If an image genuinely fails to load, show a plain state rather than a
   broken-image glyph stretched across the frame. */
.compare img.is-broken {
  object-fit: none;
  background: var(--surface-muted);
}

/* =========================================================== how it works */
.steps {
  display: grid;
  gap: 20px;
  counter-reset: step;
}

@media (min-width: 760px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
}

.step {
  padding: 28px 24px;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid var(--border);
}

.step-index {
  counter-increment: step;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 16px;
}

.step-index::before {
  content: counter(step);
}

.step h3 {
  font-size: 18px;
  font-weight: 650;
  margin-bottom: 8px;
}

.step p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
}

.ai-designer {
  margin-top: 32px;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--surface-inverse);
  color: var(--text-inverse);
  display: grid;
  gap: 20px;
}

@media (min-width: 760px) {
  .ai-designer {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 40px;
  }
}

.ai-designer h3 {
  font-size: 22px;
  font-weight: 650;
  margin-bottom: 10px;
}

.ai-designer p {
  color: color-mix(in srgb, var(--text-inverse) 78%, transparent);
  font-size: 15px;
  line-height: 1.65;
}

.ai-designer ul {
  margin-top: 16px;
  display: grid;
  gap: 10px;
}

.ai-designer li {
  display: flex;
  gap: 10px;
  font-size: 14.5px;
  color: color-mix(in srgb, var(--text-inverse) 88%, transparent);
}

.ai-designer li svg {
  flex: none;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  color: var(--accent);
}

.disclaimer-line {
  margin-top: 28px;
  font-size: 13.5px;
  color: var(--text-muted);
  max-width: 62ch;
}

/* =================================================================== grid */
.card-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}

.feature-card {
  padding: 24px;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid var(--border);
  transition:
    border-color var(--duration-fast) var(--ease),
    transform var(--duration-fast) var(--ease);
}

.feature-card:hover {
  border-color: var(--border-strong);
}

.feature-card .icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.feature-card .icon svg {
  width: 20px;
  height: 20px;
}

.feature-card h3 {
  font-size: 16.5px;
  font-weight: 650;
  margin-bottom: 6px;
}

.feature-card p {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ---------------------------------------------------- interior/exterior */
.space-tabs {
  display: grid;
  gap: 32px;
}

@media (min-width: 860px) {
  .space-tabs {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

.space-group h3 {
  font-size: 20px;
  font-weight: 650;
  margin-bottom: 6px;
}

.space-group > p {
  color: var(--text-muted);
  font-size: 14.5px;
  margin-bottom: 18px;
  line-height: 1.6;
}

.space-list {
  display: grid;
  gap: 10px;
}

.space-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  background: var(--surface);
  border: 1px solid var(--border);
  font-size: 15px;
  font-weight: 550;
}

.space-item .swatch {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--material);
  flex: none;
}

.space-group--exterior .swatch {
  background: var(--accent);
}

.preserve-note {
  margin-top: 18px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ======================================================================= trust */
.trust-grid {
  display: grid;
  gap: 16px;
}

@media (min-width: 760px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.trust-item {
  display: flex;
  gap: 14px;
  padding: 20px;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid var(--border);
}

.trust-item svg {
  flex: none;
  width: 22px;
  height: 22px;
  color: var(--material);
  margin-top: 2px;
}

.trust-item p {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.6;
}

.trust-item strong {
  color: var(--text);
}

/* ================================================================ subscription */
.plan-card {
  padding: 32px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  max-width: 640px;
}

.plan-card ul {
  margin-top: 20px;
  display: grid;
  gap: 12px;
}

.plan-card li {
  display: flex;
  gap: 10px;
  font-size: 15px;
  line-height: 1.55;
}

.plan-card li svg {
  flex: none;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  color: var(--accent);
}

.plan-links {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
}

.plan-links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ===================================================================== faq */
.faq-list {
  display: grid;
  gap: 12px;
  max-width: 780px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
  padding: 4px 22px;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 0;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary .chevron {
  flex: none;
  width: 20px;
  height: 20px;
  color: var(--text-muted);
  transition: transform var(--duration-fast) var(--ease);
}

.faq-item[open] summary .chevron {
  transform: rotate(180deg);
}

.faq-item p {
  padding-bottom: 20px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.65;
  max-width: 68ch;
}

/* ==================================================================== footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding-block: 56px 32px;
  background: var(--surface);
}

.footer-top {
  display: grid;
  gap: 40px;
}

@media (min-width: 760px) {
  .footer-top {
    grid-template-columns: 1.2fr repeat(3, 1fr);
  }
}

.footer-brand .wordmark {
  margin-bottom: 12px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 14px;
  max-width: 32ch;
  line-height: 1.6;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.footer-col ul {
  display: grid;
  gap: 10px;
}

.footer-col a {
  font-size: 14.5px;
  text-decoration: none;
  color: var(--text);
}

.footer-col a:hover {
  color: var(--accent);
}

.footer-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-muted);
}

/* ============================================================== 404 */
.error-page {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.error-page h1 {
  font-size: clamp(40px, 8vw, 88px);
  font-weight: 700;
  color: var(--accent);
}

/* ============================================================== print */
@media print {
  .site-header,
  .nav-mobile,
  .hero-cta,
  .compare-handle {
    display: none;
  }
}
