@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@500;600;700&family=Outfit:wght@400;500;600;700;800&family=Syne:wght@600;700;800&display=swap");

/* Graphite Yard — бетон, графит, бирюза */
:root {
  --bg: #e9ecef;
  --bg-soft: #dde3e8;
  --surface: #f5f7f8;
  --chip: #d5dde4;
  --ink: #101418;
  --fg: #101418;
  --muted: #5c6770;
  --line: #c5ced6;
  --border: #c5ced6;
  --primary: #0d7377;
  --accent: #0d7377;
  --accent-deep: #095558;
  --accent-soft: rgba(13, 115, 119, 0.12);
  --secondary: #c4783a;
  --card: #f5f7f8;
  --media-bg: #cfd8df;
  --header-bg: rgba(245, 247, 248, 0.94);
  --header-text: #101418;
  --forest: #0c1014;
  --radius: 2px;
  --radius-lg: 4px;
  --shadow: 0 10px 28px rgba(16, 20, 24, 0.08);
  --shadow-lift: 0 18px 40px rgba(16, 20, 24, 0.14);
  --font-display: "Syne", "Segoe UI", sans-serif;
  --font-body: "Outfit", "Segoe UI", sans-serif;
  --font-num: "IBM Plex Mono", "Consolas", monospace;
  --header-sticky: 112px;
  --space-section: clamp(32px, 4.5vw, 56px);
  --container: 1240px;
  --gutter: 16px;
  --block-gutter: 24px;
  --block-width: min(var(--container), calc(100% - 2 * var(--block-gutter)));
  --ease: cubic-bezier(0.2, 0.9, 0.2, 1);
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.6;
  background:
    linear-gradient(180deg, #dfe6eb 0%, var(--bg) 18%),
    repeating-linear-gradient(90deg, transparent 0 47px, rgba(16, 20, 24, 0.03) 47px 48px);
  overflow-x: clip;
}

main { flex: 1 0 auto; }
img { max-width: 100%; height: auto; display: block; }

.hero-visual img,
.hero-bg-photo,
.product-card-media img,
.product-gallery-main img,
[data-gallery-main],
.about-photo img,
.duo-feature-col figure img,
.band-split-media img {
  max-width: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-visual img,
.hero-bg-photo {
  position: absolute;
  inset: 0;
}

a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 0.18em; }
a:hover { color: var(--accent-deep); }
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);
}

.container, .c-container,
.hero-inner,
.article-head,
.article-cover,
.article-layout,
.article-related,
.format-band-inner,
.mid-cta {
  width: var(--block-width);
  max-width: 100%;
  margin-inline: auto;
  padding-inline: 0;
}

.section, .c-section { padding: var(--space-section) 0; }
.section-heading {
  display: grid;
  gap: 6px;
  margin-bottom: 20px;
  max-width: 680px;
}
.section-heading p { color: var(--muted); margin: 0; }

h1, h2, h3, .h3 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.02;
  margin: 0 0 12px;
}
h1 { font-size: clamp(34px, 5.6vw, 64px); }
h2 { font-size: clamp(26px, 3.4vw, 40px); }
h3, .h3 { font-size: 1.25rem; letter-spacing: -0.03em; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 18px;
  height: 2px;
  background: var(--secondary);
}

.brand-kicker {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: clamp(26px, 3.8vw, 38px);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1;
}

.btn, .c-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  transition: 0.2s var(--ease);
}
.btn:hover { transform: translateY(-1px); color: inherit; }
.btn-primary, .btn-accent, .c-button--accent {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 20px rgba(13, 115, 119, 0.25);
}
.btn-primary:hover, .btn-accent:hover { background: var(--accent-deep); color: #fff; }
.btn-outline, .btn-secondary, .c-button--outline {
  background: transparent;
  border-color: currentColor;
  color: var(--ink);
}
.btn-outline:hover, .btn-secondary:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.actions { display: flex; flex-wrap: wrap; gap: 10px; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--header-bg);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  color: var(--header-text);
}
.header-top {
  background: var(--forest);
  color: rgba(245, 247, 248, 0.72);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.header-top-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-block: 8px;
}
.header-shell { border-bottom: 0; }
.header-main-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 60px;
  gap: 10px;
  max-width: 100%;
  box-sizing: border-box;
}
.header-left {
  flex: 0 0 auto;
  min-width: 0;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}
.brand img { width: 88px; height: 46px; object-fit: contain; }
.brand-wordmark strong {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  flex-wrap: nowrap;
  gap: 2px;
  min-width: 0;
}
.main-nav > a {
  padding: 7px 9px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
}
.main-nav > a.is-active,
.main-nav > a:hover {
  color: var(--accent-deep);
  background: var(--bg-soft);
}
.nav-extra { display: none; }
.header-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex: 0 0 auto;
  min-width: 0;
}
.header-phone {
  display: grid;
  text-decoration: none;
  color: var(--ink);
  line-height: 1.15;
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
}
.header-phone small {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.header-callback {
  flex-shrink: 0;
  min-height: 42px;
  padding: 0 14px;
  font-size: 12px;
  white-space: nowrap;
}
.nav-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid var(--line);
  background: var(--surface);
  cursor: pointer;
  flex-shrink: 0;
}
.nav-toggle-lines {
  width: 18px;
  height: 2px;
  background: currentColor;
  box-shadow: 0 -6px 0 currentColor, 0 6px 0 currentColor;
}
body.nav-open { overflow: hidden; }

/* Hero stage */
.hero--stage {
  position: relative;
  min-height: min(78vh, 720px);
  display: grid;
  align-items: end;
  background: var(--forest);
  overflow: hidden;
}
.hero--stage .hero-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero--stage .hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(12, 16, 20, 0.88) 0%, rgba(12, 16, 20, 0.55) 38%, rgba(12, 16, 20, 0.2) 72%),
    linear-gradient(0deg, rgba(12, 16, 20, 0.65), transparent 45%);
}
.hero--stage .hero-inner {
  position: relative;
  z-index: 2;
  padding: 40px 0 36px;
}
.hero--stage .hero-copy {
  max-width: 640px;
  color: #f5f7f8;
}
.hero--stage .brand-kicker { color: #fff; }
.hero--stage .eyebrow { color: #9fd4d6; }
.hero--stage .eyebrow::before { background: var(--secondary); }
.hero--stage h1 { color: #fff; max-width: 16ch; }
.hero--stage .hero-copy > p:not(.brand-kicker):not(.eyebrow) {
  color: rgba(245, 247, 248, 0.8);
  max-width: 42ch;
  font-size: 1.08rem;
}
.hero--stage .btn-outline {
  border-color: rgba(255, 255, 255, 0.65);
  color: #fff;
}
.hero--stage .btn-outline:hover {
  background: #fff;
  color: var(--forest);
  border-color: #fff;
}
.hero--stage .btn-accent {
  background: var(--secondary);
  box-shadow: 0 10px 24px rgba(196, 120, 58, 0.3);
}
.hero--stage .btn-accent:hover { background: #a8642c; }

/* Format band */
.format-band {
  background: var(--forest);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.format-band-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 10px 0;
}
.format-chip {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(245, 247, 248, 0.88);
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: 0.2s;
}
.format-chip:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

/* Duo feature */
.duo-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.duo-feature-col {
  display: grid;
  gap: 10px;
  align-content: start;
}
.duo-feature-col figure {
  margin: 0;
  aspect-ratio: 5 / 4;
  overflow: hidden;
  background: var(--media-bg);
}
.duo-feature-col figure img {
  transition: transform 0.7s var(--ease);
}
.duo-feature-col:hover figure img { transform: scale(1.04); }
.duo-feature-col p { margin: 0; color: var(--muted); max-width: 42ch; }

/* Rail / metrics / timeline / band / quotes */
.rail-section {
  background: var(--forest);
  color: #f5f7f8;
  padding: var(--space-section) 0;
}
.rail-section .section-heading h2,
.rail-section h2 { color: #fff; }
.rail-section .eyebrow { color: #9fd4d6; }
.rail-section .section-heading p,
.rail-section p { color: rgba(245, 247, 248, 0.72); }
.rail-section .btn-outline {
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}
.rail-section .btn-outline:hover {
  background: #fff;
  color: var(--forest);
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding: 18px 0;
}
.section .metric-row {
  border-color: var(--line);
  background: var(--surface);
  padding: 18px 16px;
}
.metric-row strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}
.metric-row p { margin: 0; font-size: 14px; }
.rail-section .metric-row strong { color: #fff; }

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  background: var(--surface);
}
.timeline-step {
  padding: 18px 16px;
  border-right: 1px solid var(--line);
}
.timeline-step:last-child { border-right: 0; }
.timeline-step > span {
  display: block;
  margin-bottom: 10px;
  color: var(--accent);
  font-family: var(--font-num);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
}
.timeline-step p { margin: 0; color: var(--muted); font-size: 14px; }

.band-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 0;
  align-items: stretch;
  width: 100%;
  max-width: 100%;
  margin: 0;
  border: 1px solid var(--line);
  overflow: hidden;
  background: var(--surface);
}
.band-split.section {
  /* legacy: if used without .container wrapper */
  width: var(--block-width);
  max-width: 100%;
  margin-inline: auto;
  padding-left: 0;
  padding-right: 0;
}
.band-split-media {
  min-height: 280px;
  background: var(--media-bg);
  overflow: hidden;
}
.band-split-copy {
  display: grid;
  align-content: center;
  gap: 10px;
  padding: clamp(20px, 3.5vw, 36px);
  background: var(--surface);
  border: 0;
}
.band-split--lite {
  width: 100%;
  margin: 0;
  border: 1px solid var(--line);
}
.band-split--lite .band-split-media { min-height: 220px; }
.band-split--lite .band-split-copy {
  border: 0;
  padding: 20px 22px;
}

/* Full-bleed workshop panel (homepage about) */
.workshop-panel {
  position: relative;
  min-height: min(56vh, 480px);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--forest);
  color: #f5f7f8;
}
.workshop-panel-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.workshop-panel-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}
.workshop-panel-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(105deg, rgba(12, 16, 20, 0.92) 0%, rgba(12, 16, 20, 0.72) 42%, rgba(12, 16, 20, 0.28) 78%),
    linear-gradient(0deg, rgba(12, 16, 20, 0.55), transparent 50%);
}
.workshop-panel-inner {
  position: relative;
  z-index: 2;
  padding: clamp(28px, 4vw, 48px) 0;
}
.workshop-panel-copy {
  max-width: 560px;
  display: grid;
  gap: 10px;
}
.workshop-panel .eyebrow { color: #9fd4d6; }
.workshop-panel .eyebrow::before { background: var(--secondary); }
.workshop-panel h2 {
  color: #fff;
  margin: 0;
  max-width: 14ch;
}
.workshop-panel-copy > p {
  margin: 0;
  color: rgba(245, 247, 248, 0.8);
  font-size: 1.05rem;
  max-width: 42ch;
}
.workshop-stats {
  list-style: none;
  margin: 4px 0 2px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding-top: 14px;
}
.workshop-stats li {
  display: grid;
  gap: 4px;
}
.workshop-stats strong {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: -0.03em;
  color: #fff;
}
.workshop-stats span {
  font-size: 12px;
  line-height: 1.35;
  color: rgba(245, 247, 248, 0.62);
}
.workshop-panel .btn-outline {
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}
.workshop-panel .btn-outline:hover {
  background: #fff;
  color: var(--forest);
  border-color: #fff;
}
.workshop-panel .btn-accent {
  background: var(--secondary);
  box-shadow: 0 10px 24px rgba(196, 120, 58, 0.28);
}
.workshop-panel .btn-accent:hover { background: #a8642c; }

.quote-rail {
  background:
    linear-gradient(180deg, transparent, rgba(13, 115, 119, 0.05)),
    var(--bg);
}
.quote-rail blockquote {
  margin: 0 0 10px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}
.quote-rail blockquote:last-of-type { border-bottom: 1px solid var(--line); }
.quote-rail blockquote p {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  letter-spacing: -0.03em;
  line-height: 1.35;
  max-width: 48ch;
}
.quote-rail cite {
  font-style: normal;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Products */
.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 var(--ease);
}
.product-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.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 { transition: transform 0.6s var(--ease); }
.product-card:hover .product-card-media img { transform: scale(1.04); }
.product-card-body {
  padding: 12px 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.product-card-body p { margin: 0; color: var(--muted); font-size: 13px; }
.product-card-body .h3 {
  font-size: 1.15rem;
  line-height: 1.2;
  min-height: 2.4em;
  margin: 0;
}
.product-card-body .h3 a { text-decoration: none; }
.product-price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.25em;
  margin: 0;
  font-family: var(--font-num);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  color: var(--ink);
}
.price-from {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.product-price small { font-size: 0.55em; }
.product-meta { display: flex; flex-wrap: wrap; gap: 6px; }
.tag, .pill {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 8px;
  background: var(--chip);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.product-badges { position: absolute; top: 10px; left: 10px; display: flex; gap: 6px; z-index: 1; }
.pill-hit { background: var(--secondary); color: #fff; }
.pill-new { background: var(--accent); color: #fff; }
.pill-recommend { background: var(--ink); color: #fff; }
.product-actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: auto; padding-top: 6px; }
.product-actions .btn { min-height: 42px; flex: 1; }

.catalog-section { padding-top: calc(var(--space-section) - 8px); }
.catalog-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 240px;
  gap: 18px;
  align-items: start;
}
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  min-width: 0;
}
.catalog-filters {
  position: sticky;
  top: calc(var(--header-sticky) + 16px);
  align-self: start;
  display: grid;
  gap: 10px;
  padding: 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  max-height: calc(100vh - var(--header-sticky) - 32px);
  overflow: auto;
  z-index: 5;
}
.catalog-filter-field { display: grid; gap: 6px; }
.catalog-filter-field label,
.catalog-filters strong {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.catalog-filter-field select,
.input, .textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
}
.textarea { min-height: 96px; resize: vertical; }
.catalog-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 13px;
}

.product-slider-section { overflow: hidden; }
.product-slider-viewport {
  container-type: inline-size;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
}
.product-slider-viewport::-webkit-scrollbar { display: none; }
.product-slider-viewport.is-dragging { cursor: grabbing; scroll-snap-type: none; }
.product-slider-track {
  display: flex;
  gap: 12px;
  width: max-content;
  padding-bottom: 2px;
}
.product-slider-track .product-card {
  flex: 0 0 calc((100cqi - 32px) / 3);
  width: calc((100cqi - 32px) / 3);
  scroll-snap-align: start;
}
.product-slider-controls {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  justify-content: flex-end;
}
.product-slider-btn {
  width: 44px;
  height: 44px;
  border: 1px solid var(--ink);
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
  font-size: 18px;
}
.product-slider-btn:hover:not(:disabled) { background: var(--ink); color: #fff; }
.product-slider-btn:disabled {
  opacity: 0.35;
  cursor: default;
}

/* Generic cards / old helpers still used on inner pages */
.services-grid, .pay-ways, .split-cards, .adv-grid, .reviews-page {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.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: 16px 14px;
}
a.split-card { text-decoration: none; color: inherit; display: block; }
a.split-card:hover { border-color: var(--accent); }
.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.35fr 1fr 1fr;
  gap: 12px;
}
.photo-mosaic figure {
  margin: 0;
  overflow: hidden;
  background: var(--media-bg);
  border: 1px solid var(--line);
}
.photo-mosaic img { width: 100%; height: 100%; min-height: 180px; object-fit: cover; }
.photo-mosaic .is-wide { grid-row: 1 / span 2; }
.photo-mosaic .is-wide img { min-height: 100%; }
.photo-mosaic figcaption {
  padding: 10px 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--surface);
}
.sample-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}
.sample-strip figure { margin: 0; overflow: hidden; background: var(--media-bg); }
.sample-strip img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.sample-strip figcaption {
  padding: 8px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: var(--surface);
}

.about-grid, .photo-split, .product-hero, .pay-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
}
.about-photo, .photo-split img {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--media-bg);
}
.about-list { margin: 16px 0 0; padding-left: 18px; color: var(--muted); }

.pay-mosaic {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 14px;
}
.pay-tile {
  display: grid;
  background: var(--surface);
  border: 1px solid var(--line);
  overflow: hidden;
}
.pay-tile.is-wide { grid-row: span 2; }
.pay-tile img { width: 100%; height: 180px; object-fit: cover; }
.pay-tile.is-wide img { height: 260px; }
.pay-tile-body { padding: 18px; }
.pay-tile-body p { margin: 0; color: var(--muted); }
.pay-steps, .pay-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.pay-step, .pay-gallery figure {
  margin: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  overflow: hidden;
}
.pay-step img, .pay-gallery img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.pay-step-body, .pay-gallery figcaption { padding: 14px; }
.pay-step-body strong { color: var(--accent); }
.pay-step-body p { margin: 0; color: var(--muted); font-size: 14px; }

.mid-cta {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  padding: 28px 32px;
  background: var(--forest);
  color: #f5f7f8;
}
.mid-cta h2 { color: #fff; }
.mid-cta p { margin: 8px 0 0; color: rgba(245, 247, 248, 0.72); }

.faq-list { display: grid; gap: 8px; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 4px 18px 10px;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  padding: 14px 0;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item[open] summary { color: var(--accent-deep); }
.faq-item p { margin: 0 0 14px; color: var(--muted); max-width: 72ch; }

.cta-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  background: transparent;
  color: inherit;
  padding: 0;
  border-radius: 0;
}
.rail-section .cta-panel { color: #f5f7f8; align-items: center; }
.rail-section .cta-panel .eyebrow { color: #9fd4d6; }
.rail-section .cta-panel h2 { color: #fff; }
.rail-section .cta-panel p { color: rgba(245, 247, 248, 0.75); }
.band-split-copy .metric-row {
  border-color: var(--line);
  background: transparent;
  padding: 18px 0 0;
  grid-template-columns: 1fr 1fr;
}
.band-split-copy .metric-row strong { color: var(--ink); }
.band-split-copy .metric-row p { color: var(--muted); }
.contact-lines {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  gap: 8px;
}
.contact-lines a { color: inherit; }
.lead-form {
  display: grid;
  gap: 10px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.page-home .rail-section .lead-form,
.rail-section .lead-form { color: #f5f7f8; }
.rail-section .lead-form .input,
.rail-section .lead-form .textarea {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.18);
  color: #fff;
}
.rail-section .lead-form a { color: #9fd4d6; }
.field { display: grid; gap: 6px; }
.field label { font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; }
.checkbox-field {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
}
.field-honey {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}
.lead-form-message { margin: 0; font-size: 14px; }
.lead-form-message.is-success { color: var(--accent); }
.lead-form-message.is-error { color: #b42318; }

/* Product page */
.product-hero { align-items: start; gap: 22px; padding-top: 16px; }
.product-gallery-main {
  aspect-ratio: 5 / 4;
  overflow: hidden;
  background: var(--media-bg);
}
.product-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 10px;
}
.product-thumbs button {
  padding: 0;
  border: 2px solid transparent;
  background: var(--media-bg);
  cursor: pointer;
  aspect-ratio: 1;
  overflow: hidden;
}
.product-thumbs button.is-active { border-color: var(--accent); }
.product-thumbs img { width: 100%; height: 100%; object-fit: cover; }
.product-lead { margin: 0 0 16px; color: var(--muted); max-width: 48ch; }
.specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 18px;
  margin: 18px 0;
}
.specs dt {
  color: var(--muted);
  font-size: 11px;
  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 slab */
.page-hero,
.page-hero--slab {
  width: 100%;
  margin: 0;
  padding: 32px 0 22px;
  background:
    linear-gradient(120deg, rgba(13, 115, 119, 0.1), transparent 50%),
    linear-gradient(180deg, #d5dde4, var(--bg));
  border-bottom: 1px solid var(--line);
}
.page-hero .container > * { margin-inline: 0; }
.page-hero .eyebrow { color: var(--accent-deep); }
.page-hero h1 { color: var(--ink); max-width: 16ch; }
.page-hero p { color: var(--muted); max-width: 58ch; }
.page-hero .actions { margin-top: 18px; }

/* Blog / article */
.article-head { margin: 16px auto 0; }
.article-head h1 { font-size: clamp(32px, 4vw, 52px); max-width: 16ch; }
.article-lead { font-size: 1.15rem; color: var(--muted); margin: 0; }
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  font-size: 13px;
  color: var(--muted);
  margin-top: 10px;
}
.article-cover {
  margin: 16px auto;
  overflow: hidden;
  background: var(--media-bg);
  aspect-ratio: 16 / 9;
}
.article-cover img { width: 100%; height: 100%; object-fit: cover; }
.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 24px;
  align-items: start;
  margin-bottom: 32px;
}
.article-body { max-width: 68ch; }
.article-body h2 { margin-top: 22px; }
.article-body h3 { margin-top: 16px; }
.article-body p { color: var(--ink); }
.article-body a { color: var(--accent-deep); }
.article-callout {
  margin: 22px 0;
  padding: 16px 18px;
  border-left: 3px solid var(--accent);
  background: var(--surface);
}
.article-figure { margin: 28px 0; }
.article-figure img { width: 100%; max-height: 420px; object-fit: cover; }
.article-figure figcaption { font-size: 13px; color: var(--muted); margin-top: 10px; }
.article-aside { position: sticky; top: 88px; }
.article-aside-card {
  padding: 16px;
  background: var(--forest);
  color: #f5f7f8;
}
.article-aside-card .eyebrow { color: #9fd4d6; }
.article-aside-card h3 { color: #fff; }
.article-aside-card ul { padding-left: 18px; color: rgba(245, 247, 248, 0.75); }
.article-aside-card .btn { width: 100%; margin-top: 8px; }
.article-aside-card .btn-outline {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}
.article-related { width: var(--block-width); margin: 0 auto 40px; }
.crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 12px;
}
.crumbs a { color: var(--muted); text-decoration: none; }

.blog-list { display: grid; gap: 18px; }
.blog-featured {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
}
.blog-featured-media {
  display: block;
  min-height: 320px;
  background: var(--media-bg);
  overflow: hidden;
}
.blog-featured-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.blog-featured:hover .blog-featured-media img { transform: scale(1.04); }
.blog-featured-body { padding: 22px 20px; display: grid; align-content: center; gap: 8px; }
.blog-featured-meta { color: var(--muted); font-size: 13px; }
.blog-featured-more {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}
.blog-grid, .blog-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.blog-grid--3 { grid-template-columns: repeat(3, 1fr); }
.blog-card {
  display: grid;
  background: var(--surface);
  border: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.blog-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); color: inherit; }
.blog-card-media {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--media-bg);
}
.blog-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.blog-card:hover .blog-card-media img { transform: scale(1.04); }
.blog-card-body { padding: 12px; display: grid; gap: 6px; }
.blog-card-body .meta {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.blog-card-body p { margin: 0; color: var(--muted); font-size: 14px; }
.blog-list-head { margin-top: 12px; }

/* Blog index — editorial desk */
.blog-desk {
  padding: clamp(28px, 4vw, 48px) 0 8px;
  background:
    linear-gradient(180deg, #d5dde4 0%, var(--bg) 28%);
}
.blog-desk-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: end;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.blog-desk-head h1 {
  margin: 0;
  max-width: 14ch;
  font-size: clamp(30px, 4.2vw, 48px);
}
.blog-desk-lead {
  margin: 10px 0 0;
  max-width: 48ch;
  color: var(--muted);
}
.blog-desk-aside {
  display: grid;
  gap: 4px;
  text-align: right;
  font-size: 13px;
  color: var(--muted);
}
.blog-desk-aside strong {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: -0.03em;
}
.blog-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 16px 0 8px;
}
.blog-chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid var(--line);
  background: var(--surface);
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  transition: 0.2s;
}
.blog-chip:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}
.blog-index {
  display: grid;
  gap: 0;
  padding: 8px 0 24px;
}
.blog-row {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) 220px;
  gap: 18px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  transition: background 0.2s;
}
.blog-row:hover { background: rgba(255, 255, 255, 0.45); }
.blog-row:hover .blog-row-title { color: var(--accent-deep); }
.blog-row-num {
  font-family: var(--font-num);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  font-variant-numeric: tabular-nums;
  color: var(--accent);
}
.blog-row-copy { display: grid; gap: 6px; min-width: 0; }
.blog-row-meta {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.blog-row-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
}
.blog-row-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  max-width: 62ch;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-row-media {
  display: block;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: var(--media-bg);
}
.blog-row-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.blog-row:hover .blog-row-media img { transform: scale(1.05); }
.blog-row.is-lead {
  grid-template-columns: 56px minmax(0, 1fr) minmax(260px, 38%);
  padding: 22px 0;
  align-items: stretch;
}
.blog-row.is-lead .blog-row-title {
  font-size: clamp(1.35rem, 2.4vw, 1.9rem);
  max-width: 18ch;
}
.blog-row.is-lead .blog-row-media { aspect-ratio: 16 / 10; min-height: 180px; }
.blog-row.is-lead .blog-row-copy p { -webkit-line-clamp: 3; }

/* Footer / modals / cookie */
.site-footer {
  background: var(--forest);
  color: rgba(245, 247, 248, 0.72);
  padding: 36px 0 20px;
  margin-top: auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 18px;
  margin-bottom: 22px;
}
.footer-brand p { max-width: 36ch; }
.site-footer a { color: inherit; text-decoration: none; }
.site-footer a:hover { color: #fff; }
.site-footer nav {
  display: grid;
  gap: 8px;
  align-content: start;
}
.site-footer strong {
  color: #fff;
  margin-bottom: 6px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.footer-contacts { display: grid; gap: 8px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13px;
}

.lead-modal[hidden], .cookie-consent[hidden] { display: none !important; }
.lead-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 20px;
}
.lead-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 16, 20, 0.62);
}
.lead-modal-dialog {
  position: relative;
  width: min(440px, 100%);
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lift);
  color: var(--ink);
}
.lead-modal-close {
  position: absolute;
  top: 10px;
  right: 12px;
  border: 0;
  background: transparent;
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
}
.lead-modal-desc { color: var(--muted); margin-top: 0; }
.cookie-consent {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 70;
}
.cookie-consent-inner {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lift);
}
.cookie-consent a { color: var(--accent-deep); }

.reveal { opacity: 0; transform: translateY(18px); transition: 0.65s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }
.empty-state { padding: 32px; text-align: center; color: var(--muted); }

@media (max-width: 1400px) {
  .nav-toggle { display: inline-flex; }
  .header-callback, .header-phone { display: none; }
  .header-main-row { min-height: 56px; }
  :root {
    --gutter: 14px;
    --block-gutter: 18px;
    --header-sticky: 104px;
  }
  .brand img { width: 78px; height: 40px; }
  .main-nav {
    position: fixed;
    inset: 100px 12px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    flex: none;
    padding: 16px;
    background: var(--surface);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-lift);
    z-index: 50;
  }
  .main-nav.is-open { display: flex; }
  .nav-extra { display: grid; gap: 8px; padding-top: 8px; }
}

@media (max-width: 980px) {
  :root {
    --block-gutter: 14px;
    --space-section: clamp(28px, 5vw, 40px);
    --header-sticky: 64px;
  }
  .header-top { display: none; }
  .main-nav { inset: 64px 12px auto; }
  html { scroll-padding-top: 64px; }
  .catalog-layout {
    grid-template-columns: 1fr;
  }
  .catalog-filters {
    order: -1;
    position: static;
    max-height: none;
    overflow: visible;
  }
  .hero--stage { min-height: auto; }
  .hero--stage .hero-inner { min-height: 440px; padding: 28px 0 24px; align-content: end; }
  .duo-feature,
  .band-split,
  .band-split--lite,
  .catalog-layout,
  .about-grid,
  .photo-split,
  .product-hero,
  .cta-panel,
  .footer-grid,
  .blog-featured,
  .article-layout,
  .blog-desk-head,
  .pay-mosaic,
  .pay-split { grid-template-columns: 1fr; }
  .blog-desk-aside { text-align: left; }
  .blog-row,
  .blog-row.is-lead {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 12px;
  }
  .blog-row-media {
    grid-column: 1 / -1;
    order: -1;
    max-width: 100%;
  }
  .blog-row.is-lead .blog-row-media { min-height: 160px; }
  .workshop-panel { min-height: auto; }
  .workshop-panel-inner { min-height: 400px; align-content: end; }
  .workshop-stats { grid-template-columns: 1fr; gap: 10px; }
  .timeline,
  .metric-row { grid-template-columns: 1fr 1fr; }
  .timeline-step:nth-child(2n) { border-right: 0; }
  .timeline-step { border-bottom: 1px solid var(--line); }
  .catalog-grid,
  .services-grid,
  .pay-ways,
  .split-cards,
  .adv-grid,
  .blog-preview-grid,
  .blog-grid,
  .reviews-page,
  .photo-mosaic { grid-template-columns: 1fr 1fr; }
  .photo-mosaic .is-wide { grid-row: auto; }
  .sample-strip { grid-template-columns: repeat(3, 1fr); }
  .product-slider-track .product-card {
    flex: 0 0 calc((100cqi - 16px) / 2);
    width: calc((100cqi - 16px) / 2);
  }
  .article-aside { position: static; }
  .pay-steps, .pay-gallery { grid-template-columns: 1fr 1fr; }
  .mid-cta { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 720px) {
  .timeline,
  .metric-row,
  .catalog-grid,
  .services-grid,
  .pay-ways,
  .split-cards,
  .split-cards.cols-4,
  .adv-grid,
  .blog-preview-grid,
  .blog-grid,
  .blog-grid--3,
  .reviews-page,
  .specs,
  .sample-strip,
  .pay-steps,
  .pay-gallery,
  .format-band-inner { grid-template-columns: 1fr; }
  .format-band-inner { flex-direction: column; }
  .product-slider-track .product-card {
    flex: 0 0 86cqi;
    width: 86cqi;
  }
  .cookie-consent-inner { flex-direction: column; align-items: stretch; }
  .footer-bottom { flex-direction: column; }
}
