*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #faf9f6;
  --bg-2: #ffffff;
  --text: #282418;
  --text-2: #6b634a;
  --accent: #bb9a5c;
  --accent-2: #63512a;
  --line: #eeeadc;
  --radius: 14px;
  --font: 'Nunito', system-ui, sans-serif;
}

body { font-family: var(--font); background: var(--bg); color: var(--text); line-height: 1.6; }

/* ── Header ── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; gap: 24px;
  padding: 0 40px; height: 64px;
  background: rgba(246,250,248,.92); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.brand { font-size: 18px; font-weight: 700; text-decoration: none; color: var(--text); }
.brand span { color: var(--accent); }
.nav-toggle { display: none; }
.menu-button { display: none; cursor: pointer; font-size: 22px; margin-left: auto; color: var(--text); }
.nav-links { display: flex; gap: 24px; margin-left: auto; align-items: center; }
.nav-links a { text-decoration: none; color: var(--text-2); font-size: 14px; transition: .2s; }
.nav-links a:hover { color: var(--text); }
.nav-cta { background: var(--accent); color: #fff !important; padding: 8px 18px; border-radius: 8px; font-weight: 600; }
.nav-cta:hover { background: var(--accent-2) !important; }

/* ── Hero ── */
.hero { display: grid; grid-template-columns: 1fr 1fr; min-height: calc(100vh - 64px); }
.hero-content { display: flex; flex-direction: column; justify-content: center; padding: 64px; padding-bottom: 120px; }
.eyebrow { font-size: 13px; color: var(--accent); font-weight: 600; letter-spacing: .04em; margin-bottom: 16px; }
.hero-content h1 { font-size: clamp(36px, 4vw, 56px); line-height: 1.1; margin-bottom: 20px; }
.lead { font-size: 17px; color: var(--text-2); max-width: 480px; margin-bottom: 32px; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.btn { display: inline-flex; align-items: center; padding: 13px 24px; border-radius: 10px; font-size: 15px; font-weight: 600; text-decoration: none; transition: .2s; }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-2); }
.btn-outline { background: transparent; color: var(--text); border: 1.5px solid var(--line); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.hero-image { overflow: hidden; }
.hero-image img { width: 100%; height: 100%; object-fit: cover; }

/* ── Sections ── */
section:not(.hero) { padding: 80px 64px; }
.section-heading { text-align: center; margin-bottom: 52px; }
.label { font-size: 12px; font-weight: 700; color: var(--accent); letter-spacing: .1em; text-transform: uppercase; margin-bottom: 12px; }
.section-heading h2 { font-size: clamp(26px, 3vw, 40px); }

/* ── Services ── */
.services { background: var(--bg-2); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card { padding: 36px 28px; border-radius: var(--radius); border: 1.5px solid var(--line); background: var(--bg); transition: .2s; }
.service-card:hover { border-color: var(--accent); }
.service-card.featured { border-color: var(--accent); background: #eef9f4; }
.icon { font-size: 28px; margin-bottom: 16px; }
.service-card h3 { font-size: 18px; margin-bottom: 10px; }
.service-card p { color: var(--text-2); font-size: 14px; line-height: 1.7; }

/* ── How it works ── */
.how-it-works { background: var(--bg); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.step { text-align: center; padding: 40px 24px; }
.step-num { display: inline-block; font-size: 40px; font-weight: 800; color: var(--accent); opacity: .2; margin-bottom: 16px; }
.step h3 { font-size: 17px; margin-bottom: 8px; }
.step p { color: var(--text-2); font-size: 14px; line-height: 1.7; }

/* ── Pricing ── */
.pricing { background: var(--bg-2); }
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.price-card { padding: 32px 28px; border-radius: var(--radius); border: 1.5px solid var(--line); background: var(--bg); }
.price-card.main-price { border-color: var(--accent); background: #eef9f4; }
.price-card p { font-size: 13px; color: var(--text-2); text-transform: uppercase; letter-spacing: .06em; font-weight: 600; margin-bottom: 12px; }
.price-card strong { display: block; font-size: 38px; font-weight: 800; color: var(--text); margin-bottom: 12px; }
.price-card span { font-size: 14px; color: var(--text-2); line-height: 1.6; }

/* ── CTA ── */
.cta { background: var(--accent); color: #fff; display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta .label { color: rgba(255,255,255,.7); }
.cta h2 { font-size: clamp(24px, 3vw, 36px); color: #fff; margin: 8px 0; }
.cta p { color: rgba(255,255,255,.75); }
.cta .btn-primary { background: #fff; color: var(--accent); }
.cta .btn-primary:hover { background: #e8f8f1; }

/* ── Footer ── */
.footer { padding: 24px 64px; border-top: 1px solid var(--line); font-size: 13px; }
.footer a { color: var(--text-2); text-decoration: none; }
.footer a:hover { color: var(--accent); }

/* ── Responsive ── */
@media (max-width: 768px) {
  .hero { grid-template-columns: 1fr; }
  .hero-image { height: 260px; }
  .hero-content { padding: 48px 24px; }
  section:not(.hero) { padding: 56px 24px; }
  .service-grid, .steps, .price-grid { grid-template-columns: 1fr; }
  .cta { flex-direction: column; align-items: flex-start; }
  .site-header { padding: 0 20px; }
  .menu-button { display: block; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: var(--bg-2); border-bottom: 1px solid var(--line); padding: 16px; margin-left: 0; }
  .nav-links a { padding: 12px 0; border-bottom: 1px solid var(--line); }
  .nav-toggle:checked ~ .nav-links { display: flex; }
  .footer { padding: 24px; }
}
