:root {
  --brand: #e0572f;
  --brand-dark: #b94120;
  --accent: #ffb703;
  --ink: #1a1a1a;
  --muted: #626262;
  --paper: #fffaf4;
  --white: #ffffff;
  --line: #eadfd5;
  --radius: 18px;
  --shadow: 0 18px 50px rgba(54, 33, 20, .10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}
a { color: inherit; }
img { display: block; max-width: 100%; }
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.site-header {
  position: sticky;
  z-index: 10;
  top: 0;
  border-bottom: 1px solid rgba(234, 223, 213, .9);
  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 { font-weight: 800; letter-spacing: .04em; text-decoration: none; }
.brand span { color: var(--brand); }
.nav-links { display: flex; align-items: center; gap: 22px; }
.nav-links a { color: #383838; font-weight: 600; text-decoration: none; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 2px solid var(--brand);
  border-radius: 999px;
  background: var(--brand);
  color: var(--white);
  font-weight: 750;
  text-decoration: none;
  transition: transform .15s ease, background .15s ease;
}
.button:hover { transform: translateY(-1px); background: var(--brand-dark); }
.button.secondary { background: transparent; color: var(--brand-dark); }
.button.secondary:hover { background: #fff0e9; }
.hero { padding: 72px 0 64px; background: linear-gradient(135deg, #fffaf4, #fff3e6); }
.hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: 56px; }
.eyebrow { color: var(--brand-dark); font-weight: 800; letter-spacing: .08em; text-transform: uppercase; font-size: .78rem; }
h1, h2, h3 { margin: 0 0 .6em; line-height: 1.12; }
h1, h2 { font-family: "Playfair Display", Georgia, serif; }
h1 { font-size: clamp(2.6rem, 6vw, 4.9rem); letter-spacing: -.025em; }
h2 { font-size: clamp(2rem, 4vw, 3.1rem); }
h3 { font-size: 1.25rem; }
.lead { max-width: 720px; color: #3d3d3d; font-size: clamp(1.06rem, 2vw, 1.25rem); }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero-media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 28px; box-shadow: var(--shadow); }
.facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 28px; }
.fact { padding: 15px; border: 1px solid var(--line); border-radius: 14px; background: rgba(255,255,255,.78); }
.fact strong { display: block; }
.fact span { color: var(--muted); font-size: .92rem; }
.section { padding: 76px 0; }
.section.tint { background: var(--paper); }
.section-intro { max-width: 760px; margin-bottom: 34px; }
.section-intro p, .card p, .checklist li, .faq p { color: var(--muted); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.card { padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: 0 8px 26px rgba(54, 33, 20, .055); }
.card p:last-child { margin-bottom: 0; }
.checklist { margin: 0; padding: 0; list-style: none; }
.checklist li { position: relative; padding: 10px 0 10px 30px; border-bottom: 1px solid var(--line); }
.checklist li:last-child { border-bottom: 0; }
.checklist li::before { content: "✓"; position: absolute; left: 0; color: var(--brand); font-weight: 900; }
.steps { counter-reset: steps; }
.step { position: relative; padding-left: 64px; }
.step::before {
  counter-increment: steps;
  content: counter(steps);
  position: absolute;
  left: 0;
  top: 0;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--brand);
  color: var(--white);
  font-weight: 800;
}
.faq details { padding: 20px 0; border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; font-weight: 800; }
.faq p { margin-bottom: 0; }
.cta { padding: 48px; border-radius: 28px; background: var(--ink); color: var(--white); }
.cta p { max-width: 690px; color: #dedede; }
.breadcrumbs { padding-top: 22px; color: var(--muted); font-size: .9rem; }
.breadcrumbs a { text-decoration-color: #bdb0a6; }
.site-footer { padding: 36px 0; border-top: 1px solid var(--line); }
.footer-grid { display: flex; align-items: flex-start; justify-content: space-between; gap: 30px; }
.footer-grid p { margin: 0; color: var(--muted); }
.footer-links { display: flex; flex-wrap: wrap; gap: 16px; }
.footer-links a { color: var(--muted); }
.fine { font-size: .88rem; color: var(--muted); }

@media (max-width: 820px) {
  .nav-links a:not(.button) { display: none; }
  .hero { padding-top: 42px; }
  .hero-grid, .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .hero-grid { gap: 32px; }
  .facts { grid-template-columns: 1fr; }
  .section { padding: 58px 0; }
  .cta { padding: 32px 24px; }
  .footer-grid { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .button { transition: none; }
}
