:root {
  --canvas: #0d1110;
  --surface: #151b19;
  --surface-raised: #1c2421;
  --paper: #ece9e0;
  --paper-deep: #d8d2c5;
  --ink: #f4f1e9;
  --ink-soft: #b8c0b9;
  --paper-ink: #151917;
  --paper-soft: #515b55;
  --signal: #f08018;
  --signal-deep: #b94b0d;
  --safety: #f1bd31;
  --success: #55d77f;
  --line-dark: rgba(244, 241, 233, 0.18);
  --line-paper: rgba(21, 25, 23, 0.2);
  --shadow-1: 0 14px 36px rgba(5, 8, 7, 0.24);
  --shadow-2: 0 28px 72px rgba(5, 8, 7, 0.34);
  --display: "Archivo", "Arial Narrow", sans-serif;
  --body: "Manrope", sans-serif;
  --gutter: clamp(1.25rem, 4vw, 4.8rem);
  --section: clamp(4.8rem, 7vw, 7rem);
  --radius: 14px;
  color-scheme: dark;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--canvas); }
body {
  margin: 0;
  overflow-x: clip;
  background: var(--canvas);
  color: var(--ink);
  font-family: var(--body);
  font-size: clamp(0.96rem, 0.92rem + 0.14vw, 1.08rem);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--signal); color: #12100d; }
* { scrollbar-color: var(--signal) var(--canvas); scrollbar-width: thin; }
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--canvas); }
::-webkit-scrollbar-thumb { background: var(--signal); border: 3px solid var(--canvas); border-radius: 10px; }

a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 0.3em; }
button, input, textarea, select { font: inherit; }
button, a, input, textarea, select { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid var(--safety); outline-offset: 4px; }
img { display: block; max-width: 100%; }
h1, h2, h3, p { margin: 0; }
h1, h2, h3 {
  font-family: var(--display);
  font-stretch: 82%;
  letter-spacing: -0.035em;
  line-height: 0.96;
  text-wrap: balance;
}
p { text-wrap: pretty; }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 1rem;
  left: 1rem;
  transform: translateY(-180%);
  padding: 0.7rem 1rem;
  background: var(--safety);
  color: #111;
  transition: transform 160ms ease-out;
}
.skip-link:focus { transform: translateY(0); }

.sc-wrap { width: min(100%, 1480px); margin-inline: auto; padding-inline: var(--gutter); }
.sc-section { padding-block: var(--section); }
.section--paper { background: var(--paper); color: var(--paper-ink); }
.section--ink { background: var(--canvas); color: var(--ink); }
.section--signal { background: var(--signal); color: #17120d; }

.site-header {
  position: fixed;
  z-index: 10000;
  inset: 0 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 76px;
  padding: 0.8rem var(--gutter);
  color: var(--ink);
  transition: background-color 180ms ease-out, box-shadow 180ms ease-out, min-height 180ms ease-out;
}
.site-header.is-scrolled {
  min-height: 64px;
  background: rgba(13, 17, 16, 0.94);
  box-shadow: 0 12px 30px rgba(4, 7, 6, 0.2);
  backdrop-filter: blur(14px);
}
.brand { display: inline-flex; align-items: center; gap: 0.75rem; width: max-content; text-decoration: none; }
.brand__mark { width: 2rem; color: var(--signal); }
.brand__name { font-family: var(--display); font-stretch: 82%; font-size: 1.06rem; letter-spacing: -0.02em; text-transform: uppercase; }
.brand__name strong { color: var(--signal); }
.site-nav { display: flex; align-items: center; gap: clamp(1.2rem, 2.6vw, 2.8rem); }
.site-nav a { color: var(--ink-soft); font-size: 0.82rem; font-weight: 700; text-decoration: none; }
.site-nav a:hover { color: var(--ink); }
.header-cta {
  justify-self: end;
  padding: 0.7rem 1rem;
  border: 1px solid rgba(244, 241, 233, 0.34);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
  transition: color 140ms ease-out, background-color 140ms ease-out, border-color 140ms ease-out, transform 140ms ease-out;
}
.header-cta:hover { background: var(--signal); border-color: var(--signal); color: #14100c; }
.header-cta:active { transform: translateY(1px); }

.header-actions { display: flex; align-items: center; gap: 0.7rem; justify-self: end; }
.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  padding: 0;
  border: 1px solid rgba(244, 241, 233, 0.24);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 16px;
  height: 1.5px;
  margin: 2.5px auto;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 220ms cubic-bezier(.23,1,.32,1), opacity 180ms ease-out;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-4px) rotate(-45deg); }

body.menu-locked { overflow: hidden; }
.mobile-menu {
  position: fixed;
  z-index: 9999;
  inset: 0;
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 0.2rem;
  padding: calc(66px + 1.4rem) var(--gutter) 3.2rem;
  background: #0d1110;
  opacity: 0;
  pointer-events: none;
  transition: opacity 240ms ease-out;
}
.mobile-menu.is-open { opacity: 1; pointer-events: auto; }
.mobile-menu a {
  padding: 1.1rem 0.2rem;
  border-bottom: 1px solid var(--line-dark);
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.9rem;
  letter-spacing: -0.02em;
  text-decoration: none;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 260ms ease-out, transform 260ms cubic-bezier(.23,1,.32,1);
}
.mobile-menu.is-open a { opacity: 1; transform: none; }
.mobile-menu.is-open a:nth-child(1) { transition-delay: 60ms; }
.mobile-menu.is-open a:nth-child(2) { transition-delay: 110ms; }
.mobile-menu.is-open a:nth-child(3) { transition-delay: 160ms; }
.mobile-menu.is-open a:nth-child(4) { transition-delay: 210ms; }
.mobile-menu__cta { margin-top: 1.6rem; padding: 1rem 1.1rem; border: 0; border-radius: 999px; background: var(--signal); color: #17110c; font-size: 1rem; font-weight: 800; text-align: center; }
@media (prefers-reduced-motion: reduce) {
  .mobile-menu a { transition-delay: 0ms !important; }
}

.dispatch-rail {
  position: fixed;
  z-index: 80;
  right: 1.25rem;
  bottom: 1.25rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-areas: "pulse label arrow" "pulse size arrow" "pulse city arrow";
  align-items: center;
  width: 242px;
  padding: 0.9rem;
  border: 1px solid rgba(244, 241, 233, 0.16);
  border-radius: var(--radius);
  background: rgba(18, 24, 22, 0.94);
  backdrop-filter: blur(6px);
  box-shadow: var(--shadow-1);
  color: var(--ink);
  opacity: 0;
  transform: translateY(28%);
  transition: opacity 220ms ease-out, transform 420ms cubic-bezier(.23,1,.32,1);
}
.dispatch-rail.is-visible { opacity: 1; transform: translateY(0); }
.dispatch-rail__pulse {
  grid-area: pulse;
  width: 8px;
  height: 8px;
  margin-right: 0.8rem;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 6px rgba(85, 215, 127, 0.12);
}
.dispatch-rail__label { grid-area: label; color: var(--ink-soft); font-size: 0.68rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.dispatch-rail strong { grid-area: size; font-family: var(--display); font-size: 1.35rem; letter-spacing: -0.03em; }
.dispatch-rail > span[data-order-city] { grid-area: city; color: var(--ink-soft); font-size: 0.72rem; }
.dispatch-rail a { grid-area: arrow; display: grid; place-items: center; width: 2.4rem; height: 2.4rem; border-radius: 50%; background: var(--signal); color: #17110c; }
.dispatch-rail svg, .button svg { width: 1.15rem; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.hero { position: relative; background: #090c0b; }
.hero__stage { position: sticky; top: 0; min-height: 100svh; overflow: hidden; isolation: isolate; }
.hero__media { position: absolute; inset: -4%; z-index: -3; }
.hero__media img { width: 100%; height: 108%; object-fit: cover; object-position: center; }
.hero__density {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(90deg, rgba(6, 9, 8, 0.97) 0%, rgba(6, 9, 8, 0.82) 30%, rgba(6, 9, 8, 0.2) 57%, rgba(6, 9, 8, 0.06) 100%);
}
.hero__density::after {
  content: "";
  position: absolute;
  inset: 62% 0 0;
  background: linear-gradient(0deg, rgba(6, 9, 8, 0.85), transparent);
}
.hero__copy {
  position: absolute;
  left: var(--gutter);
  top: max(92px, 15svh);
  width: min(46rem, 47vw);
}
/* font-size is capped by BOTH width (vw) and height (svh) so a wide-but-short
   monitor shrinks the headline instead of pushing the CTA off screen. */
.hero h1 { max-width: 11ch; font-size: clamp(2.4rem, min(6.6vw, 9.5svh), 8.2rem); color: var(--ink); }
.hero__copy > p { max-width: 52ch; margin-top: clamp(0.7rem, 2svh, 1.7rem); color: #d6ddd7; font-size: clamp(0.92rem, 1.1vw, 1.2rem); }
.hero__actions { display: flex; align-items: center; gap: 1.4rem; margin-top: clamp(0.9rem, 2.2svh, 2rem); }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  min-height: 52px;
  padding: 0.85rem 1.25rem;
  border: 0;
  border-radius: 10px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: transform 140ms ease-out, background-color 140ms ease-out, color 140ms ease-out, box-shadow 140ms ease-out;
}
.button:active { transform: translateY(1px) scale(0.985); }
.button--primary { background: var(--signal); color: #17110c; box-shadow: 0 14px 32px rgba(240, 128, 24, 0.24); }
.button--primary:hover { background: var(--safety); box-shadow: 0 18px 40px rgba(240, 128, 24, 0.34); }
.text-link { color: var(--ink); font-size: 0.9rem; font-weight: 700; }
.text-link--whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1.4rem;
  color: var(--success);
}
.text-link--whatsapp svg { width: 1.05rem; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: transform 140ms ease-out; }
.text-link--whatsapp:hover svg { transform: translateX(3px); }
.faq__lead .text-link--whatsapp { color: var(--signal-deep); }
.hero__proof { margin: clamp(1rem, 2.6svh, 2.6rem) 0 0; color: #c3cbc5; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; }
.hero__meter { position: absolute; right: var(--gutter); bottom: 2.5rem; width: 160px; height: 1px; background: rgba(255,255,255,.28); }
.hero__meter span { display: block; width: calc(var(--sc-p, 0) * 100%); height: 100%; background: var(--signal); }

.accent { color: var(--signal); }
.section--signal .accent { color: var(--paper-ink); text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 0.08em; }
.kicker { margin: 0 0 0.9rem; color: var(--signal-deep); font-size: 0.72rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; }
.section--ink .kicker { color: var(--signal); }
.section--signal .kicker { color: var(--paper-ink); opacity: 0.7; }

.intro { padding-top: clamp(5rem, 8vw, 8rem); }
.intro__layout { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.7fr); gap: clamp(3rem, 8vw, 9rem); align-items: start; }
.intro__statement { padding-top: clamp(1rem, 3.5vw, 3.5rem); }
.intro__statement h2 { max-width: 12ch; font-size: clamp(3rem, 6vw, 6rem); }
.intro__statement p { max-width: 57ch; margin-top: 2rem; color: var(--paper-soft); font-size: clamp(1.05rem, 1.35vw, 1.35rem); }
.intro__figure { margin: 0; border-top: 3px solid var(--signal); box-shadow: var(--shadow-2); }
.intro__figure-frame { position: relative; overflow: hidden; aspect-ratio: 4/5; }
.intro__figure img { position: absolute; inset: -6% 0; width: 100%; height: 112%; object-fit: cover; will-change: transform; }
.intro__figure figcaption { max-width: 42ch; margin-top: 0.9rem; color: var(--paper-soft); font-size: 0.72rem; }
.process-line {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(3.5rem, 6vw, 6rem);
  list-style: none;
}
.process-line li { position: relative; min-height: 145px; padding: 1.2rem 2rem 1.2rem 0; border-top: 1px solid var(--line-paper); }
.process-line li::after { content: ""; position: absolute; top: -5px; left: 0; width: 9px; height: 9px; border-radius: 50%; background: var(--signal); }
.process-line span { display: block; color: var(--signal-deep); font-family: var(--display); font-size: 0.75rem; }
.process-line strong { display: block; margin-top: 1.4rem; font-family: var(--display); font-size: clamp(1.25rem, 2vw, 2rem); letter-spacing: -0.03em; }
.process-line small { display: block; max-width: 31ch; margin-top: 0.6rem; color: var(--paper-soft); font-size: 0.8rem; }

.network { background: #161917; }
.network__stage { position: sticky; top: 0; min-height: 100svh; overflow: hidden; isolation: isolate; }
.network__media { position: absolute; inset: 0; z-index: -3; width: 100%; height: 100%; object-fit: cover; object-position: 62% center; }
.network__mask { position: absolute; inset: 0; z-index: -2; background: linear-gradient(90deg, rgba(8,11,10,.96) 0%, rgba(8,11,10,.84) 38%, rgba(8,11,10,.2) 67%, rgba(8,11,10,.06) 100%); }
.network__copy { position: absolute; top: 50%; left: var(--gutter); width: min(42rem, 44vw); transform: translateY(-50%); }
.network h2 { font-size: clamp(3.2rem, 6vw, 6.4rem); }
.network__copy p { max-width: 48ch; margin-top: 1.6rem; color: var(--ink-soft); font-size: clamp(1rem, 1.25vw, 1.25rem); }
.network__route { position: absolute; right: var(--gutter); bottom: 2.5rem; display: flex; align-items: center; width: min(36vw, 520px); }
.network__route span {
  width: 10px;
  height: 10px;
  border: 2px solid var(--safety);
  border-radius: 50%;
  background: #111613;
  opacity: clamp(0, calc(var(--sc-p, 0) * 6), 1);
  transition: opacity 80ms linear;
}
.network__route i {
  flex: 1;
  height: 1px;
  background: rgba(241, 189, 49, 0.58);
  transform: scaleX(clamp(0, calc((var(--sc-p, 0) - 0.08) * 1.6), 1));
  transform-origin: left;
  transition: transform 80ms linear;
}
.network__route i + span { transition-delay: 80ms; }
@media (prefers-reduced-motion: reduce) {
  .network__route span, .network__route i { opacity: 1; transform: none; transition: none; }
}

.product-act { background: radial-gradient(circle at 60% 40%, #202824 0%, #111613 52%, #0d1110 100%); }
.product-stage { position: sticky; top: 0; min-height: 100svh; overflow: hidden; }
.product-stage::before {
  content: "";
  position: absolute;
  inset: 12% 42% 10% 29%;
  border: 1px solid rgba(244,241,233,.09);
  transform: perspective(900px) rotateY(-8deg);
}
.product-stage__copy { position: absolute; z-index: 4; top: 11%; left: var(--gutter); width: min(31rem, 29vw); }
.product-stage__copy h2 { font-size: clamp(2.7rem, 4.1vw, 5rem); }
.product-stage__copy > p { margin-top: 1.35rem; color: var(--ink-soft); }
.price-note { font-size: 0.69rem; line-height: 1.55; }
.product-stage__progress { margin-top: 1.3rem; }
.product-stage__progress span { display: block; margin-bottom: 0.5rem; color: var(--ink-soft); font-size: 0.66rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; }
.product-stage__progress-track { display: block; position: relative; width: min(220px, 60%); height: 2px; background: var(--line-dark); overflow: hidden; }
.product-stage__progress-track::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  background: var(--signal);
  transform-origin: left;
  transform: scaleX(var(--sc-p, 0));
}
@media (prefers-reduced-motion: reduce) {
  .product-stage__progress-track::after { transition: none; }
}
.product-view { position: absolute; inset: 5% 29% 5% 24%; }
.product-view__canvas { position: absolute; inset: 0; z-index: 2; }
.product-view__canvas canvas { width: 100%; height: 100%; }
.product-view__fallback { position: absolute; inset: 14% 4%; width: 92%; height: 72%; object-fit: contain; opacity: 0.9; }
.product-view.is-ready .product-view__fallback { opacity: 0; }
.product-view__measure { position: absolute; z-index: 3; right: 1rem; bottom: 10%; display: grid; grid-template-columns: 36px auto 36px; align-items: center; gap: 0.7rem; color: var(--ink-soft); }
.product-view__measure span { height: 1px; background: currentColor; }
.product-view__measure b { color: var(--safety); font-family: var(--display); font-size: 1.05rem; }
.size-selector {
  position: absolute;
  z-index: 5;
  top: 50%;
  right: var(--gutter);
  display: grid;
  width: min(21rem, 23vw);
  max-height: 76vh;
  overflow-y: auto;
  border-top: 1px solid var(--line-dark);
  transform: translateY(-50%);
}
.size-option {
  position: relative;
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 0 1rem;
  min-height: 74px;
  padding: 0.85rem 0.5rem;
  border: 0;
  border-bottom: 1px solid var(--line-dark);
  background: transparent;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  transition: background-color 150ms ease-out, padding 220ms cubic-bezier(.23,1,.32,1);
}
.size-option::before { content: ""; position: absolute; inset: 0 auto 0 0; width: 2px; background: var(--signal); transform: scaleY(0); transform-origin: bottom; transition: transform 180ms ease-out; }
.size-option:hover { background: rgba(255,255,255,.035); }
.size-option.is-active { padding-left: 1rem; background: rgba(240,128,24,.09); }
.size-option.is-active::before { transform: scaleY(1); }
.size-option span { grid-row: 1 / span 2; align-self: center; font-family: var(--display); font-size: clamp(1.5rem, 2.2vw, 2.4rem); letter-spacing: -0.04em; }
.size-option strong { font-size: 0.9rem; font-variant-numeric: tabular-nums; }
.size-option small { color: var(--ink-soft); font-size: 0.65rem; }
.size-selector-wrap { display: contents; }
.size-selector__hint { display: none; }

.services { padding-bottom: 0; overflow: hidden; }
.services__lead { display: grid; grid-template-columns: 1.2fr 0.7fr; gap: 4rem; align-items: end; }
.services__lead h2 { max-width: 13ch; font-size: clamp(3.1rem, 6vw, 6.4rem); }
.services__lead p { max-width: 49ch; color: var(--ink-soft); }
.service-runway__hint { display: none; }
.service-runway { display: grid; grid-template-columns: repeat(4, minmax(310px, 1fr)); margin-top: clamp(3.5rem, 8vw, 7rem); overflow-x: auto; scroll-snap-type: x proximity; }
.service-panel {
  position: relative;
  min-height: min(58vh, 620px);
  padding: 0;
  overflow: hidden;
  border: 0;
  border-right: 1px solid rgba(244,241,233,.2);
  background: #171c1a;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  scroll-snap-align: start;
}
.service-panel img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.58; filter: saturate(.78) brightness(.72); transform: scale(1.02); transition: transform 700ms cubic-bezier(.23,1,.32,1), opacity 220ms ease-out, filter 220ms ease-out; }
.service-panel::after { content: ""; position: absolute; inset: 42% 0 0; background: linear-gradient(transparent, rgba(7,10,9,.95)); }
.service-panel > span, .service-panel > p { position: absolute; z-index: 2; left: clamp(1.4rem, 2vw, 2.2rem); right: clamp(1.4rem, 2vw, 2.2rem); }
.service-panel > span { bottom: 6.6rem; font-family: var(--display); font-size: clamp(1.8rem, 2.6vw, 3rem); letter-spacing: -0.04em; line-height: 1; }
.service-panel > p { bottom: 2.2rem; max-width: 34ch; color: #ccd3ce; font-size: 0.8rem; line-height: 1.5; }
.service-panel:hover img, .service-panel.is-selected img { opacity: 0.88; filter: saturate(.95) brightness(.8); transform: scale(1.055); }
.service-panel.is-selected { box-shadow: inset 0 -5px var(--signal); }

.proof { padding-block: clamp(5rem, 7vw, 7rem); }
.proof__layout { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: clamp(3rem, 7vw, 8rem); align-items: center; }
.proof__image { border-top: 3px solid var(--signal); box-shadow: var(--shadow-2); }
.proof__image-frame { position: relative; overflow: hidden; aspect-ratio: 16/10; }
.proof__image img { position: absolute; inset: 0 0 -8%; width: 100%; height: 112%; object-fit: cover; will-change: transform; }
.proof__copy h2 { max-width: 11ch; font-size: clamp(3rem, 5.5vw, 5.7rem); }
.proof__copy > p { max-width: 50ch; margin-top: 1.8rem; color: var(--paper-soft); }
.proof dl { margin: 2.8rem 0 0; }
.proof dl div { display: grid; grid-template-columns: 0.7fr 1.3fr; gap: 1rem; padding: 1rem 0; border-top: 1px solid var(--line-paper); }
.proof dt { color: var(--signal-deep); font-size: 0.72rem; font-weight: 800; text-transform: uppercase; }
.proof dd { margin: 0; font-weight: 700; }

.testimonials { padding-block: clamp(4.8rem, 6vw, 6rem); }
.testimonials__top { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 4rem; align-items: end; }
.testimonials h2 { max-width: 11ch; font-size: clamp(3.1rem, 5.9vw, 6.2rem); }
.testimonials__top p { max-width: 50ch; font-weight: 650; }
.quote-track { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; margin-top: 3.2rem; padding-inline: var(--gutter); }
.quote-track blockquote { position: relative; margin: 0; min-height: 220px; padding: 2.1rem 1.9rem 1.7rem; background: rgba(23, 18, 13, 0.08); border: 1px solid rgba(23, 18, 13, 0.16); border-radius: var(--radius); }
.quote-track__mark { display: block; margin-bottom: 0.6rem; font-family: var(--display); font-size: 2.6rem; line-height: 1; color: rgba(23, 18, 13, 0.32); }
.quote-track blockquote p { font-family: var(--display); font-size: clamp(1.35rem, 1.9vw, 1.85rem); font-style: normal; letter-spacing: -0.03em; line-height: 1.14; }
.quote-track footer { display: flex; align-items: center; gap: 0.65rem; margin-top: 1.8rem; padding-top: 1.1rem; border-top: 1px solid rgba(23, 18, 13, 0.16); font-size: 0.7rem; font-weight: 700; }
.quote-track__hint { display: none; }
/* ---- cidade/*.html (páginas locais estáticas) ------------------------- */
.city-hero { position: relative; padding: clamp(9rem, 15vw, 13rem) 0 clamp(4rem, 7vw, 6rem); overflow: hidden; }
.city-hero::before { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(60% 60% at 85% 20%, rgba(240,128,24,.14), transparent 70%); }
.city-hero__grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(2.5rem, 6vw, 6rem); align-items: center; }
.city-hero h1 { max-width: 14ch; font-size: clamp(2.9rem, 5.4vw, 5.2rem); color: var(--ink); }
.city-hero__lead { max-width: 46ch; margin-top: 1.3rem; color: var(--ink-soft); font-size: clamp(1rem, 1.15vw, 1.15rem); }
.city-hero__actions { display: flex; align-items: center; gap: 1.4rem; margin-top: 1.8rem; flex-wrap: wrap; }
.city-hero__figure { border-top: 3px solid var(--signal); box-shadow: var(--shadow-2); }
.city-hero__figure img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }

.city-steps { padding-block: clamp(3.5rem, 6vw, 5.5rem); }
.city-steps__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.5rem, 4vw, 3rem); margin-top: 2.4rem; }
.city-steps li { list-style: none; padding-top: 1.2rem; border-top: 1px solid var(--line-paper); }
.city-steps li span { display: block; margin-bottom: 0.6rem; color: var(--signal-deep); font-family: var(--display); font-size: 1.6rem; }
.city-steps li strong { display: block; margin-bottom: 0.4rem; font-size: 1.05rem; }
.city-steps li small { color: var(--paper-soft); font-size: 0.85rem; line-height: 1.5; }

.city-sizes { padding-block: clamp(4rem, 6vw, 6rem); }
.city-sizes__grid { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 2rem; }
.city-sizes__note { margin-top: 1.4rem; color: var(--ink-soft); font-size: 0.75rem; }
.city-sizes__selected { display: flex; align-items: baseline; gap: 0.8rem; margin-top: 1.6rem; padding: 1rem 1.2rem; border: 1px solid rgba(244,241,233,.18); border-radius: var(--radius); background: rgba(244,241,233,.04); }
.city-sizes__selected strong { font-family: var(--display); font-size: 1.6rem; }
.city-sizes__selected span { color: var(--safety); font-weight: 800; }

.city-services__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.1rem; margin-top: 2.2rem; }
.city-service-card { padding: 1.6rem 1.5rem; border: 1px solid var(--line-dark); border-radius: var(--radius); background: rgba(244,241,233,.03); }
.city-service-card strong { display: block; margin-bottom: 0.5rem; font-family: var(--display); font-size: 1.15rem; }
.city-service-card p { margin: 0; color: var(--ink-soft); font-size: 0.85rem; line-height: 1.55; }

.city-cta { padding-block: clamp(4.5rem, 7vw, 7rem); text-align: center; }
.city-cta__inner { display: flex; flex-direction: column; align-items: center; }
.city-cta h2 { max-width: 16ch; font-size: clamp(2.4rem, 5vw, 4rem); }
.city-cta p { margin-top: 1rem; max-width: 44ch; color: var(--ink-soft); }
.city-cta .button { margin-top: 2rem; }
.city-back-link { display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 1.6rem; color: var(--ink-soft); font-size: 0.78rem; text-decoration: none; }
.city-back-link:hover { color: var(--ink); }

@media (max-width: 860px) {
  .city-hero { padding-top: 7rem; }
  .city-hero__grid { grid-template-columns: 1fr; }
  .city-hero__figure { order: -1; }
  .city-steps__grid { grid-template-columns: 1fr; gap: 1.4rem; }
}

/* ---- privacidade.html (standalone page) ------------------------------ */
.legal-hero { padding: clamp(9rem, 14vw, 12rem) 0 clamp(3.5rem, 5vw, 5rem); }
.legal-hero h1 { max-width: 14ch; margin-top: 0.9rem; font-size: clamp(2.6rem, 5vw, 4.6rem); color: var(--ink); }
.legal-hero__lead { margin-top: 1.2rem; color: var(--ink-soft); font-size: 0.85rem; }
.legal-body { padding-block: clamp(4rem, 6vw, 6rem); }
.legal-body__inner { max-width: 68ch; color: var(--paper-ink); }
.legal-body__inner p { margin: 0 0 1.3rem; color: var(--paper-soft); line-height: 1.7; }
.legal-body__inner h2 { margin: 2.6rem 0 1rem; font-size: clamp(1.3rem, 2vw, 1.7rem); color: var(--paper-ink); }
.legal-body__inner h2:first-child { margin-top: 0; }
@media (max-width: 860px) {
  .legal-hero { padding-top: 7.5rem; }
}

/* ---- depoimentos.html (standalone page) ------------------------------ */
.testi-hero { padding: clamp(9rem, 14vw, 12rem) 0 clamp(4rem, 6vw, 6rem); }
.testi-hero h1 { max-width: 14ch; margin-top: 0.9rem; font-size: clamp(3rem, 6vw, 5.6rem); color: var(--ink); }
.testi-hero__lead { max-width: 56ch; margin-top: 1.5rem; color: var(--ink-soft); font-size: clamp(1rem, 1.2vw, 1.2rem); }
.testi-grid-section { padding-block: clamp(4rem, 6vw, 6rem); }
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.25rem; }
.testi-card {
  margin: 0;
  padding: 2.2rem 1.9rem 1.9rem;
  background: var(--surface-raised);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  color: var(--ink);
}
.testi-card .quote-track__mark { color: rgba(244, 241, 233, 0.3); }
.testi-card p { font-family: var(--display); font-size: clamp(1.15rem, 1.6vw, 1.4rem); letter-spacing: -0.02em; line-height: 1.28; color: var(--ink); }
.testi-card footer { display: flex; align-items: center; gap: 0.65rem; margin-top: 1.6rem; padding-top: 1rem; border-top: 1px solid var(--line-dark); font-size: 0.78rem; font-weight: 700; color: var(--ink-soft); }
.testi-card .quote-track__avatar { background: rgba(244, 241, 233, 0.12); color: var(--ink); }
.testi-grid-section__note { margin-top: 2.2rem; color: var(--paper-soft); font-size: 0.78rem; }
.testi-cta { padding-block: clamp(4.5rem, 7vw, 7rem); text-align: center; }
.testi-cta__inner { display: flex; flex-direction: column; align-items: center; }
.testi-cta h2 { max-width: 14ch; font-size: clamp(2.6rem, 5vw, 4.4rem); }
.testi-cta p { margin-top: 1rem; color: var(--ink-soft); }
.testi-cta .button { margin-top: 2rem; }
@media (max-width: 860px) {
  .testi-hero { padding-top: 7.5rem; }
}

.testimonials__more { margin-top: 2.4rem; }
.testimonials__more a { display: inline-flex; align-items: center; gap: 0.6rem; color: var(--paper-ink); font-weight: 800; text-decoration: none; }
.testimonials__more svg { width: 1.1rem; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: transform 140ms ease-out; }
.testimonials__more a:hover svg { transform: translateX(3px); }
.quote-track__avatar {
  display: inline-grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  flex: none;
  border-radius: 50%;
  background: rgba(23, 18, 13, 0.14);
  font-family: var(--display);
  font-size: 0.9rem;
  font-weight: 800;
}

.faq { padding-block: clamp(5rem, 7vw, 7rem); }
.faq__layout { display: grid; grid-template-columns: 0.72fr 1fr; gap: clamp(3rem, 10vw, 10rem); align-items: start; }
.faq__lead { position: sticky; top: 8rem; }
.faq__lead h2 { max-width: 11ch; font-size: clamp(3rem, 5.2vw, 5.6rem); }
.faq__lead p { max-width: 43ch; margin-top: 1.8rem; color: var(--paper-soft); }
.faq__items { border-top: 1px solid var(--line-paper); }
.faq details { border-bottom: 1px solid var(--line-paper); }
.faq summary { position: relative; padding: 1.5rem 3rem 1.5rem 0; font-family: var(--display); font-size: clamp(1.2rem, 1.7vw, 1.65rem); font-weight: 700; letter-spacing: -0.025em; cursor: pointer; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; top: 1.45rem; right: 0; color: var(--signal-deep); font-family: var(--body); font-size: 1.5rem; font-weight: 400; transition: transform 180ms ease-out; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { max-width: 68ch; padding: 0 2rem 1.6rem 0; color: var(--paper-soft); }

.order-section { position: relative; min-height: 100svh; padding-block: clamp(6rem, 8vw, 8rem); overflow: hidden; isolation: isolate; }
.order-section__scene { position: absolute; inset: 0; z-index: -2; }
.order-section__scene img { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: saturate(.75) brightness(.42); }
.order-section__scene::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10,14,12,.96) 0 45%, rgba(10,14,12,.64) 75%, rgba(10,14,12,.82)); }
.order-shell { display: grid; grid-template-columns: 1fr minmax(360px, 0.72fr); gap: clamp(3rem, 10vw, 11rem); align-items: start; }
.order-shell.is-pulsing .order-form { animation: order-pulse 1100ms ease-out; }
@keyframes order-pulse {
  0% { box-shadow: 0 0 0 0 rgba(240, 128, 24, 0.55), var(--shadow-2); }
  100% { box-shadow: 0 0 0 22px rgba(240, 128, 24, 0), var(--shadow-2); }
}
@media (prefers-reduced-motion: reduce) {
  .order-shell.is-pulsing .order-form { animation: none; }
}
.order-shell__intro { padding-top: 2rem; }
.order-shell__intro h2 { max-width: 11ch; font-size: clamp(3.4rem, 6.4vw, 7rem); }
.order-shell__intro p { max-width: 47ch; margin-top: 2rem; color: var(--ink-soft); }
.order-form { padding: clamp(1.5rem, 3vw, 2.7rem); border-top: 1px solid rgba(244,241,233,.28); background: rgba(15,20,18,.94); box-shadow: var(--shadow-2); }
.field, .order-form fieldset { margin: 0 0 1.45rem; padding: 0; border: 0; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field-row.field-row--address { grid-template-columns: 1fr 5.5rem; }
.field-row .field, .field-row fieldset { margin-bottom: 1.45rem; min-width: 0; }
.field label, .order-form legend { display: block; margin-bottom: 0.55rem; color: var(--ink-soft); font-size: 0.7rem; font-weight: 800; letter-spacing: 0.07em; text-transform: uppercase; }
.field__hint { display: block; margin-top: 0.5rem; color: var(--ink-soft); font-size: 0.68rem; line-height: 1.5; }
.order-form input, .order-form textarea, .order-form select {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(244,241,233,.3);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  caret-color: var(--signal);
  outline: none;
  transition: border-color 140ms ease-out;
}
.order-form input, .order-form select { min-height: 48px; }
.order-form textarea { resize: vertical; padding-block: 0.7rem; }
.order-form select option { background: var(--surface); color: var(--ink); }
.order-form input:focus, .order-form textarea:focus, .order-form select:focus { border-color: var(--signal); }
.order-form input::placeholder, .order-form textarea::placeholder { color: #8d9890; opacity: 1; }
.field.has-error input { border-color: #ff7c68; }
.field__error { display: block; min-height: 1.2em; margin-top: 0.35rem; color: #ff9a88; font-size: 0.7rem; }
.order-form__sizes { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.size-chip {
  padding: 0.55rem 0.9rem;
  border: 1px solid rgba(244, 241, 233, 0.22);
  border-radius: 999px;
  background: transparent;
  color: var(--ink-soft);
  font-family: var(--body);
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: border-color 140ms ease-out, background-color 140ms ease-out, color 140ms ease-out;
}
.size-chip:hover { border-color: rgba(244, 241, 233, 0.4); color: var(--ink); }
.size-chip.is-active { border-color: var(--signal); background: var(--signal); color: #17110c; }
.order-form__selected { display: flex; align-items: baseline; justify-content: space-between; margin-top: 1rem; padding: 0.8rem 0; border-bottom: 1px solid rgba(244,241,233,.3); }
.order-form__selected strong { font-family: var(--display); font-size: 2rem; }
.order-form__selected span { color: var(--safety); font-weight: 800; font-variant-numeric: tabular-nums; }
.button--whatsapp { width: 100%; margin-top: 0.4rem; background: var(--success); color: #0a1b10; }
.button--whatsapp:hover { background: #78e695; box-shadow: 0 16px 34px rgba(85,215,127,.22); }
.button--whatsapp svg { width: 1.35rem; }
.order-form__note { margin-top: 0.9rem; color: var(--ink-soft); font-size: 0.66rem; line-height: 1.5; }

.site-footer { padding-top: 3.8rem; border-top: 1px solid var(--line-dark); background: #080b0a; color: var(--ink-soft); }
.site-footer__top { display: grid; grid-template-columns: 1.3fr 0.7fr 0.9fr; gap: 3rem; align-items: start; padding-bottom: 2.6rem; }
.site-footer__brand .brand { margin-bottom: 0.9rem; }
.site-footer__brand p { max-width: 34ch; font-size: 0.78rem; line-height: 1.6; }
.site-footer__label { display: block; margin-bottom: 1rem; color: var(--signal-deep); font-size: 0.68rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }
.site-footer nav { display: flex; flex-direction: column; gap: 0.75rem; }
.site-footer nav a { color: var(--ink-soft); font-size: 0.85rem; text-decoration: none; }
.site-footer nav a:hover { color: var(--ink); }
.button--footer { display: inline-flex; padding: 0.75rem 1.15rem; font-size: 0.82rem; }
.site-footer__cities { padding-block: 1.6rem; border-top: 1px solid var(--line-dark); }
.site-footer__cities nav { display: flex !important; flex-direction: row !important; flex-wrap: wrap; gap: 0.5rem 1rem; margin-top: 0.9rem; }
.site-footer__cities nav a { color: var(--ink-soft); font-size: 0.72rem; text-decoration: none; opacity: 0.85; }
.site-footer__cities nav a:hover { color: var(--ink); opacity: 1; }
.site-footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.5rem 1.5rem; padding-block: 1.4rem; border-top: 1px solid var(--line-dark); }
.site-footer__bottom p { margin: 0; font-size: 0.68rem; color: var(--ink-soft); opacity: 0.85; }

@media (hover: hover) and (pointer: fine) {
  .button--primary:hover svg { transform: translateX(3px); }
  .button svg { transition: transform 140ms ease-out; }
}

@media (max-width: 1180px) {
  .product-stage__copy { width: 27vw; }
  .product-view { inset: 11% 31% 8% 26%; }
  .size-selector { width: 25vw; }
  .service-runway { grid-template-columns: repeat(4, minmax(42vw, 1fr)); }
}

@media (max-width: 860px) {
  :root { --section: clamp(4.5rem, 14vw, 7rem); }
  .site-header { grid-template-columns: 1fr auto; min-height: 66px; }
  .site-nav { display: none; }
  .header-cta { padding: 0.62rem 0.85rem; }
  .menu-toggle { display: inline-flex; }
  .mobile-menu { display: flex; }
  /* Compact FAB on mobile instead of the full card: a fixed element this size
     will always risk sitting over whatever text scrolls to that corner, so
     the fix is a smaller footprint, not chasing every section's spacing. */
  .dispatch-rail {
    top: auto;
    right: 0.85rem;
    bottom: calc(0.85rem + env(safe-area-inset-bottom));
    left: auto;
    width: auto;
    padding: 0.5rem 0.75rem 0.5rem 0.6rem;
    grid-template-columns: auto auto auto;
    grid-template-areas: "pulse size arrow";
    gap: 0.5rem;
    border-radius: 999px;
    transform: translateY(140%) scale(0.96);
  }
  .dispatch-rail__label, .dispatch-rail > span[data-order-city] { display: none; }
  .dispatch-rail strong { font-size: 1.05rem; }
  .dispatch-rail a { width: 2rem; height: 2rem; }
  .dispatch-rail a svg { width: 1rem; }
  .dispatch-rail.is-visible { transform: translateY(0); }
  .hero__density { background: linear-gradient(180deg, rgba(6,9,8,.92) 0%, rgba(6,9,8,.7) 38%, rgba(6,9,8,.16) 67%, rgba(6,9,8,.82) 100%); }
  .hero__copy { top: 16%; left: var(--gutter); width: calc(100% - var(--gutter) * 2); transform: none; }
  .hero h1 { max-width: 11ch; font-size: clamp(3.15rem, 12vw, 5.1rem); }
  .hero__copy > p { max-width: 37ch; margin-top: 1.15rem; font-size: 0.94rem; }
  .hero__actions { margin-top: 1.35rem; }
  .hero__proof { margin-top: 1.6rem; font-size: 0.6rem; }
  .hero__meter { display: none; }
  .intro__layout, .proof__layout, .faq__layout, .order-shell { grid-template-columns: 1fr; }
  .intro__statement { padding-top: 0; }
  .intro__figure { width: min(80%, 520px); margin-left: auto; }
  .process-line { grid-template-columns: 1fr; }
  .process-line li { min-height: 130px; }
  .network__mask { background: linear-gradient(180deg, rgba(8,11,10,.82) 0%, rgba(8,11,10,.34) 45%, rgba(8,11,10,.88) 100%); }
  .network__copy { top: auto; left: var(--gutter); right: var(--gutter); bottom: calc(7.2rem + env(safe-area-inset-bottom)); width: auto; transform: none; }
  .network h2 { font-size: clamp(3rem, 10.8vw, 5.4rem); }
  .network__route { display: none; }
  .product-stage { display: grid; grid-template-rows: auto 38vh 1fr; min-height: 100svh; padding: 5.8rem var(--gutter) 1.2rem; }
  .product-stage::before { display: none; }
  .product-stage__copy { position: relative; top: auto; left: auto; width: auto; }
  .product-stage__copy h2 { font-size: clamp(2.5rem, 8vw, 4.2rem); }
  .product-stage__copy > p:not(.price-note) { display: none; }
  .price-note { margin-top: 0.6rem !important; }
  .product-view { position: relative; inset: auto; min-height: 34vh; }
  .product-view__measure { right: 0; bottom: 0.4rem; }
  .size-selector-wrap { display: block; position: relative; width: calc(100vw - var(--gutter)); margin-right: calc(var(--gutter) * -1); }
  .size-selector-wrap::after { content: ""; position: absolute; z-index: 3; top: 1.9rem; bottom: 0; right: 0; width: 3rem; background: linear-gradient(90deg, rgba(13,17,16,0) 0%, var(--canvas) 92%); pointer-events: none; opacity: 1; transition: opacity 200ms ease-out; }
  .size-selector-wrap.is-end::after { opacity: 0; }
  .size-selector__hint { display: flex; align-items: center; gap: 0.5rem; margin: 0 0 0.6rem; color: var(--ink-soft); font-size: 0.68rem; letter-spacing: 0.02em; }
  .size-selector__hint [data-hint-progress] { position: relative; flex: 1 1 auto; height: 2px; max-width: 4.5rem; background: var(--line-dark); overflow: hidden; }
  .size-selector__hint [data-hint-progress]::after { content: ""; position: absolute; inset: 0; width: 25%; background: var(--signal); transform: translateX(var(--hint-x, 0%)); transition: transform 120ms linear; }
  .size-selector { position: relative; top: auto; right: auto; display: flex; width: 100%; max-height: none; overflow-x: auto; overflow-y: hidden; transform: none; scroll-snap-type: x mandatory; scroll-padding-left: var(--gutter); }
  .size-option { flex: 0 0 150px; min-height: 96px; scroll-snap-align: start; }
  .size-option:last-child { margin-right: 2.4rem; }
  .size-option::before { inset: auto 0 0; width: 100%; height: 3px; transform: scaleX(0); transform-origin: left; }
  .size-option.is-active::before { transform: scaleX(1); }
  .services__lead, .testimonials__top { grid-template-columns: 1fr; gap: 1.4rem; }
  .service-runway { grid-template-columns: repeat(4, minmax(78vw, 1fr)); gap: 0.9rem; scroll-padding-left: var(--gutter); }
  .service-panel { min-height: 0; aspect-ratio: 3 / 4; border-radius: var(--radius); border-right: 0; overflow: hidden; }
  .service-panel > span { bottom: 4.6rem; font-size: clamp(1.6rem, 6vw, 2.2rem); }
  .service-panel > p { bottom: 1.5rem; font-size: 0.78rem; }
  .service-runway__hint { display: block; margin-top: -1.2rem; margin-bottom: 1.4rem; color: var(--ink-soft); font-size: 0.68rem; font-weight: 700; opacity: 0.75; }
  .proof__image { order: 2; }
  .proof dl div { grid-template-columns: 0.6fr 1.4fr; }
  .quote-track__hint { display: block; margin-bottom: 0.9rem; color: var(--paper-ink); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.02em; opacity: 0.65; }
  .quote-track { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; scroll-padding-left: var(--gutter); }
  .quote-track blockquote { flex: 0 0 82vw; scroll-snap-align: start; }
  .quote-track blockquote:last-child { margin-right: 1.5rem; }
  .faq__lead { position: static; }
  .order-section { padding-bottom: calc(7rem + env(safe-area-inset-bottom)); }
  .order-section__scene::after { background: rgba(10,14,12,.82); }
  .order-form { width: min(100%, 620px); }
  .site-footer { padding-bottom: calc(7rem + env(safe-area-inset-bottom)); }
  .site-footer__top { grid-template-columns: 1fr; gap: 2.2rem; }
  .site-footer__bottom { flex-direction: column; gap: 0.4rem; }
  .quote-track blockquote { min-height: 190px; }
}

@media (max-width: 520px) {
  :root { --gutter: 1.15rem; }
  .brand__name { font-size: 0.88rem; }
  .brand__mark { width: 1.7rem; }
  .header-cta { font-size: 0.72rem; }
  .hero__copy { top: 13%; }
  .hero h1 { font-size: clamp(2.85rem, 12.6vw, 4rem); }
  .hero__copy > p { max-width: 31ch; }
  .hero__actions { align-items: flex-start; flex-direction: column; gap: 0.8rem; }
  .button { min-height: 50px; }
  .hero__proof { max-width: 30ch; }
  .intro__figure { width: 88%; }
  .intro__statement h2, .network h2, .services__lead h2, .proof__copy h2, .testimonials h2, .faq__lead h2 { font-size: clamp(2.7rem, 12vw, 4.3rem); }
  .network__media { object-position: 67% center; }
  .product-stage { grid-template-rows: auto 34vh 1fr; padding-top: 5.2rem; }
  .product-stage__copy h2 { font-size: 2.65rem; }
  .product-stage__copy h2 br { display: none; }
  .price-note { font-size: 0.6rem; }
  .product-view { min-height: 31vh; }
  .product-view__measure { bottom: 0; }
  .size-option { flex-basis: 132px; }
  .size-option span { font-size: 1.7rem; }
  .service-runway { grid-template-columns: repeat(4, 88vw); }
  .quote-track blockquote { flex-basis: 88vw; }
  .order-shell__intro h2 { font-size: clamp(3rem, 13vw, 4.6rem); }
  .order-form { padding: 1.3rem 1.1rem; }
  .field-row:not(.field-row--address) { grid-template-columns: 1fr; gap: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .hero__media { inset: 0; transform: none !important; }
  .service-panel img { transform: none !important; }
  .product-view__canvas { display: none; }
  .product-view__fallback { opacity: 1 !important; }
}
