@import url("https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,500;9..144,600;9..144,700&family=Outfit:wght@400;500;600;700&display=swap");

/* ═══════════════════════════════════════════
   В Беседки.Ру — Nordic timber atelier
   светлая шапка, серif-заголовки, split-hero
═══════════════════════════════════════════ */
:root {
  --bg: #f3f0e8;
  --bg-soft: #e7eee6;
  --surface: #fffdf8;
  --chip: #e3ece4;
  --ink: #14241c;
  --fg: #14241c;
  --muted: #5a6b61;
  --line: #d2ddd4;
  --border: #d2ddd4;
  --primary: #1d4a38;
  --accent: #1d4a38;
  --accent-deep: #133328;
  --accent-soft: rgba(29, 74, 56, 0.12);
  --secondary: #b86a32;
  --wood: #b86a32;
  --card: #fffdf8;
  --header-bg: rgba(255, 253, 248, 0.88);
  --header-text: #14241c;
  --pine: #1d4a38;
  --pine-deep: #123028;
  --moss: #6f8f76;
  --paper: #fffdf8;
  --radius: 22px;
  --radius-lg: 28px;
  --radius-pill: 999px;
  --shadow: none;
  --shadow-lift: none;
  --font-display: "Fraunces", "Times New Roman", serif;
  --font-body: "Outfit", "Segoe UI", sans-serif;
  --space-section: clamp(28px, 5vw, 56px);
  --space-section-sm: clamp(18px, 3vw, 32px);
  --space-block: clamp(20px, 3.5vw, 40px);
  --container: 1280px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }

html {
  height: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 108px;
}

body {
  margin: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  background: var(--bg);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
.hero-visual img,
.hero-bg-photo,
.hero-cutout,
.product-card img,
.product-card-media img,
.product-gallery-main img,
[data-gallery-main],
.article-cover img,
.about-photo img,
.blog-card img,
.hero-slide img,
.projects-slider-track 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; }

h1, h2, h3, h4, .h3 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin: 0 0 0.4em;
  color: var(--ink);
}
h1 { font-size: clamp(2.4rem, 5.4vw, 4.4rem); }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.6rem); }
h3, .h3 {
  font-size: clamp(1.08rem, 1.6vw, 1.32rem);
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
}
p { margin: 0 0 1em; color: var(--muted); }
p:last-child { margin-bottom: 0; }

.container, .c-container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.section, .c-section {
  padding: var(--space-section) 0;
  position: relative;
  background: transparent;
}

.plant-decor,
.ui-decor,
.ui-divider,
.plant-ivy-left,
.plant-leaves-top,
.plant-herbs-right,
.plant-palm-right,
.plant-leaf-accent-left,
.plant-leaf-accent-right,
.plant-branch-left {
  display: none !important;
}

/* ─── Buttons: soft pills ─── */
.btn, .c-button {
  --btn-bg: var(--pine);
  --btn-fg: #f7faf6;
  --btn-bd: var(--pine);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 50px;
  padding: 0.8rem 1.45rem;
  border: 1.5px solid var(--btn-bd);
  border-radius: var(--radius-pill);
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.94rem;
  letter-spacing: 0.01em;
  text-transform: none;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s var(--ease), background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.btn:hover, .c-button:hover {
  transform: translateY(-2px);
  color: var(--btn-fg);
  box-shadow: 0 10px 22px rgba(18, 48, 40, 0.16);
}

.btn:focus-visible, .c-button:focus-visible {
  outline: 2px solid var(--pine);
  outline-offset: 3px;
}

.btn-accent, .btn-primary, .c-button--accent, .c-button--primary {
  --btn-bg: var(--pine);
  --btn-fg: #ffffff;
  --btn-bd: var(--pine);
}

.btn-accent:hover, .btn-primary:hover, .c-button--accent:hover {
  --btn-bg: var(--pine-deep);
  --btn-bd: var(--pine-deep);
  --btn-fg: #ffffff;
}

.btn-outline, .btn-secondary, .c-button--outline {
  --btn-bg: transparent;
  --btn-fg: var(--ink);
  --btn-bd: rgba(20, 36, 28, 0.18);
}

.btn-outline:hover, .btn-secondary:hover, .c-button--outline:hover {
  --btn-bg: rgba(29, 74, 56, 0.06);
  --btn-fg: var(--ink);
}

.actions, .row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  padding: 0.28rem 0.75rem;
  border-radius: var(--radius-pill);
  background: var(--chip);
  color: var(--pine);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-heading {
  max-width: 680px;
  margin-bottom: clamp(12px, 1.6vw, 20px);
}

.section-heading h2 { margin-bottom: 0.4em; }
.section-heading p { font-size: 1.06rem; }

/* ─── Header: light paper bar ─── */
.site-header, .c-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--header-bg);
  backdrop-filter: blur(18px) saturate(1.2);
  border-bottom: 1px solid rgba(20, 36, 28, 0.08);
  color: var(--header-text);
}

.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
  padding: 7px 0;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--muted);
  border-bottom: 1px solid rgba(20, 36, 28, 0.06);
}

.header-top a {
  color: var(--pine);
  text-decoration: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--header-text);
  min-height: 44px;
  flex-shrink: 0;
}

.brand-wordmark strong {
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 600;
  white-space: nowrap;
  color: var(--header-text);
}

.brand-wordmark span {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--moss);
}

.main-nav > a {
  padding: 0.4rem 0.72rem;
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink);
}

.main-nav > a:hover {
  background: var(--chip);
  color: var(--pine);
}

.header-phone {
  font-weight: 700;
  text-decoration: none;
  font-size: 1rem;
  white-space: nowrap;
  color: var(--pine);
}
.header-phone:hover { color: var(--pine-deep); }

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  min-width: 44px;
  padding: 0 12px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--line);
  background: var(--paper);
  font-weight: 700;
  cursor: pointer;
  color: var(--header-text);
}

.header-main-row {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
  min-height: 72px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand img {
  width: auto !important;
  height: 42px !important;
  max-width: none !important;
  object-fit: contain;
  object-position: left center;
  flex-shrink: 0;
  border-radius: 0;
}

.site-header .brand-wordmark { display: none; }

.brand-wordmark {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.1;
  gap: 2px;
}

.header-brand-info,
.header-slogan,
.header-hours { display: none; }

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  flex-wrap: wrap;
}

.nav-extra { display: none; }

.header-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.header-contact-group { display: flex; flex-direction: column; align-items: flex-end; }

.nav-toggle-lines {
  position: relative;
  width: 18px;
  height: 12px;
  display: block;
}
.nav-toggle-lines::before,
.nav-toggle-lines::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--header-text);
}
.nav-toggle-lines::before {
  top: 0;
  box-shadow: 0 5px 0 var(--header-text);
}
.nav-toggle-lines::after { bottom: 0; }
.nav-toggle-label { font-size: 0.9rem; line-height: 1; }

.site-header .btn, .site-header .c-button {
  min-height: 44px;
  padding: 0.5rem 1.05rem;
  font-size: 0.9rem;
}

.site-header .btn-outline,
.site-header .c-button--outline {
  --btn-fg: var(--ink);
  --btn-bd: rgba(20, 36, 28, 0.16);
  --btn-bg: transparent;
  text-transform: none;
}
.site-header .btn-outline:hover,
.site-header .c-button--outline:hover {
  --btn-bg: var(--chip);
  --btn-fg: var(--pine);
}
.site-header .btn-accent,
.site-header .c-button--accent {
  --btn-bg: var(--pine);
  --btn-fg: #fff;
  --btn-bd: var(--pine);
}

body.nav-open { overflow: hidden; }

@media (max-width: 1100px) {
  .header-top { display: none; }
  .header-main-row {
    grid-template-columns: 1fr auto;
    min-height: 64px;
    gap: 12px;
  }
  .header-left { min-width: 0; }
  .header-phone,
  .header-callback { display: none !important; }
  .header-right { gap: 0; }
  .nav-toggle { display: inline-flex; }

  .main-nav {
    position: fixed;
    top: 76px;
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    border-radius: 22px;
    background: var(--paper);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-lift);
    max-height: calc(100vh - 96px);
    overflow: auto;
    z-index: 60;
  }
  .main-nav.is-open { display: flex; }
  .main-nav > a {
    padding: 0.9rem 0.95rem;
  }
  .nav-extra {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 8px;
    padding-top: 12px;
    border-top: 1px solid var(--line);
  }
  .nav-extra-phone {
    font-weight: 800;
    text-decoration: none;
    color: var(--pine);
    font-size: 1.05rem;
  }
  .nav-extra-email { font-size: 0.9rem; color: var(--muted); }
  .nav-extra .btn,
  .nav-extra .c-button {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .brand-wordmark span { display: none; }
  .brand img { width: auto; height: 34px; max-width: 150px; }
}

@media (max-width: 420px) {
  .nav-toggle-label { display: none; }
  .nav-toggle { width: 44px; padding: 0; }
}

/* ─── Split hero ─── */
.hero, .hero--home, .hero--bright {
  position: relative;
  width: min(100% - 32px, var(--container));
  margin: 14px auto 0;
  min-height: min(78vh, 720px);
  padding: 0;
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(320px, 1.18fr);
  align-items: stretch;
  overflow: hidden;
  isolation: isolate;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 36px;
  box-shadow: none;
}

.hero.container,
.hero.c-container,
.hero.section {
  width: min(100% - 32px, var(--container));
  max-width: var(--container);
  margin: 14px auto 0;
}

.hero::after { display: none; }

.hero-bg-fades,
.hero-accents,
.hero-orb,
.hero-halo,
.hero-chip,
.hero-points,
.hero-brand {
  display: none !important;
}

.hero-stage {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  width: 100%;
  margin: 0;
  padding: clamp(36px, 5vw, 72px) clamp(28px, 4vw, 56px);
  grid-column: 1;
  grid-row: 1;
}

.hero-copy, .hero-content {
  position: relative;
  z-index: 2;
  width: auto;
  max-width: none;
  margin: 0;
  padding: 0;
  color: var(--ink);
}

.hero-copy .eyebrow, .hero-content .eyebrow {
  color: var(--pine);
  background: var(--chip);
}

.hero--home h1,
.hero h1,
main#top > section.hero h1 {
  color: var(--ink);
  font-size: clamp(2.4rem, 4.6vw, 4.2rem);
  font-weight: 600;
  max-width: 9.5ch;
  margin: 0 0 0.4em;
  font-family: var(--font-display);
  letter-spacing: -0.04em;
  line-height: 0.98;
}

.hero-copy p, .hero-content p {
  color: var(--muted);
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  line-height: 1.55;
  max-width: 36ch;
  margin: 0 0 1.5rem;
}

.hero .actions { gap: 12px; }

.hero .btn, .hero .c-button {
  min-height: 52px;
  padding: 0.9rem 1.5rem;
}

.hero .btn-outline, .hero .c-button--outline {
  --btn-fg: var(--ink);
  --btn-bd: rgba(20, 36, 28, 0.18);
  --btn-bg: transparent;
}

.hero .btn-outline:hover, .hero .c-button--outline:hover {
  --btn-bg: var(--chip);
  --btn-fg: var(--ink);
}

.hero-visual {
  position: relative;
  inset: auto;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 100%;
  pointer-events: none;
  grid-column: 2;
  grid-row: 1;
  min-height: min(78vh, 720px);
}

.hero-cutout,
.hero-bg-photo,
.hero-visual img {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: cover;
  object-position: center 42%;
  filter: none;
  animation: none;
  border-radius: 0;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(243, 240, 232, 0.28) 0%, transparent 18%),
    linear-gradient(180deg, transparent 62%, rgba(18, 48, 40, 0.18) 100%);
}

.hero-slider-dots { display: none; }
.slider-dot { display: none; }

@media (max-width: 900px) {
  .hero, .hero--home, .hero--bright {
    grid-template-columns: 1fr;
    min-height: 0;
    margin-top: 14px;
    border-radius: 24px;
  }
  .hero-visual {
    grid-column: 1;
    grid-row: 1;
    min-height: 52vh;
  }
  .hero-stage {
    grid-column: 1;
    grid-row: 2;
    padding: 28px 22px 32px;
  }
  .hero--home h1,
  .hero h1 { max-width: 12ch; }
}

.hero-stats-wrap {
  width: min(100% - 32px, var(--container));
  margin: -22px auto 0;
  padding: 0;
  position: relative;
  z-index: 3;
}

.hero-stats-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--ink);
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 6px;
  padding: 20px 22px;
  text-align: left;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--paper);
  box-shadow: none;
}

.hero-stat:last-child { border-right: 0; }

.hero-stat strong {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.5vw, 1.95rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--pine);
  text-transform: none;
}

.hero-stat span {
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.35;
  color: var(--muted);
  max-width: 16em;
}

.hero-stats { display: contents; }

/* ─── Products ─── */
.product-slider-section { overflow: hidden; }

.product-slider-viewport {
  overflow: hidden;
  margin: 0;
  touch-action: pan-y;
}

.product-slider-track {
  display: flex;
  gap: 18px;
  transition: transform 0.45s var(--ease);
  will-change: transform;
}

.product-slider-track > .product-card {
  flex: 0 0 calc((100% - 36px) / 3);
  max-width: calc((100% - 36px) / 3);
}

.product-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: none;
  transition: none;
}

.product-card:hover {
  transform: none;
  box-shadow: none;
}

.product-card-media,
.product-card > a:first-of-type {
  position: relative;
  display: block;
  aspect-ratio: 5 / 4;
  overflow: hidden;
  background: var(--chip);
}

.product-card img,
.product-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.product-card:hover img { transform: scale(1.05); }

.product-card-body,
.product-card > div:not(.product-badges) {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px 16px 18px;
  flex: 1;
}

.product-card h3, .product-card .h3 { margin: 0; font-size: 1.08rem; }
.product-card h3 a, .product-card .h3 a {
  text-decoration: none;
  color: var(--ink);
}
.product-card h3 a:hover { color: var(--pine); }
.product-card p { font-size: 0.9rem; margin: 0; }

.product-meta { display: flex; flex-wrap: wrap; gap: 6px; }

.tag {
  display: inline-flex;
  padding: 0.28rem 0.65rem;
  border-radius: var(--radius-pill);
  background: var(--chip);
  color: var(--pine);
  font-size: 0.72rem;
  font-weight: 700;
  box-shadow: none;
  filter: none;
}

.product-price {
  margin-top: auto !important;
  font-family: var(--font-display);
  font-size: 1.38rem !important;
  font-weight: 600;
  color: var(--pine) !important;
}

.product-price small {
  font-size: 0.7em;
  font-weight: 600;
  color: var(--muted);
  font-family: var(--font-body);
}

.product-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.product-actions .btn, .product-actions .c-button {
  flex: 1;
  min-height: 42px;
  padding: 0.5rem 0.75rem;
  font-size: 0.86rem;
}

.product-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  gap: 6px;
  z-index: 2;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.65rem;
  border-radius: var(--radius-pill);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--pine);
  color: #fff;
}

.pill-hit { background: var(--secondary); }
.pill-recommend { background: var(--pine); }
.pill-new { background: #fff; color: var(--pine); border: 1px solid var(--line); }

.product-slider-controls {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 14px;
}

.product-slider-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  background: var(--surface);
  cursor: pointer;
  font-size: 1.05rem;
}

.product-slider-btn:hover:not(:disabled) { border-color: var(--pine); color: var(--pine); }
.product-slider-btn:disabled { opacity: 0.35; cursor: not-allowed; }

@media (max-width: 980px) {
  .product-slider-track > .product-card {
    flex-basis: calc((100% - 18px) / 2);
    max-width: calc((100% - 18px) / 2);
  }
}

@media (max-width: 720px) {
  .product-slider-section { overflow: visible; }

  .product-slider-viewport {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 0;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    touch-action: pan-x;
    scrollbar-width: none;
    margin-inline: calc(50% - 50vw);
    padding-inline: calc(50vw - 50%);
    width: 100vw;
    max-width: 100vw;
  }

  .product-slider-viewport::-webkit-scrollbar { display: none; }

  .product-slider-track {
    gap: 12px;
    width: max-content;
    margin-inline: auto;
    padding-inline: max(16px, calc((100vw - min(86vw, 360px)) / 2));
    transform: none !important;
    transition: none;
  }

  .product-slider-track > .product-card {
    flex: 0 0 min(86vw, 360px);
    max-width: min(86vw, 360px);
    scroll-snap-align: center;
    scroll-snap-stop: always;
  }

  .product-slider-controls,
  .projects-slider-btn { display: none !important; }

  [data-catalog-grid],
  .catalog-grid,
  .product-grid { justify-items: center; }

  [data-catalog-grid] > .product-card,
  .catalog-grid > .product-card,
  .product-grid > .product-card { width: min(100%, 420px); }

  .blog-preview-grid,
  .blog-grid { justify-items: center; }

  .blog-card,
  article.blog-card { width: min(100%, 520px); }

  .reviews-grid { justify-items: center; }
  .review-card { width: min(100%, 520px); }

  .bento-grid { justify-items: center; }
  .bento-card { width: min(100%, 520px); }

  .project-paths,
  .project-steps,
  .project-facts { justify-items: center; }

  .project-path,
  .project-step,
  .project-fact { width: min(100%, 520px); }

  .actions,
  .row,
  .hero .actions,
  .about-copy .row,
  .product-actions,
  .product-summary-actions,
  .product-cta-box,
  .article-footer-cta__actions,
  .cta-panel .actions,
  .section .actions,
  .page-main .actions,
  .catalog-result {
    justify-content: center;
    justify-items: center;
    text-align: center;
  }

  .product-actions .btn,
  .product-actions .c-button,
  .product-summary-actions .btn,
  .product-summary-actions .c-button,
  .actions .btn,
  .actions .c-button,
  .row .btn,
  .row .c-button,
  .article-footer-cta__actions .btn,
  .article-footer-cta__actions .c-button,
  .hero .actions .btn,
  .hero .actions .c-button { justify-content: center; }

  .product-cta-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .product-cta-box .row,
  .product-cta-box .actions {
    width: 100%;
    justify-content: center;
  }

  .cta-panel { text-align: center; }
  .cta-panel .contact-lines { text-align: left; }
  .article-footer-cta { text-align: center; }
  .article-footer-cta__actions { width: 100%; }

  .catalog-filters,
  [data-catalog-filters] { justify-items: stretch; }

  .catalog-filters .btn,
  [data-catalog-filters] .btn,
  .catalog-filters .c-button,
  [data-catalog-filters] .c-button {
    width: 100%;
    justify-content: center;
  }
}

.catalog-toolbar { display: grid; gap: 10px; margin-bottom: 14px; }
.catalog-result {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

[data-catalog-grid], .catalog-grid, .product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

[data-product-card][hidden],
[data-product-card].is-hidden { display: none !important; }

@media (max-width: 980px) {
  [data-catalog-grid], .catalog-grid, .product-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  [data-catalog-grid], .catalog-grid, .product-grid { grid-template-columns: 1fr; }
}

.catalog-filters, [data-catalog-filters] {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 20px;
  align-items: end;
  margin-bottom: 0;
  padding: 22px 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.filter-fields {
  display: grid;
  grid-template-columns: repeat(5, minmax(132px, 1fr));
  gap: 12px 14px;
  flex: 1 1 720px;
}

.filter-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-left: auto;
}

.filter-actions .catalog-count {
  margin: 0 6px 0 0;
  font-weight: 600;
  color: var(--muted);
  white-space: nowrap;
}

.filter-actions .catalog-count strong {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.15rem;
}

.catalog-filters--pending .catalog-count strong {
  color: var(--pine);
}
.catalog-filters--pending [type="submit"] {
  box-shadow: 0 0 0 2px rgba(111, 143, 118, 0.28);
}

.filter-field { display: flex; flex-direction: column; gap: 6px; }
.filter-field label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.filter-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2314241c' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
  border-radius: 14px;
}

.catalog-filters .btn,
.catalog-filters .c-button { min-height: 48px; }

.input, .textarea, select.input, .filter-field select,
.lead-form input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]),
.lead-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 0.7rem 0.95rem;
  border: 1.5px solid var(--line);
  border-radius: 14px;
  background: #fff;
  color: var(--ink);
}

.textarea, .lead-form textarea { min-height: 110px; resize: vertical; }

.input:focus, .textarea:focus, select:focus,
.lead-form input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]):focus,
.lead-form textarea:focus {
  outline: none;
  border-color: var(--pine);
  box-shadow: 0 0 0 4px var(--accent-soft);
}

@media (max-width: 1100px) {
  .filter-fields { grid-template-columns: repeat(3, minmax(140px, 1fr)); }
}

@media (max-width: 900px) {
  .catalog-filters, [data-catalog-filters] { align-items: stretch; }
  .filter-fields { grid-template-columns: 1fr 1fr; }
  .filter-actions { width: 100%; margin-left: 0; justify-content: flex-end; }
}

/* ─── About ─── */
.about-split {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(18px, 3vw, 40px);
  align-items: center;
}

.about-photo {
  margin: 0;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 4 / 3;
  box-shadow: none;
}

.about-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.about-copy .row { margin-top: 0.9rem; }

@media (max-width: 860px) {
  .about-split { grid-template-columns: 1fr; }
}

/* ─── Advantages ─── */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.bento-card {
  padding: 22px 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: none;
}

.bento-card span {
  display: inline-block;
  margin-bottom: 10px;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--pine);
}

.bento-card h3 { margin-bottom: 0.35em; }
.bento-card p { font-size: 0.94rem; }

@media (max-width: 980px) { .bento-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .bento-grid { grid-template-columns: 1fr; } }

/* ─── FAQ ─── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  max-width: none;
}

.faq-item p { max-width: 72ch; }

.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 0 18px;
}

.faq-item[open] { border-color: rgba(29, 74, 56, 0.35); }

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 14px 0;
  font-weight: 700;
}

.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--pine);
  font-weight: 700;
}
.faq-item[open] summary::after { content: "–"; }
.faq-item p { padding: 0 0 14px; margin: 0; }

/* ─── Reviews ─── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.review-card {
  margin: 0;
  padding: 22px 20px;
  background: var(--surface);
  border-radius: 24px;
  border: 1px solid var(--line);
  box-shadow: none;
}

.review-card p {
  color: var(--ink);
  font-size: 1.02rem;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  margin-bottom: 1rem;
}

.review-card cite {
  display: block;
  font-style: normal;
  font-weight: 700;
  font-family: var(--font-body);
}

.review-card .meta {
  display: block;
  margin-top: 2px;
  font-size: 0.85rem;
  color: var(--muted);
}

@media (max-width: 860px) { .reviews-grid { grid-template-columns: 1fr; } }

/* ─── Blog ─── */
.blog-preview-grid, .blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.blog-card, article.blog-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  background: var(--surface);
  border: 0;
  border-radius: 22px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: none;
  border: 1px solid var(--line);
  transition: none;
}

.blog-card:hover {
  transform: none;
  box-shadow: none;
}

.blog-card img {
  width: 100%;
  height: 100%;
  min-height: 150px;
  object-fit: cover;
}

.blog-card > div, .blog-card-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.blog-card h2, .blog-card h3, .blog-card .h3 { margin: 0; }
.blog-card a { text-decoration: none; }

.blog-card .meta, .blog-card-body .meta {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pine);
}

@media (max-width: 860px) {
  .blog-preview-grid, .blog-grid { grid-template-columns: 1fr; }
  .blog-card, article.blog-card { grid-template-columns: 1fr; }
  .blog-card img { aspect-ratio: 16 / 9; min-height: 0; }
}

/* ─── CTA ─── */
.cta-panel {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(18px, 3vw, 36px);
  padding: clamp(20px, 2.8vw, 32px);
  border-radius: 32px;
  background:
    radial-gradient(ellipse 80% 80% at 0% 100%, rgba(111, 143, 118, 0.22), transparent 50%),
    var(--pine-deep);
  color: #eef6ef;
  overflow: hidden;
}

.cta-panel .eyebrow { color: #cfe0d2; background: rgba(255,255,255,0.08); }
.cta-panel h2 { color: #fffdf8; }
.cta-panel p { color: rgba(238, 246, 239, 0.74); }

.contact-lines {
  list-style: none;
  margin: 1.1rem 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.contact-lines li {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 8px;
  font-size: 0.95rem;
}

.contact-lines strong {
  color: rgba(238, 246, 239, 0.5);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  padding-top: 0.25rem;
}

.contact-lines a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

.lead-form {
  display: grid;
  gap: 10px;
  padding: 20px;
  background: var(--paper);
  border: 0;
  border-radius: 22px;
}

.lead-form .field { display: grid; gap: 6px; }
.lead-form label { font-size: 0.85rem; font-weight: 600; color: var(--muted); }
.lead-form .input,
.lead-form .textarea,
.lead-form input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]),
.lead-form textarea {
  background: #fff;
  border-color: var(--line);
}

.checkbox-field {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.85rem;
  line-height: 1.4;
  color: var(--muted);
  cursor: pointer;
}

.checkbox-field input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  min-width: 18px;
  min-height: 18px;
  margin: 2px 0 0;
  padding: 0;
  border: 1.5px solid rgba(20, 36, 28, 0.28);
  border-radius: 5px;
  background: #fff;
  box-shadow: none;
  cursor: pointer;
  position: relative;
}

.checkbox-field input[type="checkbox"]::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 2px;
  background: var(--pine);
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 0.15s var(--ease), transform 0.15s var(--ease);
}

.checkbox-field input[type="checkbox"]:checked { border-color: var(--pine); background: #fff; }
.checkbox-field input[type="checkbox"]:checked::after { opacity: 1; transform: scale(1); }
.checkbox-field input[type="checkbox"]:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px var(--accent-soft);
  border-color: var(--pine);
}

.checkbox-field > span { flex: 1 1 auto; min-width: 0; }
.checkbox-field a { color: var(--pine); }
.field-honey { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.lead-form-message { font-size: 0.9rem; margin: 0; }

@media (max-width: 860px) {
  .cta-panel { grid-template-columns: 1fr; }
  .contact-lines li { grid-template-columns: 1fr; gap: 2px; }
}

.page-main .lead-form:not(.cta-panel .lead-form),
.catalog-section .lead-form:not(.cta-panel .lead-form) {
  background: var(--surface);
  border: 1px solid var(--line);
}
.page-main .lead-form:not(.cta-panel .lead-form) label { color: var(--muted); }
.page-main .checkbox-field:not(.cta-panel .checkbox-field) { color: var(--muted); }

.cta-panel .lead-form { background: var(--paper); border: 0; }
.cta-panel .lead-form label,
.cta-panel .checkbox-field { color: var(--muted); }

/* ─── Footer ─── */
.site-footer, .c-footer {
  margin-top: auto;
  padding: 40px 0 20px;
  background: var(--pine-deep);
  color: rgba(238, 246, 239, 0.78);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 28px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer .brand { color: #fff; margin-bottom: 12px; }
.site-footer .brand img {
  height: 48px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.site-footer .brand-wordmark { display: none; }
.site-footer p { color: rgba(238, 246, 239, 0.68); max-width: 36ch; }
.footer-contacts { margin-top: 14px; line-height: 1.7; }
.footer-contacts a { color: #fff; text-decoration: none; font-weight: 600; }

.site-footer nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 18px;
  align-content: start;
}

.site-footer nav a {
  text-decoration: none;
  color: rgba(238, 246, 239, 0.78);
  font-weight: 600;
}
.site-footer nav a:hover { color: #fff; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 18px;
  font-size: 0.88rem;
}
.footer-bottom a { color: rgba(238, 246, 239, 0.62); }

@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr; } }

/* ─── Inner pages ─── */
.page-main, main.page-main, main#top {
  flex: 1;
  position: relative;
  background: transparent;
}

.page-main, main.page-main { padding-bottom: var(--space-section-sm); }

.error-page {
  text-align: center;
  padding-top: clamp(18px, 3vw, 32px);
  padding-bottom: clamp(8px, 1.5vw, 16px);
}
.error-page .error-code {
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-size: clamp(4.2rem, 14vw, 7rem);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.05em;
  color: var(--pine);
}
.error-page h1 { max-width: 16ch; margin-inline: auto; }
.error-page .lead { max-width: 42ch; margin-inline: auto; }
.error-page .actions { justify-content: center; margin-top: 1rem; }
.error-offers .section-heading { text-align: center; margin-inline: auto; }
.error-offers .section-heading h2 { margin-inline: auto; }
.error-offers .product-grid { margin-top: 8px; }

.page-hero, .od-page-hero { padding: clamp(14px, 2.2vw, 28px) 0 8px; }
.page-hero h1 { max-width: 16ch; }
.page-hero .lead, .lead {
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  color: var(--muted);
  max-width: 52ch;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  margin: 10px 0 4px;
  font-size: 0.88rem;
  color: var(--muted);
}
.breadcrumbs a { text-decoration: none; font-weight: 600; color: var(--pine); }

.prose-flow, .od-content { max-width: 760px; }

.projects-reviews {
  width: 100%;
  max-width: none;
  margin-top: var(--space-section-sm);
}

.projects-block {
  width: 100%;
  max-width: none;
  margin-top: var(--space-block);
}

.project-paths {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.project-path {
  margin: 0;
  padding: clamp(20px, 2.6vw, 32px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: none;
}

.project-path h3 { margin: 0.2em 0 0.5em; }
.project-path p { margin: 0; color: var(--muted); }

.project-path--dark {
  background: var(--pine-deep);
  border-color: var(--pine-deep);
  color: #eef6ef;
}

.project-path--dark .eyebrow { color: #cfe0d2; background: rgba(255,255,255,0.08); }
.project-path--dark h3 { color: #fffdf8; }
.project-path--dark p { color: rgba(238, 246, 239, 0.72); }

.project-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.project-step {
  margin: 0;
  padding: 18px 16px 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: none;
}

.project-step em {
  display: block;
  margin-bottom: 10px;
  font-family: var(--font-display);
  font-style: normal;
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--pine);
}

.project-step h3 { margin: 0 0 0.35em; }
.project-step p { margin: 0; font-size: 0.94rem; color: var(--muted); }

.project-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.project-fact {
  margin: 0;
  padding: 20px 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: none;
}

.project-fact strong {
  display: block;
  margin-bottom: 0.45em;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1.6vw, 1.45rem);
  font-weight: 600;
}

.project-fact p { margin: 0; font-size: 0.94rem; color: var(--muted); }

@media (max-width: 980px) { .project-steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 720px) {
  .project-paths,
  .project-facts { grid-template-columns: 1fr; }
}
@media (max-width: 560px) { .project-steps { grid-template-columns: 1fr; } }

.pay-page .pay-block {
  margin-top: var(--space-block);
}

.bill-hero {
  max-width: 40rem;
  padding: clamp(18px, 3vw, 32px) 0 8px;
}
.bill-hero h1 { max-width: none; }

.bill-stages {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  margin-top: 8px;
  background:
    repeating-linear-gradient(
      -12deg,
      rgba(184, 106, 50, 0.05) 0 12px,
      transparent 12px 24px
    ),
    #f4ebe0;
  border: 1px dashed rgba(184, 106, 50, 0.35);
  border-radius: 6px;
  overflow: hidden;
}

.bill-stage {
  margin: 0;
  padding: clamp(18px, 2.4vw, 26px) clamp(16px, 2vw, 24px);
  border-right: 1px dashed rgba(184, 106, 50, 0.28);
}
.bill-stage:last-child { border-right: 0; }
.bill-stage b {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 600;
  line-height: 1;
  color: var(--wood);
}
.bill-stage small {
  display: block;
  margin: 6px 0 8px;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--wood);
  font-weight: 700;
}
.bill-stage p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
}

.bill-sheet {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: none;
}
.bill-sheet article {
  margin: 0;
  padding: clamp(22px, 3vw, 32px);
}
.bill-sheet article:first-child {
  border-right: 1px solid var(--line);
  background: #fffdf8;
}
.bill-sheet article:last-child { background: #f7f0e6; }
.bill-sheet h3 { margin: 0.15em 0 0.9em; }
.bill-sheet ul { list-style: none; margin: 0; padding: 0; }
.bill-sheet li {
  position: relative;
  padding: 11px 0 11px 1.55em;
  border-bottom: 1px dotted rgba(184, 106, 50, 0.28);
  color: var(--muted);
}
.bill-sheet li:last-child { border-bottom: 0; padding-bottom: 0; }
.bill-sheet li::before {
  position: absolute;
  left: 0;
  font-weight: 800;
}
.bill-sheet--in li::before { content: "+"; color: var(--pine); }
.bill-sheet--out li::before { content: "–"; color: var(--wood); }

.bill-flow {
  list-style: none;
  margin: 0;
  padding: 4px 0 0 0;
  position: relative;
}
.bill-flow::before {
  content: "";
  position: absolute;
  left: 11px;
  top: 10px;
  bottom: 18px;
  width: 3px;
  border-radius: 2px;
  background: var(--wood);
}
.bill-flow li {
  position: relative;
  margin: 0 0 22px 0;
  padding: 0 0 0 42px;
}
.bill-flow li:last-child { margin-bottom: 0; }
.bill-flow i {
  position: absolute;
  left: 0;
  top: 4px;
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 3px;
  background: var(--wood);
  color: #fffdf8;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.72rem;
  font-weight: 700;
  z-index: 1;
}
.bill-flow small {
  display: block;
  margin-bottom: 4px;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--wood);
}
.bill-flow h3 { margin: 0 0 0.3em; }
.bill-flow p { margin: 0; color: var(--muted); max-width: 58ch; }

.bill-rows {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
  overflow: hidden;
}
.bill-rows article {
  display: grid;
  grid-template-columns: 11rem 1fr;
  gap: 8px 28px;
  margin: 0;
  padding: 20px 22px;
  border-bottom: 1px solid var(--line);
}
.bill-rows article:last-child { border-bottom: 0; }
.bill-rows .eyebrow { margin-bottom: 6px; }
.bill-rows h3 { margin: 0 0 0.25em; }
.bill-rows p { margin: 0; color: var(--muted); }

.pay-page .cta-panel { margin-top: var(--space-block); }

@media (max-width: 820px) {
  .bill-stages,
  .bill-sheet { grid-template-columns: 1fr; }
  .bill-stage { border-right: 0; border-bottom: 1px dashed rgba(184, 106, 50, 0.28); }
  .bill-stage:last-child { border-bottom: 0; }
  .bill-sheet article:first-child {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}
@media (max-width: 640px) {
  .bill-rows article { grid-template-columns: 1fr; }
}
.prose-flow h2 { margin-top: 1.15em; }
.prose-flow img {
  border-radius: var(--radius-lg);
  margin: 0.8em 0;
  border: 0;
}

/* Delivery page */
.dlv-page .container > .projects-block,
.dlv-page .dlv-block {
  margin-top: var(--space-block);
}

.dlv-intro {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 14px;
  align-items: stretch;
  margin-top: 4px;
}

.dlv-intro .page-hero { padding: clamp(18px, 3vw, 32px) 0 8px; }
.dlv-intro .page-hero h1 { max-width: 12ch; }

.dlv-aside {
  margin: 0;
  padding: clamp(22px, 3vw, 32px);
  background:
    radial-gradient(ellipse 90% 70% at 100% 0%, rgba(184, 106, 50, 0.22), transparent 46%),
    var(--pine-deep);
  color: #eef6ef;
  border-radius: 24px;
}

.dlv-aside .eyebrow { color: #cfe0d2; background: rgba(255,255,255,0.08); }
.dlv-aside-price {
  display: block;
  margin: 0.15em 0 0.2em;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 600;
  line-height: 0.95;
  color: #fffdf8;
}
.dlv-aside h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  font-weight: 500;
  color: rgba(238, 246, 239, 0.78);
}
.dlv-aside ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.dlv-aside li {
  padding: 10px 0;
  border-top: 1px solid rgba(238, 246, 239, 0.12);
  color: rgba(238, 246, 239, 0.78);
  font-size: 0.94rem;
}
.dlv-aside li:last-child { padding-bottom: 0; }
.dlv-aside li strong { color: #fffdf8; font-weight: 600; }

.dlv-zones {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 14px;
}
.dlv-zone {
  margin: 0;
  min-height: 220px;
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: none;
}
.dlv-zone h3 { margin: 0.2em 0 0.5em; }
.dlv-zone p { margin: 0; color: var(--muted); }
.dlv-zone--city {
  background:
    linear-gradient(180deg, rgba(255,253,248,0.08), transparent 40%),
    var(--surface);
}
.dlv-zone--region {
  background: var(--pine-deep);
  color: #eef6ef;
}
.dlv-zone--region .eyebrow { color: #cfe0d2; background: rgba(255,255,255,0.08); }
.dlv-zone--region h3 { color: #fffdf8; }
.dlv-zone--region p { color: rgba(238, 246, 239, 0.72); }

.dlv-route {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;
}
.dlv-route::before {
  content: "";
  position: absolute;
  top: 23px;
  left: 7%;
  right: 7%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--pine) 0 8px, transparent 8px 16px);
  opacity: 0.35;
  pointer-events: none;
}
.dlv-step {
  margin: 0;
  padding: 0;
  position: relative;
}
.dlv-step i {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: var(--pine);
  color: #fffdf8;
  font-family: var(--font-display);
  font-style: normal;
  font-size: 1.05rem;
  font-weight: 600;
  box-shadow: 0 0 0 6px var(--bg);
}
.dlv-step h3 { margin: 0 0 0.35em; }
.dlv-step p { margin: 0; font-size: 0.94rem; color: var(--muted); }

.dlv-checks {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.dlv-check {
  margin: 0;
  padding: 20px 18px 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: none;
}
.dlv-check span {
  display: block;
  margin-bottom: 10px;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--pine);
}
.dlv-check h3 { margin: 0 0 0.4em; font-size: 1.1rem; }
.dlv-check p { margin: 0; font-size: 0.94rem; color: var(--muted); }

.dlv-prep {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
}
.dlv-prep article {
  margin: 0;
  padding: 22px 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: none;
}
.dlv-prep strong {
  display: block;
  margin-bottom: 0.45em;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1.6vw, 1.4rem);
  font-weight: 600;
}
.dlv-prep p { margin: 0; font-size: 0.94rem; color: var(--muted); }

.dlv-more {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.dlv-more a {
  display: block;
  padding: clamp(20px, 2.6vw, 28px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: none;
  text-decoration: none;
  color: inherit;
}
.dlv-more a:hover { box-shadow: none; }
.dlv-more h3 { margin: 0.2em 0 0.45em; }
.dlv-more p { margin: 0; color: var(--muted); }
.dlv-more em {
  display: inline-block;
  margin-top: 14px;
  font-style: normal;
  font-weight: 600;
  color: var(--pine);
}

.dlv-page .cta-panel { margin-top: var(--space-block); }
.dlv-page .cta-panel .btn-accent,
.dlv-page .cta-panel .c-button--accent {
  --btn-bg: #fffdf8;
  --btn-fg: var(--pine-deep);
  --btn-bd: #fffdf8;
}
.dlv-page .cta-panel .btn-outline,
.dlv-page .cta-panel .c-button--outline {
  --btn-bg: transparent;
  --btn-fg: #fffdf8;
  --btn-bd: rgba(255, 253, 248, 0.38);
}
.dlv-page .cta-panel .contact-lines { margin-top: 0; }
.dlv-page .cta-panel .contact-lines a { color: #fffdf8; }

.product-delivery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 4px 0 12px;
}
.product-delivery-grid article {
  margin: 0;
  padding: 16px 14px 18px;
  background: var(--bg-soft);
  border-radius: 16px;
}
.product-delivery-grid h3 {
  margin: 0.15em 0 0.4em;
  font-size: 1.05rem;
}
.product-delivery-grid p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
}
.product-delivery-more { margin: 0; font-size: 0.94rem; color: var(--muted); }

@media (max-width: 980px) {
  .dlv-route,
  .dlv-checks { grid-template-columns: 1fr 1fr; }
  .dlv-route::before { display: none; }
}
@media (max-width: 900px) {
  .dlv-intro,
  .dlv-zones { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .dlv-prep,
  .dlv-more,
  .product-delivery-grid { grid-template-columns: 1fr; }
  .dlv-zone,
  .dlv-aside,
  .dlv-check,
  .dlv-prep article {
    width: min(100%, 520px);
    justify-self: center;
  }
  .dlv-zones,
  .dlv-checks,
  .dlv-prep,
  .dlv-more { justify-items: center; }
}
@media (max-width: 560px) {
  .dlv-route,
  .dlv-checks { grid-template-columns: 1fr; }
}

/* Product page */
.product-hero, .product-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(16px, 2.4vw, 28px);
  align-items: start;
  margin: 8px 0 20px;
}

.product-gallery, [data-product-gallery] { display: grid; gap: 10px; }

.product-gallery-main {
  border-radius: 24px;
  border: 1px solid var(--line);
  overflow: hidden;
  background: var(--chip);
  box-shadow: none;
}

.product-gallery-main img, [data-gallery-main] {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.product-gallery-thumbs, .product-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.product-gallery-thumb, .product-thumbs button, [data-gallery-thumb] {
  padding: 0;
  border: 2px solid transparent;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  background: #fff;
}

.product-gallery-thumb.is-active,
.product-thumbs button.is-active,
[data-gallery-thumb].is-active { border-color: var(--pine); }

.product-gallery-thumb img, .product-thumbs img {
  aspect-ratio: 1;
  object-fit: cover;
  width: 100%;
  display: block;
}

.product-summary .product-price {
  margin: 0.4rem 0 0.8rem !important;
  font-size: clamp(1.65rem, 3vw, 2.05rem) !important;
}

.product-summary-actions { display: flex; flex-wrap: wrap; gap: 10px; }

.product-block {
  margin: 14px 0;
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: none;
}
.product-block h2 { margin-top: 0; }

.product-cta { margin: 16px 0; }
.product-cta-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: clamp(16px, 3vw, 32px);
  flex-wrap: wrap;
  padding: clamp(24px, 3.2vw, 36px);
  border-radius: 28px;
  background: var(--pine-deep);
  color: #eef6ef;
  border: 0;
}
.product-cta-copy { min-width: 0; flex: 1 1 280px; }
.product-cta-box .eyebrow {
  color: #cfe0d2 !important;
  background: rgba(255,255,255,0.08) !important;
  border: 0 !important;
  padding: 0.28rem 0.75rem;
  margin: 0 0 10px;
}
.product-cta-box h2 {
  color: #fffdf8 !important;
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  margin: 0 0 8px;
  max-width: 18ch;
  line-height: 1.15;
}
.product-cta-box p {
  color: rgba(238, 246, 239, 0.72) !important;
  margin: 0;
  max-width: 42ch;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
}
.specs-table th, .specs-table td {
  padding: 12px 10px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  font-size: 0.95rem;
}
.specs-table th { width: 42%; color: var(--muted); font-weight: 600; }

.complect-list, .product-complect {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
}
.complect-list li { margin: 0.35em 0; }

@media (max-width: 900px) {
  .product-hero, .product-layout { grid-template-columns: 1fr; }
}

.projects-hero {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(340px, 1.15fr);
  gap: clamp(20px, 3.2vw, 48px);
  align-items: center;
  margin: 8px 0 8px;
}

.projects-hero-copy .page-hero { padding: 0; }
.projects-hero-copy h1 { max-width: 11ch; }
.projects-hero-copy .lead { max-width: 38ch; margin-bottom: 1.25rem; }
.projects-hero-copy .actions { margin-top: 4px; }

.projects-hero-note {
  margin: 14px 0 0;
  font-size: 0.88rem;
  color: var(--muted);
}

.at-page .at-block {
  margin-top: var(--space-block);
}

.at-pair {
  display: grid;
  grid-template-columns: 1fr;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--surface);
}
.at-pair article {
  display: grid;
  grid-template-columns: minmax(8rem, 12rem) 1fr;
  gap: 12px 28px;
  margin: 0;
  padding: clamp(20px, 2.6vw, 28px) clamp(18px, 2.4vw, 28px);
  border-bottom: 1px solid var(--line);
}
.at-pair article:last-child {
  border-bottom: 0;
  background: var(--chip);
}
.at-pair b {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  font-weight: 600;
  color: var(--pine);
  line-height: 1.15;
}
.at-pair h3 { margin: 0 0 0.35em; }
.at-pair p { margin: 0; color: var(--muted); }

.at-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.at-mosaic article {
  margin: 0;
  padding: 20px 18px 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}
.at-mosaic article:first-child {
  grid-column: 1 / -1;
  padding: clamp(22px, 3vw, 32px);
  background: var(--chip);
}
.at-mosaic span {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--pine);
}
.at-mosaic h3 { margin: 0 0 0.4em; }
.at-mosaic p { margin: 0; font-size: 0.94rem; color: var(--muted); }

.at-brief {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--surface);
}
.at-brief article {
  margin: 0;
  padding: 22px 20px;
  border-right: 1px solid var(--line);
}
.at-brief article:last-child { border-right: 0; }
.at-brief h3 {
  margin: 0 0 0.4em;
  display: flex;
  align-items: center;
  gap: 10px;
}
.at-brief h3::before {
  content: "";
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  border: 2px solid var(--pine);
  border-radius: 2px;
}
.at-brief p { margin: 0; font-size: 0.94rem; color: var(--muted); }

.at-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}
.at-flow li {
  margin: 0;
  padding: 22px 18px 24px;
  border-right: 1px solid var(--line);
}
.at-flow li:last-child { border-right: 0; }
.at-flow em {
  display: block;
  margin-bottom: 10px;
  font-family: var(--font-display);
  font-style: normal;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
  color: var(--ink);
}
.at-flow h3 { margin: 0 0 0.4em; }
.at-flow p { margin: 0; font-size: 0.94rem; color: var(--muted); }

.at-nums {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: var(--ink);
  color: #eef6ef;
  border-radius: 8px;
  overflow: hidden;
}
.at-nums article {
  margin: 0;
  padding: 24px 20px;
  border-right: 1px solid rgba(238, 246, 239, 0.12);
}
.at-nums article:last-child { border-right: 0; }
.at-nums strong {
  display: block;
  margin-bottom: 0.45em;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 600;
  color: #fffdf8;
}
.at-nums p { margin: 0; font-size: 0.92rem; color: rgba(238, 246, 239, 0.7); }
.at-nums a { color: #d7ead9; }

.at-page .cta-panel { margin-top: var(--space-block); }
.at-page .cta-panel .btn-accent,
.at-page .cta-panel .c-button--accent {
  --btn-bg: #fffdf8;
  --btn-fg: var(--pine-deep);
  --btn-bd: #fffdf8;
}
.at-page .cta-panel .btn-outline,
.at-page .cta-panel .c-button--outline {
  --btn-bg: transparent;
  --btn-fg: #fffdf8;
  --btn-bd: rgba(255, 253, 248, 0.38);
}

@media (max-width: 900px) {
  .at-flow { grid-template-columns: 1fr 1fr; }
  .at-flow li:nth-child(2) { border-right: 0; }
}
@media (max-width: 720px) {
  .at-pair article,
  .at-brief,
  .at-nums { grid-template-columns: 1fr; }
  .at-brief article,
  .at-nums article { border-right: 0; border-bottom: 1px solid var(--line); }
  .at-nums article { border-bottom-color: rgba(238, 246, 239, 0.12); }
  .at-brief article:last-child,
  .at-nums article:last-child { border-bottom: 0; }
}
@media (max-width: 560px) {
  .at-mosaic,
  .at-flow { grid-template-columns: 1fr; }
  .at-flow li { border-right: 0; border-bottom: 1px solid var(--line); }
  .at-flow li:last-child { border-bottom: 0; }
}

.projects-showcase,
.projects-slider,
[data-projects-slider] { position: relative; }

.projects-showcase { max-width: none; margin: 0; }

.projects-showcase .hero-slide img,
.projects-showcase .projects-slider-track img {
  aspect-ratio: 4 / 3;
  max-height: none;
  height: auto;
}

@media (max-width: 900px) {
  .projects-hero {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .projects-hero-copy h1 { max-width: 14ch; }
}

.hero-slider-viewport,
.projects-slider-viewport {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--line);
  box-shadow: none;
  touch-action: pan-y;
}

.hero-slider-track,
.projects-slider-track {
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
  transition: transform 0.45s var(--ease);
  will-change: transform;
}

.hero-slide,
.projects-slider-track > .hero-slide {
  flex: 0 0 100%;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  margin: 0;
}

.hero-slide img,
.projects-slider-track img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}

.projects-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.96);
  cursor: pointer;
  font-size: 1.2rem;
  box-shadow: none;
}
.projects-slider-btn--prev { left: 12px; }
.projects-slider-btn--next { right: 12px; }
.projects-slider-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 10px;
}
.projects-slider-dots .slider-dot {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: var(--line);
  cursor: pointer;
}
.projects-slider-dots .slider-dot.is-active { background: var(--pine); }
.projects-slider-caption {
  text-align: center;
  margin: 8px 0 0;
  font-size: 0.92rem;
}

@media (max-width: 720px) {
  .hero-slider-viewport,
  .projects-slider-viewport {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x;
    scrollbar-width: none;
  }
  .hero-slider-viewport::-webkit-scrollbar,
  .projects-slider-viewport::-webkit-scrollbar { display: none; }
  .hero-slider-track,
  .projects-slider-track {
    transform: none !important;
    transition: none;
  }
  .hero-slide,
  .projects-slider-track > .hero-slide { scroll-snap-align: center; }
}

/* Modals */
.lead-modal[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(18, 48, 40, 0.48);
  backdrop-filter: blur(4px);
}
.lead-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 440px);
  padding: 28px 24px;
  background: var(--surface);
  border-radius: 24px;
  border: 1px solid var(--line);
  box-shadow: none;
}
.lead-modal-dialog h2 { margin-bottom: 0.3em; }
.lead-modal-desc { margin-bottom: 1rem; }
.lead-modal-dialog .lead-form {
  background: transparent;
  border: 0;
  padding: 0;
}
.lead-modal-dialog .lead-form label { color: var(--muted); }
.lead-modal-dialog .checkbox-field { color: var(--muted); }
.lead-modal-dialog .checkbox-field a { color: var(--pine); }
.lead-modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: var(--chip);
  cursor: pointer;
  font-size: 1.15rem;
}

/* Cookie */
.cookie-consent {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 70;
}
.cookie-consent[hidden] { display: none !important; }
.cookie-consent-inner {
  width: min(100%, 720px);
  margin: 0 auto;
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  background: var(--pine-deep);
  color: #eef6ef;
  border-radius: 22px;
  box-shadow: var(--shadow-lift);
}
.cookie-consent-inner p { margin: 0; color: rgba(238,246,239,.88); font-size: 0.9rem; }
.cookie-consent-inner a { color: #cfe0d2; }

/* Motion */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal.delay-1.is-visible { transition-delay: 0.06s; }
.reveal.delay-2.is-visible { transition-delay: 0.12s; }
.reveal.delay-3.is-visible { transition-delay: 0.18s; }

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: none; }
}
[data-motion="fade-down"] { animation: fadeDown 0.5s var(--ease) both; }

.price-old {
  text-decoration: line-through;
  color: var(--muted);
  font-size: 0.9rem;
  margin-right: 0.4rem;
}

.catalog-count, [data-catalog-count] {
  margin: 0 0 16px;
  font-weight: 600;
  color: var(--muted);
}

.catalog-empty, [data-catalog-empty] {
  padding: 40px 20px;
  text-align: center;
  color: var(--muted);
}

.article-body h2 { margin-top: 1.1em; }
.article-header h1 {
  max-width: 18ch;
  line-height: 1.18;
}
.article-content--wide { max-width: none; width: 100%; }
.article-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 0 0 16px;
}
.article-column {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--surface);
  box-shadow: none;
}
.article-column h2 {
  margin: 0 0 0.35em;
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  max-width: 12ch;
  line-height: 1.25;
}
.article-column p { margin: 0; font-size: 0.95rem; }
.article-intro {
  display: grid;
  gap: 0.55em;
  margin: 0 0 16px;
  max-width: 72ch;
}
.article-intro p { margin: 0; color: var(--ink); font-size: 1.05rem; }
.article-text { max-width: 72ch; }
.article-text h2 {
  max-width: 18ch;
  margin-top: 1.15em;
  line-height: 1.2;
}
.article-faq,
.article-popular {
  width: 100%;
  max-width: none;
  margin-top: 16px;
}
.article-faq .faq-list,
.faq-list--wide { width: 100%; max-width: none; }
.article-faq .faq-item p { max-width: none; }
.article-popular .product-grid { margin-top: 8px; }

.article-footer-cta {
  display: grid;
  grid-template-columns: 1.35fr auto;
  gap: clamp(12px, 2vw, 22px);
  align-items: center;
  margin: 16px 0 4px;
  padding: clamp(16px, 2.2vw, 26px);
  border-radius: 28px;
  background:
    radial-gradient(ellipse 80% 120% at 100% 0%, rgba(111, 143, 118, 0.22), transparent 55%),
    var(--pine-deep);
  color: #eef6ef;
  overflow: hidden;
}
.article-footer-cta__copy { min-width: 0; }
.article-footer-cta .eyebrow {
  display: inline-block;
  margin-bottom: 0.55rem;
  color: #cfe0d2;
}
.article-footer-cta h2 {
  margin: 0 0 0.4em;
  color: #fff;
  font-size: clamp(1.45rem, 2.6vw, 2rem);
  max-width: 16ch;
}
.article-footer-cta p {
  margin: 0;
  color: rgba(238, 246, 239, 0.78);
  max-width: 40ch;
  font-size: 1.02rem;
}
.article-footer-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}
.article-footer-cta .btn-accent,
.article-footer-cta .c-button--accent {
  --btn-bg: #fff;
  --btn-fg: var(--pine-deep);
  --btn-bd: #fff;
  background: #fff;
  color: var(--pine-deep);
  border-color: #fff;
}
.article-footer-cta .btn-accent:hover,
.article-footer-cta .c-button--accent:hover {
  background: #eef5f0;
  color: var(--pine-deep);
}
.article-footer-cta .btn-outline,
.article-footer-cta .c-button--outline {
  --btn-bg: transparent;
  --btn-fg: #fff;
  --btn-bd: rgba(255, 255, 255, 0.35);
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}
.article-footer-cta .btn-outline:hover,
.article-footer-cta .c-button--outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}
@media (max-width: 720px) {
  .article-footer-cta {
    grid-template-columns: 1fr;
    padding: 18px 16px;
    text-align: center;
  }
  .article-footer-cta__actions { justify-content: center; width: 100%; }
  .article-footer-cta h2 { max-width: none; margin-inline: auto; }
  .article-footer-cta p { margin-inline: auto; }
}

.article-cover {
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  margin: 0.75rem 0 1.35rem;
  box-shadow: 0 18px 48px rgba(24, 36, 28, 0.08);
}
.article-cover img {
  width: 100%;
  aspect-ratio: 21 / 9;
  object-fit: cover;
}

/* Rich article layout */
.article-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 0 0 18px;
}
.article-highlight {
  position: relative;
  padding: 18px 18px 18px 58px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(246, 249, 246, 0.92)),
    var(--surface);
}
.article-highlight__num {
  position: absolute;
  left: 16px;
  top: 16px;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: var(--pine-deep);
  color: #eef6ef;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.article-highlight h2 {
  margin: 0 0 0.35em;
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.25;
  max-width: 14ch;
}
.article-highlight p {
  margin: 0;
  font-size: 0.94rem;
  color: var(--muted);
}

.article-lead {
  display: grid;
  gap: 10px;
  margin: 0 0 22px;
  padding: clamp(18px, 2.4vw, 28px);
  border-radius: 24px;
  border: 1px solid rgba(111, 143, 118, 0.22);
  background:
    radial-gradient(ellipse 90% 120% at 0% 0%, rgba(111, 143, 118, 0.12), transparent 58%),
    linear-gradient(180deg, #f8fbf8, #f3f7f3);
}
.article-lead__label {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pine);
}
.article-lead__text {
  display: grid;
  gap: 0.55em;
  max-width: 72ch;
}
.article-lead__text p {
  margin: 0;
  color: var(--ink);
  font-size: 1.05rem;
}

.article-sections {
  display: grid;
  gap: clamp(20px, 3vw, 34px);
  margin-top: 4px;
}
.article-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.95fr);
  gap: clamp(16px, 2.4vw, 28px);
  align-items: center;
  padding: clamp(16px, 2vw, 24px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--surface);
}
.article-section--reverse {
  grid-template-columns: minmax(260px, 0.95fr) minmax(0, 1fr);
}
.article-section--reverse .article-section__body { order: 2; }
.article-section--reverse .article-figure { order: 1; }
.article-section__body { min-width: 0; }
.article-section__num {
  display: inline-block;
  margin-bottom: 0.45rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pine);
}
.article-section__body h2 {
  margin: 0 0 0.55em;
  max-width: 20ch;
  line-height: 1.18;
}
.article-section__body p {
  margin: 0;
  max-width: 58ch;
  color: var(--ink);
}

.article-figure,
.article-banner,
.article-duo__item {
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: #eef2ee;
}
.article-figure img,
.article-banner img,
.article-duo__item img {
  display: block;
  width: 100%;
  object-fit: cover;
}
.article-figure img,
.article-duo__item img {
  aspect-ratio: 4 / 3;
}
.article-figure figcaption,
.article-banner figcaption,
.article-duo__item figcaption {
  padding: 10px 14px 12px;
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.92);
  border-top: 1px solid var(--line);
}

.article-banner {
  border-radius: 28px;
  box-shadow: 0 16px 42px rgba(24, 36, 28, 0.07);
}
.article-banner img {
  aspect-ratio: 21 / 9;
  max-height: 420px;
}

.article-duo {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

/* Legacy article blocks (fallback) */
.article-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 0 0 16px;
}
.article-column {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--surface);
  box-shadow: none;
}
.article-column h2 {
  margin: 0 0 0.35em;
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  max-width: 12ch;
  line-height: 1.25;
}
.article-column p { margin: 0; font-size: 0.95rem; }
.article-intro {
  display: grid;
  gap: 0.55em;
  margin: 0 0 16px;
  max-width: 72ch;
}
.article-intro p { margin: 0; color: var(--ink); font-size: 1.05rem; }
.article-text { max-width: 72ch; }
.article-text h2 {
  max-width: 18ch;
  margin-top: 1.15em;
  line-height: 1.2;
}

@media (max-width: 960px) {
  .article-section,
  .article-section--reverse {
    grid-template-columns: 1fr;
  }
  .article-section--reverse .article-section__body,
  .article-section--reverse .article-figure {
    order: unset;
  }
}
@media (max-width: 860px) {
  .article-columns,
  .article-highlights { grid-template-columns: 1fr; }
  .article-duo { grid-template-columns: 1fr; }
  .article-cover img,
  .article-banner img { aspect-ratio: 16 / 10; }
}

.seo-related { margin-top: 16px; }
.seo-related a {
  color: var(--pine);
  font-weight: 700;
  text-decoration: none;
}
.seo-related a:hover { text-decoration: underline; }

main#top, main.page-main:has(> .plant-ivy-left) {
  background-image: none;
}

.hero-bg, .hero > .hero-image, .hero-slider-viewport.hero-bg,
.hero-image:not(.hero-bg) { display: block; }
.hero-visual img.hero-bg-photo,
.hero-visual img.hero-cutout { display: block; }

@media (max-width: 720px) {
  .hero, .hero--home, .hero--bright { min-height: 0; }
  .hero-stats-wrap { margin-top: 16px; width: min(100% - 20px, 420px); }
  .hero-stats-bar { grid-template-columns: 1fr; }
  .hero-stat {
    flex-direction: row;
    justify-content: flex-start;
    gap: 12px;
    border-right: 0;
  }
}
