@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");

/* Editorial wine & cream — обычный sans-serif */
:root {
  --bg: #faf6f0;
  --bg-soft: #f0e8dc;
  --surface: #fffcf8;
  --chip: #ebe2d6;
  --ink: #24181c;
  --fg: #24181c;
  --muted: #6f5f5a;
  --line: #ddd0c4;
  --border: #ddd0c4;
  --primary: #5c2430;
  --accent: #5c2430;
  --accent-deep: #3f1720;
  --accent-soft: rgba(92, 36, 48, 0.09);
  --secondary: #b8956b;
  --card: #fffcf8;
  --media-bg: #e6dacf;
  --header-bg: rgba(255, 252, 248, 0.95);
  --header-text: #24181c;
  --forest: #5c2430;
  --radius: 4px;
  --radius-lg: 12px;
  --radius-xl: 20px;
  --shadow: 0 6px 28px rgba(36, 24, 28, 0.07);
  --shadow-lift: 0 20px 50px rgba(36, 24, 28, 0.11);
  --font-body: "Inter", "Segoe UI", system-ui, sans-serif;
  --font-display: var(--font-body);
  --space-section: clamp(44px, 6vw, 84px);
  --space-section-sm: clamp(16px, 3vw, 32px);
  --container: 1160px;
  --gutter: 24px;
  --block-gutter: 32px;
  --block-width: min(var(--container), calc(100% - 2 * var(--block-gutter)));
  --ease: cubic-bezier(0.25, 0.8, 0.35, 1);
}

* { box-sizing: border-box; }

html {
  height: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
  background: var(--bg);
}

body {
  margin: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.62;
  font-variant-numeric: lining-nums;
  background:
    radial-gradient(700px 380px at 50% -8%, rgba(184, 149, 107, 0.14), transparent 60%),
    var(--bg);
  overflow-x: clip;
}

main { flex: 1 0 auto; }

img { max-width: 100%; height: auto; display: block; }
.hero-banner-arch img,
.hero-photo img,
.product-card-media img,
.product-gallery-main img,
[data-gallery-main],
.about-photo img {
  max-width: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 0.18em; }
a:hover { color: var(--accent); }
button, input, textarea, select { font: inherit; }

.header-top-inner,
.header-main-row {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
  box-sizing: border-box;
}

.container, .c-container,
.hero-intro,
.hero-banner-cap,
.hero-stage,
.notice-pills,
.notice-bar,
.article-head,
.article-cover,
.article-layout,
.article-related,
.mid-cta {
  width: var(--block-width);
  max-width: 100%;
  margin-inline: auto;
  padding-inline: 0;
  box-sizing: border-box;
}

.section, .c-section { padding: var(--space-section) 0; }
.section--band {
  background: var(--bg-soft);
  border-block: 1px solid var(--line);
}
.section-heading { display: grid; gap: 10px; margin-bottom: 30px; max-width: 600px; }
.section-heading p { color: var(--muted); margin: 0; max-width: 48ch; }
.section-heading--row {
  max-width: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: end;
  gap: 18px 28px;
}
.section-heading--row > div { max-width: 600px; }

h1, h2, h3, .h3 {
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin: 0 0 12px;
}
h1 { font-size: clamp(2.6rem, 6vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3, .h3 { font-size: 1.08rem; font-family: var(--font-body); font-weight: 600; }

.eyebrow {
  display: inline-block;
  margin: 0 0 14px;
  padding: 0;
  color: var(--secondary);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.eyebrow::before { display: none; }

.btn, .c-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 0 26px;
  border: 2px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s var(--ease);
}
.btn:hover { transform: translateY(-2px); color: inherit; }
.btn-primary, .btn-accent, .c-button--accent {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover, .btn-accent:hover { background: var(--accent-deep); color: #fff; }
.btn-outline, .btn-secondary, .c-button--outline {
  background: transparent;
  border-color: var(--accent);
  color: var(--accent);
}
.btn-outline:hover, .btn-secondary:hover {
  background: var(--accent);
  color: #fff;
}
.actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* Header — чистый, без верхней полоски */
.site-header { position: sticky; top: 0; z-index: 40; }
.header-top { display: none; }
.header-shell {
  background: var(--header-bg);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-main-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 78px;
}
.header-left, .header-right { display: flex; align-items: center; gap: 18px; }
.brand { display: flex; align-items: center; gap: 14px; text-decoration: none; color: inherit; }
.brand:hover { color: inherit; }
.brand img { width: 86px; height: 45px; max-width: none; flex-shrink: 0; object-fit: contain; }
.brand-wordmark { display: flex; flex-direction: column; line-height: 1.15; gap: 2px; }
.brand-wordmark strong { font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; }
.brand-wordmark span { color: var(--muted); font-size: 10px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; }
.main-nav { display: flex; align-items: center; gap: 0; }
.main-nav > a {
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 10px 14px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.main-nav > a:hover { color: var(--ink); }
.main-nav > a.is-active { color: var(--accent); border-bottom-color: var(--secondary); }
.nav-extra { display: none; }
.header-phone {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
  line-height: 1.2;
}
.header-phone small { font-size: 10px; font-weight: 600; color: var(--muted); letter-spacing: 0.08em; text-transform: uppercase; }
.header-phone:hover { color: var(--accent); }
.nav-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 10px 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.nav-toggle-lines {
  width: 16px;
  height: 10px;
  border-top: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  box-shadow: inset 0 4px 0 currentColor;
}
body.nav-open { overflow: hidden; }

/* Hero — центр + арочный баннер */
.hero--home {
  padding: clamp(24px, 4vw, 44px) 0 0;
  text-align: center;
}
.hero-intro { max-width: 960px; }
.hero-intro h1 {
  margin-bottom: 10px;
  font-size: clamp(1.75rem, 2.8vw, 2.45rem);
  line-height: 1.1;
  white-space: nowrap;
}
.hero-intro .eyebrow { margin-bottom: 10px; }
.hero-lead {
  margin: 0 auto 18px;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.4;
  max-width: none;
  white-space: nowrap;
}
.hero-actions { justify-content: center; margin-bottom: 0; }

.hero-banner {
  margin: clamp(28px, 5vw, 48px) 0 0;
  padding: 0;
}
.hero-banner-arch {
  width: min(920px, 92vw);
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 50% 50% 12px 12px / 18% 18% 12px 12px;
  border: 3px solid var(--line);
  box-shadow: var(--shadow-lift);
  background: var(--media-bg);
}
.hero-banner-cap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 28px;
  margin-top: 18px;
  padding-bottom: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero-banner-cap span:not(:last-child)::after {
  content: "·";
  margin-left: 28px;
  color: var(--secondary);
}

/* Pills вместо полоски */
.notice-pills {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: var(--space-section-sm);
  margin-bottom: var(--space-section-sm);
}
.notice-pill {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 22px 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transition: transform 0.25s var(--ease), border-color 0.25s;
}
.notice-pill:hover { transform: translateY(-3px); border-color: var(--secondary); }
.notice-pill > strong {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
  color: var(--secondary);
}
.notice-pill h3 { margin: 0 0 6px; font-family: var(--font-body); font-size: 1rem; font-weight: 700; }
.notice-pill p { margin: 0; font-size: 13px; color: var(--muted); line-height: 1.5; }

.notice-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: var(--space-section-sm);
}
.notice-item { padding: 20px; background: var(--surface); border: 1px solid var(--line); }
.notice-item strong { display: block; margin-bottom: 6px; font-family: var(--font-display); font-size: 1.1rem; }
.notice-item p { margin: 0; font-size: 13px; color: var(--muted); }

/* Product cards — цена на винной полосе */
.product-card {
  background: var(--card);
  border: 1px solid var(--line);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 0;
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
}
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lift); }
.product-card.is-hidden { display: none; }
.product-card-media { position: relative; display: block; aspect-ratio: 5 / 4; overflow: hidden; background: var(--media-bg); }
.product-card-media img { object-fit: cover; transition: transform 0.55s var(--ease); }
.product-card:hover .product-card-media img { transform: scale(1.04); }
.product-card-body { padding: 16px 16px 0; display: flex; flex-direction: column; gap: 7px; flex: 1; }
.product-card-body p { margin: 0; color: var(--muted); font-size: 13px; }
.product-card-body .h3 { font-size: 1.02rem; line-height: 1.35; min-height: 2.6em; margin: 0; }
.product-card-body .h3 a { text-decoration: none; }
.product-price {
  display: flex;
  align-items: baseline;
  gap: 0.25em;
  margin: 0;
  padding: 14px 16px;
  background: var(--accent);
  color: #fff !important;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  line-height: 1;
}
.product-card-body .product-price { margin-top: auto; }
.product-price .price-from, .product-price small {
  font-family: var(--font-body);
  font-size: 0.42em;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.75;
}
.product-meta { display: flex; flex-wrap: wrap; gap: 5px; }
.tag, .pill {
  display: inline-flex;
  padding: 3px 8px;
  background: var(--chip);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.pill-hit { background: var(--secondary); color: #fff; }
.pill-new { background: var(--accent); color: #fff; }
.pill-recommend { background: var(--ink); color: #fff; }
.product-badges { position: absolute; top: 10px; left: 10px; display: flex; gap: 5px; }
.product-actions {
  display: flex;
  gap: 8px;
  margin-top: 0;
  padding: 12px 14px 14px;
}
.product-actions .btn {
  flex: 1;
  min-width: 0;
  min-height: 42px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
  border-radius: 8px;
  border: 1px solid transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s var(--ease), box-shadow 0.2s;
}
.product-actions .btn-secondary {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--line);
}
.product-actions .btn-secondary:hover {
  background: var(--bg-soft);
  border-color: color-mix(in srgb, var(--accent) 35%, var(--line));
  color: var(--accent-deep);
  transform: translateY(-1px);
}
.product-actions .btn-primary,
.product-actions .btn-accent {
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent-deep) 100%);
  color: #fff;
  border-color: var(--accent-deep);
  box-shadow: 0 4px 14px rgba(92, 36, 48, 0.22);
}
.product-actions .btn-primary:hover,
.product-actions .btn-accent:hover {
  background: linear-gradient(180deg, color-mix(in srgb, var(--accent) 88%, #fff) 0%, var(--accent) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(92, 36, 48, 0.28);
  color: #fff;
}

.catalog-layout { display: flex; flex-direction: column; gap: 18px; }
.catalog-filters {
  display: grid;
  grid-template-columns: auto repeat(4, minmax(0, 1fr)) auto;
  gap: 12px 14px;
  align-items: end;
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 18px 20px;
}
.catalog-filters strong { font-family: var(--font-display); font-size: 1.3rem; }
.catalog-filters label { display: block; font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin: 0 0 5px; color: var(--muted); }
.catalog-filters select, .input, .textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--bg);
  padding: 11px 12px;
}
.catalog-filters select:focus, .input:focus, .textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.catalog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.catalog-toolbar { display: flex; justify-content: space-between; margin-bottom: 14px; color: var(--muted); font-size: 13px; }

.product-slider-viewport {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  cursor: grab;
}
.product-slider-viewport::-webkit-scrollbar { display: none; }
.product-slider-viewport.is-dragging { cursor: grabbing; scroll-behavior: auto; }
.product-slider-track { display: flex; gap: 20px; }
.product-slider-track .product-card { flex: 0 0 calc((100% - 40px) / 3); scroll-snap-align: start; }
.product-slider-controls { display: flex; justify-content: center; gap: 12px; margin-top: 22px; }
.product-slider-btn {
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--surface);
  cursor: pointer;
  font-size: 16px;
  color: var(--ink);
  box-shadow: var(--shadow);
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s var(--ease), box-shadow 0.2s;
}
.product-slider-btn:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(92, 36, 48, 0.2);
}

.services-grid, .pay-ways, .split-cards, .adv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.split-cards.cols-4 { grid-template-columns: repeat(4, 1fr); }
.service-card, .pay-way, .split-card, .adv-card, .review-card, .use-card {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 22px 20px;
}
a.split-card { text-decoration: none; color: inherit; display: block; transition: border-color 0.2s; }
a.split-card:hover { border-color: var(--secondary); color: inherit; }
.use-card { padding: 0; overflow: hidden; }
.use-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.use-card h3, .use-card p { padding-left: 18px; padding-right: 18px; }
.use-card h3 { margin-top: 14px; }
.use-card p { padding-bottom: 18px; color: var(--muted); }

.photo-mosaic {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 14px;
}
.photo-mosaic figure { margin: 0; display: flex; flex-direction: column; }
.photo-mosaic img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid var(--line);
  transition: transform 0.5s var(--ease);
}
.photo-mosaic figure:hover img { transform: scale(1.02); }
.photo-mosaic figcaption { padding: 10px 2px 0; font-size: 0.88rem; font-weight: 600; font-family: var(--font-display); }
.photo-mosaic .is-wide { grid-row: 1 / span 2; }
.photo-mosaic .is-wide img { aspect-ratio: auto; min-height: 400px; height: 100%; }

.sample-strip { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; }
.sample-strip figure { margin: 0; overflow: hidden; border: 1px solid var(--line); }
.sample-strip img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.sample-strip figcaption { padding: 8px; font-size: 10px; font-weight: 700; text-transform: uppercase; text-align: center; background: var(--surface); }

.photo-split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 24px; align-items: stretch; }
.photo-split img { width: 100%; min-height: 300px; object-fit: cover; border: 1px solid var(--line); }

.adv-grid { gap: 0; border: 1px solid var(--line); }
.adv-card { border: 0; border-right: 1px solid var(--line); border-radius: 0; }
.adv-card:last-child { border-right: 0; }
.adv-card span { display: block; margin-bottom: 10px; color: var(--secondary); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; }

.about-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 40px; align-items: center; }
.about-photo { overflow: hidden; aspect-ratio: 4 / 3; border: 1px solid var(--line); box-shadow: var(--shadow-lift); }
.about-list { margin: 16px 0 0; padding-left: 18px; color: var(--muted); }

.reviews-page { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.review-card { text-align: center; padding: 28px 22px; }
.review-card p { margin: 0 0 18px; font-size: 1.02rem; line-height: 1.55; }
.review-card footer { display: flex; flex-direction: column; gap: 4px; font-size: 13px; color: var(--muted); border-top: 1px solid var(--line); padding-top: 14px; }

.pay-mosaic { display: grid; grid-template-columns: 1.2fr 0.9fr; grid-template-rows: auto auto; gap: 16px; }
.pay-tile { display: flex; flex-direction: column; overflow: hidden; background: var(--surface); border: 1px solid var(--line); }
.pay-tile.is-wide { grid-row: 1 / span 2; }
.pay-tile img { width: 100%; height: 200px; object-fit: cover; }
.pay-tile.is-wide img { height: 100%; min-height: 260px; flex: 1; }
.pay-tile-body { padding: 16px 18px 18px; }
.pay-split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 20px; }
.pay-split img { width: 100%; min-height: 340px; object-fit: cover; border: 1px solid var(--line); }
.pay-split-copy { background: var(--accent); color: #fff8f2; padding: 36px 32px; }
.pay-split-copy .eyebrow { color: var(--secondary); }
.pay-split-copy h2 { color: #fff; }
.pay-split-copy p, .pay-split-copy .about-list { color: rgba(255, 248, 242, 0.78); }
.pay-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.pay-step { overflow: hidden; background: var(--surface); border: 1px solid var(--line); }
.pay-step img { width: 100%; aspect-ratio: 5 / 4; object-fit: cover; }
.pay-step-body { padding: 14px 16px 16px; }
.pay-step-body strong { display: block; margin-bottom: 6px; color: var(--secondary); font-size: 10px; letter-spacing: 0.12em; }
.pay-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.pay-gallery figure { margin: 0; overflow: hidden; border: 1px solid var(--line); }
.pay-gallery img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.pay-gallery figcaption { padding: 12px 14px; background: var(--surface); font-family: var(--font-display); font-weight: 600; }

.svc-zones, .svc-methods { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.svc-methods--2 { grid-template-columns: 1fr 1fr; }
.svc-zone, .svc-method { background: var(--surface); border: 1px solid var(--line); padding: 20px 18px; }
.svc-zone-tag { display: inline-block; margin-bottom: 10px; padding: 3px 8px; background: var(--accent-soft); color: var(--accent); font-size: 10px; font-weight: 700; text-transform: uppercase; }
.svc-zone-price { margin: 0 0 8px; font-family: var(--font-display); font-size: 1.55rem; font-weight: 600; }
.svc-zone p:last-child, .svc-method p { margin: 0; color: var(--muted); font-size: 0.94rem; }
.svc-method-num { display: block; margin-bottom: 8px; color: var(--secondary); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; }
.svc-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.svc-step { padding: 18px 16px; background: var(--surface); border: 1px solid var(--line); }
.svc-step span { display: block; margin-bottom: 8px; color: var(--secondary); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; }
.svc-panel--dark { background: var(--accent); color: #fff8f2; padding: clamp(24px, 3vw, 36px); }
.svc-panel--dark .eyebrow { color: var(--secondary); }
.svc-panel--dark h2 { color: #fff; }
.svc-panel--dark p { color: rgba(255, 248, 242, 0.75); margin: 0; }
.svc-checklist { margin: 8px 0 0; padding: 0; list-style: none; display: grid; gap: 8px; }
.svc-checklist li { position: relative; padding-left: 18px; color: var(--muted); font-size: 0.94rem; }
.svc-checklist li::before { content: "◆"; position: absolute; left: 0; color: var(--secondary); font-size: 8px; top: 0.45em; }
.svc-panel--dark .svc-checklist li { color: rgba(255, 248, 242, 0.78); }
.svc-note { margin: 12px 0 0; color: var(--muted); font-size: 0.9rem; }

.mid-cta {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  padding: 36px 40px;
  background: var(--accent);
  color: #fff8f2;
  text-align: left;
}
.mid-cta h2 { color: #fff; margin: 0; font-family: var(--font-display); }
.mid-cta p { margin: 8px 0 0; color: rgba(255, 248, 242, 0.75); max-width: 44ch; }
.mid-cta .btn-accent { background: var(--secondary); color: var(--ink); flex-shrink: 0; }
.mid-cta .btn-accent:hover { background: #fff; color: var(--accent); }

.faq-list { display: grid; gap: 12px; }
.faq-item { background: var(--surface); border: 1px solid var(--line); padding: 0 22px; }
.faq-item summary { cursor: pointer; font-weight: 600; padding: 16px 0; list-style: none; font-family: var(--font-display); font-size: 1.05rem; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item[open] summary { color: var(--accent); }
.faq-item p { margin: 0 0 16px; color: var(--muted); max-width: 68ch; }

.cta-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  background: var(--surface);
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.cta-panel h2 { font-family: var(--font-display); }
.contact-lines { list-style: none; padding: 0; margin: 16px 0 0; display: grid; gap: 8px; }
.contact-lines a { color: var(--accent); font-weight: 600; }
.lead-form { display: grid; gap: 12px; }
.field label { display: block; margin-bottom: 5px; font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.checkbox-field { display: flex; gap: 8px; align-items: flex-start; font-size: 13px; }
.field-honey { position: absolute; left: -9999px; }
.lead-form-message { margin: 0; font-size: 14px; }
.lead-form-message.is-error { color: #b54a3a; }
.lead-form-message.is-success { color: var(--accent-deep); }

.site-footer {
  margin-top: auto;
  padding: 52px 0 22px;
  background: var(--accent-deep);
  color: rgba(255, 248, 242, 0.72);
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr; gap: 32px; }
.footer-grid strong { display: block; margin-bottom: 14px; font-family: var(--font-display); font-size: 1.15rem; color: #fff; }
.footer-grid nav, .footer-contacts { display: grid; gap: 8px; }
.footer-grid a { color: rgba(255, 248, 242, 0.78); text-decoration: none; }
.footer-grid a:hover { color: var(--secondary); }
.footer-brand p { color: rgba(255, 248, 242, 0.58); max-width: 34ch; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 44px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13px;
  color: rgba(255, 248, 242, 0.42);
}

.product-hero { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 40px; align-items: start; }
.product-hero-copy h1 { font-family: var(--font-display); font-size: clamp(1.75rem, 3vw, 2.4rem); margin: 0 0 14px; }
.product-hero-copy .product-lead { margin: 0 0 16px; color: var(--muted); }
.product-hero-copy .product-price {
  margin: 4px 0 18px;
  padding: 0;
  background: transparent;
  color: var(--accent) !important;
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
}
.product-gallery-main { aspect-ratio: 5 / 4; overflow: hidden; background: var(--media-bg); border: 1px solid var(--line); }
.product-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-top: 10px; }
.product-thumbs button { border: 2px solid transparent; padding: 0; overflow: hidden; aspect-ratio: 5 / 4; cursor: pointer; background: none; }
.product-thumbs button.is-active { border-color: var(--accent); }
.specs { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 16px; margin: 0 0 20px; }
.specs dt { color: var(--muted); font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.specs dd { margin: 0; font-weight: 600; }
.stock-note { padding: 14px 16px; background: var(--accent-soft); border-left: 3px solid var(--accent); font-size: 14px; }

.page-hero {
  width: 100%;
  margin: 0;
  padding: clamp(32px, 5vw, 52px) 0 clamp(20px, 3vw, 28px);
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.page-hero .container { max-width: 960px; }
.page-hero h1 {
  color: var(--ink);
  font-family: var(--font-body);
  font-size: clamp(1.65rem, 2.6vw, 2.15rem);
  font-weight: 700;
  line-height: 1.2;
  max-width: none;
  margin-inline: auto;
}
.page-hero p {
  color: var(--muted);
  margin: 10px auto 0;
  max-width: 780px;
  font-size: 0.98rem;
  line-height: 1.45;
}
.page-hero .actions { margin-top: 18px; justify-content: center; }

@media (min-width: 981px) {
  .page-hero h1,
  .page-hero p { text-wrap: pretty; }
}

.article-crumbs { max-width: var(--container); margin: 24px auto 0; padding: 0 var(--gutter); justify-content: flex-start; }
.article-cover { margin: 16px auto 0; aspect-ratio: 16 / 8; max-height: 480px; overflow: hidden; border: 1px solid var(--line); background: var(--media-bg); }
.article-cover img { width: 100%; height: 100%; object-fit: cover; }
.article-layout { margin: 32px auto 0; display: grid; grid-template-columns: minmax(0, 1fr) 260px; gap: 40px; }
.article-body { max-width: 68ch; }
.article-intro { margin-bottom: 1.6em; padding-bottom: 1.2em; border-bottom: 1px solid var(--line); }
.article-intro h1 { font-family: var(--font-display); font-size: clamp(1.65rem, 3vw, 2.35rem); margin: 0; line-height: 1.15; }
.article-intro .article-lead { font-size: 1.05rem; color: var(--muted-ink, var(--muted)); margin: 1em 0 0; line-height: 1.65; }
.article-meta { display: flex; flex-wrap: wrap; gap: 12px; font-size: 13px; color: var(--muted); margin-top: 0.75em; }
.article-body h2 { font-family: var(--font-display); font-size: 1.45rem; margin: 1.8em 0 0.5em; padding-top: 0.5em; border-top: 1px solid var(--line); }
.article-body h3 { font-size: 1.05rem; margin: 1.2em 0 0.35em; }
.article-body p { line-height: 1.7; }
.article-body a { color: var(--accent); }
.crumbs { display: flex; flex-wrap: wrap; gap: 6px; font-size: 13px; color: var(--muted); margin-bottom: 0; }
.article-callout { margin: 1.4em 0; padding: 16px 18px; border-left: 3px solid var(--secondary); background: var(--bg-soft); }
.article-aside { position: sticky; top: 104px; align-self: start; }
.article-aside-card { background: var(--accent); color: #fff8f2; padding: 20px 18px; }
.article-aside-card .eyebrow { color: var(--secondary); }
.article-aside-card h3 { color: #fff; }
.article-aside-card ul { margin: 0 0 14px; padding-left: 16px; color: rgba(255, 248, 242, 0.75); font-size: 14px; }
.article-aside-card .btn { width: 100%; margin-top: 8px; }
.article-aside-card .btn-outline { color: #fff; border-color: rgba(255,255,255,0.4); }

.blog-card-media { display: block; aspect-ratio: 16 / 10; overflow: hidden; background: var(--media-bg); }
.blog-list { display: grid; gap: 28px; }
.blog-featured {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  overflow: hidden;
  text-decoration: none;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  transition: box-shadow 0.25s;
}
.blog-featured:hover { box-shadow: var(--shadow-lift); color: inherit; }
.blog-featured-media { position: relative; min-height: 320px; background: var(--media-bg); }
.blog-featured-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.blog-featured:hover img { transform: scale(1.03); }
.blog-featured-body { display: flex; flex-direction: column; justify-content: center; padding: 32px 28px; }
.blog-featured-body h2 { font-family: var(--font-display); font-size: clamp(1.4rem, 2.5vw, 2rem); }
.blog-featured-more { margin-top: 16px; color: var(--accent); font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; font-size: 12px; }
.blog-grid, .blog-preview-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.blog-card {
  background: var(--surface);
  border: 1px solid var(--line);
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s, box-shadow 0.25s;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); color: inherit; }
.blog-card-body { padding: 16px 16px 18px; flex: 1; display: flex; flex-direction: column; }
.blog-card-body .meta { color: var(--secondary); font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.blog-card-body .h3 { font-size: 1.05rem; margin: 8px 0 0; }
.blog-card-body p { color: var(--muted); margin: 8px 0 0; font-size: 14px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

.lead-modal[hidden] { display: none; }
.lead-modal { position: fixed; inset: 0; z-index: 80; display: grid; place-items: center; }
.lead-modal-backdrop { position: absolute; inset: 0; background: rgba(36, 24, 28, 0.58); }
.lead-modal-dialog { position: relative; width: min(440px, calc(100% - 28px)); background: var(--surface); padding: 28px 24px; border: 1px solid var(--line); box-shadow: var(--shadow-lift); }
.lead-modal-dialog h2 { font-family: var(--font-display); }
.lead-modal-close { position: absolute; top: 10px; right: 12px; border: 0; background: none; font-size: 26px; cursor: pointer; color: var(--muted); }
body.lead-modal-open { overflow: hidden; }

.cookie-consent { position: fixed; left: max(16px, env(safe-area-inset-left)); right: max(16px, env(safe-area-inset-right)); bottom: max(16px, env(safe-area-inset-bottom)); z-index: 70; pointer-events: none; }
.cookie-consent[hidden] { display: none !important; }
.cookie-consent-inner {
  pointer-events: auto;
  width: min(560px, 100%);
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas: "icon copy" "actions actions";
  gap: 12px 14px;
  padding: 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lift);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}
.cookie-consent.is-visible .cookie-consent-inner { opacity: 1; transform: none; }
.cookie-consent-icon { grid-area: icon; width: 40px; height: 40px; display: grid; place-items: center; color: var(--accent); background: var(--accent-soft); }
.cookie-consent-copy { grid-area: copy; }
.cookie-consent-title { margin: 0 0 4px; font-family: var(--font-display); font-weight: 600; }
.cookie-consent-text { margin: 0; font-size: 0.9rem; color: var(--muted); }
.cookie-consent-actions { grid-area: actions; display: flex; flex-wrap: wrap; gap: 8px; justify-content: flex-end; }

@media (min-width: 721px) {
  .cookie-consent-inner { grid-template-columns: auto 1fr auto; grid-template-areas: "icon copy actions"; align-items: center; width: min(700px, 100%); }
  .cookie-consent-actions { flex-direction: column; padding-top: 0; }
  .cookie-consent-actions .btn { width: 100%; }
}

.reveal { opacity: 0; transform: translateY(22px); transition: 0.65s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.empty-state { padding: 36px; text-align: center; color: var(--muted); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

@media (max-width: 1280px) {
  .nav-toggle { display: inline-flex; }
  .header-callback, .header-phone { display: none; }
  .brand-wordmark { display: none; }
  .main-nav {
    position: fixed;
    inset: 86px 14px auto;
    display: none;
    flex-direction: column;
    padding: 16px;
    background: var(--surface);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-lift);
  }
  .main-nav.is-open { display: flex; }
  .nav-extra { display: grid; gap: 8px; padding-top: 10px; border-top: 1px solid var(--line); margin-top: 8px; }
}

@media (max-width: 980px) {
  :root { --block-gutter: 20px; }
  html { scroll-padding-top: 72px; }
  .hero-intro h1,
  .hero-lead { white-space: normal; }
  .hero-lead { max-width: 42ch; margin-inline: auto; }
  .hero-banner-arch { width: 94vw; border-radius: 40% 40% 10px 10px / 14% 14% 10px 10px; }
  .notice-pills, .notice-bar { grid-template-columns: 1fr; }
  .product-hero, .cta-panel, .footer-grid, .about-grid, .mid-cta, .photo-split, .photo-mosaic, .blog-featured, .pay-mosaic, .pay-split, .svc-zones, .svc-methods { grid-template-columns: 1fr; }
  .article-layout { grid-template-columns: 1fr; }
  .article-aside { position: static; }
  .catalog-filters { grid-template-columns: 1fr; }
  .catalog-filters strong { grid-column: 1 / -1; }
  .catalog-grid, .services-grid, .split-cards, .split-cards.cols-4, .adv-grid, .blog-preview-grid, .blog-grid, .reviews-page, .svc-zones, .svc-steps { grid-template-columns: 1fr 1fr; }
  .adv-grid { grid-template-columns: 1fr; }
  .adv-card { border-right: 0; border-bottom: 1px solid var(--line); }
  .adv-card:last-child { border-bottom: 0; }
  .mid-cta { flex-direction: column; align-items: flex-start; text-align: left; }
  .product-slider-track .product-card { flex: 0 0 calc((100% - 20px) / 2); }
  .photo-mosaic .is-wide { grid-row: auto; }
  .photo-mosaic .is-wide img { min-height: 220px; }
  .page-hero h1::before, .page-hero h1::after { display: none; }
}

@media (max-width: 720px) {
  :root { --block-gutter: 16px; }
  .catalog-grid, .services-grid, .split-cards, .split-cards.cols-4, .blog-preview-grid, .blog-grid, .reviews-page, .specs, .svc-zones, .svc-methods, .svc-steps, .pay-steps, .pay-gallery { grid-template-columns: 1fr; }
  .hero-intro h1,
  .hero-lead { white-space: normal; }
  .hero-intro h1 { font-size: clamp(1.65rem, 7vw, 2.1rem); }
  .hero-lead { font-size: 0.92rem; max-width: 34ch; margin-inline: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .product-slider-track .product-card { flex: 0 0 84%; scroll-snap-align: center; }
  .nav-toggle-label { display: none; }
  .blog-featured { grid-template-columns: 1fr; }
  .blog-featured-media { min-height: 220px; }
  .hero-banner-cap span::after { display: none; }
  .hero-banner-cap { flex-direction: column; gap: 4px; }
}
