/* ════════════════════════════════════════════════════════════════════
   MORENO PAIM LOCAÇÕES — Design System v0.1
   Editorial industrial · navy dominant · salmon as signal
   ════════════════════════════════════════════════════════════════════ */

:root {
  --navy:        #141A46;
  --navy-2:      #1f2658;
  --navy-deep:   #0d1232;
  --accent:      #EC8B5E;
  --accent-2:    #d97548;
  --accent-soft: #F4BFA6;
  --paper:       #faf7f2;
  --paper-2:     #f3edde;
  --paper-3:     #ebe3cf;
  --ink:         #1c1d28;
  --ink-soft:    #5a5b6c;
  --line:        #d8d2bc;
  --line-soft:   #ece5cf;
  --white:       #ffffff;

  --display: 'Outfit', system-ui, sans-serif;
  --body:    'Outfit', system-ui, sans-serif;
  --mono:    'JetBrains Mono', 'IBM Plex Mono', monospace;

  --w-narrow: 720px;
  --w-text:   860px;
  --w-wide:   1240px;
  --w-full:   1440px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

body {
  font-family: var(--body);
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 400;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ─── Typography ───────────────────────────────────────────────── */

.display { font-family: var(--display); font-weight: 500; letter-spacing: -0.01em; line-height: 1.05; }
.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}
.eyebrow.dark { color: var(--accent-2); }
.eyebrow.muted { color: var(--ink-soft); }

.lead {
  font-size: 19px;
  line-height: 1.5;
  font-weight: 400;
  color: var(--ink-soft);
  font-family: var(--body);
  letter-spacing: -0.005em;
}
.subhead {
  font-family: var(--body);
  font-weight: 600;
  font-size: 22px;
  line-height: 1.25;
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}

h1, h2, h3 { font-family: var(--display); font-weight: 500; letter-spacing: -0.01em; }
h2 { font-size: 46px; line-height: 1.05; color: var(--navy); font-weight: 500; letter-spacing: -0.02em; }
h3 { font-size: 26px; line-height: 1.2; color: var(--navy); font-weight: 500; letter-spacing: -0.01em; }

p + p { margin-top: 14px; }

.rule {
  height: 1px;
  background: var(--line);
  margin: 0;
}
.rule-strong { background: var(--navy); }

/* ─── Layout helpers ───────────────────────────────────────────── */

.container { width: 100%; max-width: var(--w-wide); margin: 0 auto; padding: 0 32px; }
.container.narrow { max-width: var(--w-text); }

section { padding: 88px 0; }
section.dense { padding: 56px 0; }
section.tight { padding: 44px 0; }

/* ─── Header ───────────────────────────────────────────────────── */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 32px;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo img { height: 38px; width: auto; }
.nav { display: flex; align-items: center; gap: 36px; }
.nav a {
  font-family: var(--body);
  font-weight: 500;
  font-size: 15px;
  color: var(--navy);
  position: relative;
  padding: 6px 0;
}
.nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}
.nav a:hover::after, .nav a.current::after { transform: scaleX(1); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  font-family: var(--body);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.01em;
  background: var(--accent);
  color: var(--navy-deep);
  border: 1.5px solid var(--accent);
  border-radius: 0;
  transition: all .15s ease;
  white-space: nowrap;
}
.btn:hover { background: var(--accent-2); border-color: var(--accent-2); color: var(--white); }
.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-ghost:hover { background: var(--navy); color: var(--white); }
.btn-ghost-light { color: var(--white); border-color: rgba(255,255,255,0.5); }
.btn-ghost-light:hover { background: var(--white); color: var(--navy); }
.btn-sm { padding: 9px 16px; font-size: 13px; }
.btn-arrow::after { content: '→'; font-family: var(--mono); }

@media (max-width: 760px) {
  .nav { display: none; }
  .nav.mobile { display: flex; gap: 16px; }
  .nav.mobile a { font-size: 13px; }
}

/* ─── Hero (home) ──────────────────────────────────────────────── */

.hero {
  position: relative;
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: center;
  padding: 110px 0 90px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=1800&q=85&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  opacity: 0.30;
  filter: grayscale(0.4) contrast(1.1);
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 30%, rgba(236,139,94,0.18), transparent 55%),
    linear-gradient(180deg, rgba(20,26,70,0.80) 0%, rgba(13,18,50,0.95) 90%);
}
.hero .container { position: relative; z-index: 1; }

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  max-width: 980px;
}
.hero h1 {
  font-family: var(--display);
  font-size: clamp(56px, 8.5vw, 110px);
  line-height: 0.92;
  letter-spacing: -0.015em;
  color: var(--white);
}
.hero h1 .accent {
  color: var(--accent);
  font-family: var(--display);
  font-weight: 500;
}
.hero-sub {
  font-family: var(--body);
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.5;
  color: rgba(255,255,255,0.78);
  max-width: 600px;
  font-weight: 400;
  letter-spacing: -0.005em;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 12px; }

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 48px;
  padding-top: 48px;
  margin-top: 56px;
  border-top: 1px solid rgba(255,255,255,0.14);
}
.hero-meta-item .label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 6px;
}
.hero-meta-item .value {
  font-family: var(--display);
  font-size: 24px;
  color: var(--white);
}

/* ─── Hero (interior) ──────────────────────────────────────────── */

.hero-interior {
  background: var(--paper-2);
  border-bottom: 1px solid var(--line);
  padding: 56px 0 80px;
  position: relative;
}
.breadcrumb {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 32px;
}
.breadcrumb a { color: var(--ink-soft); }
.breadcrumb a:hover { color: var(--accent-2); }
.breadcrumb .sep { margin: 0 10px; color: var(--line); }

.hero-interior h1 {
  font-family: var(--display);
  font-size: clamp(40px, 6.5vw, 76px);
  line-height: 1.0;
  letter-spacing: -0.01em;
  color: var(--navy);
  max-width: 900px;
  margin-bottom: 22px;
}
.hero-interior .lead {
  max-width: 680px;
  color: var(--ink);
}

.hero-interior-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: end;
  margin-top: 56px;
}
.hero-interior-photo {
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  position: relative;
}
.hero-interior-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--navy);
  pointer-events: none;
  transform: translate(12px, 12px);
}
.hero-interior-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 22px; }

@media (max-width: 760px) {
  .hero-interior-grid { grid-template-columns: 1fr; }
}

/* ─── Section heads ────────────────────────────────────────────── */

.section-head {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 56px;
  margin-bottom: 56px;
  align-items: end;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
.section-head .lead { max-width: 600px; }
.section-head .num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--accent-2);
  margin-bottom: 14px;
}
@media (max-width: 760px) {
  .section-head { grid-template-columns: 1fr; gap: 24px; }
}

/* ─── Catalog (home: containers + equipamentos como mini-cards) ─ */

.catalog-section + .catalog-section { margin-top: 64px; }
.catalog-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 1.5px solid var(--navy);
}
.catalog-head h3 {
  font-family: var(--display);
  font-size: 26px;
  margin: 0;
  color: var(--navy);
}
.catalog-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-2);
}
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.catalog-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cat-card {
  background: var(--paper);
  padding: 22px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
  transition: background .15s ease;
  position: relative;
}
.cat-card:hover { background: var(--paper-2); }
.cat-card:hover .cat-icon { color: var(--accent-2); }
.cat-icon {
  width: 64px;
  height: 64px;
  color: var(--navy);
  transition: color .15s ease;
}
.cat-icon svg { width: 100%; height: 100%; display: block; }
.cat-name {
  font-family: var(--display);
  font-weight: 500;
  font-size: 16px;
  color: var(--navy);
  letter-spacing: -0.005em;
  line-height: 1.2;
}
.cat-meta {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: auto;
  padding-top: 8px;
}
.catalog-note {
  margin-top: 18px;
  font-family: var(--body);
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.5;
  max-width: 720px;
}
@media (max-width: 900px) {
  .catalog-grid, .catalog-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .catalog-grid, .catalog-grid.cols-3 { grid-template-columns: repeat(2, 1fr); }
  .catalog-head { flex-direction: column; align-items: flex-start; gap: 8px; }
}

/* ─── Reasons (numbered) ───────────────────────────────────────── */

.reasons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
.reason {
  padding: 36px 28px 36px 0;
  border-right: 1px solid var(--line);
  position: relative;
}
.reason:last-child { border-right: none; }
.reason .num {
  font-family: var(--display);
  font-size: 56px;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 18px;
  display: block;
}
.reason h3 {
  font-family: var(--body);
  font-weight: 700;
  font-size: 19px;
  line-height: 1.25;
  color: var(--navy);
  margin-bottom: 10px;
}
.reason p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.5;
}
@media (max-width: 900px) { .reasons { grid-template-columns: 1fr 1fr; } .reason:nth-child(2) { border-right: none; } }
@media (max-width: 540px) { .reasons { grid-template-columns: 1fr; } .reason { border-right: none; border-bottom: 1px solid var(--line); padding-right: 0; } }

/* ─── Region (cidades) ─────────────────────────────────────────── */

.region {
  background: var(--navy);
  color: var(--white);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.region::before {
  content: '';
  position: absolute;
  right: -200px; top: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(236,139,94,0.15), transparent 70%);
  pointer-events: none;
}
.region .container { position: relative; }
.region h2 { color: var(--white); }
.region .lead { color: rgba(255,255,255,0.78); }

.cities {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.18);
}
.city {
  padding: 26px 0;
  font-family: var(--display);
  font-size: 22px;
  border-bottom: 1px solid rgba(255,255,255,0.18);
  border-right: 1px solid rgba(255,255,255,0.10);
  padding-left: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.city:nth-child(4n) { border-right: none; }
.city .marker {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}
.city.is-base {
  background: rgba(236,139,94,0.10);
  color: var(--accent-soft);
}
.city.is-base .marker { background: var(--accent); width: 10px; height: 10px; }
@media (max-width: 760px) { .cities { grid-template-columns: 1fr 1fr; } .city:nth-child(4n) { border-right: 1px solid rgba(255,255,255,0.10); } .city:nth-child(2n) { border-right: none; } }

/* ─── Steps (como funciona) ────────────────────────────────────── */

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  counter-reset: step;
  position: relative;
}
.step {
  counter-increment: step;
  padding-top: 80px;
  position: relative;
}
.step::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: 0; left: 0;
  font-family: var(--display);
  font-size: 64px;
  color: var(--accent);
  line-height: 1;
}
.step::after {
  content: '';
  position: absolute;
  top: 28px; left: 80px; right: 0;
  height: 1px;
  background: var(--line);
}
.step h3 {
  font-family: var(--body);
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 8px;
  color: var(--navy);
}
.step p { color: var(--ink-soft); font-size: 15px; }
@media (max-width: 760px) { .steps { grid-template-columns: 1fr; gap: 24px; } .step { padding-top: 56px; } .step::before { font-size: 44px; } .step::after { left: 50px; top: 18px; } }

/* ─── CTA Strip ───────────────────────────────────────────────── */

.cta-strip {
  background: var(--accent);
  color: var(--navy-deep);
  padding: 56px 0;
  position: relative;
}
.cta-strip-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
}
.cta-strip h2 {
  font-family: var(--display);
  font-size: clamp(30px, 4vw, 44px);
  color: var(--navy-deep);
  line-height: 1.05;
  margin: 0;
}
.cta-strip .btn {
  background: var(--navy-deep);
  border-color: var(--navy-deep);
  color: var(--white);
  padding: 18px 28px;
  font-size: 16px;
}
.cta-strip .btn:hover { background: var(--white); color: var(--navy-deep); border-color: var(--white); }
@media (max-width: 760px) { .cta-strip-inner { grid-template-columns: 1fr; } }

/* ─── Specs table ──────────────────────────────────────────────── */

.specs {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 64px;
  align-items: start;
}
.specs-photo {
  aspect-ratio: 1 / 1;
  background-size: cover;
  background-position: center;
  position: relative;
}
.specs-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--navy);
  transform: translate(-12px, -12px);
  pointer-events: none;
}
.specs-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--body);
}
.specs-table caption {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 16px;
  text-align: left;
  padding-bottom: 10px;
  border-bottom: 1.5px solid var(--navy);
}
.specs-table th, .specs-table td {
  text-align: left;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-size: 16px;
}
.specs-table th {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink-soft);
  width: 45%;
}
.specs-table td { font-weight: 500; color: var(--ink); }
@media (max-width: 900px) { .specs { grid-template-columns: 1fr; gap: 36px; } }

/* ─── Application cards (uses) ─────────────────────────────────── */

.uses {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.use {
  background: var(--paper);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.use .num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--accent-2);
  margin-bottom: 4px;
}
.use h3 {
  font-family: var(--display);
  font-size: 22px;
  color: var(--navy);
  line-height: 1.15;
}
.use p { font-size: 15px; color: var(--ink-soft); line-height: 1.5; }
@media (max-width: 900px) { .uses { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .uses { grid-template-columns: 1fr; } }

/* ─── Local block (página produto × cidade) ────────────────────── */

.local-block {
  background: var(--paper-2);
  padding: 80px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.local-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.local-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  margin-top: 28px;
}
.local-stat {
  background: var(--paper-2);
  padding: 24px 22px;
}
.local-stat .label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 8px;
}
.local-stat .value {
  font-family: var(--display);
  font-size: 32px;
  color: var(--navy);
  line-height: 1;
}
.local-stat .unit { font-size: 16px; color: var(--ink-soft); margin-left: 4px; }
@media (max-width: 900px) { .local-grid { grid-template-columns: 1fr; gap: 36px; } }

.address-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 28px 32px;
  position: relative;
  margin-top: 24px;
}
.address-card .label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 10px;
}
.address-card .street {
  font-family: var(--display);
  font-size: 22px;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 4px;
}
.address-card .meta { color: var(--ink-soft); font-size: 15px; }

/* ─── FAQ ──────────────────────────────────────────────────────── */

.faq-list { border-top: 1px solid var(--navy); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  text-align: left;
  padding: 26px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-family: var(--display);
  font-size: 22px;
  color: var(--navy);
  line-height: 1.2;
}
.faq-q:hover { color: var(--accent-2); }
.faq-q::after {
  content: '+';
  font-family: var(--display);
  font-size: 28px;
  color: var(--accent);
  transition: transform .25s ease;
  flex-shrink: 0;
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq-item.open .faq-a { max-height: 600px; }
.faq-a p {
  padding-bottom: 26px;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.55;
  max-width: 760px;
}

/* ─── Footer ───────────────────────────────────────────────────── */

.site-footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.78);
  padding: 80px 0 32px;
  font-family: var(--body);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.14);
}
.footer-brand .logo-wrap {
  background: var(--white);
  display: inline-block;
  padding: 12px 18px;
  margin-bottom: 24px;
}
.footer-brand .logo-wrap img { height: 32px; }
.footer-brand p { font-size: 15px; line-height: 1.55; max-width: 320px; color: rgba(255,255,255,0.65); }
.footer-col h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
  font-weight: 500;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 15px; color: rgba(255,255,255,0.78); }
.footer-col a:hover { color: var(--accent-soft); }
.footer-bottom {
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.45);
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom a { color: rgba(255,255,255,0.65); }
.footer-bottom a:hover { color: var(--accent-soft); }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } .footer-brand { grid-column: 1 / -1; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; gap: 32px; } }

/* ─── WhatsApp Floating Button ─────────────────────────────────── */

.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 100;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  padding: 14px 20px;
  border-radius: 999px;
  font-family: var(--body);
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 8px 24px -6px rgba(37,211,102,0.5);
  transition: transform .15s ease;
}
.wa-float:hover { transform: translateY(-2px); }
.wa-float svg { width: 20px; height: 20px; flex-shrink: 0; }
@media (max-width: 540px) {
  .wa-float span { display: none; }
  .wa-float { padding: 14px; }
}

/* ─── Display weight overrides (Outfit Regular/Medium — leve como o logo) ─── */

.hero h1                 { font-weight: 500; letter-spacing: -0.025em; }
.hero h1 .accent         { font-weight: 500; font-family: var(--display); font-style: normal; color: var(--accent); letter-spacing: -0.025em; }
.hero-interior h1        { font-weight: 500; letter-spacing: -0.02em; }
.hero-meta-item .value   { font-weight: 500; letter-spacing: -0.01em; }
.catalog h3              { font-weight: 500; letter-spacing: -0.012em; }
.reason .num             { font-weight: 400; letter-spacing: -0.02em; }
.city                    { font-weight: 400; letter-spacing: -0.005em; }
.step::before            { font-weight: 400; letter-spacing: -0.02em; }
.cta-strip h2            { font-weight: 500; letter-spacing: -0.02em; }
.use h3                  { font-weight: 500; letter-spacing: -0.01em; }
.local-stat .value       { font-weight: 500; letter-spacing: -0.015em; }
.address-card .street    { font-weight: 500; letter-spacing: -0.01em; }
.faq-q                   { font-weight: 500; letter-spacing: -0.008em; }
.faq-q::after            { font-weight: 400; }

/* ─── Misc ─────────────────────────────────────────────────────── */

.muted { color: var(--ink-soft); }
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mt-6 { margin-top: 48px; }

@media (max-width: 760px) {
  body { font-size: 16px; }
  section { padding: 64px 0; }
  .container { padding: 0 24px; }
  h2 { font-size: 32px; }
  h3 { font-size: 22px; }
  .lead { font-size: 17px; }
  .hero { padding: 70px 0 60px; min-height: 480px; }
  .hero-meta { grid-template-columns: 1fr 1fr; gap: 24px; padding-top: 32px; margin-top: 36px; }
}
