:root {
  --red-950: #240303;
  --red-900: #520806;
  --red-800: #7a0d0a;
  --gold-500: #f0bf4f;
  --gold-300: #ffe39a;
  --paper: #fff8e7;
  --ink: #241716;
  --muted: #735f59;
  --line: rgba(122, 13, 10, .16);
  --max: 1080px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.7;
  background: radial-gradient(circle at 8% -4%, rgba(240,191,79,.42), transparent 28rem), linear-gradient(180deg, #fff1cf, #fff8e7 45%, #ffe9b7);
}
a { color: inherit; text-decoration: none; }
.top { background: linear-gradient(90deg, #1d0202, var(--red-900), #1d0202); color: #fff4d4; }
.top div { max-width: var(--max); margin: auto; padding: 9px 18px; display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
nav { position: sticky; top: 0; z-index: 10; background: rgba(82,8,6,.95); border-bottom: 1px solid rgba(240,191,79,.3); }
.nav { max-width: var(--max); margin: auto; padding: 12px 18px; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 950; color: var(--gold-300); min-width: 0; }
.brand img { width: 54px; height: 54px; border-radius: 14px; object-fit: cover; background: var(--red-900); border: 2px solid rgba(240,191,79,.5); flex: 0 0 auto; }
.menu { display: flex; gap: 6px; flex-wrap: wrap; justify-content: flex-end; min-width: 0; flex: 1 1 500px; }
.menu a { padding: 9px 11px; border-radius: 999px; font-weight: 850; color: #fff4d4; }
.menu a:hover { background: rgba(240,191,79,.18); color: var(--gold-300); }
.btn { border-radius: 999px; padding: 12px 18px; display: inline-flex; align-items: center; justify-content: center; font-weight: 900; white-space: nowrap; }
.primary { color: #fff8df; background: linear-gradient(135deg, var(--red-800), var(--red-950)); box-shadow: 0 14px 30px rgba(82,8,6,.24); }
.gold { color: var(--red-950); background: linear-gradient(135deg, #ffe9aa, var(--gold-500)); box-shadow: 0 14px 30px rgba(168,106,18,.22); }
header { background: radial-gradient(circle at 84% 4%, rgba(255,227,154,.28), transparent 26rem), linear-gradient(135deg, #240303 0%, #650907 48%, #9a160f 100%); color: #fff8df; }
.hero { max-width: var(--max); margin: auto; padding: 54px 18px; display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 28px; align-items: center; }
.eyebrow { color: var(--gold-300); font-weight: 950; margin: 0 0 8px; }
h1 { margin: 0; font-size: clamp(2rem, 5vw, 4rem); line-height: 1.08; letter-spacing: 0; }
.hero p { margin: 14px 0 0; color: rgba(255,248,223,.88); font-size: 1.12rem; }
.hero-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 20px; }
.trust { background: rgba(255,248,231,.96); color: var(--ink); border: 1px solid rgba(240,191,79,.35); border-radius: 24px; padding: 20px; box-shadow: 0 18px 50px rgba(20,2,2,.2); }
.trust b { display: block; color: var(--red-900); font-size: 1.12rem; }
.trust ul { margin: 12px 0 0; padding-left: 20px; color: var(--muted); }
main { max-width: var(--max); margin: auto; padding: 34px 18px 70px; }
.grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.card, .faq, .local-links { background: linear-gradient(180deg, #fff8e7, #fff0c9); border: 1px solid var(--line); border-radius: 24px; padding: 24px; box-shadow: 0 16px 44px rgba(93,11,14,.1); }
h2 { margin: 0 0 10px; color: var(--red-950); font-size: clamp(1.55rem, 3vw, 2.25rem); line-height: 1.16; }
h3 { color: var(--red-900); margin: 16px 0 6px; }
p { margin: 0 0 12px; }
.muted { color: var(--muted); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 14px; }
.step { background: #fff3d4; border: 1px solid var(--line); border-radius: 18px; padding: 16px; }
.num { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; background: linear-gradient(135deg, var(--red-800), var(--red-950)); color: #fff8df; font-weight: 950; margin-bottom: 10px; }
.note { margin-top: 14px; padding: 14px; border-radius: 16px; background: #ffe6a8; color: #4b302d; font-weight: 800; }
.service-list { display: grid; gap: 10px; }
.service-list a { padding: 14px; border-radius: 16px; background: #fff9ec; border: 1px solid var(--line); font-weight: 850; color: var(--red-900); }
footer { text-align: center; background: var(--red-950); color: #fff8df; padding: 28px 18px; }
@media (max-width: 860px) {
  .hero, .grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .menu { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 2px; flex-basis: 100%; }
}
@media (max-width: 560px) {
  .steps { grid-template-columns: 1fr; }
  .top div { text-align: center; justify-content: center; }
}
