:root {
  --sun: #f7b733;
  --peach: #ffe3cc;
  --lavender: #e7dcff;
  --sage: #87b889;
  --cream: #fffaf0;
  --ink: #30323d;
  --muted: #666b7a;
  --white: #ffffff;
  --shadow: 0 10px 30px rgba(48, 50, 61, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
}

a { color: inherit; }
img { max-width: 100%; height: auto; }

.header {
  background: rgba(255, 250, 240, 0.95);
  border-bottom: 1px solid rgba(48, 50, 61, 0.08);
  position: sticky;
  top: 0;
  z-index: 10;
}
.nav {
  max-width: 1100px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.25rem;
}
.brand img { width: 52px; height: 52px; border-radius: 50%; }
.nav-links { display: flex; gap: 18px; flex-wrap: wrap; align-items: center; }
.nav-links a { text-decoration: none; font-weight: 700; color: var(--ink); }
.nav-links a:hover { color: #b87400; }

.btn {
  display: inline-block;
  padding: 13px 20px;
  background: var(--sun);
  color: #2d2100;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 800;
  box-shadow: var(--shadow);
}
.btn.secondary { background: var(--lavender); color: var(--ink); box-shadow: none; }

.hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: 70px 20px 50px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}
.hero-card {
  background: linear-gradient(145deg, var(--peach), var(--lavender));
  padding: 28px;
  border-radius: 28px;
  box-shadow: var(--shadow);
  text-align: center;
}
.hero-card img { border-radius: 22px; background: white; }
.kicker { color: #9c6500; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; }
h1 { font-size: clamp(2.2rem, 5vw, 4.2rem); line-height: 1.05; margin: 10px 0 16px; }
h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); line-height: 1.15; margin: 0 0 18px; }
h3 { margin-bottom: 8px; }
.lead { font-size: 1.18rem; color: var(--muted); max-width: 650px; }
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

.section { max-width: 1100px; margin: 0 auto; padding: 55px 20px; }
.section.narrow { max-width: 850px; }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.grid.two { grid-template-columns: repeat(2, 1fr); }
.card {
  background: var(--white);
  border-radius: 22px;
  padding: 24px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(48, 50, 61, 0.06);
}
.card .icon { font-size: 2rem; }
.highlight {
  background: linear-gradient(145deg, #fff, var(--peach));
  border-radius: 28px;
  padding: 34px;
  box-shadow: var(--shadow);
}
.notice {
  background: #fff7dc;
  border-left: 6px solid var(--sun);
  padding: 16px 18px;
  border-radius: 14px;
}
.price { font-size: 2rem; font-weight: 900; margin: 10px 0; color: #9c6500; }
ul.clean { padding-left: 20px; }
.footer {
  background: #30263c;
  color: white;
  margin-top: 40px;
}
.footer-inner { max-width: 1100px; margin: 0 auto; padding: 36px 20px; display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer a { color: white; }

.form {
  display: grid;
  gap: 14px;
}
input, textarea, select {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid rgba(48,50,61,0.18);
  border-radius: 14px;
  font: inherit;
  background: white;
}
textarea { min-height: 140px; }

@media (max-width: 800px) {
  .hero { grid-template-columns: 1fr; padding-top: 40px; }
  .grid, .grid.two { grid-template-columns: 1fr; }
  .nav { align-items: flex-start; flex-direction: column; }
  .nav-links { gap: 12px; }
}
