@font-face {
  font-family: "Eurostile Extended";
  src: url("/assets/EurostileExtendedBlack.ttf") format("truetype");
  font-weight: 800;
  font-display: swap;
}

:root {
  --red: #ed1c24;
  --red-dark: #b91016;
  --ink: #090a0b;
  --panel: #111315;
  --panel-2: #181b1e;
  --line: #303337;
  --text: #f4f4f2;
  --muted: #b0b2b4;
  --muted-2: #7d8185;
  --white: #fff;
  --max: 1240px;
}

* { box-sizing: border-box; }
html { overflow-x: hidden; scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: .22;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 80px 80px;
}
a { color: inherit; }
img { display: block; max-width: 100%; }
.container { width: min(calc(100% - 48px), var(--max)); margin: 0 auto; }
.logo, .btn, .nav-links a, .mobile-menu a, h1, h2, h3, h4, .eyebrow, .status,
.price, .spec-label, .crumb, .link-arrow {
  font-family: "Eurostile Extended", Arial, sans-serif;
  letter-spacing: 0;
  text-transform: uppercase;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(9,10,11,.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.nav-inner { min-height: 82px; display: flex; align-items: center; gap: 28px; }
.logo { text-decoration: none; white-space: nowrap; font-size: 21px; }
.logo .mr { color: var(--red); }
.nav-links { margin-left: auto; display: flex; align-items: center; gap: 20px; }
.nav-links a {
  position: relative;
  color: var(--muted);
  text-decoration: none;
  font-size: 10px;
  transition: color .2s ease;
}
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -12px;
  height: 2px;
  background: var(--red);
}
.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 24px;
  border: 1px solid var(--red);
  color: #fff;
  background: transparent;
  text-decoration: none;
  font-size: 11px;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease;
}
.btn:hover { background: var(--red-dark); border-color: var(--red-dark); }
.btn-primary { background: var(--red); }
.btn-secondary { border-color: #666b70; }
.btn svg { width: 15px; height: 15px; }
.mobile-menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  margin-left: auto;
  border: 1px solid var(--line);
  color: #fff;
  background: transparent;
}
.mobile-menu-toggle svg { width: 22px; }
.mobile-menu { display: none; border-top: 1px solid var(--line); background: #0b0c0d; }
.mobile-menu.open { display: grid; }
.mobile-menu a { padding: 17px 24px; border-bottom: 1px solid var(--line); text-decoration: none; font-size: 11px; }

.crumb-bar { border-bottom: 1px solid var(--line); background: #0d0f10; }
.crumb { min-height: 48px; display: flex; align-items: center; gap: 12px; color: var(--muted-2); font-size: 9px; }
.crumb a { text-decoration: none; }
.crumb a:hover, .crumb .here { color: #fff; }
.sep { color: var(--red); }

.page-head { padding: 76px 0 68px; border-bottom: 1px solid var(--line); overflow: hidden; }
.page-head-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(360px, .8fr); gap: 64px; align-items: center; }
.eyebrow { margin-bottom: 18px; color: var(--red); font-size: 10px; }
h1 { max-width: 920px; margin: 0; font-size: clamp(42px, 6.2vw, 88px); line-height: .96; }
h1 .dot, h2 .dot { color: var(--red); }
.lede { max-width: 760px; margin: 28px 0 0; color: #d2d3d3; font-size: 18px; }
.page-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.hero-image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid #45494d;
  background: var(--panel);
}
.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 8px rgba(0,0,0,.12);
  pointer-events: none;
}
.hero-image img { width: 100%; height: 100%; object-fit: cover; }
.hero-tag {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  padding: 12px 18px;
  background: var(--red);
  font-family: "Eurostile Extended", Arial, sans-serif;
  text-transform: uppercase;
  font-size: 10px;
}

.section { padding: 82px 0; border-bottom: 1px solid var(--line); }
.section-head { display: flex; justify-content: space-between; gap: 30px; align-items: end; margin-bottom: 36px; }
.section-head h2 { margin: 0; max-width: 760px; font-size: clamp(30px, 4.2vw, 54px); line-height: 1; }
.section-head p { max-width: 490px; margin: 0; color: var(--muted); }
.notice {
  padding: 17px 20px;
  border-left: 3px solid var(--red);
  background: #141618;
  color: var(--muted);
  font-size: 14px;
}

.inventory-card {
  display: grid;
  grid-template-columns: minmax(340px, .95fr) minmax(0, 1.05fr);
  border: 1px solid var(--line);
  background: var(--panel);
}
.inventory-card-media { position: relative; min-height: 430px; overflow: hidden; }
.inventory-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.inventory-card:hover .inventory-card-media img { transform: scale(1.02); }
.status {
  display: inline-flex;
  padding: 8px 12px;
  color: #fff;
  background: #166c3d;
  font-size: 9px;
}
.inventory-card-media .status { position: absolute; left: 18px; top: 18px; }
.inventory-card-body { padding: 42px; display: flex; flex-direction: column; justify-content: center; }
.inventory-card h2, .inventory-card h3 { margin: 14px 0 16px; font-size: clamp(26px, 3.2vw, 44px); line-height: 1.02; }
.inventory-card p { margin: 0; color: var(--muted); }
.quick-specs { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; margin: 28px 0; background: var(--line); border: 1px solid var(--line); }
.quick-spec { padding: 17px; background: var(--panel-2); }
.spec-label { display: block; margin-bottom: 5px; color: var(--muted-2); font-size: 8px; }
.quick-spec strong { font-size: 15px; font-weight: 600; }
.price { margin-top: 12px; color: #fff; font-size: clamp(25px, 3vw, 38px); }
.price small { display: block; margin-top: 3px; color: var(--muted-2); font-family: Arial, sans-serif; font-size: 12px; text-transform: none; }

.unit-hero { padding: 54px 0 68px; border-bottom: 1px solid var(--line); }
.unit-hero-grid { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(330px, .7fr); gap: 34px; align-items: stretch; }
.unit-main-image { min-height: 570px; border: 1px solid var(--line); background: var(--panel); }
.unit-main-image img { width: 100%; height: 100%; object-fit: cover; }
.unit-summary { min-width: 0; padding: 38px; border: 1px solid var(--line); background: var(--panel); }
.unit-summary h1 { max-width: 100%; margin: 19px 0 24px; font-size: clamp(32px, 4vw, 55px); overflow-wrap: anywhere; }
.unit-summary .price { padding: 22px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.unit-summary .page-actions { display: grid; }
.unit-summary .btn { width: 100%; }
.unit-meta { display: grid; gap: 13px; margin: 24px 0 0; }
.unit-meta-row { display: flex; justify-content: space-between; gap: 18px; color: var(--muted); font-size: 13px; }
.unit-meta-row strong { color: #fff; text-align: right; }

.details-grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr); gap: 50px; }
.details-copy, .spec-panel { min-width: 0; }
.details-copy h2, .spec-panel h2 { margin: 0 0 22px; font-size: clamp(30px, 4vw, 48px); line-height: 1.02; }
.details-copy p { color: #c7c9ca; font-size: 17px; }
.spec-panel { padding: 30px; border: 1px solid var(--line); background: var(--panel); }
.spec-list { margin: 0; }
.spec-row { display: grid; grid-template-columns: 42% 58%; border-top: 1px solid var(--line); }
.spec-row:first-child { border-top: 0; }
.spec-row dt, .spec-row dd { margin: 0; padding: 14px 0; }
.spec-row dt { color: var(--muted-2); font-size: 12px; }
.spec-row dd { color: #fff; font-weight: 600; overflow-wrap: anywhere; }

.gallery { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.gallery figure { margin: 0; border: 1px solid var(--line); background: var(--panel); }
.gallery img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.gallery figcaption { padding: 13px 15px; color: var(--muted); font-size: 12px; }
.placeholder {
  display: grid;
  place-items: center;
  aspect-ratio: 4 / 3;
  padding: 30px;
  text-align: center;
  background: repeating-linear-gradient(-45deg, #16191b, #16191b 14px, #121416 14px, #121416 28px);
}
.placeholder strong { font-family: "Eurostile Extended", Arial, sans-serif; text-transform: uppercase; font-size: 14px; }
.placeholder span { display: block; margin-top: 8px; color: var(--muted-2); font-size: 12px; }

.cta-band { background: var(--red); }
.cta-band .container { min-height: 230px; display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.cta-band h2 { margin: 0; max-width: 760px; color: #fff; font-size: clamp(30px, 4.5vw, 58px); line-height: 1; }
.cta-band .btn { flex: 0 0 auto; border-color: #fff; background: #fff; color: #111; }
.cta-band .btn:hover { background: #111; border-color: #111; color: #fff; }

footer { padding: 62px 0 28px; background: #070809; }
.foot-top { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 42px; padding-bottom: 42px; }
.foot-about p { max-width: 330px; color: var(--muted); font-size: 13px; }
footer h4 { margin: 0 0 18px; font-size: 10px; }
footer ul { margin: 0; padding: 0; list-style: none; }
footer li { margin: 0 0 10px; }
footer li a { color: var(--muted); text-decoration: none; font-size: 12px; }
footer li a:hover { color: #fff; }
.foot-bottom { display: flex; justify-content: space-between; gap: 30px; padding-top: 24px; border-top: 1px solid var(--line); color: var(--muted-2); font-size: 11px; }
.legal { display: flex; gap: 22px; }
.legal a { color: inherit; text-decoration: none; }

@media (max-width: 1320px) {
  .nav-links { display: none; }
  .nav-inner > .btn { display: none; }
  .mobile-menu-toggle { display: grid; place-items: center; }
  .page-head-grid, .unit-hero-grid, .details-grid { grid-template-columns: 1fr; }
  .hero-image { max-width: 760px; }
  .unit-main-image { min-height: 520px; }
  .foot-top { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .container { width: min(calc(100% - 30px), var(--max)); }
  .nav-inner { min-height: 70px; gap: 14px; }
  .logo { font-size: 16px; }
  .page-head { padding: 48px 0 42px; }
  .page-head-grid { gap: 34px; }
  h1 { font-size: clamp(36px, 13vw, 54px); overflow-wrap: anywhere; }
  .lede { margin-top: 20px; font-size: 16px; }
  .page-actions { display: grid; }
  .btn { width: 100%; padding: 0 16px; text-align: center; }
  .section { padding: 58px 0; }
  .section-head { display: block; margin-bottom: 26px; }
  .section-head p { margin-top: 16px; }
  .inventory-card { grid-template-columns: 1fr; }
  .inventory-card-media { min-height: 280px; }
  .inventory-card-body, .unit-summary { padding: 26px 20px; }
  .quick-specs { grid-template-columns: 1fr; }
  .unit-hero { padding: 28px 0 48px; }
  .unit-hero-grid { gap: 16px; }
  .unit-main-image { min-height: 0; aspect-ratio: 4 / 3; }
  .unit-summary h1 { font-size: clamp(31px, 10vw, 43px); overflow-wrap: anywhere; }
  .unit-meta-row { display: grid; gap: 3px; }
  .unit-meta-row strong { text-align: left; }
  .spec-panel { padding: 20px; }
  .spec-row { grid-template-columns: 1fr; padding: 12px 0; }
  .spec-row dt, .spec-row dd { padding: 2px 0; }
  .gallery { grid-template-columns: 1fr; }
  .cta-band .container { min-height: 280px; padding-top: 44px; padding-bottom: 44px; display: grid; }
  .foot-top { grid-template-columns: 1fr; }
  .foot-bottom { flex-direction: column; gap: 12px; }
  .legal { flex-wrap: wrap; }
}

/* Exact MR Maquinaria visual system shared by the existing product pages. */
:root {
  --bg: #0a0a0b;
  --bg-2: #111114;
  --bg-3: #17171b;
  --line: rgba(255,255,255,0.08);
  --line-2: rgba(255,255,255,0.14);
  --text: #f5f5f5;
  --muted: #9a9a9f;
  --muted-2: #c7c7cc;
  --red: #dc2626;
  --red-hover: #b91c1c;
  --warm: #f39058;
  --warm-2: #ffb37a;
}

html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, sans-serif;
  line-height: normal;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body::before { display: none; }
a { text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
.container { width: auto; max-width: 1280px; margin: 0 auto; padding: 0 40px; }
.logo, .btn, .nav-links a, .mobile-menu a, h1, h2, h3, h4, .eyebrow, .status,
.price, .spec-label, .foot-top h4 {
  font-family: 'Eurostile Extended', 'Inter', sans-serif;
  font-weight: 900;
}

.nav {
  position: relative;
  top: auto;
  z-index: 20;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
  background: var(--bg);
  backdrop-filter: none;
}
.nav-inner {
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: nowrap;
}
.logo {
  font-size: 22px;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  line-height: 1;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-links { margin-left: 0; gap: 18px; white-space: nowrap; flex-shrink: 0; }
.nav-links a {
  color: var(--muted-2);
  font-size: 11px;
  letter-spacing: 0.12em;
  padding: 4px 0;
  white-space: nowrap;
}
.nav-links a.active::after { bottom: -6px; }
.btn {
  min-height: 0;
  gap: 8px;
  padding: 13px 20px 11px;
  border: 0;
  border-radius: 8px;
  font-size: 12px;
  letter-spacing: 0.08em;
  line-height: 1;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}
.btn-primary { background: var(--red); color: #fff; }
.btn-primary:hover { background: var(--red-hover); }
.btn-outline, .btn-secondary {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.25);
}
.btn-outline:hover, .btn-secondary:hover { border-color: #fff; background: rgba(255,255,255,0.05); }
.btn-lg { padding: 17px 26px 15px; font-size: 13px; }
.btn svg { width: 14px; height: 14px; }
.mobile-menu-toggle {
  width: 44px;
  height: 44px;
  margin-left: 0;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(0,0,0,0.35);
  flex-shrink: 0;
}
.mobile-menu { display: none; }

.crumb-bar { background: var(--bg); border-bottom: 1px solid var(--line); }
.crumb {
  min-height: 0;
  gap: 10px;
  padding: 16px 0;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--muted);
}
.crumb a { color: var(--muted-2); }
.crumb .sep, .sep { color: rgba(255,255,255,0.25); }

.page-head {
  position: relative;
  padding: 80px 0 88px;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}
.page-head::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(243,144,88,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.page-head.bg-grid::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 100% at 50% 50%, #000 40%, transparent 90%);
  -webkit-mask-image: radial-gradient(ellipse 80% 100% at 50% 50%, #000 40%, transparent 90%);
}
.page-head .container { position: relative; z-index: 2; }
.page-head-grid { grid-template-columns: 1fr 1.05fr; gap: 64px; }
.page-head-text { min-width: 0; }
.page-head h1 {
  max-width: none;
  margin: 0 0 22px;
  font-size: clamp(40px, 5vw, 72px);
  line-height: .98;
  text-transform: uppercase;
}
.page-head .lede {
  max-width: 540px;
  margin: 0 0 32px;
  color: var(--muted-2);
  font-size: 17px;
  line-height: 1.55;
}
.page-actions, .page-head-cta { margin-top: 0; gap: 12px; }
.hero-image {
  overflow: visible;
  border: 0;
  background: transparent;
}
.hero-image::before {
  content: "";
  position: absolute;
  right: 18px;
  top: -18px;
  width: 56px;
  height: 56px;
  border-right: 2px solid var(--red);
  border-top: 2px solid var(--red);
  z-index: 2;
}
.hero-image::after {
  content: "";
  position: absolute;
  left: 18px;
  bottom: -18px;
  width: 56px;
  height: 56px;
  border-left: 2px solid var(--red);
  border-bottom: 2px solid var(--red);
  box-shadow: none;
}
.hero-image img { border: 1px solid var(--line-2); }
.hero-tag { background: var(--red); font-size: 10px; letter-spacing: .18em; }

.section { padding: 88px 0; border-bottom: 1px solid var(--line); }
.section-head { gap: 48px; margin-bottom: 44px; }
.section-head h2 {
  max-width: 720px;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.05;
  text-transform: uppercase;
}
.section-head p { max-width: 380px; color: var(--muted-2); font-size: 15.5px; line-height: 1.55; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--warm);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .22em;
}
.eyebrow::before { content: ""; width: 24px; height: 1px; background: var(--warm); }
.notice {
  padding: 18px 20px;
  border-left: 2px solid var(--red);
  background: var(--bg-2);
  color: var(--muted-2);
  font-size: 14px;
  line-height: 1.55;
}

.inventory-card, .unit-summary, .spec-panel, .gallery figure {
  background: var(--bg-2);
  border: 1px solid var(--line);
}
.inventory-card { transition: border-color .25s, transform .25s; }
.inventory-card:hover { border-color: var(--red); transform: translateY(-2px); }
.inventory-card-body { padding: 32px 28px 30px; }
.inventory-card h2, .inventory-card h3 {
  margin: 14px 0 16px;
  font-size: clamp(26px, 3.2vw, 44px);
  line-height: 1.05;
  text-transform: uppercase;
}
.inventory-card p, .details-copy p { color: var(--muted-2); line-height: 1.55; }
.status { padding: 8px 12px; background: var(--red); font-size: 9px; letter-spacing: .18em; }
.spec-label {
  color: var(--warm);
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: .18em;
}
.quick-specs { background: var(--line); border: 1px solid var(--line); }
.quick-spec { background: var(--bg-3); }
.quick-spec strong { color: #fff; font-size: 14px; }
.price { font-size: clamp(25px, 3vw, 38px); letter-spacing: .01em; }
.price small { color: var(--muted); font-family: 'Inter', sans-serif; }

.unit-hero { padding: 64px 0 80px; background: var(--bg); }
.unit-main-image { border: 1px solid var(--line-2); background: var(--bg-2); }
.unit-summary { padding: 32px; }
.unit-summary h1 { font-size: clamp(32px, 4vw, 52px); line-height: 1.02; text-transform: uppercase; }
.unit-summary .price { border-color: var(--line); }
.unit-meta-row { color: var(--muted-2); font-size: 13px; line-height: 1.45; }
.details-copy h2, .spec-panel h2 { font-size: clamp(28px, 3.2vw, 44px); line-height: 1.05; text-transform: uppercase; }
.spec-panel { padding: 0; }
.spec-panel h2 { margin: 0; padding: 26px; border-bottom: 1px solid var(--line); }
.spec-row { grid-template-columns: 42% 58%; border-color: var(--line); }
.spec-row dt, .spec-row dd { padding: 16px 22px; }
.spec-row dt {
  background: rgba(0,0,0,.22);
  color: var(--warm);
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.spec-row dd { color: var(--muted-2); font-size: 14px; line-height: 1.45; }
.gallery { gap: 14px; }
.gallery figure { transition: border-color .2s; }
.gallery figure:hover { border-color: var(--red); }
.gallery figcaption {
  padding: 13px 15px;
  color: var(--muted);
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.placeholder { background: linear-gradient(135deg, #16161a 0%, #0e0e11 100%); }

.cta-band {
  background: #08080a;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.cta-band .container { min-height: 250px; }
.cta-band h2 { color: #fff; font-size: clamp(32px, 3.8vw, 52px); line-height: 1.02; text-transform: uppercase; }
.cta-band .btn { border: 0; background: var(--red); color: #fff; }
.cta-band .btn:hover { background: var(--red-hover); color: #fff; }

footer { padding: 56px 0 28px; border-top: 1px solid var(--line); background: #08080a; }
.foot-top {
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
}
.foot-top h4, footer h4 { margin: 0 0 16px; color: #fff; font-size: 12px; letter-spacing: .1em; }
.foot-top ul, footer ul { display: grid; gap: 10px; }
footer li { margin: 0; }
.foot-top a, footer li a { color: var(--muted-2); font-size: 14px; }
.foot-about p { max-width: 320px; margin: 14px 0 0; color: var(--muted-2); font-size: 14px; line-height: 1.6; }
.foot-bottom { padding-top: 24px; color: var(--muted); font-size: 13px; }

@media (max-width: 1320px) {
  .container { padding: 0 24px; }
  .nav-inner { gap: 16px; }
  .nav-inner > .btn { display: none; }
  .mobile-menu-toggle { display: inline-flex; }
  .mobile-menu {
    position: absolute;
    top: calc(100% + 1px);
    left: 24px;
    right: 24px;
    z-index: 30;
    display: grid;
    padding: 10px;
    background: rgba(8,8,10,.96);
    border: 1px solid var(--line-2);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .18s ease, transform .18s ease;
    backdrop-filter: blur(14px);
  }
  .mobile-menu.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .mobile-menu a {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 0 14px;
    border-bottom: 1px solid var(--line);
    color: var(--muted-2);
    font-size: 12px;
    letter-spacing: .12em;
  }
  .mobile-menu a:last-child { border-bottom: 0; }
  .page-head { padding: 56px 0 64px; }
  .page-head-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; justify-items: center; }
  .page-head-text { width: 100%; max-width: 540px; }
  .page-head .lede { margin-left: auto; margin-right: auto; }
  .page-head-cta { justify-content: center; }
  .hero-image { width: 100%; max-width: 560px; height: clamp(220px,62vw,280px); aspect-ratio: auto; }
  .foot-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .nav { padding: 18px 0; }
  .container { width: auto; padding: 0 16px; }
  .nav-inner { min-height: 0; gap: 10px; }
  .logo { font-size: 16px; gap: 7px; min-width: 0; }
  .mobile-menu-toggle { width: 40px; height: 40px; flex: 0 0 40px; }
  .mobile-menu { left: 16px; right: 16px; }
  .page-head h1 { max-width: 300px; margin-left: auto; margin-right: auto; font-size: 38px; }
  .page-head .lede { max-width: 330px; font-size: 16px; }
  .page-head-cta { flex-direction: column; align-items: stretch; }
  .page-head-cta .btn, .page-actions .btn { width: 100%; justify-content: center; text-align: center; }
  .section { padding: 64px 0; }
  .section-head { flex-direction: column; align-items: flex-start; }
  .inventory-card-body, .unit-summary { padding: 26px 20px; }
  .unit-hero { padding: 40px 0 56px; }
  .spec-row { grid-template-columns: 1fr; }
  .spec-row dt { border-bottom: 1px solid var(--line); }
  .foot-top { grid-template-columns: 1fr; }
}

/* Inventory listing: compact catalog layout for multiple available units. */
.inventory-listing .page-head { padding: 52px 0 58px; }
.inventory-listing .page-head-grid {
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
}
.inventory-listing .page-head-text { max-width: 820px; }
.inventory-listing .page-head h1 {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(38px, 4.6vw, 64px);
}
.inventory-listing .page-head .lede {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
.inventory-listing .page-head-cta { justify-content: center; }
.inventory-listing .section { padding: 64px 0; }
.inventory-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}
.inventory-listing .inventory-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
}
.inventory-listing .inventory-card-media {
  min-height: 0;
  aspect-ratio: 4 / 3;
}
.inventory-listing .inventory-card-body {
  padding: 24px 22px 22px;
}
.inventory-listing .inventory-card h2 {
  margin: 12px 0;
  font-size: 20px;
  line-height: 1.14;
}
.inventory-listing .inventory-card p { min-height: 44px; margin: 0; font-size: 13.5px; }
.inventory-listing .quick-specs {
  grid-template-columns: 1fr;
  margin: 20px 0;
}
.inventory-listing .quick-spec {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 11px 12px;
}
.inventory-listing .quick-spec .spec-label { margin: 0; }
.inventory-listing .quick-spec strong { min-width: 0; overflow-wrap: anywhere; font-size: 12.5px; }
.inventory-listing .price { margin-top: 0; font-size: 24px; }
.inventory-listing .page-actions { display: grid; grid-template-columns: 1fr 1fr; margin-top: 20px; }
.inventory-listing .page-actions .btn { justify-content: center; padding-left: 12px; padding-right: 12px; }

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

@media (max-width: 680px) {
  .inventory-listing .page-head { padding: 42px 0 48px; }
  .inventory-listing .page-head h1 {
    max-width: 100%;
    font-size: clamp(32px, 9vw, 38px);
    overflow-wrap: normal;
    word-break: normal;
  }
  .inventory-listing .section { padding: 52px 0; }
  .inventory-grid { grid-template-columns: 1fr; }
  .inventory-listing .inventory-card p { min-height: 0; }
  .inventory-listing .page-actions { grid-template-columns: 1fr; }
}
