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

/* Timber & Ember Studio — architectural outdoor living */
:root {
  --bg: #efece6;
  --bg-deep: #e4dfd6;
  --surface: #faf8f4;
  --ink: #1c1917;
  --fg: #1c1917;
  --muted: #5c5650;
  --line: #d6d0c6;
  --border: #d6d0c6;
  --primary: #2c4a3e;
  --primary-deep: #1e342c;
  --accent: #b4532a;
  --accent-hover: #9a4320;
  --accent-soft: rgba(180, 83, 42, 0.12);
  --cedar: #2c4a3e;
  --ember: #b4532a;
  --secondary: #8b7355;
  --card: #faf8f4;
  --hero-overlay: linear-gradient(105deg, rgba(18, 16, 14, 0.78) 0%, rgba(18, 16, 14, 0.45) 48%, rgba(18, 16, 14, 0.2) 100%);
  --radius: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --shadow: 0 12px 40px rgba(28, 25, 23, 0.08);
  --shadow-sm: 0 4px 16px rgba(28, 25, 23, 0.06);
  --header-text: #faf8f4;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Sora", system-ui, sans-serif;
  --space-section: clamp(56px, 8vw, 104px);
  --space-section-sm: clamp(36px, 5vw, 56px);
  --space-block: 28px;
  --space-stack: 18px;
  --space-after-heading: 14px;
  --space-after-eyebrow: 12px;
  --header-h: 72px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }

html {
  height: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  margin: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  background-color: var(--bg);
  background-image: none;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--accent); }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
}
p { margin: 0; }

/* Hide leaf décor — atmosphere via photo & type */
.plant-decor,
.plant-ivy-left,
.plant-leaves-top,
.plant-herbs-right,
.plant-palm-right,
.plant-leaf-accent-left,
.plant-leaf-accent-right,
.plant-branch-left,
.cta-decor-svg { display: none !important; }

main#top,
main.page-main {
  background-image: none !important;
  flex: 1;
}

.container,
.c-container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.section,
.c-section {
  padding-block: var(--space-section);
}

.page-main > .container > section.section {
  padding-block: var(--space-section-sm);
}

.row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0;
}

.lead {
  font-size: clamp(17px, 2vw, 20px);
  max-width: 640px;
  line-height: 1.65;
  color: var(--muted);
}

.section-heading {
  max-width: 720px;
  margin-bottom: clamp(28px, 4vw, 48px);
}

.section-heading.left { margin-inline: 0; }
.section-heading h2 {
  margin-top: var(--space-after-eyebrow);
  font-size: clamp(28px, 4vw, 42px);
}
.section-heading p {
  margin-top: var(--space-after-heading);
  font-size: 17px;
  color: var(--muted);
  max-width: 540px;
}

/* ─── Buttons ─── */
.btn,
.c-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.25s var(--ease-out), color 0.25s, border-color 0.25s, transform 0.25s var(--ease-out), box-shadow 0.25s;
}

.btn:hover,
.c-button:hover {
  transform: translateY(-1px);
  color: inherit;
  text-decoration: none;
}

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

.btn-accent,
.c-button--accent,
.btn-primary {
  background: var(--accent);
  color: #fff !important;
  border-color: var(--accent);
  box-shadow: none;
}
.btn-accent:hover,
.c-button--accent:hover,
.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: #fff !important;
}

.btn-outline,
.c-button--outline,
.btn-secondary {
  background: transparent;
  color: var(--ink) !important;
  border-color: rgba(28, 25, 23, 0.28);
}
.btn-outline:hover,
.c-button--outline:hover,
.btn-secondary:hover {
  border-color: var(--ink);
  background: rgba(28, 25, 23, 0.04);
}

.btn-ghost,
.btn-arrow {
  background: transparent;
  color: var(--primary) !important;
  border-color: transparent;
  padding-inline: 8px;
  min-height: 40px;
}
.btn-ghost:hover,
.btn-arrow:hover { color: var(--accent) !important; }

.btn-arrow::after { content: " →"; }

/* ─── Header ─── */
.site-header,
.c-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background 0.35s var(--ease-out), box-shadow 0.35s, backdrop-filter 0.35s;
  background: transparent;
  color: var(--header-text);
}

.site-header.is-scrolled,
.c-header.is-scrolled,
.site-header.is-solid {
  background: rgba(250, 248, 244, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
  color: var(--ink);
}

.site-header.is-scrolled .header-phone,
.site-header.is-scrolled .main-nav > a,
.site-header.is-scrolled .header-slogan,
.site-header.is-scrolled .header-hours,
.site-header.is-scrolled .nav-extra-email,
.c-header.is-scrolled .header-phone,
.c-header.is-scrolled .main-nav > a {
  color: var(--ink);
}

.site-header.is-scrolled .c-button--outline,
.site-header.is-scrolled .btn-outline {
  color: var(--ink) !important;
  border-color: rgba(28, 25, 23, 0.3);
}

.header-main-row {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  flex-shrink: 0;
}
.brand:hover { color: inherit; }
.brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.12);
}

.header-brand-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.header-slogan {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  white-space: nowrap;
  opacity: 0.95;
}
.header-hours {
  font-size: 11px;
  opacity: 0.7;
  white-space: nowrap;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.main-nav > a {
  padding: 8px 10px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  color: inherit;
  opacity: 0.88;
  border-radius: var(--radius);
  transition: opacity 0.2s, background 0.2s;
}
.main-nav > a:hover,
.main-nav a[aria-current="page"] {
  opacity: 1;
  background: rgba(255, 255, 255, 0.1);
  color: inherit;
}
.site-header.is-scrolled .main-nav > a:hover {
  background: rgba(28, 25, 23, 0.06);
}

.nav-extra {
  display: none;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.nav-extra-email { font-size: 13px; opacity: 0.8; }

.header-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.header-contact-group { display: flex; flex-direction: column; align-items: flex-end; }
.header-phone {
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  color: inherit;
  white-space: nowrap;
}
.header-phone:hover { color: var(--accent); }

.site-header .btn,
.site-header .c-button {
  min-height: 40px;
  padding: 8px 14px;
  font-size: 12px;
}
.site-header .c-button--outline,
.site-header .btn-outline {
  color: var(--header-text) !important;
  border-color: rgba(255, 255, 255, 0.45);
}
.site-header .c-button--outline:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff !important;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: var(--radius);
  background: transparent;
  color: inherit;
  font-size: 12px;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
}
.site-header.is-scrolled .nav-toggle {
  border-color: var(--line);
  color: var(--ink);
}

body.nav-open { overflow: hidden; }

@media (max-width: 1100px) {
  .header-brand-info { display: none; }
  .header-right .btn-outline,
  .header-right .c-button--outline { display: none; }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .main-nav {
    position: fixed;
    inset: var(--header-h) 0 0 0;
    flex-direction: column;
    align-items: stretch;
    padding: 24px 20px;
    background: rgba(30, 52, 44, 0.98);
    color: #faf8f4;
    transform: translateX(100%);
    transition: transform 0.35s var(--ease-out);
    overflow-y: auto;
    z-index: 99;
  }
  .main-nav.is-open { transform: translateX(0); }
  .main-nav > a {
    padding: 14px 8px;
    font-size: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .nav-extra { display: flex; }
  .site-header.is-scrolled .main-nav > a { color: #faf8f4; }
}

/* Inner pages: solid header by default (no fullbleed hero) */
body.has-solid-header .site-header,
body.has-solid-header .c-header {
  background: rgba(250, 248, 244, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--line);
  color: var(--ink);
}
body.has-solid-header .site-header .header-phone,
body.has-solid-header .site-header .main-nav > a,
body.has-solid-header .site-header .header-slogan,
body.has-solid-header .site-header .header-hours {
  color: var(--ink);
}
body.has-solid-header .site-header .c-button--outline,
body.has-solid-header .site-header .btn-outline {
  color: var(--ink) !important;
  border-color: rgba(28, 25, 23, 0.3);
}
body.has-solid-header .nav-toggle {
  border-color: var(--line);
  color: var(--ink);
}
body.has-solid-header main {
  padding-top: var(--header-h);
}

/* Fallback before JS runs: solid header unless fullbleed hero present */
body:not(:has(.hero--fullbleed)) .site-header,
body:not(:has(.hero--fullbleed)) .c-header {
  background: rgba(250, 248, 244, 0.96);
  color: var(--ink);
}
body:not(:has(.hero--fullbleed)) main {
  padding-top: var(--header-h);
}

/* ─── Full-bleed Hero ─── */
.hero--fullbleed,
.hero.hero--home.hero--fullbleed {
  position: relative;
  width: 100%;
  min-height: 100svh;
  margin: 0;
  padding: 0;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #1a1714;
}

.hero--fullbleed.container,
.hero--fullbleed.c-container {
  width: 100%;
  max-width: none;
  margin: 0;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero--fullbleed .hero-slider-viewport,
.hero--fullbleed .hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 0;
  overflow: hidden;
}

.hero--fullbleed .hero-slider-track {
  display: flex;
  height: 100%;
  width: 100%;
  transition: transform 0.9s var(--ease-out);
  will-change: transform;
}

.hero--fullbleed .hero-slide {
  flex: 0 0 100%;
  height: 100%;
  position: relative;
}

.hero--fullbleed .hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.06);
  animation: heroZoom 18s ease-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1.04); }
  to { transform: scale(1.12); }
}

.hero--fullbleed::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: var(--hero-overlay);
  pointer-events: none;
}

.hero-overlay {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: calc(var(--header-h) + 48px) 0 clamp(56px, 10vh, 96px);
  color: #faf8f4;
}

.hero--fullbleed .hero-copy {
  max-width: 640px;
  align-self: end;
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 600;
  letter-spacing: -0.03em;
  margin: 0 0 20px;
  color: #faf8f4;
  line-height: 1.05;
}

.hero--fullbleed .eyebrow {
  color: rgba(250, 248, 244, 0.7);
  margin-bottom: 12px;
}

.hero--fullbleed h1 {
  font-size: clamp(32px, 5.5vw, 56px);
  color: #faf8f4;
  margin: 0;
  max-width: 14ch;
}

.hero--fullbleed .hero-copy > p {
  margin-top: 18px;
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.55;
  color: rgba(250, 248, 244, 0.82);
  max-width: 42ch;
}

.hero--fullbleed .actions { margin-top: 32px; }

.hero--fullbleed .btn-outline,
.hero--fullbleed .c-button--outline {
  color: #faf8f4 !important;
  border-color: rgba(250, 248, 244, 0.5);
}
.hero--fullbleed .btn-outline:hover {
  background: rgba(250, 248, 244, 0.12);
  color: #fff !important;
}

.hero--fullbleed .hero-slider-dots {
  position: absolute;
  z-index: 3;
  bottom: 28px;
  right: max(20px, calc((100% - 1180px) / 2));
  display: flex;
  gap: 8px;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.slider-dot.is-active {
  background: #fff;
  transform: scale(1.25);
}

/* Legacy hero (non-fullbleed fallback) */
.hero:not(.hero--fullbleed) {
  display: grid;
  gap: 32px;
  align-items: center;
}
.hero-stats { display: none; }

/* Hero entrance */
.hero--fullbleed .hero-copy {
  opacity: 0;
  transform: translateY(28px);
  animation: heroIn 1s var(--ease-out) 0.15s forwards;
}
.hero--fullbleed .hero-brand { animation-delay: 0.1s; }

@keyframes heroIn {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-12px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
.reveal.delay-1 { transition-delay: 0.08s; }
.reveal.delay-2 { transition-delay: 0.16s; }
.reveal.delay-3 { transition-delay: 0.24s; }

/* ─── Trust strip (moved from hero) ─── */
.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-top: 36px;
}
.trust-strip span {
  background: var(--surface);
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.trust-strip strong {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: -0.02em;
}
.trust-strip em {
  font-style: normal;
  font-size: 13px;
  color: var(--muted);
}

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

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

.product-slider-viewport {
  overflow: hidden;
  margin-inline: calc((100% - 100vw) / 2);
  padding-inline: max(20px, calc((100vw - 1180px) / 2));
}

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

.product-slider-track > .product-card {
  flex: 0 0 min(340px, 78vw);
  scroll-snap-align: start;
}

.product-grid,
.similar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.product-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s var(--ease-out), border-color 0.3s, transform 0.3s var(--ease-out);
}
.product-card:hover {
  box-shadow: var(--shadow);
  border-color: rgba(44, 74, 62, 0.25);
  transform: translateY(-3px);
}

.product-card-media {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg-deep);
  text-decoration: none;
}
.product-card-media img,
.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.product-card:hover .product-card-media img {
  transform: scale(1.05);
}

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

.product-card-body .product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.product-card-body .product-price {
  margin-top: auto;
}
.product-card-body .product-price small {
  font-size: 0.7em;
  font-weight: 500;
}

.product-card h3 {
  font-size: 18px;
  margin: 0;
}
.product-card h3 a {
  text-decoration: none;
  color: var(--ink);
}
.product-card h3 a:hover { color: var(--accent); }

.product-card > div > p,
.product-meta {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}

.product-card dl {
  margin: 0;
  display: grid;
  gap: 6px;
  font-size: 12px;
}
.product-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 6px;
}
.product-card dt { color: var(--muted); font-weight: 500; }
.product-card dd { margin: 0; text-align: right; font-weight: 500; }

.product-card strong,
.product-price {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--primary);
  margin-top: auto;
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}
.product-actions .btn {
  min-height: 40px;
  padding: 8px 14px;
  font-size: 12px;
  flex: 1;
}

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

.pill,
.tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--surface);
  color: var(--ink);
  border: 1px solid var(--line);
}
.pill-hit { background: var(--accent); color: #fff; border-color: var(--accent); }
.pill-recommend { background: var(--primary); color: #fff; border-color: var(--primary); }
.pill-new { background: #fff; color: var(--primary); border-color: var(--primary); }

.product-slider-controls {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 20px;
}
.product-slider-btn {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  border: 1.5px solid var(--line);
  background: var(--surface);
  font-size: 18px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  font-family: var(--font-body);
}
.product-slider-btn:hover {
  border-color: var(--ink);
  background: #fff;
}

/* ─── About ─── */
.about-split {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}
.about-photo {
  margin: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.about-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.about-copy h2 {
  font-size: clamp(28px, 4vw, 40px);
  margin: 12px 0 18px;
}
.about-copy p {
  color: var(--muted);
  margin-bottom: 14px;
  font-size: 16px;
}
.about-copy p strong { color: var(--ink); }

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

/* ─── Advantages (text-led, not card clutter) ─── */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.bento-card {
  background: var(--surface);
  padding: 28px 22px;
  min-height: 180px;
}
.bento-card span {
  display: block;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 14px;
}
.bento-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}
.bento-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}

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

/* ─── FAQ ─── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--line);
  max-width: none;
  width: 100%;
}
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 0;
  background: transparent;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 36px 20px 0;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 400;
  color: var(--accent);
}
.faq-item[open] summary::after { content: "−"; }
.faq-item p {
  padding: 0 0 22px;
  color: var(--muted);
  font-size: 15px;
  max-width: none;
}

/* ─── Reviews ─── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.review-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px 24px;
}
.review-card p {
  font-family: var(--font-display);
  font-size: 17px;
  font-style: italic;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 18px;
}
.review-card strong {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}

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

/* reviews slider leftovers */
[data-reviews-slider] { overflow: hidden; }
[data-reviews-track] {
  display: flex;
  transition: transform 0.45s var(--ease-out);
}
[data-reviews-page] { flex: 0 0 100%; }

/* ─── Blog cards ─── */
.blog-preview-grid,
.blog-grid,
.blog-index-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.blog-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s, transform 0.3s;
  text-decoration: none;
  color: inherit;
}
.blog-card:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
  color: inherit;
}
.blog-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.blog-card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.blog-card h3 {
  font-size: 18px;
}
.blog-card .meta,
.meta {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.blog-card p {
  font-size: 14px;
  color: var(--muted);
}

/* ─── Contacts ─── */
#contacts.section {
  padding-bottom: 0;
  width: 100%;
  max-width: none;
  margin: 0;
  background: var(--primary-deep);
}

#contacts .cta-panel,
.cta-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  background: transparent;
  color: #faf8f4;
  border-radius: 0;
  padding: clamp(48px, 7vw, 88px) 0 clamp(56px, 6vw, 72px);
  position: relative;
  overflow: visible;
}

.cta-copy {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

.cta-panel h2 {
  color: #faf8f4;
  font-size: clamp(28px, 4vw, 40px);
  margin: 12px 0 14px;
  max-width: 16ch;
}
.cta-panel .eyebrow { color: rgba(250, 248, 244, 0.55); }
.cta-panel .cta-lead {
  color: rgba(250, 248, 244, 0.78);
  font-size: 16px;
  max-width: 36ch;
  line-height: 1.55;
  margin: 0;
}

.contact-lines {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
  font-size: 14px;
}
.contact-lines li {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 12px;
  align-items: baseline;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.contact-lines strong {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(250, 248, 244, 0.45);
}
.contact-lines a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}
.contact-lines a:hover { color: #f0c4b0; }
.contact-lines span { color: rgba(250, 248, 244, 0.9); }

.cta-form-card {
  background: var(--surface);
  color: var(--ink);
  border-radius: var(--radius-md);
  padding: clamp(24px, 3vw, 32px);
  box-shadow: var(--shadow);
}

.cta-form-card .lead-form {
  gap: 16px;
}

.cta-form-card .field label,
.cta-form-card .checkbox-field {
  color: var(--muted);
}

.cta-form-card .field label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.cta-form-card .input,
.cta-form-card .textarea,
.cta-form-card .lead-form input:not([type="checkbox"]):not([type="hidden"]),
.cta-form-card .lead-form textarea {
  background: #fff;
  color: var(--ink);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
}

.cta-form-card .input:focus,
.cta-form-card .textarea:focus,
.cta-form-card .lead-form input:focus,
.cta-form-card .lead-form textarea:focus {
  background: #fff;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.cta-form-card .input::placeholder,
.cta-form-card .textarea::placeholder {
  color: #9a948c;
}

.cta-form-card .checkbox-field {
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}

.cta-form-card .checkbox-field a {
  color: var(--accent);
}

.cta-form-card .btn-primary,
.cta-form-card .btn-accent {
  width: 100%;
  min-height: 52px;
  margin-top: 4px;
}

.cta-form-card .lead-form-message.is-success {
  background: rgba(44, 74, 62, 0.1);
  color: var(--primary);
}
.cta-form-card .lead-form-message.is-error {
  background: #fde8e0;
  color: var(--accent);
}

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

/* Footer flush with contacts band — handled above */

/* ─── Forms ─── */
.lead-form {
  display: grid;
  gap: 14px;
}
.field,
.checkbox-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field label,
.checkbox-field label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(250, 248, 244, 0.65);
}
.page-main .field label,
.lead-modal .field label,
.product-buy-form .field label {
  color: var(--muted);
}
.input,
.textarea,
.lead-form input:not([type="checkbox"]):not([type="hidden"]),
.lead-form textarea,
.product-buy-form input:not([type="checkbox"]):not([type="hidden"]),
.product-buy-form textarea,
select.input {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-family: var(--font-body);
  font-size: 15px;
  transition: border-color 0.2s, background 0.2s;
}
.page-main .input,
.page-main .textarea,
.lead-modal .input,
.lead-modal .textarea,
.product-buy-form .input,
.product-buy-form .textarea {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--line);
}
.input:focus,
.textarea:focus,
.lead-form input:focus,
.lead-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.12);
}
.page-main .input:focus,
.lead-modal .input:focus,
.product-buy-form .input:focus {
  background: #fff;
}
.textarea { min-height: 110px; resize: vertical; }
.checkbox-field {
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: rgba(250, 248, 244, 0.75);
}
.page-main .checkbox-field,
.lead-modal .checkbox-field { color: var(--muted); }
.checkbox-field input { margin-top: 3px; }
.field-honey {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}
.lead-form-message {
  font-size: 14px;
  padding: 10px 12px;
  border-radius: var(--radius);
}
.lead-form-message.is-success {
  background: rgba(44, 74, 62, 0.15);
  color: #c8e6d0;
}
.lead-form-message.is-error {
  background: rgba(180, 83, 42, 0.2);
  color: #ffd4c2;
}
.lead-modal .lead-form-message.is-success {
  background: var(--accent-soft);
  color: var(--primary);
}
.lead-modal .lead-form-message.is-error {
  background: #fde8e0;
  color: var(--accent);
}

/* ─── Footer ─── */
.site-footer,
.c-footer {
  background: var(--primary-deep);
  color: rgba(250, 248, 244, 0.78);
  padding: 56px 0 0;
  margin-top: auto;
}

main:has(#contacts) + .site-footer {
  margin-top: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 48px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.site-footer .brand img {
  background: rgba(255, 255, 255, 0.1);
}
.footer-grid > div > p {
  margin-top: 14px;
  font-size: 14px;
  max-width: 36ch;
  line-height: 1.55;
}
.footer-contacts {
  margin-top: 18px;
  font-size: 14px;
  line-height: 1.8;
}
.footer-contacts a {
  color: #fff;
  text-decoration: none;
}
.footer-contacts a:hover { color: #f0c4b0; }
.footer-grid nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-grid nav a {
  text-decoration: none;
  font-size: 14px;
  color: rgba(250, 248, 244, 0.78);
}
.footer-grid nav a:hover { color: #fff; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 12px;
}
.footer-bottom a {
  color: rgba(250, 248, 244, 0.7);
  text-decoration: none;
}

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

/* ─── Page hero (inner) ─── */
.page-hero,
.od-page-hero {
  padding-block: clamp(28px, 4vw, 48px) clamp(20px, 3vw, 32px);
}
.page-hero h1,
.od-page-hero h1 {
  font-size: clamp(32px, 5vw, 48px);
  max-width: 18ch;
  margin-top: 10px;
}
.page-hero p,
.od-page-hero p {
  margin-top: 12px;
  color: var(--muted);
  max-width: 52ch;
  font-size: 17px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 20px;
}
.breadcrumbs a {
  text-decoration: none;
  color: var(--muted);
}
.breadcrumbs a:hover { color: var(--accent); }

/* ─── Product page ─── */
.product-page .product-layout,
.product-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
  margin-bottom: 48px;
}
.product-layout > .product-gallery,
.product-gallery,
[data-product-gallery] {
  position: static !important;
  top: auto !important;
  bottom: auto !important;
  inset: auto !important;
  align-self: start;
}
.product-gallery-main {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-deep);
  border: 1px solid var(--line);
}
.product-gallery-main img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.product-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 10px;
}
.product-gallery-thumbs:has(> :only-child) {
  display: none;
}
.product-gallery-thumb {
  padding: 0;
  border: 2px solid transparent;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  background: none;
}
.product-gallery-thumb.is-active,
.product-gallery-thumb:hover {
  border-color: var(--accent);
}
.product-gallery-thumb img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.product-summary h1 {
  font-size: clamp(26px, 3.5vw, 36px);
  margin-bottom: 12px;
}
.product-summary .product-price {
  display: block;
  margin: 16px 0;
}
.product-summary-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0;
}

.product-cta-box {
  background: var(--primary-deep);
  color: #faf8f4;
  border-radius: var(--radius-md);
  padding: 24px;
  margin-top: 24px;
  position: relative;
  z-index: 1;
}
.product-cta-box h2,
.product-cta-box h3 {
  color: #fff;
  font-size: 1.35rem;
  margin-bottom: 8px;
}
.product-cta-box p {
  color: rgba(250, 248, 244, 0.7);
  font-size: 14px;
  margin-bottom: 16px;
}
.product-cta-box .btn-primary,
.product-cta-box .c-button--accent {
  width: 100%;
}
.product-cta-box .btn-outline,
.product-cta-box .c-button--outline {
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.35);
  width: 100%;
  margin-top: 8px;
}
.product-buy-form .field label { color: rgba(250, 248, 244, 0.65); }
.product-buy-form .input,
.product-buy-form .textarea {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
}
.product-buy-form .checkbox-field { color: rgba(250, 248, 244, 0.7); }

.product-block {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.product-block h2 {
  font-size: 24px;
  margin-bottom: 16px;
}

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

.complect-list,
.service-list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  display: grid;
  gap: 8px;
}

.service-list {
  max-width: 68ch;
  font-size: 16px;
  line-height: 1.55;
}

.service-steps .bento-card {
  min-height: 160px;
}

@media (max-width: 960px) {
  .bento-grid[style*="repeat(3"] {
    grid-template-columns: 1fr !important;
  }
}

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

/* ─── Article ─── */
.article-page .container { max-width: 780px; }
.article-header { margin-bottom: 28px; }
.article-header h1 {
  font-size: clamp(30px, 4.5vw, 44px);
  margin-top: 10px;
  max-width: 20ch;
}
.article-meta {
  display: flex;
  gap: 12px;
  margin-top: 14px;
  font-size: 13px;
  color: var(--muted);
}
.article-cover {
  margin: 0 0 36px;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.article-cover img {
  width: 100%;
  aspect-ratio: 2 / 1;
  object-fit: cover;
}
.article-content {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  max-width: 68ch;
}
.article-content h2 {
  font-size: 26px;
  margin: 36px 0 14px;
}
.article-content p + p { margin-top: 14px; }
.article-content ul,
.article-content ol {
  margin: 14px 0;
  padding-left: 22px;
  color: var(--muted);
}
.article-content li { margin-bottom: 6px; }
.article-content a { color: var(--accent); }
.article-footer-cta {
  margin-top: 48px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

/* ─── Modals ─── */
.lead-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 20px;
}
.lead-modal[hidden] { display: none; }
.lead-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 16, 14, 0.55);
  backdrop-filter: blur(4px);
}
.lead-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(440px, 100%);
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow);
}
.lead-modal-dialog h2 {
  font-size: 24px;
  margin-bottom: 8px;
}
.lead-modal-desc {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 20px;
}
.lead-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: none;
  background: transparent;
  font-size: 24px;
  cursor: pointer;
  color: var(--muted);
  border-radius: var(--radius);
}
.lead-modal-close:hover { color: var(--ink); }
body.lead-modal-open { overflow: hidden; }

/* ─── Cookie ─── */
.cookie-consent {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 150;
  max-width: 520px;
}
.cookie-consent[hidden] { display: none; }
.cookie-consent-inner {
  display: flex;
  gap: 14px;
  align-items: center;
  background: var(--primary-deep);
  color: #faf8f4;
  padding: 16px 18px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}
.cookie-consent p {
  font-size: 13px;
  margin: 0;
  flex: 1;
  line-height: 1.45;
}
.cookie-consent a { color: #f0c4b0; }
@media (max-width: 560px) {
  .cookie-consent-inner { flex-direction: column; align-items: stretch; }
  .cookie-consent .btn { width: 100%; }
}

/* ─── Misc ─── */
.prose-flow { display: grid; gap: 28px; }
.od-block { padding-block: var(--space-section-sm) !important; }
.od-content { max-width: 72ch; }

/* Display utility */
.display-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 7vw, 72px);
  letter-spacing: -0.03em;
}

/* Legacy dual class safety */
.c-section.c-container.section.container { /* noop */ }

@media (max-width: 720px) {
  .container,
  .c-container { width: min(100% - 28px, 1180px); }
  .hero-overlay { width: min(100% - 28px, 1180px); }
  .header-phone { font-size: 12px; }
}

/* ─── Project gallery (individual page) ─── */
.project-gallery-section { padding-block: var(--space-section-sm); }
.project-gallery {
  position: relative;
  background: #1c1916;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.project-gallery-stage {
  position: relative;
  aspect-ratio: 16 / 10;
  max-height: min(72vh, 640px);
}
.project-gallery-viewport,
.project-gallery .hero-slider-viewport {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 0;
}
.project-gallery-track {
  display: flex;
  height: 100%;
  width: 100%;
  transition: transform 0.7s var(--ease-out);
  will-change: transform;
}
.project-gallery-slide {
  flex: 0 0 100%;
  margin: 0;
  position: relative;
  height: 100%;
}
.project-gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.project-gallery-slide figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 48px 24px 20px;
  background: linear-gradient(transparent, rgba(18, 16, 14, 0.78));
  color: rgba(250, 248, 244, 0.92);
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: 0.01em;
}
.project-gallery-ui {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  background: rgba(28, 25, 22, 0.96);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.project-gallery-dots {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.project-gallery-controls {
  display: flex;
  gap: 8px;
}
.project-gallery-controls .product-slider-btn {
  background: transparent;
  border-color: rgba(250, 248, 244, 0.35);
  color: #faf8f4;
}
.project-gallery-controls .product-slider-btn:hover {
  background: rgba(250, 248, 244, 0.1);
  border-color: #faf8f4;
}
.reviews-grid--project {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 860px) {
  .reviews-grid--project { grid-template-columns: 1fr; }
  .project-gallery-stage {
    aspect-ratio: 4 / 3;
    max-height: 52vh;
  }
  .project-gallery-slide figcaption {
    font-size: 13px;
    padding: 36px 16px 14px;
  }
}
