:root {
  --bg: #0e0f12;
  --bg-soft: #17181c;
  --panel: rgba(19, 20, 24, 0.86);
  --panel-strong: rgba(25, 26, 31, 0.96);
  --surface: rgba(255, 255, 255, 0.04);
  --surface-soft: rgba(255, 255, 255, 0.06);
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(192, 152, 92, 0.42);
  --text: #f4eee5;
  --text-soft: rgba(244, 238, 229, 0.76);
  --muted: rgba(244, 238, 229, 0.56);
  --gold: #c0985c;
  --gold-soft: #e2c18f;
  --shadow: 0 32px 90px rgba(0, 0, 0, 0.35);
  --radius: 0px;
  --radius-sm: 0px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: "Onest", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top, rgba(192, 152, 92, 0.14), transparent 24%),
    radial-gradient(circle at bottom right, rgba(110, 77, 46, 0.18), transparent 26%),
    linear-gradient(180deg, #101114 0%, #090a0c 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(255,255,255,0.25), transparent 80%);
}

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

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

.site-shell {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  padding: 32px 0 72px;
}

.site-shell-inner {
  min-height: 100vh;
}

.page-flow {
  display: grid;
  gap: 34px;
}

.topbar,
.section-panel,
.hero-panel,
.footer {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01)),
    var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 22px;
  margin-bottom: 18px;
  position: sticky;
  top: 16px;
  z-index: 10;
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  flex: 1;
  min-width: 0;
}

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

.brand-mark {
  min-width: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-soft);
  font-family: "Allura", cursive;
  font-size: 2.2rem;
  line-height: 1;
}

.brand-text {
  display: grid;
  gap: 2px;
}

.brand-text strong {
  font-family: "Bodoni Moda", serif;
  font-size: 2rem;
  font-weight: 600;
  line-height: 0.92;
  letter-spacing: -0.03em;
}

.brand-text small {
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.24em;
}

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

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid rgba(192, 152, 92, 0.28);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font: inherit;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.menu-toggle-box {
  display: grid;
  gap: 4px;
}

.menu-toggle-box span {
  display: block;
  width: 18px;
  height: 1px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle-label {
  font-size: 0.72rem;
}

[data-nav-container].is-open .menu-toggle-box span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

[data-nav-container].is-open .menu-toggle-box span:nth-child(2) {
  opacity: 0;
}

[data-nav-container].is-open .menu-toggle-box span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

.nav a {
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.nav a:hover,
.section-link:hover {
  color: var(--text);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 0;
  border: 1px solid transparent;
  font: inherit;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(135deg, #b47f43 0%, #dfbc84 100%);
  color: #16110b;
}

.button-outline,
.button-ghost {
  border-color: rgba(192, 152, 92, 0.32);
  color: var(--text);
  background: transparent;
}

.topbar-cta {
  min-height: 46px;
  padding: 0 18px;
  white-space: nowrap;
}

.hero-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 26px;
  padding: 34px;
}

.hero-copy,
.showroom-copy,
.catalog-copy,
.story-copy,
.inner-hero-copy {
  display: grid;
  align-content: start;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin-bottom: 18px;
  color: var(--gold-soft);
  font-size: 0.74rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}

h1,
h2,
h3,
.brand-text strong,
.hero-note strong,
.project-card strong,
.story-copy h2,
.stat-grid strong,
.showroom-meta,
.detail-card h2 {
  font-family: "Bodoni Moda", serif;
}

h1,
h2,
h3 {
  margin: 0;
}

h1,
.inner-hero-copy h1 {
  font-size: clamp(3rem, 6.3vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

h2 {
  font-size: clamp(2rem, 4.4vw, 3.35rem);
  line-height: 1;
  letter-spacing: -0.035em;
}

h3 {
  font-size: 1.18rem;
  line-height: 1.2;
}

p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.74;
}

.hero-lead {
  max-width: 54ch;
  margin-top: 18px;
  font-size: 1.05rem;
}

.hero-text,
.catalog-copy p,
.story-copy p,
.inner-hero-copy p {
  margin-top: 18px;
  max-width: 58ch;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.hero-meta li,
.stat-grid article,
.detail-card,
.feature-item,
.text-card,
.project-card figcaption {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
}

.hero-meta li {
  padding: 18px;
  display: grid;
  gap: 8px;
}

.hero-meta strong,
.stat-grid strong {
  font-size: 1.15rem;
  color: var(--text);
}

.hero-meta span,
.stat-grid span {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.hero-stage {
  position: relative;
  min-height: 680px;
  border-radius: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at top, rgba(255,255,255,0.06), transparent 30%),
    linear-gradient(180deg, #16171b 0%, #0c0d10 100%);
  border: 1px solid var(--line);
}

.hero-frame {
  position: absolute;
  overflow: hidden;
  border-radius: 0;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.hero-frame img,
.product-image img,
.project-card img,
.showroom-image img,
.catalog-cover img,
.inner-hero-media img,
.story-image img,
.gallery-card img {
  height: 100%;
  object-fit: cover;
}

.hero-frame-main {
  inset: 32px 26px 26px 180px;
}

.hero-frame-inset {
  left: 28px;
  bottom: 30px;
  width: 34%;
  height: 41%;
  border: 8px solid rgba(15, 16, 19, 0.9);
}

.hero-note {
  position: absolute;
  left: 34px;
  top: 30px;
  width: min(310px, calc(100% - 68px));
  padding: 22px;
  border-radius: 0;
  border: 1px solid rgba(192, 152, 92, 0.24);
  background: rgba(10, 11, 14, 0.7);
  backdrop-filter: blur(12px);
}

.hero-note span,
.showroom-meta span {
  display: block;
  color: var(--gold-soft);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero-note strong {
  display: block;
  margin: 12px 0 10px;
  font-size: 1.6rem;
  line-height: 1;
}

.hero-note p {
  color: var(--muted);
  font-size: 0.95rem;
}

.section-panel {
  padding: 34px;
}

.section-manifesto {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01)),
    rgba(244, 238, 229, 0.03);
}

.section-intro {
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
}

.section-intro-inline {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 20px;
}

.section-intro-inline p {
  max-width: 46ch;
}

.section-link {
  color: var(--gold-soft);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.manifesto-grid,
.products-grid,
.feature-grid,
.projects-grid,
.detail-grid,
.gallery-strip,
.story-grid,
.catalog-grid,
.showroom-grid {
  display: grid;
  gap: 18px;
}

.manifesto-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.text-card,
.detail-card,
.feature-item {
  padding: 24px;
}

.text-card p,
.detail-card p,
.feature-item p {
  margin-top: 12px;
}

.products-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-card {
  display: grid;
  gap: 0;
  min-height: 100%;
  border-radius: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.04)),
    var(--panel-strong);
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.product-card:hover,
.project-card:hover {
  transform: translateY(-4px);
  border-color: rgba(192, 152, 92, 0.28);
}

.product-image {
  aspect-ratio: 1 / 0.88;
  overflow: hidden;
}

.product-body {
  padding: 22px 22px 24px;
  display: grid;
  gap: 12px;
}

.product-index {
  color: var(--gold-soft);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.product-link {
  color: var(--gold-soft);
  font-size: 0.92rem;
  font-weight: 700;
}

.section-features {
  padding-top: 24px;
  padding-bottom: 24px;
}

.feature-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.feature-item {
  min-height: 100%;
}

.feature-item h3 {
  font-size: 1rem;
}

.projects-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.project-card {
  overflow: hidden;
  border-radius: 0;
  border: 1px solid var(--line);
  background: var(--panel-strong);
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.project-card img {
  aspect-ratio: 1 / 1;
}

.project-card figcaption {
  padding: 18px;
  border-radius: 0;
  border: 0;
  border-top: 1px solid var(--line);
}

.project-card strong {
  display: block;
  font-size: 1.08rem;
  line-height: 1.2;
}

.project-card span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.6;
}

.showroom-grid,
.catalog-grid,
.story-grid,
.inner-hero-grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: stretch;
}

.showroom-copy,
.catalog-copy,
.story-copy,
.inner-hero-copy {
  gap: 16px;
}

.showroom-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 18px;
  color: var(--text-soft);
  line-height: 1.7;
}

.showroom-meta {
  display: grid;
  gap: 10px;
  margin-top: 8px;
  font-size: 0.98rem;
}

.showroom-image,
.catalog-cover,
.inner-hero-media,
.story-image,
.gallery-card {
  overflow: hidden;
  border-radius: 0;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
}

.showroom-image img,
.story-image img {
  min-height: 100%;
}

.catalog-grid {
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 0.72fr);
}

.catalog-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 10px;
}

.catalog-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.88rem;
}

.catalog-form input,
.catalog-form select {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border-radius: 0;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
  color: var(--text);
  font: inherit;
}

.consent {
  grid-column: 1 / -1;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px;
}

.consent input {
  min-height: auto;
  width: 18px;
  height: 18px;
  margin: 0;
}

.catalog-form button {
  width: fit-content;
}

.catalog-cover img {
  min-height: 100%;
}

.inner-hero-media {
  min-height: 420px;
}

.stat-grid,
.detail-grid-wide {
  display: grid;
  gap: 18px;
}

.stat-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 10px;
}

.stat-grid article {
  padding: 18px;
}

.detail-grid-wide {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.detail-card h2 {
  font-size: 1.25rem;
  line-height: 1.15;
}

.gallery-strip-rich {
  grid-template-columns: 1.05fr 0.95fr 0.95fr;
}

.gallery-card img {
  aspect-ratio: 1 / 0.9;
}

.footer {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr 1fr;
  gap: 20px;
  padding: 28px 30px;
  margin-top: 20px;
}

.footer strong {
  display: block;
  margin-bottom: 12px;
  font-size: 1rem;
}

.footer p,
.footer a,
.footer span {
  display: block;
  color: var(--muted);
  line-height: 1.7;
}

.brand-footer {
  margin-bottom: 14px;
}

@media (max-width: 1180px) {
  .hero-panel,
  .showroom-grid,
  .catalog-grid,
  .story-grid,
  .inner-hero-grid,
  .section-intro-inline {
    grid-template-columns: 1fr;
  }

  .manifesto-grid,
  .products-grid,
  .projects-grid,
  .detail-grid-wide,
  .footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-stage {
    min-height: 560px;
  }

  .hero-frame-main {
    inset: 28px 24px 24px 150px;
  }
}

@media (max-width: 780px) {
  .site-shell {
    width: min(100% - 24px, 1240px);
  }

  .topbar,
  .hero-panel,
  .section-panel,
  .footer {
    padding: 24px;
  }

  .topbar {
    position: static;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 16px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-shell {
    display: none;
    grid-column: 1 / -1;
    width: 100%;
    padding-top: 18px;
    border-top: 1px solid var(--line);
  }

  .topbar.is-open .nav-shell {
    display: grid;
    gap: 18px;
  }

  .nav {
    align-items: flex-start;
    justify-content: start;
    flex-direction: column;
    gap: 14px;
  }

  .topbar-cta {
    width: 100%;
  }

  .hero-meta,
  .manifesto-grid,
  .products-grid,
  .feature-grid,
  .projects-grid,
  .detail-grid-wide,
  .gallery-strip-rich,
  .footer,
  .catalog-form,
  .stat-grid {
    grid-template-columns: 1fr;
  }

  h1,
  .inner-hero-copy h1 {
    font-size: 2.7rem;
  }

  h2 {
    font-size: 2.15rem;
  }

  .hero-stage {
    min-height: 520px;
  }

  .hero-frame-main {
    inset: 108px 18px 18px 18px;
  }

  .hero-frame-inset {
    left: auto;
    right: 18px;
    top: 18px;
    bottom: auto;
    width: 36%;
    height: 28%;
  }

  .hero-note {
    width: calc(100% - 36px);
    left: 18px;
    top: auto;
    bottom: 18px;
  }

  .catalog-form button {
    width: 100%;
  }
}

body.home-page {
  min-height: auto;
  color: #15120f;
  background: #f3eee7;
}

body.home-page::before {
  display: none;
}

.home-page img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-page .home-container {
  width: min(1280px, calc(100% - 64px));
  margin: 0 auto;
  position: relative;
}

.home-page .home-button {
  min-height: 56px;
  padding: 0 30px;
  border: 1px solid transparent;
  border-radius: 0;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.home-page .home-button-accent {
  background: #c79a62;
  color: #fff6ed;
}

.home-page .home-button-dark,
.home-page .home-button-outline,
.home-page .home-button-dark-solid {
  background: rgba(18, 18, 18, 0.42);
  color: #f4ede3;
  border-color: rgba(255, 255, 255, 0.24);
}

.home-page .home-button-light-outline {
  color: #30251a;
  border-color: rgba(48, 37, 26, 0.22);
  background: transparent;
}

.home-page .home-hero {
  --home-hero-image: url("../images/hero-first-block-blue-sofa-window.png");
  --home-hero-height: 100vh;
  --home-hero-height-dynamic: 100svh;
  --home-hero-image-position-desktop: 50% center;
  --home-hero-image-position-tablet: 62% center;
  --home-hero-image-position-mobile: 74% center;
  --home-hero-image-position: var(--home-hero-image-position-desktop);
  position: relative;
  min-height: var(--home-hero-height);
  min-height: var(--home-hero-height-dynamic);
  width: 100%;
  color: #f6efe4;
  background-color: #171310;
  background-image:
    linear-gradient(90deg, rgba(10, 10, 11, 0.88) 0%, rgba(10, 10, 11, 0.62) 28%, rgba(10, 10, 11, 0.22) 56%, rgba(10, 10, 11, 0.1) 100%),
    linear-gradient(180deg, rgba(8, 8, 9, 0.16) 0%, rgba(8, 8, 9, 0.34) 100%),
    var(--home-hero-image);
  background-position:
    center,
    center,
    var(--home-hero-image-position);
  background-repeat: no-repeat;
  background-size:
    100%,
    auto,
    cover;
}

.home-page .home-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 5;
}

.home-page .home-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 18px;
  padding: 14px 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0;
  background: linear-gradient(180deg, rgba(16, 16, 17, 0.5) 0%, rgba(16, 16, 17, 0.34) 100%);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px rgba(8, 8, 9, 0.18);
}

.home-page .home-brand {
  gap: 10px;
}

.home-page .home-brand .brand-mark {
  min-width: 24px;
  color: #c89e69;
  font-size: 3rem;
}

.home-page .home-brand .brand-text strong {
  font-size: 2rem;
  font-weight: 500;
  color: #f1eadf;
}

.home-page .home-nav-shell {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
}

.home-page .home-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-left: 0;
}

.home-page .home-nav a,
.home-page .home-phone {
  color: rgba(246, 239, 228, 0.92);
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.home-page .home-nav a {
  position: relative;
}

.home-page .home-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 1px;
  background: rgba(212, 171, 119, 0.72);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.home-page .home-nav a:hover::after {
  transform: scaleX(1);
}

.home-page .home-header-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.home-page .home-phone {
  white-space: nowrap;
}

.home-page .home-hero-content {
  display: flex;
  align-items: center;
  min-height: var(--home-hero-height);
  min-height: var(--home-hero-height-dynamic);
  padding: 132px 0 112px;
}

.home-page .home-hero-copy {
  max-width: 500px;
}

.home-page .home-hero-slides {
  position: relative;
  min-height: 344px;
}

.home-page .home-hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(18px);
  pointer-events: none;
  transition: opacity 480ms ease, transform 480ms ease;
}

.home-page .home-hero-slide.is-active {
  position: relative;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.home-page .home-hero-kicker {
  display: inline-block;
  margin-bottom: 18px;
  color: rgba(244, 236, 227, 0.72);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.home-page .home-hero-copy h1,
.home-page .home-section-heading h2,
.home-page .home-benefits-heading h2,
.home-page .home-projects-bar h2,
.home-page .home-showroom-copy h2,
.home-page .home-catalog-copy h2 {
  margin: 0;
  font-family: "Bodoni Moda", serif;
  letter-spacing: -0.04em;
}

.home-page .home-hero-copy h1 {
  font-size: clamp(4rem, 4vw, 4rem);
  line-height: 1.1;
  font-weight: 400;
}

.home-page .home-hero-copy h1 span {
  color: #d4ab77;
}

.home-page .home-hero-copy p {
  margin-top: 26px;
  max-width: 320px;
  color: rgba(244, 236, 227, 0.9);
  font-size: 1.08rem;
  line-height: 1.55;
}

.home-page .home-hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 30px;
}

.home-page .home-hero-pagination {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
}

.home-page .home-hero-dot {
  width: 42px;
  height: 3px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.24);
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}

.home-page .home-hero-dot.is-active {
  background: #d4ab77;
}

.home-page .home-hero-dot:hover {
  transform: scaleY(1.15);
}

.home-page .home-products,
.home-page .home-showroom {
  padding: 88px 0 78px;
  background:
    radial-gradient(circle at center top, rgba(197, 164, 121, 0.12), transparent 34%),
    linear-gradient(180deg, #f5f1eb 0%, #f2ede6 100%);
}

.home-page .home-section-heading,
.home-page .home-benefits-heading {
  text-align: center;
}

.home-page .home-section-heading h2,
.home-page .home-benefits-heading h2,
.home-page .home-projects-bar h2,
.home-page .home-showroom-copy h2,
.home-page .home-catalog-copy h2 {
  font-size: clamp(2.2rem, 3.4vw, 3.25rem);
  line-height: 1.04;
  color: #2a2119;
}

.home-page .home-section-heading p {
  margin-top: 16px;
  color: rgba(42, 33, 25, 0.78);
  font-size: 1rem;
}

.home-page .home-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 52px;
}

.home-page .home-product-card {
  display: block;
  color: #241c15;
}

.home-page .home-product-image {
  margin: 0;
  aspect-ratio: 1 / 0.54;
  overflow: hidden;
  background: #d8cec3;
}

.home-page .home-product-copy {
  padding-top: 16px;
}

.home-page .home-product-copy h3 {
  font-size: 1.7rem;
  font-weight: 500;
  color: #2a2119;
}

.home-page .home-product-copy p {
  margin-top: 8px;
  color: rgba(42, 33, 25, 0.78);
  font-size: 0.98rem;
  line-height: 1.55;
}

.home-page .home-products-action {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.home-page .home-benefits,
.home-page .home-projects,
.home-page .home-catalog,
.home-page .home-footer {
  background:
    linear-gradient(180deg, rgba(31, 28, 26, 0.98) 0%, rgba(19, 18, 17, 0.98) 100%);
}

.home-page .home-benefits {
  padding: 56px 0 64px;
  color: #f0e7da;
}

.home-page .home-benefits-heading h2 {
  color: #f0e7da;
  font-size: 2.1rem;
}

.home-page .home-benefits-heading span {
  display: block;
  width: 68px;
  height: 2px;
  margin: 18px auto 0;
  background: rgba(201, 155, 101, 0.75);
}

.home-page .home-benefits-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 22px;
  margin-top: 46px;
}

.home-page .home-benefit {
  display: grid;
  align-content: start;
  gap: 12px;
}

.home-page .home-benefit svg {
  width: 44px;
  height: 44px;
  color: #ca9f69;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-page .home-benefit h3 {
  font-size: 1.06rem;
  color: #f2eadf;
}

.home-page .home-benefit p {
  color: rgba(242, 234, 223, 0.72);
  font-size: 0.93rem;
  line-height: 1.6;
}

.home-page .home-projects {
  padding: 18px 0 52px;
}

.home-page .home-projects-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 34px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.home-page .home-projects-bar h2 {
  color: #f1e8db;
  font-size: 2rem;
}

.home-page .home-projects-bar a {
  color: #c89e69;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.home-page .home-projects-carousel {
  position: relative;
  width: 100%;
  padding: 0 34px 10px;
}

.home-page .home-projects-track {
  display: grid;
  grid-auto-columns: minmax(340px, 32vw);
  grid-auto-flow: column;
  gap: 28px;
  overflow-x: auto;
  padding: 4px 0 12px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.home-page .home-projects-track::-webkit-scrollbar {
  display: none;
}

.home-page .home-project-slide {
  margin: 0;
  aspect-ratio: 1 / 0.68;
  overflow: hidden;
  background: #2c231d;
  scroll-snap-align: start;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
}

.home-page .home-project-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-page .home-projects-control {
  position: absolute;
  top: 50%;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-top: -26px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(12, 12, 13, 0.72);
  color: #f5ede2;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.home-page .home-projects-control:hover {
  background: rgba(12, 12, 13, 0.9);
  border-color: rgba(201, 155, 101, 0.6);
  transform: translateY(-2px);
}

.home-page .home-projects-control span {
  font-size: 2rem;
  line-height: 1;
}

.home-page .home-projects-control-prev {
  left: 12px;
}

.home-page .home-projects-control-next {
  right: 12px;
}

.home-page .home-showroom-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: 58px;
  padding-top: 30px;
}

.home-page .home-showroom-image {
  margin: 0;
  aspect-ratio: 1 / 0.52;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.home-page .home-showroom-copy {
  position: relative;
  z-index: 2;
  max-width: 560px;
}

.home-page .home-showroom-copy p {
  margin-top: 26px;
  max-width: 480px;
  color: rgba(42, 33, 25, 0.78);
  font-size: 1.03rem;
  line-height: 1.75;
}

.home-page .home-showroom-meta {
  display: flex;
  gap: 32px;
  margin-top: 38px;
}

.home-page .home-showroom-fact {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #2d241c;
  font-size: 0.95rem;
  line-height: 1.65;
}

.home-page .home-showroom-fact svg {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  margin-top: 2px;
  color: #c79761;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-page .home-button-dark-solid {
  margin-top: 38px;
  background: #111111;
  border-color: #111111;
  color: #f3ede4;
}

.home-page .home-showroom-mark {
  position: absolute;
  right: 14px;
  bottom: -28px;
  color: rgba(203, 161, 108, 0.1);
  font-family: "Allura", cursive;
  font-size: 18rem;
  line-height: 1;
  z-index: 1;
}

.home-page .home-catalog {
  padding: 52px 0 30px;
  color: #f1e8db;
}

.home-page .home-catalog-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  gap: 52px;
  align-items: start;
}

.home-page .home-catalog-copy h2 {
  color: #f1e8db;
  font-size: 2rem;
}

.home-page .home-catalog-copy p {
  margin-top: 22px;
  max-width: 470px;
  color: rgba(241, 232, 219, 0.76);
  font-size: 1rem;
  line-height: 1.7;
}

.home-page .home-catalog-form {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.home-page .home-catalog-form input {
  min-height: 54px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.03);
  color: #f1e8db;
  font: inherit;
}

.home-page .home-catalog-form input::placeholder {
  color: rgba(241, 232, 219, 0.5);
}

.home-page .home-consent {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(241, 232, 219, 0.62);
  font-size: 0.84rem;
}

.home-page .home-consent input {
  width: 14px;
  height: 14px;
  min-height: 0;
  margin: 0;
}

.home-page .home-footer {
  padding: 28px 0 42px;
  color: rgba(241, 232, 219, 0.78);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.home-page .home-footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr auto;
  gap: 40px;
  align-items: start;
}

.home-page .home-brand-footer .brand-mark {
  font-size: 2.6rem;
}

.home-page .home-brand-footer .brand-text strong {
  font-size: 1.8rem;
}

.home-page .home-footer-brand p,
.home-page .home-footer-column a,
.home-page .home-footer-column span,
.home-page .home-footer-copy span {
  display: block;
  color: rgba(241, 232, 219, 0.7);
  font-size: 0.9rem;
  line-height: 1.7;
}

.home-page .home-footer-column strong {
  display: block;
  margin-bottom: 10px;
  color: #f1e8db;
  font-size: 0.95rem;
}

.home-page .home-footer-copy {
  display: grid;
  justify-items: end;
  gap: 4px;
  text-align: right;
  white-space: nowrap;
}

@media (max-width: 1180px) {
  .home-page .home-header-inner,
  .home-page .home-showroom-grid,
  .home-page .home-catalog-grid {
    gap: 28px;
  }

  .home-page .home-nav {
    gap: 18px;
  }

  .home-page .home-benefits-grid,
  .home-page .home-footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .home-page .home-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-page .home-catalog-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .home-page .home-hero {
    --home-hero-image-position: var(--home-hero-image-position-tablet);
  }

  .home-page .home-header-inner,
  .home-page .home-showroom-grid,
  .home-page .home-catalog-grid,
  .home-page .home-footer-grid {
    grid-template-columns: 1fr;
  }

  .home-page .home-header-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    justify-items: start;
    padding: 16px 18px;
    border-radius: 0;
  }

  .home-page .home-menu-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .home-page .home-nav-shell {
    display: none;
    grid-column: 1 / -1;
    width: 100%;
    margin-left: 0;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .home-page .home-header-inner.is-open .home-nav-shell {
    display: grid;
    gap: 18px;
  }

  .home-page .home-nav,
  .home-page .home-header-actions,
  .home-page .home-showroom-meta,
  .home-page .home-hero-actions {
    flex-wrap: wrap;
  }

  .home-page .home-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .home-page .home-header-actions {
    display: grid;
    gap: 14px;
  }

  .home-page .home-header-actions .button {
    width: 100%;
  }

  .home-page .home-benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-page .home-projects-carousel {
    padding: 0 18px 8px;
  }

  .home-page .home-projects-track {
    grid-auto-columns: minmax(320px, 72vw);
    gap: 20px;
  }
}

@media (max-width: 640px) {
  .menu-toggle {
    padding-inline: 12px;
  }

  .menu-toggle-label {
    display: none;
  }

  .brand-text strong {
    font-size: 1.65rem;
  }

  .brand-text small {
    font-size: 0.58rem;
    letter-spacing: 0.18em;
  }

  .home-page .home-container {
    width: min(100% - 28px, 1280px);
  }

  .home-page .home-hero {
    --home-hero-image-position: var(--home-hero-image-position-mobile);
    background-image:
      linear-gradient(90deg, rgba(10, 10, 11, 0.92) 0%, rgba(10, 10, 11, 0.72) 42%, rgba(10, 10, 11, 0.32) 72%, rgba(10, 10, 11, 0.16) 100%),
      linear-gradient(180deg, rgba(8, 8, 9, 0.22) 0%, rgba(8, 8, 9, 0.4) 100%),
      var(--home-hero-image);
  }

  .home-page .home-hero-content {
    min-height: var(--home-hero-height);
    padding-top: 196px;
    padding-bottom: 104px;
  }

  .home-page .home-hero-slides {
    min-height: 364px;
  }

  .home-page .home-hero-copy h1 {
    font-size: 2.7rem;
  }

  .home-page .home-brand .brand-text strong {
    font-size: 1.7rem;
  }

  .home-page .home-hero-dot {
    width: 30px;
  }

  .home-page .home-product-grid,
  .home-page .home-benefits-grid,
  .home-page .home-catalog-form {
    grid-template-columns: 1fr;
  }

  .home-page .home-products,
  .home-page .home-showroom {
    padding: 68px 0 62px;
  }

  .home-page .home-benefits {
    padding: 48px 0 54px;
  }

  .home-page .home-projects {
    padding: 10px 0 42px;
  }

  .home-page .home-catalog {
    padding: 42px 0 24px;
  }

  .home-page .home-footer {
    padding: 24px 0 34px;
  }

  .home-page .home-projects-bar {
    align-items: start;
    flex-direction: column;
    padding: 26px 0 24px;
  }

  .home-page .home-projects-carousel {
    padding: 0 14px;
  }

  .home-page .home-projects-track {
    grid-auto-columns: 84vw;
    gap: 16px;
  }

  .home-page .home-projects-control {
    display: none;
  }

  .home-page .home-showroom-meta {
    display: grid;
    gap: 18px;
  }

  .home-page .home-showroom-mark {
    font-size: 12rem;
    right: 0;
  }

  .home-page .home-footer-copy {
    justify-items: start;
    text-align: left;
  }
}
