/* ===== Fonts & Reset ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,500;0,600;0,700;1,500;1,700&family=Manrope:wght@400;500;600;700;800&display=swap');

@font-face {
  font-family: 'Decor Tygra';
  src: url('fonts/decortygra.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, p { margin: 0; }

:root {
  --green-900: #16321f;
  --green-700: #26522f;
  --green-600: #3f7a4c;
  --green-500: #4f9457;
  --green-400: #7cb37e;
  --green-100: #e3f0e0;
  --clay-300: #e4ab84;
  --clay-500: #c1693f;
  --clay-700: #8f492b;
  --cream: #f7f5ee;
  --cream-deep: #e9e4d5;
  --ink: #1f2a20;
  --ink-soft: #5b6b57;
  --white: #ffffff;
  --shadow: 0 20px 45px -20px rgba(22, 50, 31, 0.35);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

body {
  font-family: 'Manrope', sans-serif;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .logo-word {
  font-family: 'Playfair Display', serif;
}

.container {
  width: min(1160px, 92%);
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-700);
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--clay-500);
  border-radius: 2px;
}

.section {
  padding: 88px 0;
}
.section-head {
  max-width: 620px;
  margin-bottom: 44px;
}
.section-head h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 600;
  margin-top: 10px;
  line-height: 1.15;
}
.section-head p {
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.6;
}
.section-alt { background: var(--white); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--green-600), var(--green-900));
  color: var(--white);
  box-shadow: 0 14px 30px -12px rgba(22, 50, 31, 0.65);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 34px -12px rgba(22, 50, 31, 0.75); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.55);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); }
.btn-ghost {
  background: var(--white);
  color: var(--green-700);
  border: 1.5px solid var(--cream-deep);
}
.btn-ghost:hover { border-color: var(--clay-500); }
.btn-sm { padding: 10px 18px; font-size: 13px; }

/* ===== Logo ===== */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.logo-word {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.logo-word b { font-size: 19px; font-weight: 700; letter-spacing: 0.01em; }
.logo-word span { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--green-700); font-family: 'Manrope', sans-serif; font-weight: 700; }
.logo-mark { width: 76px; height: 76px; flex-shrink: 0; border-radius: 50%; object-fit: cover; }
header .logo-word b { font-family: 'Decor Tygra', 'Playfair Display', serif; font-size: 26px; font-weight: normal; letter-spacing: 0.02em; }

/* ===== Header ===== */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 245, 238, 0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(31, 42, 32, 0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 20px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  font-weight: 600;
  font-size: 14.5px;
}
.nav-links a { color: var(--ink-soft); transition: color 0.2s ease; position: relative; }
.nav-links a:hover { color: var(--green-600); }
.header-right { display: flex; align-items: center; gap: 18px; }
.header-contact { display: flex; flex-direction: column; gap: 3px; }
.header-phone { font-weight: 700; font-size: 15px; }
.header-phone small { display: block; font-weight: 600; font-size: 11px; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.08em; }
.header-address { font-weight: 600; font-size: 12px; color: var(--ink-soft); }
.menu-toggle {
  display: none;
  background: none;
  border: none;
  padding: 6px;
}
.menu-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; border-radius: 2px; }

/* ===== Hero ===== */
.hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(120% 140% at 15% 0%, #eef5e9 0%, var(--cream) 45%, var(--cream-deep) 100%);
  padding: 70px 0 110px;
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(6px);
  opacity: 0.55;
}
.hero-blob.b1 { width: 420px; height: 420px; right: -120px; top: -140px; background: radial-gradient(circle at 30% 30%, var(--green-400), transparent 70%); }
.hero-blob.b2 { width: 300px; height: 300px; left: -100px; bottom: -80px; background: radial-gradient(circle at 40% 40%, var(--clay-300), transparent 70%); opacity: 0.3; }

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}
.fair-banner {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(120deg, var(--clay-500), var(--clay-700));
  color: var(--white);
  padding: 11px 20px;
  border-radius: 999px;
  font-size: 14px;
  line-height: 1.3;
  margin-bottom: 22px;
  box-shadow: 0 16px 32px -16px rgba(143, 73, 43, 0.6);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.fair-banner:hover { transform: translateY(-2px); box-shadow: 0 20px 36px -16px rgba(143, 73, 43, 0.7); }
.fair-banner-icon { font-size: 17px; flex-shrink: 0; }
.fair-banner b { font-weight: 800; }
.fair-banner-arrow { font-weight: 700; opacity: 0.85; flex-shrink: 0; }
.badge-row { display: flex; align-items: center; gap: 14px; margin-bottom: 26px; flex-wrap: wrap; }
.rating-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--cream-deep);
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  box-shadow: var(--shadow);
}
.rating-pill .stars { color: var(--clay-500); letter-spacing: 1px; }
.rating-pill .muted { color: var(--ink-soft); font-weight: 600; }
.open-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(63, 122, 76, 0.12);
  color: var(--green-700);
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13.5px;
}
.open-pill::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--green-500); box-shadow: 0 0 0 4px rgba(63,122,76,0.18); }

.hero h1 {
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 600;
  line-height: 1.08;
  color: var(--ink);
}
.hero h1 em { font-style: italic; color: var(--green-600); }
.hero-sub {
  margin-top: 20px;
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 480px;
  line-height: 1.6;
}
.hero-actions { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }
.hero-actions .btn-ghost { color: var(--ink); }

.hero-stats {
  display: flex;
  gap: 30px;
  margin-top: 46px;
  flex-wrap: wrap;
}
.hero-stats div b { display: block; font-family: 'Playfair Display', serif; font-size: 26px; color: var(--green-700); }
.hero-stats div span { font-size: 13px; color: var(--ink-soft); }

/* Hero visual */
.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
}
.showcase-card {
  width: 100%;
  border-radius: var(--radius-lg);
  background: linear-gradient(165deg, #ffffff 0%, var(--cream) 55%, var(--green-100) 140%);
  border: 1px solid var(--cream-deep);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
  padding: 54px 36px 44px;
  text-align: center;
}
.showcase-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(4px);
}
.showcase-blob.s1 { width: 200px; height: 200px; top: -70px; left: -60px; background: radial-gradient(circle, rgba(63,122,76,0.18), transparent 70%); }
.showcase-blob.s2 { width: 180px; height: 180px; bottom: -60px; right: -50px; background: radial-gradient(circle, rgba(193,105,63,0.24), transparent 70%); }
.showcase-logo { width: 112px; height: 112px; position: relative; margin: 0 auto 18px; }
.showcase-title { font-size: 24px; font-weight: 700; position: relative; }
.showcase-subtitle { margin-top: 6px; font-size: 13.5px; color: var(--ink-soft); position: relative; }
.showcase-address {
  position: relative;
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: var(--green-700);
  font-size: 13px;
  font-weight: 600;
}
.showcase-address svg {
  flex-shrink: 0;
  display: block;
}
.showcase-stats {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 26px;
  margin-top: 30px;
  padding-top: 26px;
  border-top: 1px solid var(--cream-deep);
}
.showcase-stats div b { display: block; font-family: 'Playfair Display', serif; font-size: 22px; color: var(--green-700); }
.showcase-stats div span { font-size: 12px; color: var(--ink-soft); }
.showcase-quote {
  position: relative;
  margin-top: 26px;
  font-size: 13.5px;
  color: var(--ink-soft);
  font-style: italic;
  line-height: 1.5;
}
/* ===== Marquee categories ===== */
.marquee-wrap {
  background: var(--green-900);
  padding: 16px 0;
  overflow: hidden;
}
.marquee {
  display: flex;
  gap: 46px;
  white-space: nowrap;
  animation: scrollLeft 30s linear infinite;
  width: max-content;
}
.marquee span {
  color: var(--green-100);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.marquee span::after { content: "•"; color: var(--clay-300); }
@keyframes scrollLeft {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== Categories grid ===== */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.cat-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 26px 22px;
  border: 1px solid var(--cream-deep);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.cat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.cat-emoji {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: grid; place-items: center;
  font-size: 26px;
  background: var(--white);
  border: 1px solid var(--cream-deep);
  margin-bottom: 16px;
  padding: 8px;
  overflow: hidden;
}
.cat-emoji img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.cat-card h3 { font-size: 16px; font-weight: 700; font-family: 'Manrope', sans-serif; }
.cat-card p { margin-top: 6px; font-size: 13.5px; color: var(--ink-soft); line-height: 1.5; }
.cat-cta { display: flex; justify-content: center; margin-top: 38px; }
.cat-price {
  display: inline-block;
  margin-top: 12px;
  font-size: 12px;
  font-weight: 700;
  color: var(--clay-500);
  background: rgba(193, 105, 63, 0.1);
  padding: 5px 12px;
  border-radius: 999px;
}

/* ===== Catalog search ===== */
.catalog-search {
  position: relative;
  max-width: 480px;
  margin: 0 auto 44px;
}
.catalog-search-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--ink-soft);
  pointer-events: none;
}
.catalog-search input {
  width: 100%;
  font: inherit;
  padding: 14px 20px 14px 48px;
  border-radius: 999px;
  border: 1px solid var(--cream-deep);
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow);
}
.catalog-search input:focus {
  outline: none;
  border-color: var(--green-500);
}
.catalog-search input::placeholder { color: var(--ink-soft); }
.catalog-no-results {
  display: none;
  text-align: center;
  color: var(--ink-soft);
  font-size: 15px;
  padding: 30px 0;
}
.catalog-no-results.visible { display: block; }

/* ===== Catalog groups ===== */
.cat-group { margin-bottom: 48px; }
.cat-group:last-child { margin-bottom: 0; }
.cat-group-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--green-700);
  margin-bottom: 20px;
}

/* ===== Catalog page header ===== */
.page-header {
  position: relative;
  overflow: hidden;
  background: radial-gradient(120% 140% at 15% 0%, #eef5e9 0%, var(--cream) 45%, var(--cream-deep) 100%);
  padding: 54px 0 60px;
  text-align: center;
}
.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink-soft);
  margin-bottom: 18px;
}
.breadcrumb a { color: var(--green-700); }
.breadcrumb a:hover { text-decoration: underline; }
.page-header h1 {
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 600;
  color: var(--ink);
}
.page-header p {
  margin: 16px auto 0;
  max-width: 620px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.6;
}
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 980px) {
  .catalog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .catalog-grid { grid-template-columns: 1fr; }
}

/* ===== Promo banner ===== */
.promo {
  border-radius: var(--radius-lg);
  background: linear-gradient(120deg, var(--green-900), var(--green-700) 60%, #3a6a41);
  padding: 46px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.promo::before {
  content: "";
  position: absolute;
  width: 260px; height: 260px;
  right: -60px; top: -90px;
  background: radial-gradient(circle, rgba(193,105,63,0.35), transparent 70%);
  border-radius: 50%;
}
.promo-text .eyebrow { color: var(--green-100); }
.promo-text .eyebrow::before { background: var(--clay-300); }
.promo-date {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(193, 105, 63, 0.22);
  color: var(--clay-300);
  font-weight: 700;
  font-size: 13px;
}
.promo-date::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--clay-300); flex-shrink: 0; }
.promo-text h2 { font-size: clamp(24px, 3vw, 34px); margin-top: 10px; font-weight: 600; }
.promo-text p { margin-top: 10px; color: rgba(255,255,255,0.82); max-width: 420px; }

/* ===== Prices ===== */
.price-groups {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.price-group {
  background: var(--white);
  border: 1px solid var(--cream-deep);
  border-radius: var(--radius-md);
  padding: 28px 30px;
}
.price-group-wide { grid-column: 1 / -1; }
.price-group h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--green-700);
  margin-bottom: 18px;
}
.price-list { display: flex; flex-direction: column; gap: 13px; }
.price-list-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 40px;
}
.price-list li {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.price-list li span { white-space: nowrap; font-size: 14.5px; color: var(--ink); }
.price-list li i {
  flex: 1;
  border-bottom: 1px dotted var(--ink-soft);
  opacity: 0.35;
  margin-bottom: 4px;
}
.price-list li b { white-space: nowrap; color: var(--clay-500); font-weight: 800; font-size: 14px; }
.price-disclaimer {
  margin-top: 26px;
  font-size: 12.5px;
  color: var(--ink-soft);
  opacity: 0.75;
  text-align: center;
}

/* ===== Photos ===== */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.photo-tile {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  border: 1px solid var(--cream-deep);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.photo-tile:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.photo-tile span { font-size: 40px; }
.photo-tile p { font-size: 13.5px; font-weight: 700; color: var(--green-900); }
.pt-1 { background: linear-gradient(160deg, #dcefd7, #b9dcb0); }
.pt-2 { background: linear-gradient(160deg, #e7f2e3, #c7e2c0); }
.pt-3 { background: linear-gradient(160deg, #f3e6d8, #e4c6a4); }
.pt-4 { background: linear-gradient(160deg, #dff0e6, #b7ddc7); }
.pt-5 { background: linear-gradient(160deg, #efe9d9, #ddceac); }
.pt-6 { background: linear-gradient(160deg, #e2f0dd, #c1dcb8); }

/* ===== About / contacts ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}
.info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: var(--shadow);
  border: 1px solid var(--cream-deep);
}
.info-row {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--cream-deep);
}
.info-row:last-child { border-bottom: none; padding-bottom: 0; }
.info-row:first-child { padding-top: 0; }
.info-icon {
  width: 42px; height: 42px;
  flex-shrink: 0;
  border-radius: 12px;
  background: var(--cream);
  display: grid;
  place-items: center;
  color: var(--green-700);
}
.info-row b { display: block; font-size: 15px; margin-bottom: 3px; }
.info-row p, .info-row span { font-size: 14px; color: var(--ink-soft); line-height: 1.5; }

.social-row { display: flex; gap: 10px; margin-top: 26px; flex-wrap: wrap; }
.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--cream);
  font-weight: 700;
  font-size: 13.5px;
  border: 1px solid var(--cream-deep);
  transition: border-color 0.2s ease, background 0.2s ease;
}
.social-btn:hover { border-color: var(--green-500); background: var(--green-100); }

.faq { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--cream-deep);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 22px;
  background: none;
  border: none;
  text-align: left;
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
}
.faq-q .plus {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--green-700);
  display: grid;
  place-items: center;
  transition: transform 0.25s ease, background 0.25s ease;
  font-size: 16px;
}
.faq-item.open .faq-q .plus { transform: rotate(45deg); background: var(--clay-300); color: var(--white); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 22px;
}
.faq-item.open .faq-a { max-height: 220px; padding-bottom: 20px; }
.faq-a p { color: var(--ink-soft); font-size: 14.5px; line-height: 1.6; }
.faq-ai-tag { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 700; color: var(--green-700); margin-bottom: 22px; background: rgba(63,122,76,0.12); padding: 7px 12px; border-radius: 999px; }

/* ===== Reviews ===== */
.reviews-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.rating-summary { display: flex; align-items: center; gap: 18px; }
.rating-big { font-family: 'Playfair Display', serif; font-size: 56px; font-weight: 700; color: var(--green-700); line-height: 1; }
.rating-summary .stars { color: var(--clay-500); font-size: 18px; letter-spacing: 2px; }
.rating-summary .count { font-size: 13.5px; color: var(--ink-soft); margin-top: 4px; }

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 40px;
}
.review-card {
  background: var(--cream);
  border: 1px solid var(--cream-deep);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.review-head { display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 800;
  color: var(--white);
  font-size: 15px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--green-600), var(--green-900));
}
.review-head b { font-size: 14.5px; display: block; }
.review-head .meta { font-size: 12px; color: var(--ink-soft); }
.review-card .stars { color: var(--clay-500); font-size: 13px; letter-spacing: 1.5px; }
.review-text { font-size: 14px; line-height: 1.6; color: var(--ink-soft); }
.review-reply {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-size: 13px;
  color: var(--ink-soft);
  border-left: 3px solid var(--green-600);
}
.review-reply b { color: var(--green-700); display: block; margin-bottom: 4px; font-size: 12.5px; }

/* ===== CTA band ===== */
.cta-band {
  background: linear-gradient(135deg, var(--green-900) 0%, #223f28 100%);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 60px 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(193,105,63,0.25), transparent 60%);
}
.cta-band h2 { position: relative; font-size: clamp(26px, 3.4vw, 38px); font-weight: 600; }
.cta-band p { position: relative; margin-top: 14px; color: rgba(255,255,255,0.72); max-width: 480px; margin-inline: auto; }
.cta-band .hero-actions { position: relative; justify-content: center; margin-top: 30px; }

/* ===== Footer ===== */
footer { background: var(--green-900); color: rgba(255,255,255,0.75); padding: 60px 0 26px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-grid .logo-word b, .footer-grid .logo-word span { color: var(--white); }
.footer-grid .logo-word span { color: var(--green-400); }
.footer-about { max-width: 300px; margin-top: 16px; font-size: 14px; line-height: 1.6; }
.footer-col h4 { font-size: 14px; color: var(--white); margin-bottom: 16px; font-weight: 700; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.footer-col a:hover { color: var(--clay-300); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 22px; font-size: 13px; flex-wrap: wrap; gap: 10px; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a { width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.2); display: grid; place-items: center; }
.footer-socials a:hover { background: var(--clay-500); border-color: var(--clay-500); color: var(--white); }

/* ===== Write modal ===== */
.write-modal[hidden] { display: none; }
.write-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.write-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(22, 50, 31, 0.55);
  backdrop-filter: blur(2px);
}
.write-modal-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px 32px;
  max-width: 340px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow);
}
.write-modal-card h3 { font-size: 22px; font-weight: 600; }
.write-modal-card p { margin-top: 8px; color: var(--ink-soft); font-size: 14px; }
.write-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--cream);
  border: none;
  font-size: 18px;
  line-height: 1;
  color: var(--ink-soft);
  display: grid;
  place-items: center;
}
.write-modal-close:hover { background: var(--cream-deep); color: var(--ink); }
.write-modal-options { display: flex; flex-direction: column; gap: 12px; margin-top: 26px; }
.write-modal-option {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 999px;
  background: var(--cream);
  border: 1px solid var(--cream-deep);
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
  transition: border-color 0.2s ease, background 0.2s ease;
}
.write-modal-option:hover { border-color: var(--green-500); background: var(--green-100); }

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .nav-links { display: none; }
  .menu-toggle { display: block; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 380px; margin-inline: auto; }
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .price-groups { grid-template-columns: 1fr; }
  .price-list-cols { grid-template-columns: 1fr; }
  .photo-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .review-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .promo { flex-direction: column; text-align: center; align-items: center; }
  .promo-text p { margin-inline: auto; }
}
@media (max-width: 560px) {
  .section { padding: 60px 0; }
  .cat-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .photo-grid { grid-template-columns: 1fr; }
  .header-contact { display: none; }
  .cta-band { padding: 44px 24px; }
  .price-group { padding: 22px 20px; }
  .logo-mark { width: 42px; height: 42px; }
  .logo-word span { display: none; }
  header .logo-word b { font-size: 17px; }
  .logo { gap: 8px; }
  .header-inner { gap: 8px; }
  .header-right { gap: 10px; }
  .header-right .btn-sm { padding: 9px 14px; font-size: 12.5px; }
  .menu-toggle { padding: 4px; }
}
