:root {
  --green: #0b4a1f;
  --green-2: #1f6b34;
  --green-3: #7fa64a;
  --black: #111;
  --gray: #555;
  --warm: #f7f4ed;
  --beige: #efe8da;
  --white: #fff;
  --shadow: 0 28px 80px rgba(11, 74, 31, 0.14);
  --soft-shadow: 0 18px 45px rgba(17, 17, 17, 0.08);
  --radius: 28px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Inter", Arial, sans-serif;
  color: var(--black);
  background:
    radial-gradient(circle at 8% 10%, rgba(127, 166, 74, 0.18), transparent 22rem),
    radial-gradient(circle at 92% 35%, rgba(31, 107, 52, 0.12), transparent 28rem),
    linear-gradient(135deg, #fbfaf6 0%, var(--warm) 52%, #f0eadf 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.34;
  z-index: -1;
  background-image:
    linear-gradient(rgba(11, 74, 31, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 74, 31, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1180px, calc(100% - 32px));
  height: 78px;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 14px 10px 22px;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 24px;
  background: rgba(247, 244, 237, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 48px rgba(17, 17, 17, 0.08);
  animation: headerDrop 0.75s ease both;
}

.site-header.is-scrolled {
  top: 10px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 38px rgba(17, 17, 17, 0.12);
}

.brand img {
  width: 212px;
  max-height: 58px;
  object-fit: contain;
  object-position: left center;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  font-weight: 800;
  color: rgba(17, 17, 17, 0.72);
}

.nav a {
  position: relative;
  transition: color 0.25s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  border-radius: 99px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav a:hover { color: var(--green); }
.nav a:hover::after { transform: scaleX(1); }

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

.phone {
  font-weight: 900;
  white-space: nowrap;
  color: var(--green);
}

.burger {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 15px;
  background: var(--green);
  padding: 12px;
}

.burger span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: #fff;
  border-radius: 99px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 26px;
  border: 0;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--green), var(--green-2));
  color: #fff;
  font-family: inherit;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0;
  box-shadow: 0 16px 34px rgba(11, 74, 31, 0.26);
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.btn:hover {
  transform: translateY(-3px);
  filter: saturate(1.08);
  box-shadow: 0 20px 48px rgba(11, 74, 31, 0.36);
}

.btn-small {
  min-height: 46px;
  padding: 0 18px;
  border-radius: 15px;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.74);
  color: var(--green);
  border: 1px solid rgba(11, 74, 31, 0.18);
  box-shadow: 0 16px 36px rgba(17, 17, 17, 0.08);
}

.btn-light {
  background: #fff;
  color: var(--green);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
}

.section-wide,
.section {
  position: relative;
  width: calc(100% - 48px);
  margin: 0 auto;
}

.section {
  padding: 58px 0;
}

.hero {
  width: 100%;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 420px minmax(0, 1fr);
  align-items: start;
  gap: 0;
  padding: 126px clamp(24px, 5vw, 96px) 26px;
  overflow: hidden;
  border-radius: 0 0 42px 42px;
  background: #101810;
  box-shadow: 0 34px 90px rgba(11, 74, 31, 0.18);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  display: none;
  background:
    radial-gradient(circle at 18% 24%, rgba(247, 244, 237, 0.98), rgba(247, 244, 237, 0.88) 22%, rgba(247, 244, 237, 0.36) 45%, transparent 68%),
    linear-gradient(90deg, rgba(247, 244, 237, 0.98) 0%, rgba(247, 244, 237, 0.92) 34%, rgba(239, 232, 218, 0.32) 56%, rgba(11, 74, 31, 0.28) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.38));
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(11, 74, 31, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 74, 31, 0.08) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(90deg, #000 0%, #000 32%, transparent 62%);
}

.ambient {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  filter: blur(44px);
  opacity: 0.3;
  z-index: -1;
  background: var(--green-3);
}

.ambient-one { left: -90px; top: 100px; }
.ambient-two { right: -120px; bottom: 90px; background: var(--green); opacity: 0.18; }

.eyebrow {
  margin: 0 0 16px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--green);
}

.eyebrow.light { color: rgba(255, 255, 255, 0.82); }

.hero-title,
h2 {
  margin: 0;
  font-family: "Oswald", "Manrope", Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.92;
  text-transform: uppercase;
}

.hero-title {
  margin: 0 0 24px;
  max-width: 420px;
  color: var(--green);
  font-size: clamp(24px, 2.35vw, 36px);
  line-height: 1.05;
  text-wrap: balance;
}

h2 {
  font-size: clamp(42px, 5.2vw, 82px);
}

.hero-title span,
h2 span { color: var(--green); }

.hero-title span {
  display: block;
}

.hero-ribbon {
  display: inline-flex;
  max-width: 420px;
  margin: 0 0 30px;
  padding: 18px 22px;
  border-radius: 18px;
  background: var(--green);
  color: #fff;
  font-family: "Oswald", sans-serif;
  font-size: clamp(30px, 4.2vw, 58px);
  font-weight: 700;
  line-height: 1.08;
  box-shadow: 0 18px 42px rgba(11, 74, 31, 0.22);
}

.hero-text {
  max-width: 610px;
  margin: 0 0 24px;
  color: var(--gray);
  font-size: 18px;
  line-height: 1.65;
}

.hero-price {
  position: absolute;
  right: clamp(24px, 20vw, 370px);
  bottom: 22px;
  z-index: 5;
  display: inline-grid;
  min-width: min(560px, 44vw);
  gap: 4px;
  margin: 0;
  padding: 28px 42px 24px;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(11, 74, 31, 0.98), rgba(6, 47, 20, 0.98)),
    var(--green);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: 0 24px 58px rgba(11, 74, 31, 0.36);
}

.hero-price strong {
  font-family: "Oswald", sans-serif;
  font-size: clamp(70px, 7.2vw, 126px);
  color: #fff;
  line-height: 0.95;
  white-space: nowrap;
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.hero-price span {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 900;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-copy {
  position: relative;
  z-index: 4;
  max-width: 430px;
  padding: 0;
}

.hero-facts {
  display: grid;
  gap: 22px;
}

.hero-fact {
  display: grid;
  grid-template-columns: 76px 1fr;
  align-items: center;
  gap: 16px;
}

.hero-fact-icon {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border: 3px solid var(--green);
  border-radius: 50%;
  color: var(--green);
  background: rgba(255, 255, 255, 0.46);
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
}

.hero-fact p {
  display: grid;
  gap: 3px;
  margin: 0;
}

.hero-fact strong {
  color: #111;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1;
  font-weight: 1000;
}

.hero-fact em {
  color: #111;
  font-size: clamp(19px, 2vw, 28px);
  font-style: normal;
  line-height: 1.18;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 2;
  min-height: 100%;
  overflow: hidden;
  border-radius: 0;
  box-shadow: none;
  transform-origin: center;
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 100vh;
  object-fit: cover;
  object-position: 58% 50%;
  transition: transform 1.6s ease;
  animation: heroZoom 7s ease both;
}

.hero-media:hover img { transform: scale(1.045); }

.photo-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(247, 244, 237, 0.88) 0%, rgba(247, 244, 237, 0.72) 21%, rgba(247, 244, 237, 0.2) 34%, rgba(247, 244, 237, 0.02) 54%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(0, 0, 0, 0.04));
}

.section-heading {
  max-width: 900px;
  margin-bottom: 28px;
}

.section-heading p:not(.eyebrow),
.editorial-copy p,
.whitebox-copy p,
.company-copy p,
.lead-copy p {
  color: var(--gray);
  font-size: 18px;
  line-height: 1.72;
}

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

.feature-card,
.spec-card,
.mini-grid article {
  position: relative;
  overflow: hidden;
  min-height: 176px;
  padding: 24px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(11, 74, 31, 0.08);
  box-shadow: var(--soft-shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.feature-card::before,
.spec-card::before {
  content: "";
  position: absolute;
  inset: auto -30% -60% 20%;
  height: 160px;
  background: radial-gradient(circle, rgba(127, 166, 74, 0.18), transparent 64%);
}

.feature-card:hover,
.spec-card:hover,
.mini-grid article:hover {
  transform: translateY(-8px);
  border-color: rgba(11, 74, 31, 0.2);
  box-shadow: 0 28px 70px rgba(11, 74, 31, 0.16);
}

.icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-2));
  color: #fff;
  font-weight: 1000;
  box-shadow: 0 12px 28px rgba(11, 74, 31, 0.22);
  transition: transform 0.25s ease;
}

.feature-card:hover .icon,
.spec-card:hover .icon { transform: scale(1.08); }

.feature-card h3,
.spec-card strong,
.mini-grid strong,
.company-copy h2,
.lead-copy h2 {
  margin: 0 0 12px;
}

.feature-card h3,
.whitebox-copy h3,
.editorial-copy h3,
.price-card h3 {
  font-size: 22px;
  line-height: 1.25;
}

.feature-card p,
.spec-card span,
.mini-grid span {
  position: relative;
  z-index: 1;
  display: block;
  margin: 0;
  color: var(--gray);
  line-height: 1.62;
}

.visit-cards .feature-card {
  min-height: 0;
  padding: 14px 14px 22px;
}

.visit-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  margin-bottom: 20px;
  border-radius: 22px;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 18px 46px rgba(17, 17, 17, 0.12);
  transition: transform 0.35s ease;
}

.visit-card:nth-child(2) img {
  object-position: 72% 54%;
}

.visit-card:hover img {
  transform: scale(1.025);
}

.visit-card h3,
.visit-card p {
  padding: 0 12px;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

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

.spec-card strong {
  position: relative;
  z-index: 1;
  display: block;
  font-family: "Oswald", sans-serif;
  font-size: 32px;
  line-height: 1;
  color: var(--green);
}

.editorial,
.whitebox,
.lead {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 34px;
  align-items: stretch;
}

.company {
  display: block;
}

.editorial,
.whitebox {
  min-height: 500px;
}

.editorial-copy,
.whitebox-copy,
.company-copy,
.lead-copy {
  height: 100%;
  padding: 34px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--soft-shadow);
}

.editorial-copy,
.whitebox-copy {
  display: flex;
  min-height: 500px;
  flex-direction: column;
  justify-content: center;
}

.editorial-copy h2,
.whitebox-copy h2 {
  font-size: clamp(42px, 4vw, 66px);
  line-height: 1.01;
}

.editorial-image,
.whitebox-media,
.kitchen-collage {
  position: relative;
  overflow: hidden;
  height: 100%;
  min-height: 500px;
  border-radius: 34px;
  box-shadow: 0 34px 90px rgba(17, 17, 17, 0.16);
}

.editorial-image img,
.whitebox-media img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.kitchen-collage {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 16px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.74);
}

.kitchen-collage img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  min-height: 0;
  border-radius: 24px;
  object-fit: cover;
  box-shadow: 0 18px 46px rgba(17, 17, 17, 0.1);
  transition: transform 0.45s ease;
}

.kitchen-collage img:nth-child(1) {
  object-position: 48% 50%;
}

.kitchen-collage img:nth-child(2) {
  object-position: 44% 50%;
}

.kitchen-collage img:nth-child(3) {
  object-position: 50% 50%;
}

.kitchen-collage img:nth-child(4) {
  object-position: 72% 54%;
}

.kitchen-collage:hover img {
  transform: scale(1.018);
}

.editorial-image img {
  object-position: 50% 54%;
}

.whitebox-media img {
  object-position: 50% 52%;
}

.editorial-image:hover img,
.whitebox-media:hover img { transform: scale(1.045); }

.image-note {
  position: absolute;
  right: 24px;
  bottom: 24px;
  max-width: 330px;
  padding: 18px 22px;
  border-radius: 20px;
  background: rgba(11, 74, 31, 0.86);
  color: #fff;
  font-family: "Oswald", sans-serif;
  font-size: 28px;
  line-height: 1.05;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 12px 14px 12px 44px;
  border-radius: 16px;
  background: rgba(239, 232, 218, 0.55);
  color: var(--gray);
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  width: 16px;
  height: 16px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: var(--green);
  box-shadow: inset 0 0 0 5px rgba(255, 255, 255, 0.75);
}

.plan-layout {
  display: grid;
  grid-template-columns: 1.45fr 0.55fr;
  gap: 22px;
  align-items: center;
}

.plan-image {
  padding: 14px;
  border-radius: 34px;
  background: #fff;
  box-shadow: var(--shadow);
}

.plan-image img {
  width: 100%;
  border-radius: 24px;
  background: #fff;
}

.plan-list {
  padding: 26px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--soft-shadow);
}

.plan-list .btn { margin-top: 24px; width: 100%; }

.whitebox {
  display: grid;
  grid-template-columns: minmax(420px, 0.54fr) minmax(0, 0.46fr);
  min-height: 760px;
  padding: 0;
  border-radius: 38px;
  overflow: hidden;
  background: #efe8da;
  box-shadow: 0 34px 90px rgba(17, 17, 17, 0.12), inset 0 0 0 1px rgba(11, 74, 31, 0.07);
}

.whitebox::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(247, 244, 237, 0.98) 0%, rgba(247, 244, 237, 0.92) 34%, rgba(247, 244, 237, 0.52) 52%, rgba(247, 244, 237, 0.06) 74%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(11, 74, 31, 0.06));
}

.whitebox-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.whitebox-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 50%;
}

.whitebox-copy {
  position: relative;
  z-index: 2;
  grid-column: 1;
  width: min(720px, 100%);
  min-height: 760px;
  padding: 58px 52px;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.whitebox-points {
  display: grid;
  gap: 0;
  margin-top: 30px;
  max-width: 660px;
}

.whitebox-points article {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 22px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid rgba(11, 74, 31, 0.28);
}

.whitebox-points article:first-child {
  padding-top: 0;
}

.whitebox-points article:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.whitebox-icon {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-2));
  color: #fff;
  font-size: 34px;
  line-height: 1;
  box-shadow: 0 14px 30px rgba(11, 74, 31, 0.2);
}

.whitebox-points strong {
  display: block;
  margin-bottom: 6px;
  color: var(--black);
  font-size: 24px;
  line-height: 1.18;
  font-weight: 1000;
}

.whitebox-points strong::first-line {
  color: var(--green);
}

.whitebox-points span {
  display: block;
  color: var(--gray);
  font-size: 17px;
  line-height: 1.45;
}

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

.mini-grid article {
  min-height: 160px;
  padding: 20px;
}

.lifestyle {
  width: 100%;
  min-height: 680px;
  margin-top: 40px;
  overflow: hidden;
  display: grid;
  align-items: center;
}

.lifestyle > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 64% 50%;
  filter: saturate(0.98) brightness(0.88);
}

.lifestyle::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11, 74, 31, 0.55) 0%, rgba(11, 74, 31, 0.22) 36%, rgba(0, 0, 0, 0.08) 58%, rgba(0, 0, 0, 0.02) 100%);
}

.lifestyle-card {
  position: relative;
  z-index: 1;
  width: min(640px, calc(100% - 32px));
  margin-left: max(16px, calc((100vw - 1180px) / 2 - 38px));
  padding: 42px;
  border-radius: 34px;
  color: #fff;
  background: rgba(11, 74, 31, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(18px);
}

.lifestyle-card h2 span { color: #fff; }
.lifestyle-card p:not(.eyebrow) { font-size: 22px; line-height: 1.65; }

.price-card {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 32px;
  padding: 48px;
  border-radius: 38px;
  color: #fff;
  background:
    radial-gradient(circle at 0 0, rgba(127, 166, 74, 0.36), transparent 34rem),
    linear-gradient(135deg, var(--green), #062f14);
  box-shadow: 0 34px 90px rgba(11, 74, 31, 0.28);
}

.price-card h2 {
  font-size: clamp(54px, 7.2vw, 116px);
  color: #fff;
  text-shadow: 0 14px 36px rgba(0, 0, 0, 0.22);
  white-space: nowrap;
}

.price-card h2 span {
  color: #fff;
}

.price-card p { color: rgba(255, 255, 255, 0.78); line-height: 1.72; }

.price-card ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.price-card li {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-weight: 900;
}

.price-note {
  margin: 18px auto 0;
  max-width: 720px;
  text-align: center;
  color: var(--gray);
  font-weight: 800;
}

.center { text-align: center; margin-top: 30px; }

.company-copy {
  overflow: hidden;
  min-height: auto;
  padding: clamp(34px, 4vw, 58px);
  text-align: left;
}

.company-mark {
  width: clamp(170px, 15vw, 250px);
  max-height: 120px;
  margin: 0 0 18px;
  object-fit: contain;
  object-position: left center;
}

.company-copy h2 {
  max-width: 1500px;
  font-size: clamp(54px, 7.2vw, 124px);
  line-height: 0.93;
}

.company-copy p:not(.eyebrow) {
  max-width: 1280px;
}

.company-copy h2 span {
  display: block;
  color: var(--green);
}

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

.trust-grid span {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(239, 232, 218, 0.66);
  color: var(--green);
  font-weight: 900;
}

.main-site {
  position: relative;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 22px;
  overflow: hidden;
  padding: 32px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 14% 18%, rgba(127, 166, 74, 0.24), transparent 34%),
    linear-gradient(135deg, #fff 0%, #f7f4ed 48%, #efe8da 100%);
  box-shadow: var(--soft-shadow);
}

.main-site::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(11, 74, 31, 0.12);
  border-radius: 28px;
  pointer-events: none;
}

.main-site-copy,
.main-site-actions {
  position: relative;
  z-index: 1;
}

.main-site-copy h2 {
  margin: 0 0 16px;
  font-family: "Oswald", "Manrope", Arial, sans-serif;
  font-size: clamp(40px, 4.2vw, 68px);
  line-height: 0.98;
  letter-spacing: 0;
  text-transform: uppercase;
}

.main-site-copy h2 span {
  color: var(--green);
}

.main-site-copy p:not(.eyebrow) {
  max-width: 620px;
  margin: 0;
  color: var(--gray);
  font-size: 17px;
  line-height: 1.58;
}

.main-site-actions {
  display: grid;
  gap: 14px;
}

.main-site-link {
  display: grid;
  gap: 8px;
  min-height: 88px;
  align-content: center;
  padding: 18px 22px;
  border: 1px solid rgba(11, 74, 31, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 46px rgba(11, 74, 31, 0.08);
  color: var(--black);
  text-decoration: none;
  transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
}

.main-site-link:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 60px rgba(11, 74, 31, 0.16);
  background: #fff;
}

.main-site-link.primary {
  background: var(--green);
  color: #fff;
}

.main-site-link span {
  color: inherit;
  opacity: 0.72;
  font-size: 13px;
  font-weight: 1000;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.main-site-link strong {
  font-size: 22px;
  line-height: 1.2;
}

.lead {
  grid-template-columns: 0.85fr 1.15fr;
  align-items: stretch;
}

.lead-copy,
.lead-form {
  min-height: 560px;
}

.message-card {
  margin-top: 28px;
  padding: 28px;
  border-radius: 26px;
  background: var(--green);
  color: #fff;
  box-shadow: var(--shadow);
  visibility: hidden;
}

.message-card strong {
  display: block;
  font-family: "Oswald", sans-serif;
  font-size: 44px;
  line-height: 1;
}

.message-card span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.82);
}

.lead-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border-radius: 34px;
  background: #fff;
  box-shadow: var(--shadow);
}

.bitrix-form-card {
  align-content: start;
  min-height: 560px;
  overflow: hidden;
}

.bitrix-form-card script {
  display: none;
}

.bitrix-popup-trigger {
  position: fixed;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.bitrix-form-card .b24-form-control-container,
.bitrix-form-card .b24-form-control-agreement {
  text-align: left !important;
}

.bitrix-form-card .b24-form-control-agreement,
.bitrix-form-card .b24-form-field-agreement {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  text-align: left !important;
}

.bitrix-form-card input[type="checkbox"],
.bitrix-form-card .b24-form-control-agreement input[type="checkbox"],
.bitrix-form-card .b24-form-field-agreement input[type="checkbox"],
.bitrix-form-card .b24-form-control-agreement .b24-form-control,
.bitrix-form-card .b24-form-field-agreement .b24-form-control,
.bitrix-form-card .b24-form-control-checkbox,
.bitrix-form-card .b24-form-control-agreement .b24-form-control-checkbox,
.bitrix-form-card .b24-form-field-agreement .b24-form-control-checkbox {
  width: 18px !important;
  height: 18px !important;
  min-width: 18px !important;
  min-height: 18px !important;
  max-width: 18px !important;
  max-height: 18px !important;
  margin: 2px 0 0 0 !important;
  padding: 0 !important;
  justify-self: start !important;
  align-self: start !important;
  flex: 0 0 18px !important;
  transform: none !important;
}

.bitrix-form-card .b24-form-control-agreement label,
.bitrix-form-card .b24-form-field-agreement label {
  display: flex !important;
  width: 100% !important;
  max-width: 100% !important;
  align-items: flex-start !important;
  gap: 10px !important;
  text-align: left !important;
}

.bitrix-form-card .b24-form-control-agreement label::before,
.bitrix-form-card .b24-form-control-agreement label::after,
.bitrix-form-card .b24-form-field-agreement label::before,
.bitrix-form-card .b24-form-field-agreement label::after,
.bitrix-form-card .b24-form-control-agreement .b24-form-control::before,
.bitrix-form-card .b24-form-control-agreement .b24-form-control::after,
.bitrix-form-card .b24-form-field-agreement .b24-form-control::before,
.bitrix-form-card .b24-form-field-agreement .b24-form-control::after {
  width: 18px !important;
  height: 18px !important;
  min-width: 18px !important;
  min-height: 18px !important;
  max-width: 18px !important;
  max-height: 18px !important;
  transform: none !important;
}

.bitrix-form-card .b24-form-control-agreement .b24-form-control-desc,
.bitrix-form-card .b24-form-field-agreement .b24-form-control-desc {
  display: block !important;
  width: auto !important;
  min-width: 0 !important;
  max-width: none !important;
  flex: 1 1 auto !important;
  text-align: left !important;
  line-height: 1.35 !important;
  white-space: normal !important;
  word-break: normal !important;
  overflow-wrap: normal !important;
}

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

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 58px;
  border: 1px solid rgba(11, 74, 31, 0.14);
  border-radius: 18px;
  padding: 0 18px;
  background: #fbfaf6;
  color: var(--black);
  font: inherit;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.lead-form textarea {
  min-height: 118px;
  padding-top: 16px;
  resize: vertical;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(11, 74, 31, 0.08);
}

.policy {
  margin: 0;
  color: #777;
  font-size: 12px;
}

.success {
  display: none;
  margin: 0;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(127, 166, 74, 0.16);
  color: var(--green);
  font-weight: 900;
}

.success.is-visible { display: block; }

body.modal-open {
  overflow: hidden;
}

.lead-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s ease;
}

.lead-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lead-modal[hidden] {
  display: none;
}

.lead-modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(12, 18, 16, 0.66);
  backdrop-filter: blur(10px);
  cursor: pointer;
}

.lead-modal-card {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  max-height: calc(100vh - 48px);
  overflow: auto;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 28px;
  background:
    radial-gradient(circle at 100% 0%, rgba(127, 166, 74, 0.28), transparent 34%),
    linear-gradient(145deg, #0b4a1f 0%, #123b22 58%, #1f6b34 100%);
  color: #fff;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34);
  transform: translateY(18px) scale(0.97);
  transition: transform 0.24s ease;
}

.lead-modal.is-open .lead-modal-card {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.lead-modal-copy {
  padding: 4px 54px 18px 0;
}

.lead-modal-copy h2 {
  font-size: clamp(38px, 6vw, 58px);
  line-height: 0.98;
}

.lead-modal-copy h2 span {
  color: #fff;
}

.lead-modal-copy p:not(.eyebrow) {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 1.5;
}

.modal-bitrix-form {
  min-height: 0;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.footer {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.7fr 1.1fr;
  gap: 36px;
  padding: 62px max(16px, calc((100vw - 1180px) / 2));
  color: rgba(255, 255, 255, 0.76);
  background: #071a0e;
}

.footer img { width: 260px; filter: invert(1) brightness(2.2); }
.footer h3 { margin: 0 0 14px; color: #fff; }
.footer a { display: block; margin: 10px 0; color: #fff; font-weight: 800; }
.legal { font-size: 12px; line-height: 1.6; }

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
}

.footer a.social-circle {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  margin: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transition: transform 0.22s ease, filter 0.22s ease;
}

.footer-socials strong {
  margin-right: 8px;
  color: #fff;
  font-size: 19px;
  line-height: 1;
}

.footer a.social-circle img {
  width: 100%;
  height: 100%;
  display: block;
  filter: none;
  object-fit: contain;
}

.footer a.social-circle:hover {
  transform: translateY(-3px) scale(1.04);
  filter: brightness(1.08);
}

.social-note {
  max-width: 160px;
  color: #fff;
  font-size: 9px;
  font-weight: 900;
  line-height: 1.15;
}

.legal-page {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--warm), #fff);
}

.legal-doc {
  max-width: 880px;
  padding-top: 64px;
}

.legal-doc h1 {
  margin: 34px 0 22px;
  font-family: "Oswald", "Manrope", Arial, sans-serif;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.98;
  color: var(--green);
  text-transform: uppercase;
}

.legal-doc p {
  color: var(--gray);
  font-size: 18px;
  line-height: 1.78;
}

.floating-cta {
  position: fixed;
  right: 26px;
  bottom: 26px;
  z-index: 45;
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 18px;
  border: 0;
  background: var(--green);
  color: #fff;
  font: inherit;
  font-weight: 1000;
  cursor: pointer;
  box-shadow: 0 18px 44px rgba(11, 74, 31, 0.32);
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

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

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

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

.hero-scale { transform: scale(0.92); }
.hero-scale.is-visible { transform: scale(1); }
.zoom-in { transform: scale(0.94); }
.zoom-in.is-visible { transform: scale(1); }

.stagger:nth-child(2) { transition-delay: 0.1s; }
.stagger:nth-child(3) { transition-delay: 0.2s; }
.stagger:nth-child(4) { transition-delay: 0.1s; }
.stagger:nth-child(5) { transition-delay: 0.18s; }
.stagger:nth-child(6) { transition-delay: 0.26s; }
.stagger:nth-child(7) { transition-delay: 0.1s; }
.stagger:nth-child(8) { transition-delay: 0.18s; }
.stagger:nth-child(9) { transition-delay: 0.26s; }
.stagger:nth-child(10) { transition-delay: 0.1s; }
.stagger:nth-child(11) { transition-delay: 0.18s; }
.stagger:nth-child(12) { transition-delay: 0.26s; }

@keyframes headerDrop {
  from { opacity: 0; transform: translate(-50%, -18px); }
  to { opacity: 1; transform: translate(-50%, 0); }
}

@keyframes badgeIn {
  from { opacity: 0; transform: translateY(16px) scale(0.9); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes heroZoom {
  from { transform: scale(1.06); opacity: 0.65; }
  to { transform: scale(1); opacity: 1; }
}

@media (max-width: 1120px) {
  .nav { display: none; }
  .burger { display: block; }
  .nav.is-open {
    position: absolute;
    display: grid;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    padding: 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--soft-shadow);
  }
  .hero {
    grid-template-columns: minmax(330px, 420px) 1fr;
    padding-top: 124px;
  }
  .hero-title {
    max-width: 390px;
  }
  .hero-media { min-height: 100%; }
  .hero-media img {
    min-height: 100%;
    object-position: 58% 50%;
  }
  .spec-grid { grid-template-columns: repeat(3, 1fr); }
  .editorial,
  .whitebox,
  .company,
  .main-site,
  .lead,
  .plan-layout,
  .price-card { grid-template-columns: 1fr; }
  .editorial,
  .whitebox,
  .editorial-copy,
  .whitebox-copy,
  .editorial-image,
  .whitebox-media,
  .kitchen-collage {
    min-height: auto;
  }
  .whitebox {
    grid-template-columns: 1fr;
    min-height: 780px;
  }
  .whitebox-copy {
    min-height: auto;
    width: 100%;
  }
  .kitchen-collage {
    min-height: 440px;
  }
  .company-copy {
    padding: 34px;
  }
  .company-mark {
    width: 220px;
  }
}

@media (max-width: 760px) {
  .site-header {
    top: 8px;
    width: calc(100% - 20px);
    height: auto;
    padding: 10px;
    border-radius: 20px;
  }
  .section-wide,
  .section {
    width: calc(100% - 20px);
  }
  .brand img { width: 150px; }
  .phone,
  .header-actions .btn { display: none; }
  .hero {
    min-height: 100vh;
    grid-template-columns: 1fr;
    padding: 112px 16px 42px;
    gap: 22px;
    border-radius: 0 0 28px 28px;
  }
  .photo-shade {
    background:
      linear-gradient(180deg, rgba(247, 244, 237, 0.96) 0%, rgba(247, 244, 237, 0.82) 48%, rgba(247, 244, 237, 0.18) 76%, rgba(0, 0, 0, 0.08) 100%),
      linear-gradient(90deg, rgba(247, 244, 237, 0.9), rgba(247, 244, 237, 0.08));
  }
  .hero::after {
    mask-image: linear-gradient(180deg, #000 0%, #000 58%, transparent 90%);
  }
  .hero-title { font-size: clamp(26px, 9vw, 38px); }
  .hero-title,
  .hero-copy {
    max-width: 100%;
  }
  .hero-ribbon {
    max-width: 100%;
    font-size: clamp(28px, 11vw, 46px);
  }
  .hero-facts {
    max-width: 360px;
    gap: 14px;
  }
  .hero-fact {
    grid-template-columns: 54px 1fr;
    gap: 12px;
  }
  .hero-fact-icon {
    width: 54px;
    height: 54px;
    border-width: 2px;
    font-size: 26px;
  }
  .hero-fact strong { font-size: 26px; }
  .hero-fact em { font-size: 17px; }
  .hero-buttons .btn { width: 100%; }
  .hero-price {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    min-width: 0;
    margin-top: 24px;
    padding: 20px 24px;
  }
  .hero-price strong {
    font-size: clamp(48px, 16vw, 76px);
  }
  .hero-media,
  .hero-media img {
    min-height: 100%;
  }
  .hero-media img {
    object-position: 55% 100%;
  }
  .cards.three,
  .spec-grid,
  .mini-grid,
  .trust-grid,
  .price-card ul,
  .footer { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .visit-card img {
    aspect-ratio: 4 / 3;
  }
  .kitchen-collage {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    min-height: auto;
  }
  .kitchen-collage img {
    aspect-ratio: 1 / 1;
  }
  .company-copy {
    padding: 26px;
  }
  .company-mark {
    width: 176px;
  }
  .company-copy h2 {
    font-size: clamp(38px, 12vw, 58px);
  }
  .main-site {
    padding: 28px;
    border-radius: 28px;
  }
  .main-site::after {
    inset: 12px;
    border-radius: 22px;
  }
  .main-site-link {
    min-height: 96px;
    padding: 20px;
    border-radius: 20px;
  }
  .main-site-link strong {
    font-size: 18px;
  }
  .editorial-copy,
  .whitebox-copy,
  .company-copy,
  .lead-copy,
  .lead-form,
  .price-card,
  .lifestyle-card {
    padding: 26px;
    border-radius: 26px;
  }
  .editorial-image img,
  .whitebox-media img {
    height: 420px;
    min-height: 420px;
  }
  .whitebox {
    min-height: auto;
    padding: 0;
    border-radius: 28px;
  }
  .whitebox::after {
    background:
      linear-gradient(180deg, rgba(247, 244, 237, 0.98) 0%, rgba(247, 244, 237, 0.94) 58%, rgba(247, 244, 237, 0.36) 100%),
      linear-gradient(90deg, rgba(247, 244, 237, 0.94), rgba(247, 244, 237, 0.42));
  }
  .whitebox-bg img {
    object-position: 66% 50%;
  }
  .whitebox-copy {
    padding: 30px 24px 360px;
  }
  .whitebox-points article {
    grid-template-columns: 56px 1fr;
    gap: 14px;
    padding: 16px 0;
  }
  .whitebox-icon {
    width: 54px;
    height: 54px;
    font-size: 25px;
  }
  .whitebox-points strong {
    font-size: 18px;
  }
  .whitebox-points span {
    font-size: 14px;
  }
  .lifestyle { min-height: 620px; }
  .lifestyle-card { margin: 0 auto; }
  .lifestyle-card p:not(.eyebrow) { font-size: 18px; }
  .price-card h2 { font-size: clamp(54px, 17vw, 86px); }
  .lead-modal {
    padding: 12px;
    align-items: end;
  }
  .lead-modal-card {
    max-height: calc(100vh - 24px);
    padding: 20px;
    border-radius: 24px;
  }
  .lead-modal-copy {
    padding-right: 46px;
  }
  .modal-bitrix-form {
    padding: 12px;
    border-radius: 20px;
  }
  .floating-cta {
    left: 12px;
    right: 12px;
    bottom: 12px;
    border-radius: 18px;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }
  .footer { padding-bottom: 96px; }
}

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