@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,100..900;1,9..144,100..900&family=DM+Sans:ital,opsz,wght@0,9..40,300..700;1,9..40,300..700&display=swap');

:root {
  --c-soil: #3B2314;
  --c-soil-light: #5C3520;
  --c-green: #4A7C59;
  --c-green-dark: #2D5038;
  --c-cream: #F4F1EC;
  --c-cream-dark: #E8E3DA;
  --c-lime: #C2D36E;
  --c-lime-dark: #A8BB52;
  --c-amber: #E8A317;
  --c-amber-dark: #CC8E0F;
  --c-gold: #F5BC45;
  --c-hero-overlay: rgba(12, 18, 8, 0.70);
  --c-white: #FFFFFF;
  --c-text: #1E1208;
  --c-text-muted: #6B5B4E;
  --c-border: rgba(59, 35, 20, 0.12);
  --f-display: 'Fraunces', Georgia, serif;
  --f-body: 'DM Sans', system-ui, sans-serif;
  --fs-hero: clamp(2.8rem, 4vw + 0.75rem, 4.5rem);
  --fs-h2: clamp(1.8rem, 3vw + 0.5rem, 2.75rem);
  --fs-h3: clamp(1.2rem, 1.5vw + 0.5rem, 1.75rem);
  --fs-body: clamp(0.95rem, 1vw + 0.4rem, 1.1rem);
  --fs-small: 0.875rem;
  --fw-normal: 400;
  --fw-medium: 500;
  --fw-bold: 700;
  --lh-tight: 1.1;
  --lh-normal: 1.65;
  --sp-xs: 0.5rem;
  --sp-sm: 1rem;
  --sp-md: 2rem;
  --sp-lg: 4rem;
  --sp-xl: clamp(4rem, 8vw, 7rem);
  --sp-2xl: clamp(6rem, 12vw, 12rem);
  --container: 1240px;
  --container-pad: clamp(1.25rem, 5vw, 3.5rem);
  --r-sm: 4px;
  --r-md: 8px;
  --r-pill: 999px;
  --shadow-card: 0 2px 12px rgba(0,0,0,0.08), 0 1px 3px rgba(0,0,0,0.04);
  --shadow-card-hover: 0 8px 32px rgba(0,0,0,0.13), 0 2px 8px rgba(0,0,0,0.06);
  --shadow-glass: 0 4px 20px rgba(0,0,0,0.18), 0 1px 4px rgba(0,0,0,0.08);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --dur-fast: 150ms;
  --dur-normal: 300ms;
  --dur-slow: 600ms;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--c-cream);
  color: var(--c-text);
  font-family: var(--f-body);
  font-size: var(--fs-body);
  line-height: var(--lh-normal);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
h1, h2, h3 { font-family: var(--f-display); line-height: var(--lh-tight); }
button { cursor: pointer; font-family: var(--f-body); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

/* ─── NAV ─── */
.nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.25rem var(--container-pad);
  transition: background var(--dur-normal) var(--ease-out), box-shadow var(--dur-normal) var(--ease-out);
}
.nav--dark { background: rgba(12, 18, 8, 0.80); backdrop-filter: blur(14px); color: var(--c-cream); }
.nav--light { background: rgba(244, 241, 236, 0.94); backdrop-filter: blur(14px); color: var(--c-text); box-shadow: 0 1px 0 var(--c-border); }
.nav__logo {
  font-family: var(--f-display);
  font-size: 1.3rem;
  font-weight: var(--fw-bold);
  color: var(--c-lime);
  letter-spacing: -0.02em;
  text-decoration: none;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.nav__logo-img {
  height: 30px;
  width: 30px;
  object-fit: contain;
  border-radius: var(--r-sm);
  background: #fff;
  flex-shrink: 0;
}
.nav__links { display: flex; gap: 2rem; list-style: none; flex: 1; justify-content: center; }
.nav__links a {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: inherit;
  opacity: 0.75;
  transition: opacity var(--dur-fast);
  font-weight: var(--fw-medium);
}
.nav__links a:hover { opacity: 1; }
.nav__phone {
  font-size: 0.9rem;
  color: var(--c-lime);
  font-weight: var(--fw-medium);
  text-decoration: none;
  white-space: nowrap;
}
.nav--light .nav__phone { color: var(--c-green); }
.nav__cta {
  background: var(--c-lime);
  color: var(--c-soil);
  padding: 0.55rem 1.3rem;
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  border: none;
  transition: background var(--dur-fast);
  white-space: nowrap;
}
.nav__cta:hover { background: var(--c-lime-dark); }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background var(--dur-normal) var(--ease-out), transform var(--dur-normal) var(--ease-out), box-shadow var(--dur-normal) var(--ease-out);
  border: none;
  text-decoration: none;
  line-height: 1;
  letter-spacing: 0.01em;
}
.btn--amber {
  background: var(--c-amber);
  color: var(--c-soil);
  border-radius: var(--r-sm);
}
.btn--amber:hover { background: var(--c-amber-dark); transform: translateY(-1px); }
.btn--ghost {
  background: transparent;
  color: var(--c-white);
  border: 1.5px solid rgba(255,255,255,0.45);
  border-radius: var(--r-sm);
}
.btn--ghost:hover { border-color: var(--c-white); background: rgba(255,255,255,0.08); }
.btn--dark {
  background: var(--c-soil);
  color: var(--c-cream);
  border-radius: var(--r-pill);
}
.btn--dark:hover { background: var(--c-soil-light); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(59,35,20,0.25); }
.btn--primary {
  background: var(--c-lime);
  color: var(--c-soil);
  border-radius: var(--r-pill);
}
.btn--primary:hover { background: var(--c-lime-dark); transform: translateY(-2px); }
.btn--sm { padding: 0.55rem 1.25rem; font-size: 0.825rem; }

/* ─── BADGE ─── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: var(--r-pill);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(194, 211, 110, 0.18);
  color: var(--c-white);
  border: 1px solid rgba(255,255,255,0.18);
  font-weight: var(--fw-medium);
}
.badge__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--c-lime);
  flex-shrink: 0;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.55; }
}

/* ─── HERO ─── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: safe center;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: var(--c-hero-overlay);
  z-index: 1;
}
.hero__canvas {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}
.hero__content {
  position: relative;
  z-index: 3;
  padding-top: 6rem;
  padding-bottom: 2.5rem;
  color: var(--c-white);
  max-width: 680px;
  margin-left: 0;
  margin-right: auto;
}
.hero__content .badge { margin-bottom: 2rem; }
.hero__title {
  font-size: var(--fs-hero);
  font-weight: var(--fw-bold);
  line-height: 1.08;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.15em;
}
.hero__line--1, .hero__line--2 { color: var(--c-white); }
.hero__line--3 { color: var(--c-gold); font-style: italic; }
.hero__sub {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: rgba(244, 241, 236, 0.75);
  margin-bottom: 2.5rem;
  max-width: 480px;
  line-height: 1.6;
}
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero__scroll {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  font-family: var(--f-body);
  margin-top: 1rem;
}

/* Floating cards */
.hero__card {
  position: absolute;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(8px);
  border-radius: var(--r-md);
  padding: 1rem 1.5rem;
  box-shadow: var(--shadow-glass);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  z-index: 4;
  min-width: 160px;
  color: var(--c-text);
  transition: transform var(--dur-slow) var(--ease-out), box-shadow var(--dur-slow) var(--ease-out);
}
.hero__card:hover { transform: translateY(-4px) scale(1.02); box-shadow: 0 12px 40px rgba(0,0,0,0.2); }
.hero__card--1 { right: clamp(2rem, 5vw, 6rem); top: 22%; }
.hero__card--2 { right: clamp(2rem, 12vw, 14rem); top: 42%; }
.hero__card--3 { right: clamp(2rem, 5vw, 6rem); top: 60%; }
.hero__card-label {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-green);
  font-weight: 600;
}
.hero__card-value {
  font-family: var(--f-display);
  font-size: 1.6rem;
  font-weight: var(--fw-bold);
  color: var(--c-soil);
  line-height: 1;
}
.hero__card-note {
  font-size: 0.8rem;
  color: var(--c-text-muted);
}

/* ─── STATS STRIP ─── */
.stats {
  background: var(--c-soil);
  padding: 4rem 0;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}
.stats__item { padding: 1rem; }
.stats__number {
  font-family: var(--f-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: var(--fw-bold);
  color: var(--c-lime);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stats__label {
  font-size: var(--fs-small);
  color: rgba(244, 241, 236, 0.6);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.stats__divider {
  width: 1px;
  background: rgba(244, 241, 236, 0.1);
  align-self: stretch;
}

/* ─── ZIGZAG ─── */
.zigzag {
  padding: var(--sp-xl) 0;
  background: var(--c-cream);
}
.zigzag:nth-child(even) { background: var(--c-white); }
.zigzag__inner {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.zigzag--img-right .zigzag__inner { grid-template-columns: 45fr 55fr; }
.zigzag--img-right .zigzag__img { order: 2; }
.zigzag--img-right .zigzag__content { order: 1; }
.zigzag__img {
  border-radius: var(--r-sm);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.zigzag__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}
.zigzag__img:hover img { transform: scale(1.04); }
.zigzag__content { padding: clamp(1rem, 3vw, 2rem); }
.zigzag__content .eyebrow { margin-bottom: 1rem; }
.zigzag__content h2 {
  font-size: var(--fs-h2);
  color: var(--c-soil);
  margin-bottom: 1.25rem;
}
.zigzag__content p {
  color: var(--c-text-muted);
  margin-bottom: 1rem;
  line-height: var(--lh-normal);
}
.zigzag__content .btn { margin-top: 1rem; }

/* ─── CTA SECTION ─── */
.cta-section {
  background: var(--c-cream-dark);
  padding: var(--sp-xl) var(--container-pad);
  text-align: center;
}
.cta-section h2 {
  font-size: var(--fs-h2);
  color: var(--c-soil);
  margin-bottom: 1rem;
}
.cta-section p {
  color: var(--c-text-muted);
  max-width: 520px;
  margin: 0 auto 2rem;
  line-height: var(--lh-normal);
}

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  background: var(--c-soil);
  padding: clamp(6rem, 12vw, 10rem) 0 clamp(3rem, 6vw, 5rem);
  color: var(--c-cream);
}
.page-hero .eyebrow { color: var(--c-lime); margin-bottom: 1rem; }
.page-hero h1 {
  font-size: var(--fs-h2);
  margin-bottom: 1rem;
}
.page-hero p { color: rgba(244, 241, 236, 0.7); max-width: 560px; }

.page-hero--catalog {
  position: relative;
  background: url('Сад Удачи/-noQo6HBdfXmsf9HIHrlyQ7gMpbKeFu6DgjY44mcYyYnTZhqpbJ90JWB-oqyhJXkhS4V80A-.jpg') center/cover no-repeat;
}
.page-hero--catalog::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(18, 10, 4, 0.72);
  z-index: 0;
}
.page-hero--catalog .container { position: relative; z-index: 1; }

/* ─── CATALOG ─── */
.catalog-section { padding: var(--sp-xl) 0; }
.catalog__filters {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.filter-btn {
  padding: 0.5rem 1.25rem;
  border-radius: var(--r-pill);
  border: 1.5px solid var(--c-border);
  background: transparent;
  color: var(--c-text-muted);
  font-size: 0.875rem;
  font-weight: var(--fw-medium);
  transition: all var(--dur-fast);
  letter-spacing: 0.02em;
}
.filter-btn:hover { border-color: var(--c-green); color: var(--c-green); }
.filter-btn--active {
  background: var(--c-soil);
  color: var(--c-cream);
  border-color: var(--c-soil);
}
.catalog__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}
.plant-card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-sm);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--dur-normal) var(--ease-out), box-shadow var(--dur-normal) var(--ease-out);
}
.plant-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); }
.plant-card__img-wrap {
  aspect-ratio: 1/1;
  overflow: hidden;
  background: var(--c-cream-dark);
}
.plant-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-out);
}
.plant-card:hover .plant-card__img-wrap img { transform: scale(1.06); }
.plant-card__body { padding: 1.25rem; }
.plant-card__tag {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-green);
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.plant-card__name {
  font-family: var(--f-display);
  font-size: 1.15rem;
  font-weight: var(--fw-bold);
  color: var(--c-soil);
  margin-bottom: 0.75rem;
}
.plant-card__desc {
  font-size: 0.875rem;
  color: var(--c-text-muted);
  line-height: 1.55;
  margin-bottom: 1rem;
}
.plant-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--c-border);
}
.plant-card__price {
  font-family: var(--f-display);
  font-size: 1.1rem;
  font-weight: var(--fw-bold);
  color: var(--c-soil);
}

.catalog__note {
  margin-top: 2.5rem;
  text-align: center;
  font-size: 0.9rem;
  color: var(--c-text-muted);
  line-height: 1.6;
}
.catalog__note a { color: var(--c-green); text-decoration: underline; }

/* ─── SERVICES ─── */
.services-section { padding: var(--sp-xl) 0; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.service-card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: clamp(2rem, 4vw, 3rem);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.service-card__icon { font-size: 2.5rem; }
.service-card h2 {
  font-size: var(--fs-h3);
  color: var(--c-soil);
}
.service-list {
  padding-left: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  color: var(--c-text-muted);
  font-size: 0.925rem;
  line-height: 1.5;
}
.service-card__how {
  font-size: 0.9rem;
  color: var(--c-text-muted);
  background: var(--c-cream);
  padding: 1rem;
  border-radius: var(--r-sm);
  border-left: 3px solid var(--c-green);
}
.service-card__price {
  font-family: var(--f-display);
  font-size: 1.3rem;
  font-weight: var(--fw-bold);
  color: var(--c-soil);
}
.service-card .btn { margin-top: auto; align-self: flex-start; }

/* ─── FAQ ─── */
.faq-section { padding: var(--sp-xl) 0; background: var(--c-cream-dark); }
.faq-section h2 {
  font-size: var(--fs-h2);
  color: var(--c-soil);
  margin-bottom: 2rem;
}
.faq-list { display: flex; flex-direction: column; gap: 0.5rem; max-width: 760px; }
.faq-item {
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  background: var(--c-white);
  overflow: hidden;
}
.faq-item summary {
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  font-weight: var(--fw-medium);
  color: var(--c-soil);
  font-size: 1rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::after {
  content: '+';
  font-size: 1.25rem;
  color: var(--c-green);
  transition: transform var(--dur-normal);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  padding: 0 1.5rem 1.25rem;
  color: var(--c-text-muted);
  font-size: 0.925rem;
  line-height: 1.6;
}

/* ─── CONTACTS ─── */
.contacts-section { padding: var(--sp-xl) 0; }
.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}
.contacts-info h2, .contacts-form h2 {
  font-size: var(--fs-h3);
  color: var(--c-soil);
  margin-bottom: 1.5rem;
}
.contacts-form > p { color: var(--c-text-muted); margin-bottom: 1.5rem; font-size: 0.925rem; }
.contact-item { margin-bottom: 1.5rem; }
.contact-label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-green);
  font-weight: 600;
  margin-bottom: 0.3rem;
}
.contact-phone {
  font-family: var(--f-display);
  font-size: 1.6rem;
  font-weight: var(--fw-bold);
  color: var(--c-soil);
  text-decoration: none;
}
.contact-phone:hover { color: var(--c-green); }

/* ─── FORM ─── */
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
  font-size: 0.875rem;
  font-weight: var(--fw-medium);
  color: var(--c-soil);
}
.form-group input, .form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-sm);
  font-family: var(--f-body);
  font-size: 0.95rem;
  color: var(--c-text);
  background: var(--c-white);
  transition: border-color var(--dur-fast);
  outline: none;
}
.form-group input:focus, .form-group textarea:focus {
  border-color: var(--c-green);
  outline: 2px solid rgba(74, 124, 89, 0.2);
  outline-offset: 2px;
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--c-text-muted);
}
.form-check input[type="checkbox"] { margin-top: 0.1em; flex-shrink: 0; cursor: pointer; accent-color: var(--c-green); }
.form-link { color: var(--c-green); }
.form-message {
  font-size: 0.875rem;
  padding: 0.75rem 1rem;
  border-radius: var(--r-sm);
  display: none;
}
.form-message--success { display: block; background: rgba(74, 124, 89, 0.1); color: var(--c-green-dark); border: 1px solid rgba(74,124,89,0.2); }
.form-message--error { display: block; background: rgba(200, 60, 60, 0.1); color: #c83c3c; border: 1px solid rgba(200,60,60,0.2); }

/* ─── FOOTER ─── */
.footer {
  background: var(--c-soil);
  color: var(--c-cream);
  padding: var(--sp-xl) var(--container-pad) var(--sp-md);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: var(--sp-lg);
  margin-bottom: var(--sp-lg);
}
.footer__logo {
  font-family: var(--f-display);
  font-size: 1.5rem;
  color: var(--c-lime);
  font-weight: var(--fw-bold);
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
  display: block;
}
.footer__tagline {
  font-size: var(--fs-small);
  color: rgba(244, 241, 236, 0.5);
  line-height: 1.5;
}
.footer__nav { display: flex; flex-direction: column; gap: 0.75rem; list-style: none; }
.footer__nav a {
  color: rgba(244, 241, 236, 0.65);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color var(--dur-fast);
}
.footer__nav a:hover { color: var(--c-lime); }
.footer__contact p, .footer__contact a {
  display: block;
  font-size: 0.9rem;
  color: rgba(244, 241, 236, 0.65);
  text-decoration: none;
  line-height: 1.7;
}
.footer__contact a:hover { color: var(--c-lime); }
.footer__copy {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: var(--sp-md);
  font-size: 0.8rem;
  color: rgba(244, 241, 236, 0.35);
  text-align: center;
}

/* ─── MAP SECTION ─── */
.map-section { padding: var(--sp-xl) 0 0; }
.map-section__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.map-section__head h2 { font-size: var(--fs-h2); color: var(--c-soil); margin-top: 0.5rem; }
.map-section__sub { color: var(--c-text-muted); font-size: 0.925rem; margin-top: 0.4rem; }
.map-section__reviews { margin-bottom: 1.5rem; }
.map-review-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  padding: 0.6rem 1.25rem;
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-card);
}
.map-review-badge__stars { color: #f5a623; font-size: 1rem; letter-spacing: 1px; }
.map-review-badge__rating {
  font-family: var(--f-display);
  font-size: 1.1rem;
  font-weight: var(--fw-bold);
  color: var(--c-soil);
}
.map-review-badge__link {
  font-size: 0.85rem;
  color: var(--c-green);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.map-section__iframe-wrap { width: 100%; line-height: 0; }
.map-section__iframe-wrap iframe { display: block; width: 100%; }

/* ─── DELIVERY STRIP ─── */
.delivery-strip {
  background: var(--c-soil);
  color: var(--c-cream);
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}
.delivery-strip__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.delivery-strip__item {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.delivery-strip__item .eyebrow { color: var(--c-lime); }
.delivery-strip__item p:not(.eyebrow):not(.delivery-strip__title) {
  color: rgba(244,241,236,0.6);
  font-size: 0.9rem;
  line-height: 1.5;
}
.delivery-strip__title {
  font-family: var(--f-display);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: var(--fw-bold);
  color: var(--c-white);
  line-height: 1.1;
}
@media (max-width: 640px) {
  .delivery-strip__grid { grid-template-columns: 1fr; }
}

/* ─── UTILITIES ─── */
.eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-green);
  font-weight: 600;
}
.text-lime { color: var(--c-lime); }
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ─── GSAP INITIAL STATES ─── */
.reveal-up { opacity: 0; transform: translateY(40px); }
.reveal-left { opacity: 0; transform: translateX(-40px); }
.reveal-right { opacity: 0; transform: translateX(40px); }
.reveal-fade { opacity: 0; }

/* ─── REDUCED MOTION ─── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ─── MOBILE ─── */
@media (max-width: 900px) {
  .zigzag__inner,
  .zigzag--img-right .zigzag__inner {
    grid-template-columns: 1fr;
  }
  .zigzag--img-right .zigzag__img { order: 0; }
  .zigzag--img-right .zigzag__content { order: 0; }
  .hero__card--1 { right: 1rem; top: 18%; }
  .hero__card--2 { display: none; }
  .hero__card--3 { right: 1rem; top: auto; bottom: 12rem; }
  .stats__grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .contacts-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
}
/* ─── BURGER BUTTON ─── */
.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 2px;
  color: inherit;
  flex-shrink: 0;
  z-index: 201;
}
.nav__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.2s ease;
  transform-origin: center;
}
/* Burger → X when menu open */
.nav--open .nav__burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav--open .nav__burger span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav--open .nav__burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 768px) {
  .nav__burger { display: flex; }
  .nav__cta { display: none; }
  .nav__links { display: none; }

  /* When open: nav itself becomes full-screen overlay (avoids z-index stacking issues) */
  .nav--open {
    height: 100dvh;
    background: rgba(12, 18, 8, 0.98) !important;
    backdrop-filter: none !important;
    box-shadow: none !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    gap: 0;
  }
  .nav--open .nav__logo {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    color: var(--c-lime);
  }
  .nav--open .nav__phone { display: none; }
  .nav--open .nav__burger {
    position: absolute;
    top: 1.35rem;
    right: 1.25rem;
    color: var(--c-cream);
  }
  .nav--open .nav__links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
  .nav__links li { list-style: none; }
  .nav--open .nav__links a {
    display: block;
    font-family: var(--f-display);
    font-size: clamp(2.2rem, 9vw, 3rem);
    font-weight: var(--fw-bold);
    color: var(--c-cream);
    text-decoration: none;
    padding: 0.55rem 2rem;
    letter-spacing: -0.02em;
    transition: color 0.2s;
  }
  .nav--open .nav__links a:hover,
  .nav--open .nav__links a:focus { color: var(--c-lime); outline: none; }
  /* Phone at bottom of menu */
  .nav--open::after {
    content: '+7 (4852) 43‑61‑66';
    display: block;
    margin-top: 2.5rem;
    font-family: var(--f-body);
    font-size: 1rem;
    color: var(--c-lime);
    letter-spacing: 0.03em;
  }
}
@media (max-width: 767px) {
  .hero__card { display: none; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { text-align: center; justify-content: center; }
}
