:root {
  color-scheme: light;
  --red: #b80035;
  --ink: #17191a;
  --muted: #5b6269;
  --line: #e6d6d8;
  --soft: #f6f4f4;
  --max: 1120px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: Inter, Arial, sans-serif; color: var(--ink); background: #fff; line-height: 1.65; }
a { color: inherit; }
img { max-width: 100%; height: auto; }
.wrap { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.site-header { position: sticky; top: 0; z-index: 20; border-bottom: 1px solid #e5e5e5; background: rgba(255,255,255,.96); backdrop-filter: blur(10px); }
.nav { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 800; text-decoration: none; color: var(--red); }
.brand img { width: 52px; height: 52px; object-fit: contain; }
.nav-links { display: flex; align-items: center; gap: 22px; font-size: 14px; font-weight: 600; }
.nav-links a { text-decoration: none; }
.button { display: inline-flex; align-items: center; justify-content: center; padding: 12px 20px; background: var(--red); color: #fff; font-weight: 700; text-decoration: none; border: 1px solid var(--red); }
.button.secondary { color: var(--ink); background: transparent; border-color: #c9c9c9; }
.hero { padding: 84px 0 64px; background: linear-gradient(135deg,#fff 0%,#f5eeee 100%); border-bottom: 1px solid var(--line); }
.breadcrumbs { margin: 0 0 24px; font-size: 13px; color: var(--muted); }
.eyebrow { color: var(--red); font-size: 12px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
h1 { max-width: 900px; margin: 14px 0 22px; font-size: clamp(38px,6vw,66px); line-height: 1.06; letter-spacing: -.045em; }
h2 { margin: 0 0 18px; font-size: clamp(28px,4vw,40px); line-height: 1.18; letter-spacing: -.03em; }
h3 { margin: 0 0 10px; font-size: 20px; line-height: 1.3; }
.lead { max-width: 780px; font-size: 19px; color: var(--muted); }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.section { padding: 72px 0; }
.section.soft { background: var(--soft); }
.grid-2, .grid-3 { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2,minmax(0,1fr)); }
.grid-3 { grid-template-columns: repeat(3,minmax(0,1fr)); }
.card { padding: 26px; border: 1px solid var(--line); background: #fff; }
.card p, .section p { color: var(--muted); }
.checklist { padding: 0; margin: 26px 0 0; list-style: none; display: grid; gap: 12px; }
.checklist li { position: relative; padding-left: 26px; }
.checklist li::before { content: "✓"; position: absolute; left: 0; color: var(--red); font-weight: 800; }
.steps { counter-reset: step; display: grid; gap: 18px; }
.step { counter-increment: step; display: grid; grid-template-columns: 64px 1fr; gap: 20px; padding: 24px 0; border-bottom: 1px solid var(--line); }
.step::before { content: "0" counter(step); color: var(--red); font-weight: 800; font-family: monospace; }
.project-image { display: block; width: 100%; border: 1px solid #39414b; background: #222a35; }
.cta { padding: 54px; color: #fff; background: #111; display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: center; }
.cta p { color: rgba(255,255,255,.65); margin-bottom: 0; }
.site-footer { padding: 38px 0; border-top: 1px solid #e5e5e5; color: var(--muted); font-size: 13px; }
.footer-inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
.footer-inner nav { display: flex; gap: 18px; flex-wrap: wrap; }
@media (max-width: 760px) {
  .nav-links a:not(.button) { display: none; }
  .hero { padding-top: 54px; }
  .grid-2, .grid-3, .cta { grid-template-columns: 1fr; }
  .section { padding: 54px 0; }
  .cta { padding: 34px 26px; }
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
