:root {
  --orange: #df6d32;
  --orange-dark: #b95022;
  --yellow: #ffd500;
  --ink: #2e241f;
  --muted: #6f625b;
  --cream: #fff9f3;
  --white: #ffffff;
  --line: #eaded5;
  --shadow: 0 16px 40px rgba(60, 35, 20, .10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
}
a { color: inherit; }
.container { width: min(1120px, 92%); margin: 0 auto; }

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { text-decoration: none; font-weight: 800; color: var(--orange-dark); }
.nav-links { display: flex; gap: 24px; align-items: center; }
.nav-links a { text-decoration: none; font-weight: 650; }
.nav-links a:hover { color: var(--orange-dark); }
.menu-toggle { display: none; border: 0; background: transparent; font-size: 1.8rem; }

.hero {
  background: linear-gradient(180deg, #fffaf5 0%, #ffffff 100%);
  border-bottom: 1px solid var(--line);
}
.hero-content {
  min-height: 650px;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 52px;
  align-items: center;
  padding: 70px 0 90px;
}
.logo { width: 100%; max-width: 470px; margin: 0 auto; display: block; }
.hero h1, h2 {
  line-height: 1.12;
  margin: .2em 0 .5em;
}
.hero h1 { font-size: clamp(2.6rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { margin-top: 0; font-size: 1.35rem; }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 800;
  color: var(--orange-dark);
  font-size: .84rem;
}
.hero-text > p:not(.eyebrow) { font-size: 1.2rem; color: var(--muted); max-width: 700px; }
.hero-actions, .stack { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 26px; }

.btn {
  display: inline-block;
  text-decoration: none;
  padding: 13px 20px;
  border-radius: 12px;
  font-weight: 800;
  border: 2px solid var(--orange);
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(90,50,25,.12); }
.btn.primary { background: var(--orange); color: white; }
.btn.secondary { background: transparent; color: var(--orange-dark); }

.section { padding: 100px 0; }
.section.alt { background: var(--cream); }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: start; }
.lead { font-size: 1.15rem; color: var(--muted); max-width: 800px; }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 30px;
  box-shadow: var(--shadow);
}
.cards {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.icon { font-size: 2.2rem; margin-bottom: 8px; }
.checklist { padding-left: 1.2rem; }
.checklist li { margin: .45rem 0; }
.callout {
  margin-top: 28px;
  padding: 20px 24px;
  border-left: 5px solid var(--yellow);
  background: white;
  border-radius: 12px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.price-box {
  display: inline-flex;
  flex-direction: column;
  padding: 18px 22px;
  border-radius: 16px;
  background: var(--cream);
  border: 1px solid var(--line);
  margin: 14px 0;
}
.price { font-size: 2.2rem; line-height: 1; font-weight: 900; color: var(--orange-dark); }
.steps { padding-left: 1.2rem; }
.steps li { margin-bottom: .7rem; }
.small-note { font-size: .85rem; color: var(--muted); }
.placeholder { color: #9a6f5a; font-style: italic; }

.contact-box {
  text-align: center;
  max-width: 800px;
}
.mail-link {
  display: inline-block;
  margin-top: 10px;
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  color: var(--orange-dark);
  font-weight: 900;
}

.footer {
  background: #211813;
  color: white;
  padding: 42px 0;
}
.footer p { color: #d8cbc3; }
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
}
.footer-links { display: flex; gap: 18px; }
.footer-links a { color: white; }

.legal {
  width: min(900px, 92%);
  margin: 60px auto;
}
.legal h1 { font-size: 2.5rem; }
.legal .notice {
  background: #fff4dd;
  border-left: 5px solid #e4a300;
  padding: 16px 18px;
  border-radius: 10px;
}
.legal a { color: var(--orange-dark); }

@media (max-width: 820px) {
  .menu-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    right: 4%;
    left: 4%;
    background: white;
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: var(--shadow);
    padding: 18px;
    flex-direction: column;
    align-items: flex-start;
    z-index: 20;
  }
  .nav-links.open { display: flex; }
  .hero-content, .two-col, .cards { grid-template-columns: 1fr; }
  .hero-content { padding-top: 35px; min-height: auto; }
  .logo { max-width: 360px; }
  .section { padding: 72px 0; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}
