:root {
  --bg: #f7f2e8;
  --bg-soft: #fffdf8;
  --text: #1b2a24;
  --muted: #50665c;
  --accent: #2f6b53;
  --accent-2: #3f8868;
  --accent-ink: #103023;
  --line: #d7d2c8;
  --card: #ffffff;
  --warn: #d9734f;
  --radius: 20px;
  --radius-sm: 14px;
  --shadow: 0 20px 50px rgba(24, 52, 40, 0.12);
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  background: radial-gradient(circle at 10% 0%, #fff8eb 0%, #f7f2e8 48%, #f1ebdf 100%);
  color: var(--text);
  line-height: 1.45;
}

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

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

p,
ul,
h1,
h2,
h3 {
  margin: 0;
}

ul {
  padding: 0;
  list-style: none;
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.section {
  padding: 88px 0;
}

.section-head {
  max-width: 800px;
  margin-bottom: 36px;
}

.eyebrow {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  font-size: 12px;
  margin-bottom: 10px;
}

h1,
h2,
h3 {
  font-family: "Oranienbaum", serif;
  letter-spacing: 0.01em;
  font-weight: 400;
}

h1 {
  font-size: clamp(36px, 4.6vw, 64px);
  line-height: 0.96;
  color: #f5f4ee;
}

h2 {
  font-size: clamp(32px, 3.7vw, 52px);
  line-height: 0.97;
}

h3 {
  font-size: clamp(26px, 2.2vw, 34px);
  line-height: 1.03;
}

.btn {
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  color: #f6f8f4;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  padding: 15px 24px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  box-shadow: 0 16px 32px rgba(52, 112, 84, 0.36);
}

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

.btn:active {
  transform: translateY(0);
}

.btn-small {
  padding: 12px 18px;
  font-size: 14px;
}

.btn-ghost {
  background: transparent;
  color: #f6f8f4;
  border: 1px solid rgba(246, 248, 244, 0.5);
  box-shadow: none;
}

.link-phone {
  font-weight: 700;
  font-size: 15px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-weight: 700;
  margin-top: 12px;
}

.text-link::after {
  content: "→";
}

.promo-line {
  background: linear-gradient(90deg, #f8d9c9 0%, #faedd8 35%, #f8d9c9 100%);
  color: #4f2b1b;
  display: flex;
  justify-content: center;
  gap: 22px;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 600;
  flex-wrap: wrap;
}

.promo-line strong {
  color: #3b2518;
}

.promo-timer {
  font-variant-numeric: tabular-nums;
}

.header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(173, 162, 145, 0.36);
  background: rgba(249, 244, 234, 0.88);
  backdrop-filter: blur(11px);
}

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

.logo img {
  width: 160px;
  height: auto;
}

.nav {
  display: flex;
  gap: 24px;
  color: #233b31;
  font-weight: 600;
  font-size: 14px;
}

.nav a {
  opacity: 0.86;
  transition: opacity 0.2s ease;
}

.nav a:hover {
  opacity: 1;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #172d24;
}

.hero {
  position: relative;
  min-height: 820px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(104deg, rgba(12, 20, 17, 0.88) 0%, rgba(13, 21, 18, 0.75) 39%, rgba(14, 26, 20, 0.44) 70%, rgba(15, 28, 22, 0.3) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr minmax(320px, 420px);
  gap: 28px;
  padding: 72px 0 56px;
}

.hero-left {
  max-width: 760px;
  padding-top: 50px;
}

.hero-left .eyebrow {
  color: #dce9de;
}

.hero-subtitle {
  margin-top: 18px;
  color: #e4ebdf;
  max-width: 640px;
  font-size: 19px;
}

.hero-list {
  margin-top: 18px;
  display: grid;
  gap: 9px;
  color: #e7efe5;
}

.hero-list li {
  padding-left: 30px;
  position: relative;
}

.hero-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #e0f4e6 0%, #87c09d 48%, #4b8969 100%);
  box-shadow: 0 0 0 4px rgba(188, 229, 204, 0.22);
}

.hero-cta {
  margin-top: 28px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-metrics {
  margin-top: 32px;
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hero-metrics article {
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(8px);
  padding: 14px;
}

.metric {
  font-size: clamp(24px, 3.2vw, 36px);
  color: #eef4ea;
  font-weight: 800;
}

.metric-label {
  color: #d4e0d8;
  font-size: 13px;
  margin-top: 4px;
}

.lead-card {
  border-radius: var(--radius);
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.98) 0%, rgba(246, 250, 246, 0.95) 100%);
  box-shadow: var(--shadow);
  border: 1px solid rgba(191, 213, 198, 0.7);
  padding: 30px;
  align-self: start;
  margin-top: 30px;
}

.lead-card h2 {
  font-size: clamp(30px, 2.6vw, 40px);
}

.lead-card > p {
  color: var(--muted);
  margin-top: 10px;
}

#lead-form {
  margin-top: 20px;
  display: grid;
  gap: 14px;
}

#lead-form label {
  display: grid;
  gap: 7px;
  font-size: 14px;
  color: var(--accent-ink);
  font-weight: 600;
}

#lead-form input,
#lead-form select {
  width: 100%;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
  border-radius: 11px;
  padding: 12px 13px;
  font: inherit;
}

#lead-form input:focus,
#lead-form select:focus {
  border-color: rgba(56, 117, 89, 0.8);
  outline: 3px solid rgba(122, 181, 146, 0.24);
}

.form-note {
  font-size: 12px;
  color: #6b7f75;
}

.form-result {
  min-height: 22px;
  font-size: 14px;
  font-weight: 700;
}

.form-result.success {
  color: #1f7c51;
}

.form-result.error {
  color: #ad4f33;
}

.services {
  background: linear-gradient(180deg, #f6f2e9 0%, #fefcf8 100%);
}

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

.service-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  border: 1px solid #ece6da;
  box-shadow: 0 12px 32px rgba(33, 56, 45, 0.08);
  transition: transform 0.25s ease;
}

.service-card:hover {
  transform: translateY(-4px);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-body {
  padding: 20px;
}

.service-body p {
  color: #4f645b;
  margin-top: 8px;
}

.price {
  margin-top: 12px;
  color: var(--accent);
  font-weight: 800;
}

.offers {
  background: #fffaf1;
}

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

.offer-card {
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid #ede6d8;
  padding: 24px;
  box-shadow: 0 8px 28px rgba(23, 42, 33, 0.08);
}

.offer-card ul {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}

.offer-card li {
  padding-left: 24px;
  position: relative;
}

.offer-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.offer-card .btn {
  margin-top: 16px;
}

.offer-card.accent {
  background: linear-gradient(155deg, #fff9ef 0%, #f6f0e1 100%);
  border-color: #dfcfb1;
}

.benefits {
  background: linear-gradient(180deg, #fef9ef 0%, #f4efe4 100%);
}

.benefit-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.benefit-copy {
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid #ede6d8;
  padding: 34px;
}

.benefit-copy p {
  margin-top: 14px;
  color: #56685f;
}

.benefit-copy .btn {
  margin-top: 22px;
}

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

.benefit-cards article {
  border-radius: var(--radius-sm);
  background: #fff;
  border: 1px solid #ede6d8;
  padding: 20px;
}

.benefit-cards p {
  margin-top: 8px;
  color: #5d7067;
}

.gallery {
  background: linear-gradient(180deg, #f4efe4 0%, #f7f2e8 100%);
}

.gallery-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1.2fr 1fr 1fr;
}

.gallery-grid img {
  border-radius: 16px;
  border: 1px solid #e8e0d2;
  min-height: 230px;
  height: 100%;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(30, 48, 39, 0.12);
}

.reviews {
  background: #fffaf1;
}

.review-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.review-card {
  border-radius: var(--radius-sm);
  background: #fff;
  border: 1px solid #ede6d8;
  padding: 22px;
  box-shadow: 0 8px 24px rgba(34, 55, 44, 0.07);
}

.review-card p {
  color: #44574f;
  font-size: 16px;
}

.review-card cite {
  margin-top: 12px;
  display: inline-block;
  font-style: normal;
  color: #1d352b;
  font-weight: 700;
}

.faq {
  background: linear-gradient(180deg, #fffaf0 0%, #f3ece1 100%);
}

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

.faq-list details {
  border-radius: 14px;
  background: #fff;
  border: 1px solid #e9e1d4;
  padding: 16px 18px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 700;
  color: #1d352c;
  list-style: none;
  position: relative;
  padding-right: 30px;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  font-size: 20px;
  color: var(--accent);
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list p {
  color: #55685f;
  margin-top: 10px;
}

.final-cta {
  padding-top: 26px;
  background: #f3ece1;
}

.final-box {
  border-radius: 28px;
  background: linear-gradient(120deg, #1d3d31 0%, #2f6b53 100%);
  color: #ecf3ee;
  padding: 44px 36px;
  text-align: center;
  box-shadow: 0 26px 50px rgba(27, 58, 44, 0.32);
}

.final-box p {
  color: #d4e2d7;
  margin-top: 10px;
  font-size: 18px;
}

.final-actions {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.footer {
  background: #101814;
  color: #d8e5db;
  padding-top: 38px;
}

.footer-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 20px;
  align-items: start;
}

.footer-logo {
  width: 180px;
  margin-bottom: 20px;
}

.footer p {
  color: #d5e1d8;
  margin-top: 10px;
}

.footer a {
  color: #f0f7f2;
  font-weight: 700;
}

.map-wrap {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(210, 233, 219, 0.18);
  min-height: 300px;
}

.map-wrap iframe {
  border: 0;
  width: 100%;
  height: 100%;
  min-height: 300px;
}

.footer-bottom {
  margin-top: 28px;
  border-top: 1px solid rgba(192, 218, 202, 0.18);
  padding: 14px 16px;
  text-align: center;
  color: #b9cabf;
}

.floating-cta {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 35;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  color: #f6f8f4;
  text-align: center;
  font-weight: 800;
  border-radius: 999px;
  padding: 14px 20px;
  box-shadow: 0 14px 34px rgba(48, 108, 80, 0.45);
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: 0.24s ease;
}

.floating-cta.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .hero-content {
    grid-template-columns: 1fr;
  }

  .hero-left {
    padding-top: 30px;
  }

  .lead-card {
    margin-top: 4px;
    max-width: 640px;
  }

  .service-grid,
  .offer-grid,
  .review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .gallery-grid img:last-child {
    grid-column: span 2;
  }

  .benefit-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .section {
    padding: 72px 0;
  }

  .nav {
    display: none;
  }

  .header-inner {
    min-height: 68px;
  }

  .header-actions .btn {
    display: none;
  }

  .hero {
    min-height: 0;
  }

  .hero-content {
    padding: 46px 0 34px;
  }

  .hero-metrics {
    grid-template-columns: 1fr 1fr;
  }

  .hero-metrics article:last-child {
    grid-column: span 2;
  }

  .service-grid,
  .offer-grid,
  .review-grid,
  .benefit-cards,
  .gallery-grid,
  .footer-layout {
    grid-template-columns: 1fr;
  }

  .gallery-grid img:last-child {
    grid-column: auto;
  }

  .promo-line {
    justify-content: flex-start;
    gap: 8px;
    padding: 8px 14px;
  }

  .lead-card {
    padding: 24px 20px;
  }

  .final-box {
    text-align: left;
    padding: 32px 22px;
  }

  .final-actions {
    justify-content: flex-start;
  }
}

@media (min-width: 821px) {
  .floating-cta {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
