:root {
  --bg: #f4efe6;
  --bg-soft: #fbf7ef;
  --dark: #182217;
  --dark-2: #26351f;
  --green: #28452c;
  --green-soft: #dfe9d8;
  --gold: #d4a62a;
  --text: #1d211b;
  --muted: #66705f;
  --line: rgba(24, 34, 23, 0.12);
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(24, 34, 23, 0.12);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(244, 239, 230, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

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

.logo {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--dark);
}

.nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 15px;
  font-weight: 600;
  color: var(--muted);
}

.nav a:hover {
  color: var(--dark);
}

.nav-dropdown {
  position: relative;
  padding: 32px 0;
}

.nav-trigger {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-trigger::after {
  content: "▾";
  font-size: 11px;
  line-height: 1;
  transform: translateY(-1px);
  opacity: 0.75;
}

.nav-dropdown-menu {
  position: absolute;
  top: 78px;
  left: -18px;
  min-width: 230px;
  padding: 12px;
  border-radius: 20px;
  background: rgba(251, 247, 239, 0.98);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 13px 14px;
  border-radius: 14px;
  color: var(--dark);
  font-size: 15px;
  font-weight: 800;
  white-space: nowrap;
}

.nav-dropdown-menu a:hover {
  background: var(--green-soft);
  color: var(--green);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-phone {
  font-size: 16px;
  font-weight: 800;
  color: var(--dark);
  white-space: nowrap;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 14px;
  background: var(--gold);
  color: #16150f;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(212, 166, 42, 0.22);
  white-space: nowrap;
}

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

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--dark);
  margin: 6px auto;
}

.hero {
  position: relative;
  min-height: calc(100vh - 86px);
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background-image:
    linear-gradient(
      90deg,
      rgba(20, 32, 21, 0.82) 0%,
      rgba(20, 32, 21, 0.72) 34%,
      rgba(20, 32, 21, 0.42) 68%,
      rgba(20, 32, 21, 0.28) 100%
    ),
    url("hero-bg.png");
  background-size: cover;
  background-position: center center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 25% 45%, rgba(255, 255, 255, 0.06), transparent 34%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.32));
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 0 90px;
  max-width: 850px;
  margin-left: max(0px, calc((100vw - 1120px) / 2));
}

.eyebrow {
  margin: 0 0 22px;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}

.eyebrow.dark {
  color: var(--green);
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

h1 {
  max-width: 820px;
  margin-bottom: 28px;
  font-size: clamp(48px, 7vw, 88px);
  color: var(--white);
}

h2 {
  font-size: clamp(36px, 4.4vw, 64px);
  color: var(--dark);
}

h3 {
  font-size: 22px;
  line-height: 1.15;
  color: var(--dark);
}

.hero-text {
  max-width: 690px;
  margin-bottom: 34px;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.88);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 900;
  font-size: 15px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 16px 38px rgba(40, 69, 44, 0.28);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.48);
  backdrop-filter: blur(10px);
}

.btn-dark {
  background: var(--dark);
  color: var(--white);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-points span {
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.section {
  padding: 110px 0;
}

.section-head {
  max-width: 840px;
  margin-bottom: 46px;
}

.section-head p {
  max-width: 760px;
  font-size: 18px;
  color: var(--muted);
}

.intro {
  background: var(--bg-soft);
}

.intro-grid,
.result-grid,
.details-grid,
.request-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 70px;
  align-items: start;
}

.intro-text p,
.result-list p,
.detail-list p,
.request-grid p {
  font-size: 18px;
  color: var(--muted);
}

.audience,
.houses,
.quote {
  background: var(--bg);
}

.formats,
.details,
.request {
  background: var(--bg-soft);
}

.cards {
  display: grid;
  gap: 22px;
}

.cards.three {
  grid-template-columns: repeat(3, 1fr);
}

.cards.four {
  grid-template-columns: repeat(4, 1fr);
}

.card {
  min-height: 240px;
  padding: 30px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  box-shadow: 0 12px 36px rgba(24, 34, 23, 0.06);
}

.card p {
  color: var(--muted);
}

.format-card span {
  display: inline-flex;
  margin-bottom: 22px;
  font-weight: 900;
  color: var(--green);
}

.result {
  background: var(--green);
}

.result h2,
.result h3 {
  color: var(--white);
}

.result .eyebrow.dark {
  color: rgba(255, 255, 255, 0.72);
}

.result-list {
  display: grid;
  gap: 26px;
}

.result-list div {
  padding-bottom: 26px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.result-list p {
  color: rgba(255, 255, 255, 0.72);
}

.house-gallery-block {
  padding: 36px;
  margin-top: 30px;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.house-gallery-intro {
  max-width: 740px;
  margin-bottom: 26px;
}

.house-gallery-intro h3 {
  margin-bottom: 12px;
  font-size: 30px;
}

.house-gallery-intro p {
  color: var(--muted);
  font-size: 18px;
}

.photo-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.photo-gallery-large {
  grid-template-columns: repeat(4, 1fr);
}

.photo-gallery img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 20px;
  background: #e7e2d9;
}

.photo-gallery img:first-child {
  grid-column: span 2;
  grid-row: span 2;
  height: 454px;
}

.price-card {
  margin-top: 18px;
  min-height: 454px;
  padding: 30px;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(24, 34, 23, 0.96), rgba(40, 69, 44, 0.92)),
    radial-gradient(circle at top right, rgba(212, 166, 42, 0.24), transparent 42%);
  color: var(--white);
  box-shadow: 0 18px 48px rgba(24, 34, 23, 0.16);
}

.price-card .eyebrow.dark {
  color: rgba(255, 255, 255, 0.64);
}

.price-card-head {
  margin-bottom: 24px;
}

.price-card-head h3 {
  margin-bottom: 0;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  letter-spacing: -0.04em;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.price-item {
  min-height: 116px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.price-item span {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  font-weight: 800;
}

.price-item strong {
  display: block;
  color: var(--white);
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.price-item-wide {
  grid-column: span 2;
  min-height: 104px;
  background: rgba(212, 166, 42, 0.18);
  border-color: rgba(212, 166, 42, 0.28);
}

.price-note {
  margin-top: 24px;
  padding: 22px 26px;
  border-radius: 22px;
  background: #fff7dc;
  border: 1px solid rgba(212, 166, 42, 0.34);
  color: var(--dark);
  font-size: 17px;
}

.price-note strong {
  color: var(--green);
}

.detail-list {
  display: grid;
  gap: 18px;
}

.detail-list div {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
}

.detail-list span {
  color: var(--green);
  font-weight: 900;
}

.detail-list a {
  color: var(--green);
  font-weight: 900;
}

.tour-cards {
  display: grid;
  gap: 28px;
}

.tour-card {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 30px;
  align-items: center;
  padding: 34px;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.tour-card-text p {
  color: var(--muted);
}

.tour-frame {
  overflow: hidden;
  min-height: 360px;
  border-radius: 26px;
  background: #e7e2d9;
}

.tour-frame iframe {
  width: 100%;
  height: 420px;
  border: 0;
}

.tour-fallback {
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 36px;
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(24, 34, 23, 0.76), rgba(40, 69, 44, 0.82)),
    url("https://www.dacha96.com.ua/static/media/dacha9ServiceImage8.2bc1b91ddc8f58cb7e70.webp");
  background-size: cover;
  background-position: center;
  color: var(--white);
  text-align: center;
}

.tour-fallback p {
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.tour-fallback strong {
  display: block;
  margin-bottom: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  line-height: 1.05;
}

.tour-fallback span {
  font-weight: 900;
  color: #f4d36d;
}

.quote {
  padding: 80px 0;
}

.quote-box {
  padding: 56px;
  border-radius: 34px;
  background: var(--dark);
  color: var(--white);
  box-shadow: var(--shadow);
}

blockquote {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 4vw, 58px);
  line-height: 1.06;
  letter-spacing: -0.045em;
}

.contact-card {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.contact-card a {
  display: inline-flex;
  width: fit-content;
  color: var(--green);
  font-weight: 900;
  border-bottom: 1px solid currentColor;
}

.form {
  display: grid;
  gap: 18px;
  padding: 34px;
  border-radius: 34px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.form label {
  display: grid;
  gap: 8px;
  font-size: 14px;
  font-weight: 900;
  color: var(--dark);
}

.form input,
.form select,
.form textarea {
  width: 100%;
  border: 1px solid rgba(24, 34, 23, 0.16);
  border-radius: 16px;
  padding: 15px 16px;
  font: inherit;
  color: var(--text);
  background: #fbfaf7;
  outline: none;
}

.form input:focus,
.form select:focus,
.form textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(40, 69, 44, 0.1);
}

.form textarea {
  resize: vertical;
}

.form-button {
  width: 100%;
  margin-top: 6px;
}

.form-note {
  margin: 0;
  font-size: 14px !important;
  color: var(--muted);
}

.site-footer {
  padding: 46px 0;
  background: var(--dark);
  color: var(--white);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: flex-start;
}

.footer-inner strong {
  display: block;
  margin-bottom: 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
}

.footer-inner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px 22px;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 700;
}

.footer-links a:hover {
  color: var(--white);
}

@media (max-width: 1020px) {
  .header-inner {
    height: 78px;
  }

  .nav,
  .header-actions {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .site-header.menu-active .nav,
  .site-header.menu-active .header-actions {
    position: fixed;
    left: 20px;
    right: 20px;
    display: grid;
    gap: 12px;
    padding: 22px;
    border-radius: 28px;
    background: rgba(244, 239, 230, 0.98);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .site-header.menu-active .nav {
    top: 92px;
  }

  .site-header.menu-active .header-actions {
    top: 390px;
  }

  .site-header.menu-active .nav-dropdown {
    padding: 0;
  }

  .site-header.menu-active .nav-dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    min-width: 0;
    padding: 8px 0 0 12px;
    border: 0;
    box-shadow: none;
    background: transparent;
  }

  .site-header.menu-active .nav-dropdown-menu a {
    padding: 9px 10px;
    font-size: 14px;
  }

  .hero {
    min-height: auto;
    background-position: center center;
  }

  .hero-content {
    padding: 92px 0 70px;
    margin-left: auto;
  }

  h1 {
    font-size: clamp(44px, 9vw, 74px);
  }

  .intro-grid,
  .result-grid,
  .details-grid,
  .request-grid,
  .tour-card {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .cards.three,
  .cards.four {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .photo-gallery img:first-child {
    grid-column: span 2;
    height: 420px;
  }

  .price-card {
    min-height: auto;
  }
}

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

  .logo {
    font-size: 26px;
  }

  .hero {
    background-image:
      linear-gradient(
        180deg,
        rgba(20, 32, 21, 0.76) 0%,
        rgba(20, 32, 21, 0.72) 46%,
        rgba(20, 32, 21, 0.62) 100%
      ),
      url("hero-bg.png");
    background-position: center center;
  }

  .hero-content {
    padding: 62px 0 54px;
  }

  h1 {
    font-size: 42px;
    line-height: 1.02;
    letter-spacing: -0.048em;
  }

  h2 {
    font-size: 36px;
    line-height: 1.04;
  }

  h3 {
    font-size: 21px;
  }

  .hero-text {
    font-size: 17px;
  }

  .hero-actions,
  .hero-points {
    display: grid;
  }

  .btn {
    width: 100%;
    min-height: 52px;
    padding: 0 20px;
  }

  .section {
    padding: 72px 0;
  }

  .cards.three,
  .cards.four {
    grid-template-columns: 1fr;
  }

  .card {
    min-height: auto;
    padding: 24px;
  }

  .house-gallery-block {
    padding: 18px;
    border-radius: 24px;
  }

  .house-gallery-intro h3 {
    font-size: 24px;
  }

  .photo-gallery,
  .photo-gallery-large {
    grid-template-columns: 1fr;
  }

  .photo-gallery img,
  .photo-gallery img:first-child {
    grid-column: auto;
    grid-row: auto;
    height: 260px;
  }

  .price-card {
    min-height: auto;
    padding: 22px;
    border-radius: 22px;
  }

  .price-card-head h3 {
    font-size: 28px;
  }

  .price-grid {
    grid-template-columns: 1fr;
  }

  .price-item,
  .price-item-wide {
    grid-column: auto;
    min-height: auto;
  }

  .price-item strong {
    font-size: 26px;
  }

  .price-note {
    padding: 18px;
    font-size: 15px;
  }

  .detail-list div {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 20px;
  }

  .tour-card,
  .form,
  .quote-box {
    padding: 22px;
    border-radius: 24px;
  }

  .tour-frame,
  .tour-fallback {
    min-height: 280px;
  }

  .tour-frame iframe {
    height: 320px;
  }

  .tour-fallback strong {
    font-size: 28px;
  }

  .footer-inner {
    display: grid;
  }

  .footer-links {
    justify-content: flex-start;
  }
}