:root {
  --bg: #f7f2ec;
  --beige-50: #faf6f1;
  --beige-100: #e8ddd4;
  --green-50: #eef5e8;
  --green-300: #8db872;
  --green-500: #6b9e52;
  --green-700: #4a7a38;
  --gold-400: #c9a84c;
  --gold-500: #b8943a;
  --brown-700: #4b3621;
  --rose-400: #c49a8c;
  --rose-500: #b8877d;
  --ink: #2c2419;
  --muted: #6b5f55;
  --line: rgba(75, 54, 33, 0.14);
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(44, 36, 25, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Montserrat, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
}

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

button {
  font: inherit;
  cursor: pointer;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px clamp(20px, 5vw, 72px);
  background: rgba(247, 242, 236, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
}

.brand-logo {
  display: block;
  width: auto;
  height: 56px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 32px);
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.nav-links a,
.header-phone,
.button {
  transition: transform 160ms ease, color 160ms ease, background 160ms ease, border-color 160ms ease;
}

.nav-links a:hover,
.header-phone:hover {
  color: var(--green-700);
}

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

.header-phone {
  padding: 10px 17px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--brown-700);
  font-size: 14px;
  font-weight: 700;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: var(--brown-700);
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(200px, 0.5fr);
  align-items: center;
  gap: clamp(24px, 5vw, 64px);
  padding: 120px clamp(20px, 5vw, 72px) 56px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 88% 18%, rgba(107, 158, 82, 0.18), transparent 42%),
    radial-gradient(circle at 8% 82%, rgba(196, 154, 140, 0.16), transparent 38%),
    linear-gradient(135deg, var(--beige-50) 0%, var(--bg) 52%, var(--green-50) 100%);
}

.hero-bg::after {
  content: "";
  position: absolute;
  top: -6%;
  right: -2%;
  width: min(44vw, 380px);
  height: min(44vw, 380px);
  border: 1px solid rgba(44, 36, 25, 0.12);
  border-radius: 50%;
  opacity: 0.5;
}

.hero-content,
.hero-logo {
  position: relative;
  z-index: 2;
}

.hero-logo img {
  width: min(100%, 300px);
  height: auto;
  filter: drop-shadow(0 24px 48px rgba(44, 36, 25, 0.12));
}

.place,
.section-label {
  margin: 0 0 12px;
  color: var(--green-700);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-tagline {
  margin: 0 0 16px;
  color: var(--gold-500);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-weight: 600;
  letter-spacing: -0.02em;
}

h1 {
  max-width: 680px;
  margin-bottom: 24px;
  font-size: clamp(38px, 6.5vw, 68px);
  line-height: 1.06;
  color: var(--brown-700);
}

.hero-copy {
  max-width: 560px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 20px);
  font-weight: 500;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
}

.button:hover,
.header-phone:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: var(--green-500);
  color: var(--white);
  box-shadow: 0 14px 32px rgba(107, 158, 82, 0.28);
}

.button.secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.76);
  color: var(--brown-700);
}

.button.light {
  background: var(--white);
  color: var(--brown-700);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

.featured-promo {
  padding: clamp(56px, 8vw, 96px) clamp(20px, 5vw, 72px);
  background: var(--brown-700);
  color: var(--white);
}

.featured-promo-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.featured-label {
  margin: 0 0 14px;
  color: var(--gold-400);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.featured-promo h2 {
  margin-bottom: 18px;
  font-size: clamp(42px, 8vw, 72px);
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.featured-copy {
  max-width: 560px;
  margin: 0 auto 28px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  font-weight: 500;
}

.featured-copy strong {
  color: var(--gold-400);
}

.intro,
.services-section,
.contact {
  padding: clamp(72px, 10vw, 128px) clamp(20px, 5vw, 72px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.7fr);
  gap: clamp(32px, 8vw, 108px);
  align-items: end;
  background: var(--white);
}

.intro h2,
.section-heading h2,
.contact h2,
.promo-section h2 {
  margin-bottom: 0;
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1.08;
  color: var(--brown-700);
}

.intro > p,
.contact-copy p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
  font-weight: 500;
}

.services-section {
  background: linear-gradient(180deg, var(--green-50), var(--bg));
}

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

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

.service-card {
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
}

.service-number {
  color: var(--green-500);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
}

.service-card h3 {
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.16;
  color: var(--brown-700);
}

.service-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 500;
}

.services-note {
  max-width: 720px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 500;
}

.promo-section {
  position: relative;
  padding: clamp(72px, 10vw, 120px) clamp(20px, 5vw, 72px);
  background:
    radial-gradient(circle at 50% 0%, rgba(196, 154, 140, 0.22), transparent 55%),
    linear-gradient(180deg, var(--beige-100), var(--beige-50));
  text-align: center;
  overflow: hidden;
}

.promo-script {
  margin: 0 0 12px;
  color: var(--white);
  font-family: "Great Vibes", cursive;
  font-size: clamp(42px, 8vw, 72px);
  line-height: 1;
  text-shadow: 0 2px 18px rgba(44, 36, 25, 0.18);
}

.promo-section h2 {
  max-width: 720px;
  margin: 0 auto 44px;
}

.promo-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  max-width: 980px;
  margin: 0 auto;
  text-align: left;
}

.promo-card {
  position: relative;
  padding: 28px 24px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 12px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.promo-card::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--rose-400);
  transform: translateX(-50%);
}

.promo-card h3 {
  margin-bottom: 16px;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--brown-700);
}

.promo-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}

.promo-card li + li {
  margin-top: 6px;
}

.promo-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}

.promo-badge {
  display: inline-block;
  margin: 36px 0 0;
  padding: 10px 22px;
  background: var(--rose-500);
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transform: rotate(-3deg);
}

.proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--green-500);
  color: var(--white);
}

.proof-item {
  display: grid;
  min-height: 190px;
  align-content: center;
  gap: 6px;
  padding: 38px clamp(20px, 5vw, 72px);
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.proof-item:last-child {
  border-right: 0;
}

.proof-item strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(42px, 6vw, 68px);
  font-weight: 700;
  line-height: 1;
  color: var(--gold-400);
}

.proof-item span {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 500;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.6fr);
  gap: clamp(28px, 7vw, 92px);
  align-items: start;
  background: var(--white);
}

.contact h2 {
  margin-bottom: 22px;
}

.contact-panel {
  display: grid;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--green-50);
}

.contact-panel a {
  display: flex;
  min-height: 58px;
  align-items: center;
  padding: 16px 18px;
  border-radius: 8px;
  background: var(--white);
  color: var(--brown-700);
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(44, 36, 25, 0.08);
}

.map-section iframe {
  display: block;
  width: 100%;
  min-height: 380px;
  border: 0;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 5vw, 72px);
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}

body.nav-open {
  overflow: hidden;
}

body.nav-open .nav-links {
  display: flex;
  position: fixed;
  inset: 76px 16px auto;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(247, 242, 236, 0.98);
  box-shadow: var(--shadow);
}

body.nav-open .nav-links a {
  padding: 14px 16px;
  border-radius: 10px;
}

body.nav-open .menu-button span:first-child {
  transform: translateY(7px) rotate(45deg);
}

body.nav-open .menu-button span:last-child {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 1020px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 108px;
  }

  .hero-logo {
    display: none;
  }

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

@media (max-width: 920px) {
  .nav-links {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .intro,
  .contact,
  .proof {
    grid-template-columns: 1fr;
  }

  .proof-item {
    min-height: 150px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .proof-item:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 12px 16px;
  }

  .brand-logo {
    height: 48px;
  }

  .header-phone {
    padding: 9px 12px;
    font-size: 13px;
  }

  .hero {
    padding: 100px 16px 42px;
  }

  h1 {
    font-size: clamp(34px, 11vw, 46px);
  }

  .hero-copy {
    font-size: 16px;
  }

  .button {
    width: 100%;
  }

  .intro,
  .services-section,
  .contact,
  .featured-promo,
  .promo-section {
    padding: 68px 16px;
  }

  .services-grid,
  .promo-cards {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 210px;
  }

  .site-footer {
    flex-direction: column;
    padding: 24px 16px;
  }
}
