:root {
  --bg: #f7f2eb;
  --bg-soft: #fbf8f3;
  --surface: #fffaf4;
  --muted: #eee4d7;
  --text: #25211e;
  --text-soft: #6b625b;
  --line: #dfd2c2;
  --accent: #b4875f;
  --accent-dark: #7f5a3f;
  --black: #161413;
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(59, 43, 30, 0.12);
  --radius: 28px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg-soft);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(251, 248, 243, 0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(223, 210, 194, 0.72);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
}

.brand-icon {
  display: block;
  width: 52px;
  height: 52px;
  object-fit: contain;
}


.desktop-nav {
  display: flex;
  gap: 30px;
  margin-left: auto;
  font-size: 14px;
  color: var(--text-soft);
}

.desktop-nav a:hover,
.header-phone:hover {
  color: var(--accent-dark);
}

.header-phone {
  color: var(--text);
  font-weight: 600;
  font-size: 14px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 999px;
  padding: 11px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
  border-radius: 4px;
}

.mobile-nav {
  display: none;
}

.section,
.section-light,
.section-muted {
  padding: 98px 0;
}

.section-light {
  background: radial-gradient(circle at 16% 10%, rgba(180, 135, 95, 0.20), transparent 32%), var(--bg);
}

.section-muted {
  background: #efe7dc;
}

.hero {
  padding-top: 82px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 58px;
  align-items: start;
}

.hero-copy {
  padding-top: 28px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--accent-dark);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 700;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--accent);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.035em;
  color: var(--black);
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(44px, 6.6vw, 76px);
  line-height: 0.96;
}

h2 {
  font-size: clamp(34px, 4.4vw, 54px);
  line-height: 1.04;
  margin-bottom: 22px;
}

h3 {
  font-size: 20px;
  line-height: 1.2;
  margin-bottom: 12px;
  color: var(--black);
}

.lead {
  max-width: 670px;
  color: var(--text-soft);
  font-size: 19px;
  line-height: 1.72;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 15px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -0.01em;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--black);
  color: var(--white);
  box-shadow: 0 18px 40px rgba(22, 20, 19, 0.18);
}

.btn-primary:hover {
  background: #2a2623;
}

.btn-secondary {
  color: var(--text);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.42);
}

.btn-full {
  width: 100%;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 740px;
}

.hero-points div {
  padding: 18px;
  border: 1px solid rgba(223, 210, 194, 0.85);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.34);
}

.hero-points strong {
  display: block;
  font-size: 22px;
  line-height: 1;
  margin-bottom: 8px;
}

.hero-points span {
  color: var(--text-soft);
  font-size: 13px;
}

.form-card {
  position: sticky;
  top: 108px;
  padding: 30px;
  border: 1px solid rgba(223, 210, 194, 0.92);
  border-radius: 32px;
  background: rgba(255, 250, 244, 0.92);
  box-shadow: var(--shadow);
}

.form-intro span {
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 700;
}

.form-intro h2 {
  font-family: Inter, system-ui, sans-serif;
  letter-spacing: -0.035em;
  font-size: 30px;
  line-height: 1.05;
  margin: 8px 0 10px;
}

.form-intro p,
.form-note {
  color: var(--text-soft);
  font-size: 14px;
}

form {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
}

input,
select {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0 15px;
  background: #fffdf9;
  color: var(--text);
  outline: none;
}

input:focus,
select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(180, 135, 95, 0.12);
}

.checkbox {
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  font-size: 12px;
  line-height: 1.45;
  color: var(--text-soft);
  font-weight: 500;
}

.checkbox input {
  min-height: auto;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--black);
}

.form-status {
  min-height: 20px;
  font-size: 13px;
  font-weight: 700;
}

.form-status.success {
  color: #2b6f45;
}

.form-status.error {
  color: #a83928;
}

.trust-strip {
  padding: 24px 0;
  background: var(--black);
  color: var(--white);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: start;
}

.trust-grid > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
}

.trust-grid span {
  display: block;
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.trust-grid strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.75fr);
  gap: 70px;
  align-items: center;
}

.section-copy p,
.section-heading p,
.photo-copy p,
.final-cta p,
.faq-grid p {
  color: var(--text-soft);
  font-size: 17px;
  line-height: 1.75;
}

.mini-list {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.mini-list div {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: var(--surface);
  border: 1px solid rgba(223, 210, 194, 0.78);
  border-radius: 20px;
}

.mini-list span {
  flex: 0 0 auto;
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.image-card {
  margin: 0;
  padding: 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.image-card img {
  width: 100%;
  border-radius: 22px;
  object-fit: cover;
}

.image-card figcaption {
  padding: 13px 4px 2px;
  color: var(--text-soft);
  font-size: 12px;
}
.before-after-stack {
  display: grid;
  gap: 14px;
}

.ba-panel {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  aspect-ratio: 2 / 1;
  background: #e9dfd2;
}

.ba-panel img {
  position: absolute;
  left: 0;
  width: 100%;
  height: 200%;
  max-width: none;
  object-fit: cover;
  border-radius: 0;
}

.ba-panel.before img {
  bottom: 0;
}

.ba-panel.after img {
  top: 0;
}

.ba-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  min-height: 34px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(22, 20, 19, 0.84);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}


.section-heading {
  max-width: 720px;
  margin-bottom: 44px;
}

.section-heading.center {
  text-align: center;
  margin-inline: auto;
}

.section-heading.center .eyebrow {
  justify-content: center;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 280px;
  padding: 26px;
  border: 1px solid rgba(128, 100, 76, 0.22);
  border-radius: 26px;
  background: rgba(255, 250, 244, 0.84);
}

.price-card.featured {
  background: var(--black);
  color: var(--white);
  transform: translateY(-10px);
}

.price-card.featured h3,
.price-card.featured p,
.price-card.featured strong {
  color: var(--white);
}

.price-topline {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 16px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.13);
  color: #f4e8dc;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
}

.price-card p {
  color: var(--text-soft);
  font-size: 14px;
}

.price-card strong {
  margin-top: auto;
  padding-top: 26px;
  font-size: 28px;
  letter-spacing: -0.05em;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.steps article {
  padding: 26px;
  background: var(--surface);
  border: 1px solid rgba(223, 210, 194, 0.85);
  border-radius: 26px;
}

.steps span {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.steps p {
  color: var(--text-soft);
  font-size: 14px;
}

.section-photo {
  background:
    radial-gradient(circle at 12% 18%, rgba(180, 135, 95, 0.22), transparent 28%),
    radial-gradient(circle at 88% 22%, rgba(255, 255, 255, 0.08), transparent 22%),
    radial-gradient(circle at 72% 82%, rgba(180, 135, 95, 0.14), transparent 26%),
    linear-gradient(120deg, #171514 0%, #211c19 38%, #2b2521 100%);
  color: var(--white);
}

.photo-grid {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 64px;
  align-items: center;
}

.photo-copy h2,
.photo-copy p,
.section-photo .eyebrow {
  color: var(--white);
}

.section-photo .eyebrow::before {
  background: rgba(255, 255, 255, 0.75);
}

.info-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.info-cards div {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.info-cards strong {
  display: block;
  margin-bottom: 8px;
  color: var(--white);
}

.info-cards span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.68fr 1fr;
  gap: 70px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid rgba(128, 100, 76, 0.22);
  border-radius: 22px;
  background: rgba(255, 250, 244, 0.76);
  overflow: hidden;
}

summary {
  cursor: pointer;
  padding: 22px 24px;
  color: var(--black);
  font-weight: 700;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

details p {
  margin: 0;
  padding: 0 24px 24px;
  font-size: 15px;
}

.final-cta {
  padding: 74px 0;
}

.final-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}

.final-grid h2 {
  max-width: 760px;
  margin-bottom: 16px;
}

.footer {
  padding: 54px 0;
  background: #171514;
  color: rgba(255, 255, 255, 0.74);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 50px;
}

.footer-logo {
  width: 145px;
  margin-bottom: 18px;
  filter: brightness(0) invert(1);
}

.footer strong {
  display: block;
  margin-bottom: 14px;
  color: var(--white);
}

.footer a {
  display: block;
  margin-bottom: 8px;
}

@media (max-width: 1020px) {
  .desktop-nav,
  .header-phone {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-nav.is-open {
    display: grid;
    gap: 2px;
    padding: 0 20px 18px;
  }

  .mobile-nav a {
    padding: 13px 0;
    border-bottom: 1px solid rgba(223, 210, 194, 0.7);
    color: var(--text-soft);
    font-weight: 700;
  }

  .hero-grid,
  .split-grid,
  .photo-grid,
  .faq-grid,
  .final-grid {
    grid-template-columns: 1fr;
  }

  .form-card {
    position: relative;
    top: 0;
  }

  .price-grid,
  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .header-inner {
    height: 66px;
  }

  .brand {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }

  .brand-icon {
    width: 44px;
    height: 44px;
  }

  .footer-logo {
    width: 126px;
  }

  .section,
  .section-light,
  .section-muted {
    padding: 68px 0;
  }

  .hero {
    padding-top: 52px;
  }

  h1 {
    font-size: 44px;
  }

  h2 {
    font-size: 36px;
  }

  .lead {
    font-size: 16px;
  }

  .hero-points,
  .trust-grid,
  .price-grid,
  .steps,
  .info-cards,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .final-grid .btn {
    width: 100%;
  }

  .btn {
    width: 100%;
  }

  .form-card {
    padding: 22px;
    border-radius: 26px;
  }

  .price-card.featured {
    transform: none;
  }
}
