/* =============================================
   HIDDEN DOORS — Main Stylesheet
   ============================================= */

/* ---------- CSS Custom Properties ---------- */
:root {
  --color-bg: #f4f3f1;
  --color-text-primary: #1f1e1c;
  --color-text-secondary: #3c3a37;
  --color-text-muted: #66625b;
  --color-btn: #504c40;
  --color-border: #c9c6bf;
  --color-bg-blocks: #e9e2da;

  --font-archivo: 'Archivo', sans-serif;
  --font-inter: 'Inter', sans-serif;

  --container-max: 1920px;
  --container-pad: 100px;
}

/* Responsive padding */
@media (max-width: 1440px) {
  :root {
    --container-pad: 80px;
  }
}

@media (max-width: 1280px) {
  :root {
    --container-pad: 40px;
  }
}

@media (max-width: 1023px) {
  :root {
    --container-pad: 20px;
  }
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  overflow-x: hidden;
}

body {
  background-color: var(--color-bg);
  color: var(--color-text-primary);
  font-family: var(--font-inter);
  font-size: 16px;
  line-height: 1.625;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ---------- Buttons ---------- */
.btn-main {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-btn);
  color: #f4f3f1;
  font-family: var(--font-archivo);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.16px;
  text-transform: uppercase;
  padding: 14px 30px;
  cursor: pointer;
  border: none;
  transition: background-color 0.2s ease, opacity 0.2s ease;
  white-space: nowrap;
  font-variation-settings: 'wdth' 100;
}

.btn-main:hover {
  opacity: 0.85;
}

/* ---------- Section Titles ---------- */
.section-title-bar {
  display: flex;
  align-items: center;
  padding: 16px var(--container-pad) 10px;
  height: 100px;
}

.section-title {
  font-family: var(--font-archivo);
  font-weight: 500;
  font-size: clamp(32px, 4vw, 60px);
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--color-text-primary);
  line-height: 1;
  font-variation-settings: 'wdth' 100;
}

/* =============================================
   01 — HEADER
   ============================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1920px;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  padding: 10px var(--container-pad);
  background-color: var(--color-bg);
}

.site-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 1px;
  background: var(--color-bg-blocks);
}

.header-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.header-links {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
}
.header-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 30px);
  flex-shrink: 0;
}

.header-nav a {
  font-family: var(--font-archivo);
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.16px;
  color: var(--color-btn);
  text-align: center;
  line-height: 26px;
  white-space: nowrap;
  font-variation-settings: 'wdth' 100;
  transition: opacity 0.2s;
}

.header-nav a:hover,
.header-nav a:focus,
.header-nav a.is-active {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 12px 12px;
  flex-shrink: 0;
  cursor: pointer;
}

.header-cta span {
  font-family: var(--font-archivo);
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.14px;
  text-transform: uppercase;
  color: var(--color-btn);
  white-space: nowrap;
  font-variation-settings: 'wdth' 100;
}
@media (min-width: 1221px) {
  .icon-mob {
    display: none;
  }
}
@media (max-width: 1220px) {
  .icon-desc {
    display: none;
  }
  .header-cta span {
    display: none;
  }
}

.header-cta:hover,
.header-cta:focus {
  opacity: 0.7;
}

.header-cta:hover span {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 1.5px;
  background-color: var(--color-text-primary);
  transition: transform 0.3s, opacity 0.3s;
}

/* ---------- Mobile Menu ---------- */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--color-bg);
  z-index: 200;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.35s ease;
}

.mobile-menu.is-open {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  height: 60px;
  border-bottom: 1px solid var(--color-bg-blocks);
}

.mobile-cta {
  font-size: 13px;
}

.mobile-menu-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  padding: 20px;
}

.mobile-menu-nav a {
  font-family: var(--font-archivo);
  font-size: 18px;
  font-weight: 400;
  color: var(--color-text-primary);
  padding: 20px 0;
  border-bottom: 1px solid var(--color-bg-blocks);
  font-variation-settings: 'wdth' 100;
}

/* =============================================
   02 — HERO
   ============================================= */
.hero {
  padding-top: 60px;
  /* account for fixed header */
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}

/* Title area: flex row — [HIDDEN DOORS] on left, [tagline] on right */
.hero-title {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  text-transform: uppercase;
  color: var(--color-text-primary);
  padding-bottom: 0;
  gap: 20px;
}

/* HIDDEN + DOORS together, baseline-aligned */
.hero-title-words {
  display: flex;
  align-items: flex-end;
  gap: 0;
  flex-shrink: 0;
}

/* "Hidden" — thin huge text */
.hero-title-main {
  font-family: var(--font-archivo);
  font-weight: 100;
  font-size: clamp(60px, 9.5vw, 140px);
  letter-spacing: 0.5px;
  line-height: 1;
  white-space: nowrap;
  font-variation-settings: 'wdth' 100;
  margin: 0;
}

.hero-i {
  color: var(--color-bg-blocks);
}

/* "DOORS" — regular font, right next to HIDDEN at same baseline */
.hero-doors {
  font-family: var(--font-archivo);
  font-weight: 400;
  font-size: clamp(26px, 4.2vw, 60px);
  letter-spacing: 0.5px;
  line-height: 1;
  white-space: nowrap;
  font-variation-settings: 'wdth' 100;
  margin-left: 12px;
  /* Shift up slightly — in design DOORS is at 70px from top, baseline aligns with HIDDEN */
  padding-bottom: clamp(3px, 0.5vw, 8px);
}

/* "Seamless interior design solutions" — light, right side, aligned to bottom */
.hero-tagline {
  font-family: var(--font-archivo);
  font-weight: 300;
  font-size: clamp(10px, 1.5vw, 28px);
  letter-spacing: 0.14px;
  line-height: 1;
  white-space: nowrap;
  font-variation-settings: 'wdth' 100;
  text-align: right;
  flex-shrink: 0;
  /* Push down to roughly align with DOORS baseline (not top of HIDDEN) */
  padding-bottom: clamp(2px, 0.4vw, 6px);
}

.hero-image-wrap {
  position: relative;
  width: 100%;
  height: clamp(280px, 43vw, 650px);
  overflow: hidden;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* The wrap containing tags + content panel */
.hero-panel-wrap {
  position: absolute;
  left: 40px;
  /* At 1920px: tags at 277/650=42.6% from top */
  top: 42%;
  width: 415px;
  max-width: calc(100% - 80px);
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hero-tags {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--color-bg);
  padding: 10px 16px;
  width: 100%;
}

.hero-tags span {
  font-family: var(--font-archivo);
  font-weight: 200;
  font-size: clamp(10px, 0.9vw, 14px);
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-text-secondary);
  font-variation-settings: 'wdth' 100;
  white-space: nowrap;
}

.hero-content-panel {
  background-color: var(--color-bg);
  padding: 20px 30px 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 10px;
}

.hero-description {
  font-family: var(--font-inter);
  font-weight: 400;
  font-size: clamp(14px, 1.1vw, 18px);
  line-height: 26px;
  letter-spacing: 0.09px;
  color: var(--color-text-secondary);
}

/* =============================================
   03 — ABOUT
   ============================================= */
.about-section {
  margin-top: 60px;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 0.65fr 1fr;
  column-gap: 20px;
  padding: 20px var(--container-pad) 0;
  align-items: start;
}

.about-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-img-main {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.about-left-text {
  font-family: var(--font-inter);
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: 0.09px;
  color: var(--color-text-secondary);
  max-width: 100%;
  padding-right: 30px;
}

.about-center {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
}

.about-img-center {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.about-center-text {
  font-family: var(--font-inter);
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: 0.09px;
  color: var(--color-text-secondary);
}

.about-right {
  position: relative;
  border: 1px solid var(--color-border);
  padding: 60px 60px 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  min-height: 540px;
  justify-content: space-between;
  margin-left: 80px;
}

.quote-icon {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 65px;
  height: 25px;
}

.about-quote-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: center;
}

.about-quote-main {
  font-family: var(--font-inter);
  font-weight: 300;
  font-size: 24px;
  line-height: 36px;
  letter-spacing: 0.12px;
  color: var(--color-text-secondary);
}

.about-quote-sub {
  font-family: var(--font-inter);
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0.16px;
  color: var(--color-text-muted);
  opacity: 0.7;
}

.about-quote-img-wrap {
  position: relative;
  width: 190px;
  height: 190px;
  flex-shrink: 0;
}

.about-quote-img-bg {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 180px;
  height: 180px;
  background-color: var(--color-bg-blocks);
}

.about-quote-img {
  position: absolute;
  left: 0;
  top: 0;
  width: 180px;
  height: 180px;
  object-fit: cover;
}

/* =============================================
   10 — FAQ
   ============================================= */
.faq-section {
  margin-top: 60px;
}

.faq-content {
  display: grid;
  grid-template-columns: 870fr 850fr;
  gap: 0;
  padding: 40px var(--container-pad) 60px;
  align-items: start;
}

/* Two overlapping images */
.faq-imgs {
  position: relative;
  height: 590px;
  overflow: hidden;
}

.faq-img {
  position: absolute;
  object-fit: cover;
  display: block;
  background-color: var(--color-bg-blocks);
}

.faq-img--small {
  left: 0;
  top: 0;
  width: 31.03%;
  /* 270/870 */
  height: 450px;
}

.faq-img--big {
  left: 33.33%;
  /* 290/870 */
  top: 40px;
  width: 47.7%;
  /* 415/870 */
  height: 100%;
}

/* Accordion */
.faq-accordion {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
  padding: 16px 10px 20px 30px;
;
  transition: background-color 0.2s;
}

.faq-item--first {
  border-top: none;
}

.faq-item:hover {
  background-color: rgba(233, 226, 218, 0.4);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-inter);
  font-weight: 400;
  font-size: 24px;
  color: var(--color-text-primary);
  line-height: 1.4;
  text-transform: none;
  letter-spacing: 0.04em;
}

/* Arrow icon */
.faq-arrow {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  transform: rotate(90deg);
  transition: transform 0.3s ease;
}

.faq-item.is-open .faq-arrow {
  transform: rotate(-90deg);
}

/* Answer */
.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease;
}

.faq-item.is-open {
  padding-bottom: 16px;
}

.faq-item.is-open .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  font-family: var(--font-inter);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(14px, 1vw, 18px);
  line-height: 26px;
  letter-spacing: 0.09px;
  color: var(--color-text-muted);
  padding: 12px 0 0 20px;
}

/* =============================================
   09 — INSPIRATION SLIDER
   ============================================= */
.inspiration-section {
  margin-top: 60px;
}

.inspiration-wrap {
  position: relative;
  padding: 20px var(--container-pad) 40px;
}

/* Slider container */
.inspiration-slider {
  position: relative;
  height: 600px;
  overflow: hidden;
}

/* Each slide */
.inspiration-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-start;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.inspiration-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

/* Large image — right side, full height */
.inspiration-img {
  position: absolute;
  right: 0;
  top: 0;
  width: 74.7%;
  /* 1285/1720 */
  height: 100%;
  overflow: hidden;
  background-color: var(--color-bg-blocks);
}

.inspiration-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Description card — left side, overlaps image */
.inspiration-card {
  position: relative;
  z-index: 2;
  margin-top: 40px;
  width: 560px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background-color: var(--color-bg-blocks);
  padding: 50px 60px;
}

.inspiration-slide-title {
  font-family: var(--font-archivo);
  font-weight: 400;
  font-size: clamp(22px, 2vw, 30px);
  color: var(--color-text-primary);
  line-height: 1.25;
  text-transform: uppercase;
  font-variation-settings: 'wdth' 100;
}

.inspiration-slide-txt {
  font-family: var(--font-inter);
  font-weight: 400;
  font-size: clamp(14px, 1vw, 18px);
  line-height: 26px;
  letter-spacing: 0.09px;
  color: var(--color-text-muted);
}

/* Navigation arrows — inside slider, under card (desktop) */
.inspiration-arrows {
  position: relative;
  display: flex;
  gap: 10px;
  z-index: 3;
  margin-top: -60px;
  margin-left: calc(var(--container-pad) + 180px);
}

.insp-arrow {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-btn);
  background: none;
  color: var(--color-btn);
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
  flex-shrink: 0;
}

.insp-arrow:hover {
  background-color: var(--color-btn);
  color: var(--color-bg);
}

/* =============================================
   08 — INSTALLATION
   ============================================= */
.install-section {
  margin-top: 60px;
}

/* Two-column: left ≈995px, right ≈705px */
.install-content {
  display: grid;
  grid-template-columns: 995fr 705fr;
  gap: 20px;
  padding: 20px var(--container-pad) 0;
  align-items: start;
  min-height: 600px;
}

/* Left: two images — proportional grid (415 : 560) */
.install-left {
  display: grid;
  grid-template-columns: 415fr 560fr;
  gap: 20px;
  align-items: start;
}

.install-img-small {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.install-img-small img {
  width: 100%;
  aspect-ratio: 415 / 450;
  object-fit: cover;
  display: block;
  background-color: var(--color-bg-blocks);
}

.install-img-caption {
  font-family: var(--font-inter);
  font-weight: 400;
  font-size: clamp(14px, 1vw, 16px);
  line-height: 26px;
  letter-spacing: 0.09px;
  color: var(--color-text-secondary);
}

.install-img-big {
  margin-top: 40px;
  overflow: hidden;
  background-color: var(--color-bg-blocks);
}

.install-img-big img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

/* Right: description + quote with border */
.install-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 60px;
  padding: 0 10px;
  height: 600px;
  border: 1px solid var(--color-border);
}

.install-description {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (min-width: 1024px) {
  .install-description {
    margin: 0 auto;
    width: 415px;
  }
}

.install-desc-title {
  font-family: var(--font-archivo);
  font-weight: 400;
  font-size: 30px;
  color: var(--color-text-primary);
  line-height: 1.3;
  text-transform: uppercase;
  font-variation-settings: 'wdth' 100;
}

.install-list {
  list-style: disc;
  padding-left: 27px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.install-list li {
  font-family: var(--font-inter);
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: 0.09px;
  color: var(--color-text-secondary);
}

.install-quote {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 1024px) {
  .install-quote {
    margin: 0 auto;
    width: 415px;
  }
}

.install-quote-icon {
  width: 25px;
  height: 25px;
}

.install-quote-text {
  font-family: var(--font-inter);
  font-weight: 300;
  font-size: 24px;
  line-height: 1.6;
  letter-spacing: 0.09px;
  color: var(--color-text-secondary);
}

/* =============================================
   07 — PROS & CONS
   ============================================= */
.proscons-section {
  margin-top: 60px;
}

/* 3-col grid: 560 : 415 : 705 */
.proscons-content {
  display: grid;
  grid-template-columns: 560fr 415fr 705fr;
  gap: 20px;
  padding: 20px var(--container-pad) 0;
  align-items: stretch;
  min-height: 520px;
}

/* Col 1: Quote panel */
.proscons-quote-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 50px;
  padding: 40px 60px;
  text-align: center;
  border: 1px solid var(--color-border);
}

.proscons-quote-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.proscons-quote-icon {
  width: 32px;
  height: 32px;
}

.proscons-quote-text {
  font-family: var(--font-inter);
  font-weight: 300;
  font-size: clamp(16px, 1.3vw, 24px);
  line-height: 36px;
  letter-spacing: 0.12px;
  color: var(--color-text-secondary);
}

/* Col 2: Advantages + Considerations */
.proscons-lists {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.proscons-block {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  height: 250px;
  padding: 30px;
  border: 1px solid var(--color-border);
}

.proscons-block--pros {
  background: var(--color-bg-blocks);
  border-color: transparent;
}

.proscons-block-title {
  font-family: var(--font-archivo);
  font-weight: 400;
  font-size: 30px;
  color: var(--color-text-primary);
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  font-variation-settings: 'wdth' 100;
}

.proscons-list {
  list-style: disc;
  padding-left: 27px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.proscons-list li {
  font-family: var(--font-inter);
  font-weight: 400;
  font-size: clamp(14px, 1vw, 18px);
  line-height: 26px;
  letter-spacing: 0.09px;
  color: var(--color-text-muted);
}

.proscons-block--cons .proscons-list li {
  color: var(--color-text-secondary);
}

/* Col 3: Large image */
.proscons-img {
  overflow: hidden;
  border: 1px solid var(--color-border);
  background-color: var(--color-bg-blocks);
}

.proscons-img img {
  width: 100%;
  height: 100%;
  min-height: 400px;
  object-fit: cover;
  display: block;
}

/* =============================================
   06 — BENEFITS
   ============================================= */
.benefits-section {
  margin-top: 60px;
}

/* Asymmetric 4-col grid: 415 : 560 : 270 : 415 at 1920px */
.benefits-content {
  display: grid;
  grid-template-columns: 1fr 1.35fr 0.65fr 1fr;
  gap: 20px;
  padding: 20px var(--container-pad) 0;
  align-items: stretch;
}

.benefit-block {
  display: flex;
  flex-direction: column;
  min-height: 420px;
}

/* Colored panel — title on top, text on bottom */
.benefit-block--colored {
  background-color: var(--color-bg-blocks);
  justify-content: space-between;
  padding: 30px;
}

.benefit-block-title {
  font-family: var(--font-archivo);
  font-weight: 400;
  font-size: 30px;
  color: var(--color-text-primary);
  line-height: 1.25;
  text-transform: uppercase;
  font-variation-settings: 'wdth' 100;
}

.benefit-block-txt {
  font-family: var(--font-inter);
  font-weight: 400;
  font-size: clamp(14px, 1vw, 18px);
  line-height: 26px;
  letter-spacing: 0.09px;
  color: var(--color-text-secondary);
}

/* Image block */
.benefit-block--img {
  overflow: hidden;
  background-color: var(--color-bg-blocks);
}

.benefit-block--img img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  display: block;
}

/* Double sub-benefits (col 4) */
.benefit-block--double {
  gap: 0;
  justify-content: stretch;
}

.benefit-sub {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
  padding: 30px;
  border: 1px solid var(--color-border);
  background: var(--color-bg-blocks);
}

.benefit-sub+.benefit-sub {
  border-top: none;
}

.benefit-sub-title {
  font-family: var(--font-archivo);
  font-weight: 400;
  font-size: 30px;
  color: var(--color-text-primary);
  line-height: 1.25;
  text-transform: uppercase;
  font-variation-settings: 'wdth' 100;
}

.benefit-sub-txt {
  font-family: var(--font-inter);
  font-weight: 400;
  font-size: clamp(14px, 1vw, 18px);
  line-height: 26px;
  letter-spacing: 0.09px;
  color: var(--color-text-secondary);
}

/* =============================================
   05 — SPACES
   ============================================= */
.spaces-section {
  margin-top: 60px;
}

.spaces-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 0 var(--container-pad) 0;
  align-items: stretch;
}

.spaces-col {
  display: flex;
  flex-direction: column;
  min-height: 700px;
}

/* Col 1: Space items list */
.spaces-col--list {
  justify-content: stretch;
}

.space-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  flex: 1;
  padding: 20px 30px 30px;
  border: 1px solid var(--color-border);
  border-top: none;
}

.space-item--first {
  border-top: 1px solid var(--color-border);
}

.space-item-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.space-item-icon {
  flex-shrink: 0;
  display: block;
}

.space-item-name {
  font-family: var(--font-archivo);
  font-weight: 200;
  text-transform: uppercase;
  font-size: clamp(18px, 1.4vw, 20px);
  color: #504C40;
  line-height: 1.2;
  font-variation-settings: 'wdth' 100;
}

.space-item-desc {
  font-family: var(--font-inter);
  font-weight: 400;
  font-size: clamp(14px, 1vw, 18px);
  line-height: 26px;
  letter-spacing: 0.09px;
  color: var(--color-text-secondary);
}

/* Col 2: Large decorative image */
.spaces-col--big-img {
  overflow: hidden;
  background-color: var(--color-bg-blocks);
}

.spaces-img-fill {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Col 3: Image top (72%) + text bottom (28%) */
.spaces-col--img-top {
  gap: 0;
}

.spaces-photo {
  overflow: hidden;
  background-color: var(--color-bg-blocks);
}

.spaces-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.spaces-photo--top {
  flex: 0 0 502px;
}

.spaces-room-desc {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px 30px 30px;
  border: 1px solid var(--color-border);
}

/* Below image: no top border (image bottom = desc top) */
.spaces-room-desc--below {
  border-top: none;
}

/* Above image: no bottom border (desc bottom = image top) */
.spaces-room-desc--above {
  border-bottom: none;
}

.spaces-room-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.spaces-room-name {
  font-family: var(--font-archivo);
  font-weight: 200;
  font-size: clamp(18px, 1.4vw, 20px);
  color: #504C40;
  text-transform: uppercase;
  line-height: 1.2;
  font-variation-settings: 'wdth' 100;
}

.spaces-room-text {
  font-family: var(--font-inter);
  font-weight: 400;
  font-size: clamp(14px, 1vw, 16px);
  line-height: 26px;
  letter-spacing: 0.09px;
  color: var(--color-text-secondary);
}

/* Col 4: Text top + image bottom */
.spaces-col--text-top {
  gap: 0;
}

.spaces-col--text-top .spaces-room-desc {
  flex: 0 0 auto;
}

.spaces-photo--bottom {
  flex: 1;
  min-height: 300px;
}

/* =============================================
   04 — TYPES
   ============================================= */
.types-section {
  margin-top: 60px;
}

.types-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 20px var(--container-pad) 0px;
  align-items: stretch;
}

/* Card — vertical layout (default) */
.type-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.type-card-img {
  overflow: hidden;
  background-color: var(--color-bg-blocks);
  flex-shrink: 0;
  min-height: clamp(260px, 21vw, 554px);
}

.type-card-img img {
  width: 100%;
  height: clamp(260px, 21vw, 554px);
  object-fit: cover;
  display: block;
}

.type-card-body {
  flex: 1;
  padding: 24px 29px 29px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1px solid var(--color-border);
  border-top: none;
}

.type-card-heading {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.type-card-name {
  font-family: var(--font-archivo);
  font-weight: 400;
  font-size: clamp(20px, 1.6vw, 30px);
  color: var(--color-text-primary);
  line-height: 1.2;
  text-transform: uppercase;
  font-variation-settings: 'wdth' 100;
}

.type-card-sub {
  font-family: var(--font-archivo);
  font-weight: 300;
  text-transform: uppercase;
  font-size: clamp(13px, 0.85vw, 16px);
  color: var(--color-text-muted);
  line-height: 1.5;
  font-variation-settings: 'wdth' 100;
}

.type-card-desc {
  font-family: var(--font-inter);
  font-weight: 400;
  font-size: clamp(14px, 1vw, 18px);
  line-height: 26px;
  letter-spacing: 0.09px;
  color: var(--color-text-secondary);
}

/* Concealed — text in beige top area, empty bottom with border */
.type-card--text {
  background: transparent;
  max-height: clamp(260px, 21vw, 554px);
}

.type-card-text-top {
  background: var(--color-bg-blocks);
  flex: 1;
  padding: 24px 29px 29px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
}

.type-card--text .type-card-body {
  display: none;
  border-top: none;
  flex: 1;
}

/* =============================================
   11 — CONTACT
   ============================================= */
.contact-title-bar {
  border-bottom: none;
}

.contact-content {
  padding: 40px 0 0;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
}

/* Photo bg — starts 120px below form top, creating the "bleed" effect */
.contact-bg {
  grid-area: 1 / 1;
  position: relative;
  margin: 120px 100px 0;
  overflow: hidden;
  min-height: 680px;
}

.contact-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 0;
}

/* Form overlaps the bg — starts from top of grid cell, bleeds 120px above bg */
.contact-form-wrap {
  grid-area: 1 / 1;
  align-self: start;
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 560px;
  background: var(--color-bg-blocks);
  padding: 50px 60px 60px;
  margin-top: 0;
  margin-left: 245px;
  margin-bottom: 50px;
  box-sizing: border-box;
}

.contact-form-header {
  margin-bottom: 40px;
}

.contact-form-title {
  font-family: var(--font-archivo);
  font-weight: 400;
  font-size: 30px;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
  color: var(--color-text-primary);
  font-variation-settings: 'wdth' 100;
  margin-bottom: 16px;
}

.contact-subtitle {
  font-family: var(--font-inter);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text-muted);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-field {
  position: relative;
}

.form-field input,
.form-field textarea {
  width: 100%;
  height: 50px;
  padding: 12px 16px;
  background: #fff;
  border: 1px solid var(--color-border);
  font-family: var(--font-inter);
  font-size: 16px;
  color: var(--color-text-primary);
  outline: none;
  box-sizing: border-box;
  transition: border-color 0.2s;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--color-text-muted);
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--color-btn);
}

.form-field--textarea textarea {
  height: 100px;
  resize: none;
}

.form-field--email .form-input-wrap {
  position: relative;
}

.form-field--email .form-input-wrap input {
  padding-right: 44px;
}

.form-field--check {
  position: relative;
}

.form-field--check input {
  padding-right: 44px;
}

.form-input-icon {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  pointer-events: none;
}

.form-input-icon--cancel::before,
.form-input-icon--cancel::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 1.5px;
  background: var(--color-text-muted);
}

.form-input-icon--cancel::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.form-input-icon--cancel::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.form-input-icon--check::before {
  content: '';
  position: absolute;
  left: 2px;
  top: 5px;
  width: 5px;
  height: 3px;
  border-left: 1.5px solid var(--color-btn);
  border-bottom: 1.5px solid var(--color-btn);
  transform: rotate(-45deg);
}

.form-input-icon--check::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 3px;
  width: 8px;
  height: 4px;
  border-right: 1.5px solid var(--color-btn);
  border-bottom: 1.5px solid var(--color-btn);
  transform: rotate(-45deg);
}

.form-error {
  display: none;
  font-family: var(--font-inter);
  font-size: 12px;
  color: #c0392b;
  margin-top: 4px;
}

.form-field.has-error .form-error {
  display: block;
}

.form-field.has-error input {
  border-color: #c0392b;
}

.btn-full {
  width: 100%;
  justify-content: center;
  height: 62px;
  margin-top: 10px;
}

.contact-image {
  display: none;
}

.contact-image img {
  display: none;
}

/* =============================================
   CONTACT — Full-width bg ≤ 1680px
   ============================================= */
@media (max-width: 1680px) {
  .contact-bg {
    margin: 120px 0 0;
    /* full width — no side margins */
  }

  .contact-form-wrap {
    margin-left: 145px;
    /* adjusted: no longer offset by bg's left margin */
  }
}

/* =============================================
   11A — view-catalog
   ============================================= */
.view-catalog-section {
  margin-top: 60px;
  width: 100%;
  padding: 0 var(--container-pad);
}

.view-catalog-content {
  background-color: var(--color-bg-blocks);
  background-image: url('assets/img/view-catalog-bg.png');
  display: flex;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  align-items: stretch;
  justify-content: space-between;
  max-width: var(--container-max);
  margin: 0 auto;
  overflow: hidden;
}

.view-catalog-text {
  padding: 50px clamp(20px, 4vw, 60px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  flex: 1;
}

.view-catalog-title {
  font-family: var(--font-archivo);
  font-weight: 500;
  font-size: clamp(24px, 2.5vw, 32px);
  color: var(--color-text-primary);
  line-height: 1.25;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-variation-settings: 'wdth' 100;
}

.view-catalog-subtitle {
  font-family: var(--font-inter);
  font-weight: 400;
  font-size: 16px;
  color: var(--color-text-muted);
  margin-bottom: 30px;
}

@media (max-width: 1023px) {
  .view-catalog-content {
    flex-direction: column;
  }
}

/* =============================================
   12 — FOOTER
   ============================================= */
.site-footer {
  background: var(--color-bg-blocks);
  margin-top: 60px;
  /* Break out of body max-width: 1920px */
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 30px 0;
}

.footer-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  gap: 40px;
}

.footer-logo {
  flex-shrink: 0;
}

.footer-contacts {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 50px);
}

.footer-contact {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-inter);
  font-size: 14px;
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-contact[href]:hover {
  color: var(--color-text-primary);
}

.footer-contact::before {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  flex-shrink: 0;
}

/* Base Responsive for Footer (Mobile) */
@media (max-width: 1023px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .footer-contacts {
    flex-direction: column;
    gap: 15px;
  }
}

.footer-contact--address::before { background-image: url('assets/icons/icon-pin.svg'); }
.footer-contact--phone::before   { background-image: url('assets/icons/icon-phone.svg'); }
.footer-contact--email::before   { background-image: url('assets/icons/icon-mail.svg'); }

/* =============================================
   RESPONSIVE — Tablet (≤ 1023px)
   ============================================= */
@media (max-width: 1023px) {

  /* Header — hamburger at tablet */
  .header-nav {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  /* Section title bar — tablet */
  .section-title-bar {
    height: 60px;
    padding: 10px var(--container-pad);
  }

  .about-content {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .about-right {
    grid-column: 1 / -1;
    flex-direction: row;
    min-height: auto;
    align-items: flex-start;
    padding: 40px;
    gap: 40px;
  }

  .about-quote-img-wrap {
    flex-shrink: 0;
  }

  /* FAQ — tablet */
  .faq-section {
    margin-top: 40px;
  }

  .faq-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .faq-imgs {
    height: 400px;
    overflow: hidden;
  }

  .faq-img--small {
    width: 34.4%;
    height: 264px;
  }

  .faq-img--big {
    left: 36.9%;
    width: 63%;
    height: 360px;
  }

  .faq-arrow {
    width: 40px;
    height: 40px;
  }

  /* Inspiration — tablet */
  .inspiration-section {
    margin-top: 40px;
  }

  .inspiration-slider {
    height: auto;
    min-height: 600px;
  }

  .inspiration-slide {
    position: relative;
    inset: auto;
    flex-direction: column;
    gap: 0;
    height: auto;
    opacity: 0;
    display: none;
  }

  .inspiration-slide.is-active {
    display: flex;
  }

  .inspiration-card {
    position: relative;
    margin: 0;
    width: 100%;
    padding: 30px;
    background: none;
    z-index: 1;
  }

  .inspiration-img {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    height: 400px;
  }

  .inspiration-arrows {
    margin-top: 20px;
    margin-left: 0;
    justify-content: center;
  }

  /* Installation — tablet */
  .install-section {
    margin-top: 40px;
  }

  .install-content {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .install-left {
    padding-left: 0;
  }

  .install-img-small img {
    aspect-ratio: 415 / 450;
  }

  .install-img-big img {
    aspect-ratio: 1 / 1;
  }

  .install-right {
    flex-direction: row;
    padding: 30px;
    gap: 40px;
    height: auto;
    min-height: auto;
    align-items: flex-start;
  }

  /* Pros & Cons — tablet */
  .proscons-section {
    margin-top: 40px;
  }

  .proscons-content {
    grid-template-columns: 1fr 1fr;
    min-height: auto;
    align-items: stretch;
  }

  /* Row 1: Quote (left) | Image (right) */
  .proscons-quote-col {
    grid-column: 1 / 2;
    grid-row: 1;
    padding: 40px;
    gap: 30px;
  }

  .proscons-img {
    grid-column: 2 / 3;
    grid-row: 1;
  }

  .proscons-img img {
    height: 100%;
    min-height: 300px;
  }

  /* Row 2: Advantages | Considerations side by side */
  .proscons-lists {
    grid-column: 1 / -1;
    grid-row: 2;
    flex-direction: row;
    gap: 0;
  }

  .proscons-block {
    height: auto;
    flex: 1;
  }

  /* Benefits — tablet: 2 columns matching Figma 768px */
  .benefits-section {
    margin-top: 40px;
  }

  .benefits-content {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    min-height: auto;
  }

  /* Col 1, spans rows 1+2: Seamless integration */
  .benefit-block:nth-child(1) {
    grid-column: 1;
    grid-row: 1 / 3;
    min-height: 380px;
  }

  /* Col 2 row 1: image */
  .benefit-block--img {
    grid-column: 2;
    grid-row: 1;
    min-height: 200px;
  }

  /* Col 2 row 2: Enhanced spatial perception */
  .benefit-block:nth-child(3) {
    grid-column: 2;
    grid-row: 2;
    min-height: 160px;
  }

  /* Row 3: double block spans both cols, children side by side */
  .benefit-block--double {
    grid-column: 1 / -1;
    grid-row: 3;
    flex-direction: row;
  }

  .benefit-sub {
    flex: 1;
  }

  .benefit-sub+.benefit-sub {
    border-top: none;
    border-left: 1px solid var(--color-border);
  }

  /* Spaces — tablet 2-column layout */
  .spaces-section {
    margin-top: 40px;
  }

  .spaces-content {
    grid-template-columns: 1fr 1fr;
    min-height: auto;
    gap: 16px;
  }

  /* List spans both columns, items horizontal */
  .spaces-col--list {
    grid-column: 1 / -1;
    flex-direction: row;
    gap: 0;
    min-height: auto;
  }

  /* Big decorative image hidden at tablet (repositioned in Figma design) */
  .spaces-col--big-img {
    display: none;
  }

  .spaces-col {
    min-height: auto;
  }

  .space-item {
    flex: 1;
    border: 1px solid var(--color-border);
    border-right: none;
  }

  .space-item--first {
    border-top: 1px solid var(--color-border);
  }

  .space-item:last-child {
    border-right: 1px solid var(--color-border);
  }

  .space-item-desc {
    font-size: 14px;
  }

  .spaces-col--big-img {
    min-height: 300px;
  }

  .spaces-img-fill {
    height: 100%;
    min-height: 300px;
  }

  .spaces-photo--top {
    flex: 0 0 60%;
  }

  /* Contact — tablet: overlay with 40px bleed */
  .contact-content {
    padding: 20px 0 0;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
  }

  .contact-bg {
    grid-area: 1 / 1;
    margin: 40px 20px 0;
    min-height: 700px;
  }

  .contact-form-wrap {
    grid-area: 1 / 1;
    align-self: start;
    max-width: 80%;
    padding: 40px;
    margin: 0 0 0 20px;
    min-height: auto;
  }

  /* Types — 2x2 grid, horizontal cards (image left, text right) */
  .types-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .type-card {
    flex-direction: row;
    align-items: stretch;
    min-height: 260px;
    border: 1px solid var(--color-border);
  }
  .type-card-desc, .proscons-quote-text {
    line-height: 22px;
  }
  .benefit-block-title, .benefit-sub-title, .proscons-block-title{
    font-size: 22px;
  }
  .type-card-img {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .type-card-img img {
    height: 100%;
    min-height: 260px;
    object-fit: cover;
  }

  .type-card-body {
    flex: 1;
    padding: 30px 24px;
    justify-content: flex-start;
    border: none;
  }

  /* Concealed stays vertical (text-only) */
  .type-card--text {
    flex-direction: column;
    min-height: 260px;
  }

  .type-card--text .type-card-body {
    padding: 24px 20px;
    border: none;
    justify-content: flex-start;
  }
}

/* Mobile padding override — full styles in 767px block */
@media (max-width: 768px) {
  :root {
    --container-pad: 20px;
  }

  html {
    scroll-padding-top: 60px;
  }
}

/* =============================================
   RESPONSIVE — Mobile (< 768px) — matches 360px Figma design
   ============================================= */
@media (max-width: 767px) {

  /* ===== Header ===== */
  .header-nav {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  /* CTA stays visible on mobile */

  /* ===== Section title bar ===== */
  .section-title-bar {
    padding: 16px 20px;
    height: auto;
    min-height: 60px;
  }

  .section-title {
    font-size: clamp(28px, 8vw, 40px);
  }

  /* ===== Hero ===== */
  .hero {
    padding-left: 0;
    padding-right: 0;
    padding-top: 60px;
  }

  .hero-title {
    padding: 12px 20px 10px;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }

  .hero-title-words {
    display: flex;
    align-items: flex-end;
  }

  .hero-title-main {
    font-size: clamp(52px, 16vw, 72px);
  }

  .hero-tagline {
    font-size: 14px;
    text-align: center;
    white-space: normal;
    padding-bottom: 0;
    width: 100%;
  }
  .faq-question {
    font-size: 15px;
  }
  /* Image is static — panel sits below it */
  .hero-image-wrap {
    height: auto;
    overflow: visible;
    display: flex;
    flex-direction: column;
  }

  .hero-bg-img {
    height: 200px;
    flex-shrink: 0;
  }

  .hero-panel-wrap {
    position: static;
    width: 100%;
    max-width: 100%;
    left: auto;
    top: auto;
    background: var(--color-bg-blocks);
  }

  .hero-tags {
    padding: 10px 16px;
    background: var(--color-bg-blocks);
    justify-content: space-around;
  }

  .hero-tags span {
    font-size: 11px;
  }

  .hero-content-panel {
    padding: 0 20px 24px 16px;
    gap: 16px;
    margin-top: 0;
    background: var(--color-bg-blocks);
  }

  .hero-description {
    font-size: 14px;
    line-height: 22px;
  }

  /* ===== About ===== */
  .about-section {
    margin-top: 0;
  }

  .about-content {
    grid-template-columns: 1fr;
    padding: 0 20px 40px 20px;
    gap: 24px;
  }

  .about-center {
    margin-top: 0;
  }

  .about-img-main {
    height: 260px;
  }

  .about-img-center {
    height: 390px;
  }

  .about-left-text {
    font-size: 14px;
    line-height: 22px;
    padding-right: 0;
  }

  .about-center-text {
    font-size: 14px;
    line-height: 22px;
  }

  .about-right {
    flex-direction: column;
    align-items: center;
    padding: 32px 20px;
    gap: 24px;
    min-height: auto;
    margin-left: 0;
  }

  .about-quote-main {
    font-size: 18px;
    line-height: 28px;
  }

  /* ===== Types ===== */
  .type-card-sub {
    text-transform: uppercase;
  }

  .types-section {
    margin-top: 0;
  }

  .types-grid {
    grid-template-columns: 1fr;
    padding: 16px 20px 40px;
    gap: 16px;
  }

  /* All cards vertical */
  .type-card {
    flex-direction: column;
    min-height: auto;
    border: none;
  }

  .type-card-img {
    flex: none;
    max-width: 100%;
    min-height: unset;
  }

  .type-card-img img {
    width: 100%;
    height: 300px;
    min-height: unset;
  }

  .type-card-body {
    flex: 1;
    padding: 20px;
    justify-content: flex-start;
    border: 1px solid var(--color-border);
    border-top: none;
    border-left: 1px solid var(--color-border);
  }

  /* Concealed — text-only compact */
  .type-card--text {
    flex-direction: column;
    min-height: 187px;
    align-items: stretch;
  }

  .type-card-text-top {
    flex: 1;
    padding: 20px;
    justify-content: flex-start;
  }

  /* ===== Spaces ===== */
  .spaces-section {
    margin-top: 0;
  }

  .spaces-content {
    grid-template-columns: 1fr;
    padding: 0 20px 40px;
    gap: 0;
  }

  .spaces-col {
    min-height: auto;
  }

  .spaces-col--list {
    flex-direction: column;
    grid-column: 1;
    min-height: auto;
    margin-bottom: 16px;
  }

  .space-item {
    border: 1px solid var(--color-border);
    border-top: none;
    border-right: 1px solid var(--color-border);
    flex: none;
    min-height: 120px;
  }

  .space-item--first {
    border-top: 1px solid var(--color-border);
  }

  .space-item:last-child {
    border-right: 1px solid var(--color-border);
  }

  .spaces-col--big-img {
    margin-bottom: 16px;
  }

  .spaces-img-fill {
    height: 500px;
    min-height: unset;
  }

  .spaces-col--img-top,
  .spaces-col--text-top {
    gap: 0;
    margin-bottom: 0;
  }

  .spaces-photo--top,
  .spaces-photo--bottom {
    flex: none;
    height: 350px;
  }

  /* ===== Benefits ===== */
  .benefits-section {
    margin-top: 0;
  }

  .benefits-content {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    padding: 16px 20px 40px;
    gap: 0;
  }

  /* Reset all explicit grid placements from tablet */
  .benefit-block:nth-child(1),
  .benefit-block:nth-child(2),
  .benefit-block:nth-child(3),
  .benefit-block--img,
  .benefit-block--double {
    grid-column: 1;
    grid-row: auto;
    min-height: auto;
  }

  .benefit-block {
    min-height: auto;
  }

  .benefit-block--colored {
    padding: 20px;
    min-height: auto;
    border-bottom: 1px solid var(--color-border);
  }

  .benefit-block--img img {
    height: 240px;
    min-height: unset;
  }

  .benefit-block--double {
    flex-direction: column;
    gap: 0;
  }

  .benefit-sub {
    padding: 20px;
    min-height: auto;
  }

  .benefit-sub+.benefit-sub {
    border-top: none;
    border-left: none;
  }

  /* ===== Pros & Cons ===== */
  .proscons-section {
    margin-top: 0;
  }

  .proscons-content {
    grid-template-columns: 1fr;
    padding: 16px 20px 40px;
    gap: 16px;
    min-height: auto;
  }

  /* Single column: quote → lists → image */
  .proscons-quote-col {
    grid-column: 1;
    grid-row: 1;
    padding: 24px 20px;
    gap: 20px;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
  }

  .proscons-lists {
    grid-column: 1;
    grid-row: 2;
    flex-direction: column;
    align-items: stretch;
  }

  .proscons-block {
    height: auto;
    flex: 1;
  }

  .proscons-img {
    grid-column: 1;
    grid-row: 3;
    min-height: 240px;
  }

  .proscons-img img {
    min-height: 240px;
  }

  /* ===== Installation ===== */
  .install-section {
    margin-top: 0;
  }

  .install-content {
    grid-template-columns: 1fr;
    padding: 16px 20px 40px;
    gap: 24px;
    min-height: auto;
  }

  .install-left {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    gap: 16px;
  }

  /* Big center image comes first on mobile */
  .install-img-big {
    order: -1;
    margin-top: 0;
  }

  .install-img-big img {
    aspect-ratio: 320 / 390;
    min-height: unset;
  }

  .install-img-small img {
    aspect-ratio: 320 / 260;
    min-height: unset;
  }

  .install-right {
    flex-direction: column;
    padding: 24px 20px;
    gap: 20px;
    height: auto;
    min-height: auto;
  }

  /* ===== Inspiration ===== */
  .inspiration-section {
    margin-top: 0;
  }

  .inspiration-wrap {
    padding: 0;
  }

  .inspiration-slider {
    height: auto;
    min-height: auto;
    overflow: visible;
  }

  .inspiration-slide {
    position: relative;
    inset: auto;
    flex-direction: column;
    gap: 0;
    height: auto;
    opacity: 0;
    display: none;
  }

  .inspiration-slide.is-active {
    display: flex;
    opacity: 1;
  }

  .inspiration-card {
    position: relative;
    margin: 0;
    width: 100%;
    padding: 20px;
    background: var(--color-bg-blocks);
    z-index: 1;
  }

  .inspiration-img {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    height: 200px;
  }

  .inspiration-arrows {
    margin: 16px auto 0;
    justify-content: center;
  }

  .insp-arrow {
    width: 50px;
    height: 50px;
  }

  /* ===== FAQ ===== */
  .faq-section {
    margin-top: 0;
  }

  .faq-content {
    grid-template-columns: 1fr;
    padding: 16px 20px 40px;
    gap: 24px;
  }

  .faq-imgs {
    height: 270px;
    overflow: hidden;
  }

  /* Fit images within the 270px container (matches Figma mobile proportions) */
  .faq-img--small {
    left: 0;
    top: 0;
    width: 38%;
    height: 76%;
  }

  .faq-img--big {
    left: 42%;
    top: 7%;
    width: 53%;
    height: 93%;
  }

  .faq-item {
    padding: 12px 8px 16px 16px;
  }

  .faq-arrow {
    width: 36px;
    height: 36px;
  }

  /* ===== Contact ===== */
  .contact-section {
    margin-top: 0;
  }

  .contact-title-bar {
    border-bottom: 1px solid var(--color-border);
  }

  .contact-content {
    padding: 0;
    display: block;
    /* simple stack on mobile, no overlay */
  }

  .contact-bg {
    margin: 0;
    min-height: auto;
    overflow: visible;
  }

  /* Hide the background photo on mobile */
  .contact-bg-img {
    display: none;
  }

  .contact-form-wrap {
    position: static;
    max-width: 100%;
    width: 100%;
    padding: 20px 20px 40px;
    margin: 0;
    min-height: auto;
    background: var(--color-bg-blocks);
  }

  .contact-form-header {
    margin-bottom: 16px;
  }

  .contact-form-title {
    font-size: 28px;
  }

  .btn-full {
    height: 54px;
  }
}