*, *::before, *::after { box-sizing: border-box; }
:root {
  --paper: #f7f2ea;
  --paper-2: #efe6d8;
  --ink: #2c241e;
  --muted: #6b5e52;
  --accent: #9c4a32;
  --accent-2: #c4a574;
  --dark: #3a332c;
  --white: #fffcf7;
  --line: #e4d8c8;
  --radius: 14px;
  --font-body: "Outfit", system-ui, sans-serif;
  --font-head: "Cormorant Garamond", Georgia, serif;
  --shadow: 0 18px 50px rgba(44, 36, 30, .14);
}
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3 { font-family: var(--font-head); font-weight: 600; line-height: 1.15; margin: 0 0 .4em; }
h1 { font-size: clamp(2.2rem, 4.6vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.2vw, 2.7rem); }
h3 { font-size: 1.35rem; }
p { margin: 0 0 1em; }
.skip { position: absolute; left: -999px; }
.skip:focus { left: 12px; top: 12px; background: #fff; padding: 8px 12px; z-index: 99; }
.container { width: min(1140px, calc(100% - 40px)); margin: 0 auto; }
.site-header {
  background: var(--dark);
  color: #fff;
  position: sticky; top: 0; z-index: 20;
}
.header-inner {
  width: min(1140px, calc(100% - 32px));
  margin: 0 auto;
  display: flex; align-items: center; gap: 22px;
  min-height: 68px;
}
.logo { color: #fff; display: flex; align-items: baseline; gap: 10px; text-decoration: none; }
.logo strong { color: var(--accent-2); font-family: var(--font-head); font-size: 1.7rem; font-weight: 600; }
.logo span { letter-spacing: .14em; font-size: .72rem; text-transform: uppercase; opacity: .85; }
.main-nav { display: flex; gap: 22px; margin-left: auto; }
.main-nav a { color: #f3ebe1; font-size: .92rem; text-decoration: none; }
.main-nav a:hover { color: var(--accent-2); }
.header-phone { color: #fff; margin-left: 8px; font-weight: 600; white-space: nowrap; text-decoration: none; }
.burger {
  display: none; margin-left: auto; background: none; border: 0; color: #fff; width: 42px; height: 42px;
}
.section { padding: 72px 0; }
.section-alt { background: var(--white); }
.section-dark { background: var(--dark); color: #f6efe6; }
.section-dark .label { color: var(--accent-2); }
.section-head { max-width: 640px; margin: 0 auto 40px; text-align: center; }
.section-head p { color: var(--muted); }
.section-dark .section-head p { color: #d9cbb8; }
.label {
  display: block; color: var(--accent); letter-spacing: .16em; text-transform: uppercase;
  font-size: .75rem; font-weight: 600; margin-bottom: 8px;
}
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  border: 0; border-radius: 999px; padding: 13px 22px; font: inherit; font-weight: 600;
  cursor: pointer; text-decoration: none;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { filter: brightness(1.08); text-decoration: none; }
.btn-ghost { background: transparent; color: #fff; border: 1px solid #ffffff55; }
.btn-dark { background: var(--dark); color: #fff; }

.hero { position: relative; color: #fff; overflow: hidden; min-height: 86vh; display: flex; align-items: center; }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(100deg, #2c241ee6 18%, #2c241e66 70%); }
.hero-grid {
  position: relative;
  display: grid; grid-template-columns: 1.15fr .9fr; gap: 40px; align-items: center;
  padding: 80px 0;
}
.hero-copy .label { color: var(--accent-2); }
.hero-sub { color: #eadfce; max-width: 48ch; }
.hero-pills { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; padding: 0; margin: 22px 0 0; }
.hero-pills li {
  border: 1px solid #ffffff40; background: #ffffff14; border-radius: 999px;
  padding: 6px 12px; font-size: .86rem;
}
.hero-form {
  background: var(--white); color: var(--ink); border-radius: var(--radius);
  padding: 26px; box-shadow: var(--shadow);
}
.hero-form h2 { font-family: var(--font-body); font-size: 1.2rem; font-weight: 650; }

.about-grid, .cta-grid, .contact-grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center;
}
.check-list { list-style: none; padding: 0; margin: 0 0 24px; }
.check-list li { position: relative; padding: 8px 0 8px 28px; }
.check-list li::before {
  content: ""; position: absolute; left: 0; top: 12px; width: 14px; height: 14px; border-radius: 50%;
  background: var(--accent);
}
.models-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.model-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 10px 30px rgba(44,36,30,.08);
  display: flex; flex-direction: column;
}
.model-card img { aspect-ratio: 1; object-fit: cover; width: 100%; background: #efe8dc; }
.model-card .body { padding: 18px 18px 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.model-card p { color: var(--muted); font-size: .95rem; margin: 0; flex: 1; }
.model-card .meta { font-size: .82rem; color: var(--accent); font-weight: 600; }
.options-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.option-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px;
}
.swatches { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.swatch {
  width: 28px; height: 28px; border-radius: 50%; border: 1px solid #00000022;
}
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; counter-reset: step; }
.step {
  background: #4a433b; border-radius: var(--radius); padding: 22px;
}
.step h3::before {
  counter-increment: step; content: "0" counter(step) "  ";
  color: var(--accent-2); font-family: var(--font-head);
}
.faq details {
  background: var(--white); border: 1px solid var(--line); border-radius: 12px;
  padding: 14px 18px; margin-bottom: 10px;
}
.faq summary { cursor: pointer; font-weight: 600; }
.faq p { margin: 10px 0 4px; color: var(--muted); }
.contact-form, .form-stack { display: flex; flex-direction: column; gap: 10px; }
input, select, textarea {
  font: inherit; border: 1px solid var(--line); border-radius: 10px;
  padding: 12px 14px; background: #fff; width: 100%;
}
textarea { min-height: 110px; resize: vertical; }
.honeypot { position: absolute; left: -9999px; }
.form-success { text-align: center; padding: 18px 8px; }
.privacy { font-size: .88rem; color: var(--muted); display: flex; gap: 8px; align-items: flex-start; }
.privacy input { width: auto; margin-top: 4px; }
.contact-box { background: var(--white); border-radius: var(--radius); padding: 22px; }
.contact-box p { margin: 0 0 14px; }
.site-footer { background: #241e19; color: #d7cbbd; padding: 40px 0 24px; font-size: .92rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 28px; margin-bottom: 24px; }
.site-footer a { color: #f3e7d6; }
.footer-bottom { border-top: 1px solid #ffffff18; padding-top: 16px; display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.rounded { border-radius: var(--radius); width: 100%; object-fit: cover; }

@media (max-width: 900px) {
  .hero-grid, .about-grid, .cta-grid, .contact-grid, .models-grid, .options-grid, .steps, .footer-grid {
    grid-template-columns: 1fr;
  }
  .models-grid { grid-template-columns: 1fr 1fr; }
  .burger { display: block; }
  .main-nav {
    display: none; position: fixed; inset: 68px 0 auto; background: var(--dark);
    flex-direction: column; padding: 18px 22px 24px; gap: 12px;
  }
  .main-nav.open { display: flex; }
  .header-phone { display: none; }
  .hero-grid { padding: 36px 0 48px; }
}

.form-status { color: #9c4a32; font-size: .92rem; margin: 0; }
