/* ==========================================================================
   Architex — base + storefront styles
   ========================================================================== */

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

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

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--fs-base);
  line-height: var(--lh-body);
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
a:hover { text-decoration: none; }

h1, h2, h3, h4 {
  margin: 0 0 var(--sp-4);
  line-height: var(--lh-tight);
  letter-spacing: -0.021em;
  font-weight: var(--fw-black);
  color: var(--ink-soft);
}
h1 { font-size: var(--fs-2xl); }
h2 { font-size: var(--fs-xl); }
h3 { font-size: var(--fs-lg); }
h4 { font-size: var(--fs-md); }
p { margin: 0 0 var(--sp-4); }

/* Mixed-weight headline helper: <h1>Sell-off of <b>studio-grade</b> gear</h1> */
h1 b, h2 b, h3 b, .mixed b { font-weight: var(--fw-black); }
h1.mixed, h2.mixed, h3.mixed, .mixed { font-weight: var(--fw-regular); }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--sp-5);
}
.container-wide { max-width: var(--container-wide); }

.section { padding: var(--sp-9) 0; }
.section-sm { padding: var(--sp-7) 0; }
.section-alt { background: var(--warm-gray); }

.eyebrow {
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: var(--sp-3);
}
.lede { font-size: var(--fs-md); color: var(--ink-muted); max-width: 62ch; }
.muted { color: var(--ink-muted); }
.faint { color: var(--ink-faint); }
.small { font-size: var(--fs-sm); }
.center { text-align: center; }
.center .lede { margin-left: auto; margin-right: auto; }
.stack > * + * { margin-top: var(--sp-4); }
.row { display: flex; gap: var(--sp-3); flex-wrap: wrap; align-items: center; }
.row-between { display: flex; gap: var(--sp-4); flex-wrap: wrap;
  align-items: center; justify-content: space-between; }
.btn-group { display: flex; gap: var(--sp-3); flex-wrap: wrap; }
.btn-group.center { justify-content: center; }

/* --------------------------------------------------------------------------
   Logo mark — geometric mountain-peak "A"
   -------------------------------------------------------------------------- */
.logo { display: inline-flex; align-items: center; gap: var(--sp-3); }
.logo .logo-mark { width: 30px; height: auto; flex: none; display: block; }
.logo .logo-word { height: 13px; width: auto; display: block; padding-left: 2px; }
.logo-lg .logo-mark { width: 46px; }
.logo-lg .logo-word { height: 18px; }

/* --------------------------------------------------------------------------
   Buttons — three-tier pill hierarchy
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 12px 26px;
  border-radius: var(--r-pill);
  border: 1.5px solid transparent;
  font-family: inherit;
  font-size: var(--fs-base);
  font-weight: var(--fw-bold);
  line-height: 1.2;
  cursor: pointer;
  transition: transform var(--transition), background var(--transition),
    color var(--transition), border-color var(--transition);
  white-space: nowrap;
  text-align: center;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }

.btn-primary { background: var(--ink); color: var(--white); border-color: var(--ink); }
.btn-primary:hover { background: #000; }

.btn-gold { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-deep); border-color: var(--gold-edge); }

.btn-outline { background: var(--white); color: var(--ink); border-color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--white); }

.btn-ghost { background: transparent; color: var(--ink-muted); border-color: var(--line); }
.btn-ghost:hover { color: var(--ink); border-color: var(--ink); }

.btn-danger { background: var(--white); color: var(--danger); border-color: var(--danger); }
.btn-danger:hover { background: var(--danger); color: var(--white); }

.btn-sm { padding: 8px 18px; font-size: var(--fs-sm); }
.btn-lg { padding: 15px 34px; font-size: var(--fs-md); }
.btn-block { width: 100%; }
.btn[disabled], .btn.is-disabled {
  opacity: 0.42; pointer-events: none; transform: none;
}

/* --------------------------------------------------------------------------
   Top navigation
   -------------------------------------------------------------------------- */
.nav {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: saturate(150%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  height: var(--nav-h);
  display: flex; align-items: center; gap: var(--sp-5);
}
.nav-links { display: flex; align-items: center; gap: var(--sp-5); margin-left: auto; }
.nav-links a {
  font-size: var(--fs-sm); font-weight: var(--fw-medium); color: var(--ink-muted);
  transition: color var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-actions { display: flex; align-items: center; gap: var(--sp-3); }
.nav-toggle {
  display: none; margin-left: auto; background: none; border: 0;
  padding: var(--sp-2); cursor: pointer; color: var(--ink);
}
.cart-pill { position: relative; }
.cart-count {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 20px; height: 20px; padding: 0 6px; margin-left: 6px;
  border-radius: var(--r-pill); background: var(--gold);
  color: var(--ink); font-size: var(--fs-xs); font-weight: var(--fw-black);
}
.btn-primary .cart-count { background: var(--gold); }

/* --------------------------------------------------------------------------
   Hero — light geometric diagonal-band background image
   -------------------------------------------------------------------------- */
.hero {
  position: relative; overflow: hidden;
  background: var(--warm-gray) url("/static/brand/hero-bg.png") center / cover no-repeat;
  padding: var(--sp-9) 0 var(--sp-8);
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0.55) 0%, rgba(255,255,255,0.25) 60%, rgba(255,255,255,0) 100%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 2; max-width: 760px; }
.hero h1 { font-size: var(--fs-hero); margin-bottom: var(--sp-5); }
.hero .lede { font-size: var(--fs-md); max-width: 56ch; }
.hero-stats {
  display: flex; flex-wrap: wrap; gap: var(--sp-7); margin-top: var(--sp-7);
}
.hero-stat .n {
  font-size: var(--fs-xl); font-weight: var(--fw-black); line-height: 1;
  display: block; margin-bottom: 4px;
}
.hero-stat .l {
  font-size: var(--fs-xs); text-transform: uppercase;
  letter-spacing: var(--tracking-caps); color: var(--ink-muted);
  font-weight: var(--fw-semi);
}

/* --------------------------------------------------------------------------
   Filter / toolbar
   -------------------------------------------------------------------------- */
.toolbar {
  display: flex; flex-wrap: wrap; gap: var(--sp-4);
  align-items: center; justify-content: space-between;
  padding: var(--sp-5) 0; border-bottom: 1px solid var(--line);
  margin-bottom: var(--sp-6);
}
.chips { display: flex; flex-wrap: wrap; gap: var(--sp-2); }
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 16px; border-radius: var(--r-pill);
  border: 1.5px solid var(--line-strong); background: var(--white);
  font-size: var(--fs-sm); font-weight: var(--fw-medium); color: var(--ink-muted);
  cursor: pointer; transition: all var(--transition);
}
.chip:hover { border-color: var(--ink); color: var(--ink); }
.chip.active {
  background: var(--ink); border-color: var(--ink);
  color: var(--white); font-weight: var(--fw-bold);
}
.chip .c { font-size: var(--fs-xs); opacity: 0.7; }

.field { display: flex; flex-direction: column; gap: 6px; }
.field label, .label {
  font-size: var(--fs-xs); font-weight: var(--fw-bold);
  letter-spacing: 0.05em; text-transform: uppercase; color: var(--ink-faint);
}
input[type="text"], input[type="email"], input[type="tel"], input[type="number"],
input[type="password"], input[type="date"], input[type="search"], select, textarea {
  font-family: inherit; font-size: var(--fs-base); color: var(--ink);
  padding: 11px 14px; border: 1.5px solid var(--line-strong);
  border-radius: var(--r-md); background: var(--white); width: 100%;
  transition: border-color var(--transition);
}
input:focus, select:focus, textarea:focus {
  outline: none; border-color: var(--ink);
}
textarea { min-height: 96px; resize: vertical; line-height: 1.55; }
select { appearance: none; padding-right: 38px;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23111' stroke-width='1.8' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; }
.select-inline { width: auto; min-width: 190px; }

/* --------------------------------------------------------------------------
   Product grid
   -------------------------------------------------------------------------- */
.grid {
  display: grid; gap: var(--sp-5);
  grid-template-columns: repeat(auto-fill, minmax(258px, 1fr));
}
.card {
  display: flex; flex-direction: column;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r-lg); overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition),
    border-color var(--transition);
}
.card:hover {
  transform: translateY(-3px); box-shadow: var(--shadow-md);
  border-color: var(--line-strong);
}
.card-media {
  position: relative; aspect-ratio: 4 / 3; background: var(--warm-gray);
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.card-media img {
  position: relative; z-index: 1;
  width: 100%; height: 100%; object-fit: contain;
  padding: var(--sp-4); background: var(--warm-gray);
}
/* Placeholder sits behind the image so a broken/blocked image URL still
   degrades to readable text instead of a broken-image icon. */
.ph {
  position: absolute; inset: 0; z-index: 0;
  display: flex; align-items: center; justify-content: center; text-align: center;
  padding: var(--sp-4);
  font-size: var(--fs-xs); letter-spacing: var(--tracking-caps);
  text-transform: uppercase; color: var(--ink-faint); font-weight: var(--fw-semi);
}
.card-body { padding: var(--sp-4) var(--sp-5) var(--sp-5); display: flex;
  flex-direction: column; gap: var(--sp-2); flex: 1; }
.card-cat {
  font-size: var(--fs-xs); text-transform: uppercase;
  letter-spacing: var(--tracking-caps); color: var(--ink-faint);
  font-weight: var(--fw-bold);
}
.card-title {
  font-size: var(--fs-md); font-weight: var(--fw-bold);
  line-height: var(--lh-snug); margin: 0; letter-spacing: -0.012em;
}
.card-model { font-size: var(--fs-sm); color: var(--ink-muted); margin: 0; }
.card-foot {
  margin-top: auto; padding-top: var(--sp-4);
  display: flex; align-items: center; justify-content: space-between; gap: var(--sp-3);
}
.price { font-size: var(--fs-lg); font-weight: var(--fw-black); letter-spacing: -0.02em; }
.price-sm { font-size: var(--fs-md); font-weight: var(--fw-bold); }

/* --------------------------------------------------------------------------
   Badges
   -------------------------------------------------------------------------- */
.badge {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 4px 11px; border-radius: var(--r-pill);
  font-size: var(--fs-xs); font-weight: var(--fw-bold);
  letter-spacing: 0.03em; white-space: nowrap;
  background: var(--warm-gray-2); color: var(--ink-muted);
}
.badge-gold { background: var(--gold); color: var(--ink); }
.badge-ink { background: var(--ink); color: var(--white); }
.badge-ok { background: var(--ok-bg); color: var(--ok); }
.badge-warn { background: var(--warn-bg); color: var(--warn); }
.badge-danger { background: var(--danger-bg); color: var(--danger); }
.badge-info { background: var(--info-bg); color: var(--info); }
.badge-outline { background: transparent; border: 1px solid var(--line-strong); }

.ribbon {
  position: absolute; top: var(--sp-3); left: var(--sp-3); z-index: 2;
}
.ribbon-right { left: auto; right: var(--sp-3); }

/* --------------------------------------------------------------------------
   Product detail
   -------------------------------------------------------------------------- */
.breadcrumb {
  font-size: var(--fs-sm); color: var(--ink-faint);
  padding: var(--sp-5) 0 0; display: flex; gap: 8px; flex-wrap: wrap;
}
.breadcrumb a:hover { color: var(--ink); text-decoration: underline; }

.detail {
  display: grid; gap: var(--sp-8);
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  padding: var(--sp-6) 0 var(--sp-8);
  align-items: start;
}
.gallery-main {
  position: relative; border: 1px solid var(--line); border-radius: var(--r-lg);
  background: var(--white); aspect-ratio: 4 / 3; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.gallery-main img {
  position: relative; z-index: 1;
  width: 100%; height: 100%; object-fit: contain;
  padding: var(--sp-6); background: var(--white);
}
.gallery-thumbs { display: flex; gap: var(--sp-3); margin-top: var(--sp-3); flex-wrap: wrap; }
.gallery-thumbs button {
  width: 74px; height: 60px; padding: 4px; cursor: pointer;
  border: 1.5px solid var(--line); border-radius: var(--r-sm);
  background: var(--white);
}
.gallery-thumbs button.active { border-color: var(--ink); }
.gallery-thumbs img { width: 100%; height: 100%; object-fit: contain; }

.detail-title { font-size: var(--fs-2xl); margin-bottom: var(--sp-2); }
.detail-model { font-size: var(--fs-md); color: var(--ink-muted); margin-bottom: var(--sp-5); }
.detail-price {
  font-size: var(--fs-3xl); font-weight: var(--fw-black);
  letter-spacing: -0.03em; line-height: 1; margin-bottom: var(--sp-2);
}
.detail-tax { font-size: var(--fs-sm); color: var(--ink-faint); margin-bottom: var(--sp-5); }
.detail-actions { display: flex; gap: var(--sp-3); flex-wrap: wrap; margin: var(--sp-5) 0; }
.detail-meta {
  border-top: 1px solid var(--line); margin-top: var(--sp-5); padding-top: var(--sp-5);
  display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: var(--sp-4);
}
.detail-meta .k {
  font-size: var(--fs-xs); text-transform: uppercase;
  letter-spacing: var(--tracking-caps); color: var(--ink-faint);
  font-weight: var(--fw-bold); margin-bottom: 3px;
}
.detail-meta .v { font-size: var(--fs-base); font-weight: var(--fw-semi); }

.spec-table { width: 100%; border-collapse: collapse; font-size: var(--fs-base); }
.spec-table tr { border-bottom: 1px solid var(--line); }
.spec-table tr:nth-child(odd) { background: var(--warm-gray); }
.spec-table th {
  text-align: left; vertical-align: top; padding: 13px var(--sp-4);
  width: 210px; font-weight: var(--fw-bold); color: var(--ink-soft);
}
.spec-table td { padding: 13px var(--sp-4); color: var(--ink-muted); line-height: 1.55; }

/* --------------------------------------------------------------------------
   Cart / checkout
   -------------------------------------------------------------------------- */
.split {
  display: grid; gap: var(--sp-7);
  grid-template-columns: minmax(0, 1.6fr) minmax(300px, 0.9fr);
  align-items: start;
}
.panel {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: var(--sp-6);
}
.panel-alt { background: var(--warm-gray); border-color: transparent; }
.panel-head {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--sp-4); margin-bottom: var(--sp-5);
}
.panel-head h2, .panel-head h3 { margin: 0; }
.panel + .panel { margin-top: var(--sp-5); }

.summary { position: sticky; top: calc(var(--nav-h) + var(--sp-4)); }
.summary-line {
  display: flex; justify-content: space-between; gap: var(--sp-4);
  padding: 9px 0; font-size: var(--fs-base); color: var(--ink-muted);
}
.summary-line.total {
  border-top: 1.5px solid var(--ink); margin-top: var(--sp-3); padding-top: var(--sp-4);
  font-size: var(--fs-md); font-weight: var(--fw-black); color: var(--ink);
}

.line-item {
  display: grid; grid-template-columns: 96px 1fr auto;
  gap: var(--sp-4); align-items: center;
  padding: var(--sp-4) 0; border-bottom: 1px solid var(--line);
}
.line-item:last-child { border-bottom: 0; }
.line-item .thumb {
  width: 96px; height: 74px; border: 1px solid var(--line);
  border-radius: var(--r-sm); background: var(--warm-gray); overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.line-item .thumb img { width: 100%; height: 100%; object-fit: contain; padding: 6px; }
.line-item h4 { margin: 0 0 2px; font-size: var(--fs-base); font-weight: var(--fw-bold); }
.line-item .meta { font-size: var(--fs-sm); color: var(--ink-muted); }
.line-item .right { text-align: right; display: grid; gap: 6px; justify-items: end; }

.form-grid { display: grid; gap: var(--sp-4); grid-template-columns: 1fr 1fr; }
.form-grid .full { grid-column: 1 / -1; }

.radio-cards { display: grid; gap: var(--sp-3); }
.radio-card {
  display: flex; gap: var(--sp-3); align-items: flex-start;
  padding: var(--sp-4); border: 1.5px solid var(--line-strong);
  border-radius: var(--r-md); cursor: pointer; transition: all var(--transition);
}
.radio-card:hover { border-color: var(--ink-faint); }
.radio-card input { margin-top: 3px; accent-color: var(--ink); }
.radio-card.selected { border-color: var(--ink); background: var(--gold-tint); }
.radio-card strong { display: block; font-size: var(--fs-base); }
.radio-card span { font-size: var(--fs-sm); color: var(--ink-muted); }

/* --------------------------------------------------------------------------
   Order status pipeline
   -------------------------------------------------------------------------- */
.pipeline { display: flex; flex-wrap: wrap; gap: 0; margin: var(--sp-5) 0; }
.pipe-step {
  flex: 1 1 110px; min-width: 110px; padding: var(--sp-3) var(--sp-2) 0;
  border-top: 4px solid var(--line); position: relative;
}
.pipe-step.done { border-top-color: var(--gold); }
.pipe-step.current { border-top-color: var(--ink); }
.pipe-step .n {
  font-size: var(--fs-xs); color: var(--ink-faint); font-weight: var(--fw-bold);
  letter-spacing: 0.06em; text-transform: uppercase;
}
.pipe-step .t { font-size: var(--fs-sm); font-weight: var(--fw-semi); color: var(--ink-muted); }
.pipe-step.done .t, .pipe-step.current .t { color: var(--ink); font-weight: var(--fw-bold); }

.timeline { list-style: none; margin: 0; padding: 0; }
.timeline li {
  position: relative; padding: 0 0 var(--sp-5) var(--sp-6);
  border-left: 2px solid var(--line);
}
.timeline li:last-child { border-left-color: transparent; padding-bottom: 0; }
.timeline li::before {
  content: ""; position: absolute; left: -7px; top: 4px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--gold); border: 2px solid var(--white);
}
.timeline .when {
  font-size: var(--fs-xs); color: var(--ink-faint);
  text-transform: uppercase; letter-spacing: 0.06em; font-weight: var(--fw-bold);
}
.timeline .what { font-size: var(--fs-base); }

/* --------------------------------------------------------------------------
   Notices, empty states, footer
   -------------------------------------------------------------------------- */
.notice {
  display: flex; gap: var(--sp-3); align-items: flex-start;
  padding: var(--sp-4) var(--sp-5); border-radius: var(--r-md);
  border-left: 4px solid var(--gold); background: var(--gold-tint);
  font-size: var(--fs-base); margin-bottom: var(--sp-5);
}
.notice-ok { background: var(--ok-bg); border-left-color: var(--ok); }
.notice-danger { background: var(--danger-bg); border-left-color: var(--danger); }
.notice-info { background: var(--info-bg); border-left-color: var(--info); }
.notice p:last-child { margin-bottom: 0; }

.empty {
  text-align: center; padding: var(--sp-9) var(--sp-5);
  border: 1.5px dashed var(--line-strong); border-radius: var(--r-lg);
  color: var(--ink-muted);
}
.empty h3 { color: var(--ink); }

.callout-tri {
  position: relative; overflow: hidden;
  background: var(--ink); color: var(--white);
  border-radius: var(--r-xl); padding: var(--sp-8) var(--sp-7);
}
.callout-tri::after {
  content: ""; position: absolute; right: -4%; top: -30%;
  width: 340px; height: 190%; background: var(--gold); opacity: 0.9;
  clip-path: polygon(50% 6%, 100% 100%, 0% 100%);
}
.callout-tri > * { position: relative; z-index: 2; max-width: 60%; }
.callout-tri h2 { color: var(--white); }
.callout-tri p { color: rgba(255, 255, 255, 0.82); }

.site-footer {
  background: var(--ink); color: rgba(255, 255, 255, 0.7);
  padding: var(--sp-8) 0 var(--sp-6); margin-top: var(--sp-9);
  font-size: var(--fs-sm);
}
.site-footer a { color: rgba(255, 255, 255, 0.7); }
.site-footer a:hover { color: var(--gold); }
.footer-grid {
  display: grid; gap: var(--sp-6);
  grid-template-columns: 1.4fr 1fr 1fr; margin-bottom: var(--sp-7);
}
.footer-grid h5 {
  color: var(--white); font-size: var(--fs-xs); text-transform: uppercase;
  letter-spacing: var(--tracking-caps); margin: 0 0 var(--sp-3);
}
.footer-grid ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.13); padding-top: var(--sp-5);
  display: flex; justify-content: space-between; gap: var(--sp-4); flex-wrap: wrap;
  font-size: var(--fs-xs);
}

.value-grid {
  display: grid; gap: var(--sp-6);
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.value-item .tri {
  width: 34px; height: 30px; margin-bottom: var(--sp-4);
  background: var(--gold); clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
}
.value-item h3 { font-size: var(--fs-md); margin-bottom: var(--sp-2); }
.value-item p { color: var(--ink-muted); margin: 0; font-size: var(--fs-base); }

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 940px) {
  .detail, .split { grid-template-columns: 1fr; }
  .summary { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .callout-tri > * { max-width: 100%; }
  .callout-tri::after { opacity: 0.28; }
}

@media (max-width: 720px) {
  .section { padding: var(--sp-7) 0; }
  .nav-toggle { display: inline-flex; }
  .nav-links {
    display: none; position: absolute; top: var(--nav-h); left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--white); border-bottom: 1px solid var(--line);
    padding: var(--sp-3) var(--sp-5) var(--sp-5); box-shadow: var(--shadow-md);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 0; border-bottom: 1px solid var(--line); }
  .nav-links .nav-actions {
    flex-direction: column; align-items: stretch; padding-top: var(--sp-4);
  }
  .nav-links .nav-actions .btn { width: 100%; }
  .form-grid { grid-template-columns: 1fr; }
  .line-item { grid-template-columns: 68px 1fr; }
  .line-item .thumb { width: 68px; height: 56px; }
  .line-item .right { grid-column: 1 / -1; justify-items: start; text-align: left; }
  .footer-grid { grid-template-columns: 1fr; }
  .spec-table th { width: 42%; }
  .hero-stats { gap: var(--sp-5); }
  .panel { padding: var(--sp-5); }
}

@media print {
  .nav, .site-footer, .btn, .toolbar { display: none !important; }
}
