:root {
  --ink: #2f2a22;
  --muted: #6d634f;
  --paper: #eee7bf;
  --surface: #fffaf0;
  --line: #d8ceb0;
  --forest: #676149;
  --steel: #544c3d;
  --signal: #d7753e;
  --sun: #e2bd67;
  --shadow: 0 18px 50px rgba(73, 61, 42, 0.14);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Manrope", "Segoe UI", sans-serif;
  letter-spacing: 0;
}

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

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

p {
  color: var(--muted);
  line-height: 1.65;
}

.site-header {
  align-items: center;
  background: rgba(255, 250, 240, 0.92);
  border-bottom: 1px solid rgba(216, 206, 176, 0.82);
  display: flex;
  gap: 28px;
  justify-content: space-between;
  left: 0;
  padding: 14px 42px;
  position: sticky;
  right: 0;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(14px);
}

.brand,
.studio-logo {
  align-items: center;
  display: inline-flex;
  font-weight: 800;
  gap: 10px;
}

.brand-mark {
  align-items: center;
  background: #9b744b;
  border-radius: 6px;
  color: var(--surface);
  display: inline-flex;
  height: 34px;
  justify-content: center;
  width: 42px;
}

.brand-mark img {
  height: 26px;
  width: 30px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  gap: 22px;
  color: var(--muted);
  font-size: 0.95rem;
}

.site-nav a:hover,
.header-phone:hover,
.text-link:hover {
  color: var(--forest);
}

.header-phone {
  color: var(--ink);
  font-weight: 700;
}

.hero {
  align-items: end;
  background:
    linear-gradient(100deg, rgba(13, 20, 16, 0.84), rgba(13, 20, 16, 0.38)),
    var(--hero-image) center / cover;
  color: var(--surface);
  display: grid;
  min-height: 760px;
  padding: 132px 42px 36px;
}

.hero-split {
  align-items: end;
  gap: 34px;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 430px);
}

.hero-content {
  max-width: 880px;
}

.eyebrow {
  color: var(--signal);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.4;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--sun);
}

h1,
h2,
h3 {
  line-height: 1.06;
  margin: 0;
}

h1 {
  font-size: 4.8rem;
  max-width: 980px;
}

h2 {
  font-size: 2.35rem;
}

h3 {
  font-size: 1.35rem;
}

.hero p {
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.24rem;
  max-width: 740px;
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-chips span {
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 900;
  padding: 9px 13px;
}

.hero-calc-card {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  color: var(--ink);
  padding: 26px;
  backdrop-filter: blur(16px);
}

.hero-calc-card .eyebrow {
  color: var(--signal);
}

.hero-calc-card h2 {
  font-size: 1.72rem;
}

.hero-calc-card p {
  color: var(--muted);
  font-size: 1rem;
}

.hero-calc-card ul {
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 20px 0;
  padding: 0;
}

.hero-calc-card li {
  background: #edf1ea;
  border-left: 4px solid var(--forest);
  border-radius: 6px;
  color: var(--steel);
  font-weight: 800;
  padding: 12px;
}

.hero-card-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-actions,
.messenger-row,
.row-head {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease;
}

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

.button-light {
  background: var(--surface);
  color: var(--ink);
}

.button-dark {
  background: var(--ink);
  color: var(--surface);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.48);
  color: var(--surface);
}

.button-soft {
  background: #e7ece5;
  color: var(--ink);
}

.hero-facts {
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  display: grid;
  gap: 12px;
  grid-column: 1 / -1;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 38px;
  padding-top: 22px;
}

.hero-facts span {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}

.hero-facts strong {
  color: var(--sun);
  display: block;
  font-size: 0.82rem;
  margin-bottom: 4px;
}

.section,
.site-footer {
  margin: 0 auto;
  max-width: 1280px;
  padding: 86px 42px;
}

.section-head {
  margin-bottom: 32px;
  max-width: 820px;
}

.row-head {
  justify-content: space-between;
  max-width: none;
}

.intro-band {
  display: grid;
  gap: 34px;
  grid-template-columns: 1.1fr 1fr;
}

.intro-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-top: 42px;
  padding-bottom: 52px;
  padding-top: 52px;
}

.stat-grid,
.workflow-grid,
.product-detail-grid,
.studio-stats,
.studio-grid {
  display: grid;
  gap: 18px;
}

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

.stat-grid div,
.workflow-grid li,
.studio-stats div,
.studio-panel,
.product-card,
.catalog-filter,
.login-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.stat-grid div {
  padding: 24px;
}

.stat-grid strong,
.workflow-grid strong {
  display: block;
  font-size: 1.08rem;
  margin-bottom: 8px;
}

.stat-grid span {
  color: var(--muted);
  line-height: 1.5;
}

.focus-strip {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, 1fr);
  padding-top: 32px;
}

.focus-strip article {
  background: var(--ink);
  border-radius: var(--radius);
  color: var(--surface);
  min-height: 230px;
  padding: 24px;
}

.focus-strip span {
  color: var(--sun);
  display: block;
  font-weight: 900;
  margin-bottom: 46px;
}

.focus-strip strong {
  display: block;
  font-size: 1.18rem;
  line-height: 1.2;
}

.focus-strip p {
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 0;
}

.product-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, 1fr);
}

.product-card {
  overflow: hidden;
}

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

.product-card-body {
  padding: 22px;
}

.product-card h2,
.product-card h3 {
  font-size: 1.22rem;
  margin-bottom: 10px;
}

.category-label {
  color: var(--forest);
  font-size: 0.78rem;
  font-weight: 900;
  margin: 0 0 8px;
  text-transform: uppercase;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.product-meta span,
.messenger-row a,
.status-tabs a {
  background: #edf1ea;
  border-radius: 999px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
  padding: 8px 12px;
}

.text-link {
  color: var(--forest);
  font-weight: 900;
}

.production,
.contact-section,
.product-hero {
  display: grid;
  gap: 40px;
  grid-template-columns: 0.9fr 1.1fr;
}

.production-list {
  display: grid;
  gap: 12px;
}

.production-list span {
  background: var(--ink);
  border-left: 6px solid var(--sun);
  border-radius: var(--radius);
  color: var(--surface);
  font-weight: 800;
  padding: 20px;
}

.workflow-grid {
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
  margin: 0;
  padding: 0;
}

.workflow-grid li {
  padding: 24px;
}

.workflow-grid span {
  color: var(--signal);
  display: block;
  font-weight: 900;
  margin-bottom: 36px;
}

.reviews-band {
  background:
    radial-gradient(circle at top left, rgba(242, 193, 78, 0.22), transparent 34%),
    linear-gradient(135deg, #eef3ea, #ffffff);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.reviews-track {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, 1fr);
}

.review-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 36px rgba(23, 27, 24, 0.08);
  display: flex;
  flex-direction: column;
  min-height: 260px;
  padding: 22px;
}

.review-card h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.review-card > span,
.review-card small {
  color: var(--muted);
  font-weight: 800;
}

.review-card p {
  margin: 18px 0 auto;
}

.review-stars {
  color: var(--sun);
  display: flex;
  font-size: 1.1rem;
  gap: 2px;
  margin-bottom: 18px;
}

.news-mosaic {
  display: grid;
  gap: 18px;
  grid-auto-rows: 230px;
  grid-template-columns: repeat(4, 1fr);
}

.news-card {
  background:
    linear-gradient(135deg, rgba(13, 95, 79, 0.96), rgba(23, 27, 24, 0.96));
  border-radius: var(--radius);
  min-height: 230px;
  overflow: hidden;
  position: relative;
}

.news-card-large {
  grid-column: span 2;
  grid-row: span 2;
}

.news-card img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  transition: transform 0.35s ease;
  width: 100%;
}

.news-card:hover img {
  transform: scale(1.04);
}

.news-card::after {
  background: linear-gradient(180deg, rgba(23, 27, 24, 0.08), rgba(23, 27, 24, 0.82));
  content: "";
  inset: 0;
  position: absolute;
}

.news-card > a {
  inset: 0;
  position: absolute;
  z-index: 2;
}

.news-card-overlay {
  bottom: 0;
  color: var(--surface);
  left: 0;
  padding: 22px;
  position: absolute;
  right: 0;
  z-index: 1;
}

.news-card-overlay span {
  color: rgba(255, 255, 255, 0.78);
  display: block;
  font-size: 0.85rem;
  font-weight: 900;
  margin-bottom: 8px;
}

.news-card-overlay strong {
  display: block;
  font-size: 1.22rem;
  line-height: 1.2;
}

.news-card-large .news-card-overlay strong {
  font-size: 1.72rem;
  max-width: 520px;
}

.news-detail-hero {
  align-items: end;
  display: grid;
  gap: 34px;
  grid-template-columns: 0.9fr 1.1fr;
  margin: 0 auto;
  max-width: 1280px;
  padding: 86px 42px 44px;
}

.news-detail-hero h1 {
  font-size: 3.25rem;
  margin: 12px 0;
}

.news-detail-hero img {
  aspect-ratio: 16 / 10;
  border-radius: var(--radius);
  object-fit: cover;
  width: 100%;
}

.news-detail-body {
  padding-top: 32px;
}

.article-text {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--steel);
  font-size: 1.08rem;
  line-height: 1.8;
  padding: 28px;
  white-space: pre-line;
}

.article-body {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--steel);
  font-size: 1.04rem;
  line-height: 1.8;
  padding: 28px;
}

.article-body h2,
.article-body h3 {
  margin-bottom: 14px;
}

.article-body p:first-child,
.article-body h2:first-child,
.article-body h3:first-child {
  margin-top: 0;
}

.article-body ul,
.article-body ol {
  padding-left: 22px;
}

.article-body li + li {
  margin-top: 8px;
}

.knowledge-grid,
.knowledge-strip {
  display: grid;
  gap: 18px;
}

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

.knowledge-card,
.knowledge-strip article,
.knowledge-aside-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 46px rgba(51, 45, 36, 0.07);
}

.knowledge-card,
.knowledge-strip article {
  padding: 24px;
}

.knowledge-card > span,
.knowledge-strip article > span {
  color: var(--sun);
  display: block;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin-bottom: 22px;
}

.knowledge-card h2,
.knowledge-strip h3 {
  font-size: 1.15rem;
  margin: 0 0 12px;
}

.knowledge-card p,
.knowledge-strip p,
.knowledge-aside-card p {
  color: var(--muted);
  line-height: 1.55;
}

.knowledge-layout {
  align-items: start;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) 340px;
}

.knowledge-article {
  box-shadow: 0 18px 46px rgba(51, 45, 36, 0.07);
  padding: clamp(28px, 5vw, 58px);
}

.knowledge-aside {
  display: grid;
  gap: 18px;
  position: sticky;
  top: 104px;
}

.knowledge-aside-card {
  padding: 22px;
}

.knowledge-aside-card nav {
  display: grid;
  gap: 12px;
}

.knowledge-aside-card nav a {
  border-top: 1px solid var(--line);
  color: var(--forest);
  font-weight: 900;
  line-height: 1.35;
  padding-top: 12px;
}

.category-seo-section {
  padding-top: 8px;
}

.news-next-prev {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  margin-top: 18px;
}

.news-next-prev a {
  background: #edf1ea;
  border-radius: 6px;
  color: var(--forest);
  font-weight: 900;
  padding: 12px 14px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 20px;
}

summary {
  cursor: pointer;
  font-weight: 900;
}

.lead-form,
.studio-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}

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

label,
.studio-field {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

label span,
.studio-field label,
.detail-list dt {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.form-control,
.form-select,
input,
textarea,
select {
  background: #fbfcfa;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  font: inherit;
  min-height: 44px;
  padding: 10px 12px;
  width: 100%;
}

textarea {
  resize: vertical;
}

.messages {
  left: 50%;
  max-width: 640px;
  position: fixed;
  top: 82px;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  z-index: 20;
}

.message {
  background: var(--ink);
  border-radius: var(--radius);
  color: var(--surface);
  margin-bottom: 8px;
  padding: 12px 14px;
}

.page-hero {
  background: var(--ink);
  color: var(--surface);
  padding: 116px 42px 70px;
}

.page-hero > div {
  margin: 0 auto;
  max-width: 1280px;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.78);
  max-width: 760px;
}

.breadcrumbs {
  align-items: center;
  color: rgba(255, 255, 255, 0.72);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.breadcrumbs a:hover {
  color: var(--surface);
}

.compact-hero h1 {
  font-size: 3rem;
}

.catalog-layout {
  align-items: start;
  display: grid;
  gap: 28px;
  grid-template-columns: 280px 1fr;
}

.catalog-filter {
  padding: 18px;
  position: sticky;
  top: 86px;
}

.catalog-filter nav {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.catalog-filter nav a {
  border-radius: 6px;
  color: var(--muted);
  font-weight: 800;
  padding: 10px 12px;
}

.catalog-filter nav a.active,
.status-tabs a.active {
  background: var(--forest);
  color: var(--surface);
}

.product-hero {
  align-items: start;
  margin: 0 auto;
  max-width: 1280px;
  padding: 82px 42px 44px;
}

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

.product-gallery img:first-child {
  grid-column: 1 / -1;
}

.product-gallery img {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  object-fit: cover;
  width: 100%;
}

.product-summary {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  position: sticky;
  top: 92px;
}

.price-line {
  align-items: baseline;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0;
}

.price-line strong {
  color: var(--forest);
  font-size: 2rem;
}

.spec-grid {
  display: grid;
  gap: 10px;
  margin: 24px 0;
}

.spec-grid div,
.check-list li {
  background: #edf1ea;
  border-radius: 6px;
  padding: 12px;
}

.spec-grid span {
  color: var(--muted);
  display: block;
  font-size: 0.82rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.product-detail-grid {
  grid-template-columns: repeat(2, 1fr);
}

.check-list {
  display: grid;
  gap: 8px;
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
}

.site-footer {
  align-items: start;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 24px;
  justify-content: space-between;
}

.footer-contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: end;
}

.footer-knowledge {
  display: grid;
  gap: 8px;
  max-width: 360px;
}

.footer-knowledge strong {
  color: var(--ink);
}

.footer-knowledge a {
  color: var(--forest);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.35;
}

.footer-contacts a,
.footer-contacts span {
  color: var(--forest);
  font-weight: 800;
}

.footer-contacts span {
  color: var(--muted);
}

.studio-body {
  background: #eef2ec;
  display: grid;
  grid-template-columns: 264px 1fr;
  min-height: 100vh;
}

.studio-sidebar {
  background: var(--ink);
  color: var(--surface);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding: 22px;
  position: sticky;
  top: 0;
}

.studio-logo {
  margin-bottom: 32px;
}

.studio-sidebar nav {
  display: grid;
  gap: 6px;
}

.studio-sidebar a {
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
  padding: 10px 12px;
}

.studio-sidebar a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--surface);
}

.studio-sidebar-footer {
  display: grid;
  gap: 6px;
  margin-top: auto;
}

.studio-main {
  min-width: 0;
  padding: 34px;
}

.studio-head {
  align-items: center;
  display: flex;
  gap: 18px;
  justify-content: space-between;
  margin-bottom: 24px;
}

.studio-head h1 {
  font-size: 2.25rem;
}

.studio-stats {
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 24px;
}

.studio-stats div,
.studio-panel {
  padding: 20px;
}

.studio-stats span {
  color: var(--muted);
  display: block;
  font-weight: 800;
}

.studio-stats strong {
  display: block;
  font-size: 2rem;
  margin-top: 8px;
}

.studio-grid {
  grid-template-columns: 1.2fr 0.8fr;
}

.panel-head,
.studio-filter,
.status-tabs {
  align-items: center;
  display: flex;
  gap: 12px;
  justify-content: space-between;
}

.panel-head {
  margin-bottom: 14px;
}

.panel-head h2,
.studio-panel h2 {
  font-size: 1.2rem;
}

.table-wrap {
  overflow-x: auto;
}

table {
  border-collapse: collapse;
  width: 100%;
}

th,
td {
  border-bottom: 1px solid var(--line);
  padding: 12px 10px;
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--muted);
  font-size: 0.82rem;
  text-transform: uppercase;
}

td a,
.panel-head a {
  color: var(--forest);
  font-weight: 900;
}

.studio-list {
  display: grid;
  gap: 8px;
}

.studio-list a {
  background: #f4f7f2;
  border-radius: 6px;
  display: flex;
  justify-content: space-between;
  padding: 12px;
}

.studio-list small {
  color: var(--muted);
}

.studio-thumb {
  aspect-ratio: 4 / 3;
  border-radius: 6px;
  object-fit: cover;
  width: 96px;
}

.studio-preview {
  background: #f4f7f2;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 16px;
  padding: 12px;
}

.studio-preview img {
  border-radius: 6px;
  max-height: 260px;
  object-fit: cover;
  width: 100%;
}

.studio-filter {
  margin-bottom: 16px;
}

.wide-form {
  display: grid;
  gap: 4px 18px;
  grid-template-columns: repeat(2, 1fr);
}

.wide-form .studio-field:has(textarea),
.wide-form .studio-field:nth-last-child(-n + 9),
.wide-form .button {
  grid-column: 1 / -1;
}

.studio-field-check {
  align-items: center;
  display: flex;
  gap: 10px;
}

.form-check-input {
  min-height: auto;
  width: auto;
}

.compact-form {
  margin-top: 18px;
}

.detail-list {
  display: grid;
  gap: 10px;
  grid-template-columns: 140px 1fr;
}

.detail-list dd,
.detail-list dt {
  margin: 0;
}

.detail-list dd {
  overflow-wrap: anywhere;
}

.project-layout {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 18px;
}

.project-copy p {
  margin-bottom: 0;
}

.app-list {
  display: grid;
  gap: 10px;
}

.app-list span,
.studio-bullets li {
  background: #f4f7f2;
  border-radius: 6px;
  color: var(--muted);
  line-height: 1.5;
  padding: 12px;
}

.app-list strong {
  color: var(--ink);
  display: inline-block;
  min-width: 82px;
}

.project-map-panel {
  margin-bottom: 18px;
  overflow: hidden;
}

.site-map {
  display: grid;
  gap: 24px;
  justify-items: center;
}

.map-node {
  background: #f4f7f2;
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 86px;
  padding: 16px;
  position: relative;
  text-align: center;
  width: 100%;
}

.map-node strong,
.map-node span {
  display: block;
}

.map-node span {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 6px;
}

.map-root {
  background: var(--ink);
  color: var(--surface);
  max-width: 260px;
}

.map-root span {
  color: rgba(255, 255, 255, 0.72);
}

.map-branches {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  width: 100%;
}

.map-branches::before {
  background: var(--line);
  content: "";
  height: 2px;
  left: 8%;
  position: absolute;
  right: 8%;
  top: -14px;
}

.studio-bullets {
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
}

.status-tabs {
  justify-content: start;
  margin-bottom: 16px;
}

.login-page {
  align-items: center;
  display: grid;
  min-height: 100vh;
  padding: 22px;
}

.login-panel {
  margin: 0 auto;
  max-width: 440px;
  padding: 28px;
  width: 100%;
}

.login-panel h1 {
  font-size: 2rem;
  margin-bottom: 20px;
}

@media (max-width: 980px) {
  .site-header,
  .site-footer,
  .studio-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    flex-wrap: wrap;
  }

  h1 {
    font-size: 3.2rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero {
    min-height: 680px;
  }

  .hero-facts,
  .hero-split,
  .intro-band,
  .focus-strip,
  .stat-grid,
  .product-grid,
  .production,
  .workflow-grid,
  .contact-section,
  .catalog-layout,
  .product-hero,
  .product-detail-grid,
  .studio-stats,
  .studio-grid,
  .project-layout,
  .knowledge-grid,
  .knowledge-strip,
  .knowledge-layout,
  .map-branches,
  .wide-form,
  .news-detail-hero {
    grid-template-columns: 1fr;
  }

  .hero-calc-card {
    max-width: 560px;
  }

  .reviews-track,
  .news-mosaic {
    grid-template-columns: repeat(2, 1fr);
  }

  .news-card-large {
    grid-column: span 2;
  }

  .catalog-filter,
  .product-summary,
  .knowledge-aside {
    position: static;
  }

  .footer-contacts {
    justify-content: start;
  }

  .studio-body {
    grid-template-columns: 1fr;
  }

  .studio-sidebar {
    min-height: auto;
    position: static;
  }
}

@media (max-width: 640px) {
  .site-header,
  .section,
  .site-footer,
  .product-hero,
  .page-hero,
  .studio-main {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero {
    min-height: 620px;
    padding: 104px 18px 28px;
  }

  h1,
  .compact-hero h1 {
    font-size: 2.55rem;
  }

  .hero p {
    font-size: 1.05rem;
  }

  .hero-calc-card {
    padding: 20px;
  }

  .hero-calc-card h2 {
    font-size: 1.45rem;
  }

  .form-grid,
  .product-gallery,
  .reviews-track,
  .news-mosaic {
    grid-template-columns: 1fr;
  }

  .news-card-large {
    grid-column: span 1;
    grid-row: span 1;
  }

  .news-detail-hero h1 {
    font-size: 2.45rem;
  }

  .detail-list {
    grid-template-columns: 1fr;
  }

  .panel-head,
  .studio-filter,
  .status-tabs {
    align-items: stretch;
    flex-direction: column;
  }
}

/* Selling landing */
.site-header {
  background: rgba(250, 247, 239, 0.9);
  border-bottom: 1px solid rgba(33, 41, 34, 0.08);
  box-shadow: 0 12px 40px rgba(23, 27, 24, 0.07);
}

.brand-mark {
  background: linear-gradient(135deg, #103c31, #d94d31);
}

.dk-landing {
  --dk-bg: #f7f1e7;
  --dk-ink: #151813;
  --dk-muted: #6e7469;
  --dk-green: #0c5b4b;
  --dk-green-2: #123c33;
  --dk-orange: #e25734;
  --dk-gold: #e9bd65;
  --dk-card: #fffaf0;
  --dk-line: rgba(21, 24, 19, 0.13);
  background:
    radial-gradient(circle at 8% 4%, rgba(226, 87, 52, 0.13), transparent 32%),
    radial-gradient(circle at 88% 12%, rgba(12, 91, 75, 0.16), transparent 34%),
    var(--dk-bg);
  color: var(--dk-ink);
  overflow: hidden;
}

.dk-page {
  margin: 0 auto;
  max-width: 1280px;
  padding-left: 42px;
  padding-right: 42px;
}

.dk-section {
  padding: 94px 0;
  position: relative;
}

.dk-kicker {
  color: var(--dk-orange);
  font-size: 0.78rem;
  font-weight: 1000;
  letter-spacing: 0.12em;
  margin: 0 0 14px;
  text-transform: uppercase;
}

.dk-landing h1,
.dk-landing h2,
.dk-landing h3 {
  letter-spacing: -0.055em;
}

.dk-landing h2 {
  font-size: clamp(2.25rem, 4vw, 4.7rem);
  max-width: 860px;
}

.dk-landing p {
  color: var(--dk-muted);
}

.dk-btn,
.dk-link {
  align-items: center;
  border-radius: 8px;
  display: inline-flex;
  font-weight: 1000;
  justify-content: center;
}

.dk-btn {
  min-height: 56px;
  padding: 0 22px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.dk-btn:hover,
.dk-product-card:hover,
.dk-service-card:hover,
.dk-news-card:hover,
.dk-review-card:hover {
  transform: translateY(-4px);
}

.dk-btn-primary {
  background: var(--dk-orange);
  box-shadow: 0 18px 38px rgba(226, 87, 52, 0.28);
  color: #ffffff;
}

.dk-btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.38);
  color: #ffffff;
}

.dk-link {
  color: var(--dk-green);
}

.dk-actions,
.dk-section-head,
.dk-slider-controls,
.dk-contact-row {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.dk-section-head {
  justify-content: space-between;
  margin-bottom: 34px;
}

.dk-section-head h2 {
  margin: 0;
}

.dk-hero {
  background:
    linear-gradient(105deg, rgba(12, 23, 17, 0.92), rgba(12, 23, 17, 0.54)),
    var(--hero-image) center / cover;
  color: #ffffff;
  min-height: 820px;
  padding: 94px 0 38px;
  position: relative;
}

.dk-hero::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 78px 78px;
  content: "";
  inset: 0;
  opacity: 0.45;
  pointer-events: none;
  position: absolute;
}

.dk-hero-grid {
  align-items: end;
  display: grid;
  gap: 44px;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.72fr);
  min-height: 600px;
  position: relative;
  z-index: 1;
}

.dk-hero-copy h1 {
  font-size: clamp(3.6rem, 7vw, 7.7rem);
  line-height: 0.92;
  margin: 0;
  max-width: 980px;
}

.dk-hero-lead {
  color: rgba(255, 255, 255, 0.84) !important;
  font-size: clamp(1.08rem, 2vw, 1.45rem);
  max-width: 760px;
}

.dk-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.dk-hero-tags span,
.dk-marquee span {
  border-radius: 999px;
  font-weight: 1000;
  white-space: nowrap;
}

.dk-hero-tags span {
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.9);
  padding: 10px 14px;
}

.dk-hero-visual {
  position: relative;
}

.dk-visual-window {
  background: rgba(255, 250, 240, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.32);
  color: var(--dk-ink);
  padding: 22px;
  position: relative;
  transform: rotate(1.5deg);
}

.dk-window-head {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 18px;
}

.dk-window-head span {
  color: var(--dk-muted);
  font-weight: 900;
}

.dk-window-head strong {
  color: var(--dk-orange);
  font-size: 2rem;
}

.dk-room-plan {
  background:
    linear-gradient(90deg, rgba(12, 91, 75, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(12, 91, 75, 0.08) 1px, transparent 1px),
    #fff5e5;
  background-size: 32px 32px;
  border: 1px solid rgba(12, 91, 75, 0.18);
  border-radius: 8px;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(4, 1fr);
  min-height: 320px;
  padding: 18px;
}

.dk-room-plan span {
  background: linear-gradient(135deg, var(--dk-green), #1b806c);
  border-radius: 7px;
  box-shadow: inset 0 -12px 24px rgba(0, 0, 0, 0.18);
}

.dk-visual-note,
.dk-floating-card {
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(15, 24, 17, 0.18);
  font-weight: 1000;
  position: absolute;
}

.dk-visual-note {
  background: var(--dk-gold);
  color: var(--dk-ink);
  padding: 10px 12px;
}

.dk-note-left {
  left: -18px;
  top: 32%;
  transform: rotate(-5deg);
}

.dk-note-right {
  bottom: 34%;
  right: -20px;
  transform: rotate(5deg);
}

.dk-floating-card {
  background: var(--dk-orange);
  bottom: -34px;
  color: #ffffff;
  left: 26px;
  padding: 16px;
  right: 26px;
}

.dk-floating-card span {
  display: block;
  font-size: 0.78rem;
  opacity: 0.72;
  text-transform: uppercase;
}

.dk-hero-benefits {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 34px;
  position: relative;
  z-index: 1;
}

.dk-benefit {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  min-height: 180px;
  padding: 20px;
  backdrop-filter: blur(14px);
}

.dk-benefit span,
.dk-step span,
.dk-service-card span {
  color: var(--dk-gold);
  display: block;
  font-weight: 1000;
  margin-bottom: 28px;
}

.dk-benefit strong {
  display: block;
  font-size: 1.1rem;
}

.dk-benefit p {
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 0;
}

.dk-about-grid,
.dk-regulation-grid,
.dk-why-grid,
.dk-request-grid {
  display: grid;
  gap: 42px;
  grid-template-columns: 0.9fr 1.1fr;
}

.dk-proof-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 28px;
}

.dk-proof-grid div {
  background: #ffffff;
  border: 1px solid var(--dk-line);
  border-radius: 8px;
  padding: 18px;
}

.dk-proof-grid strong,
.dk-proof-grid span {
  display: block;
}

.dk-proof-grid strong {
  color: var(--dk-green);
  margin-bottom: 8px;
}

.dk-proof-grid span {
  color: var(--dk-muted);
  line-height: 1.5;
}

.dk-about-collage {
  align-self: stretch;
  min-height: 440px;
  position: relative;
}

.dk-about-collage img {
  border-radius: 8px;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.dk-about-collage div {
  background: var(--dk-card);
  border-radius: 8px;
  bottom: 24px;
  box-shadow: 0 20px 60px rgba(21, 24, 19, 0.18);
  left: 24px;
  max-width: 320px;
  padding: 20px;
  position: absolute;
}

.dk-about-collage strong,
.dk-about-collage span {
  display: block;
}

.dk-about-collage span {
  color: var(--dk-muted);
  line-height: 1.5;
  margin-top: 8px;
}

.dk-regulation {
  background: #fffaf0;
}

.dk-regulation-title {
  position: sticky;
  top: 112px;
}

.dk-steps {
  display: grid;
  gap: 14px;
}

.dk-step {
  background: #ffffff;
  border: 1px solid var(--dk-line);
  border-radius: 8px;
  display: grid;
  gap: 10px;
  grid-template-columns: 80px 0.8fr 1fr;
  padding: 22px;
}

.dk-step span {
  color: var(--dk-orange);
  margin: 0;
}

.dk-step p {
  margin: 0;
}

.dk-slider {
  position: relative;
}

.dk-slider-viewport {
  overflow: hidden;
}

.dk-slider-track {
  display: flex;
  gap: 18px;
  transition: transform 0.55s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform;
}

.dk-product-card,
.dk-service-card,
.dk-news-card,
.dk-review-card {
  border-radius: 8px;
  flex: 0 0 360px;
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.dk-product-card {
  background: #ffffff;
  border: 1px solid var(--dk-line);
  box-shadow: 0 20px 60px rgba(21, 24, 19, 0.09);
}

.dk-product-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
}

.dk-product-body {
  padding: 22px;
}

.dk-product-body > span {
  color: var(--dk-orange);
  display: block;
  font-size: 0.78rem;
  font-weight: 1000;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.dk-product-body p {
  min-height: 78px;
}

.dk-product-body div {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.dk-product-body strong,
.dk-product-body em {
  background: #f2eadc;
  border-radius: 999px;
  color: var(--dk-ink);
  font-style: normal;
  font-weight: 1000;
  padding: 8px 11px;
}

.dk-slider-controls {
  justify-content: flex-end;
  margin-top: 18px;
}

.dk-slider-controls button {
  background: #ffffff;
  border: 1px solid var(--dk-line);
  border-radius: 50%;
  color: var(--dk-ink);
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: 1000;
  height: 42px;
  width: 42px;
}

.dk-slider-controls button:disabled {
  cursor: default;
  opacity: 0.36;
}

.dk-slider-controls button:not(:disabled):hover {
  background: var(--dk-orange);
  color: #ffffff;
}

.dk-dark,
.dk-reviews {
  background:
    radial-gradient(circle at 16% 20%, rgba(226, 87, 52, 0.26), transparent 28%),
    linear-gradient(135deg, #132720, #07110e);
  color: #ffffff;
  padding: 96px 0;
}

.dk-dark .dk-kicker,
.dk-reviews .dk-kicker {
  color: var(--dk-gold);
}

.dk-dark h2,
.dk-reviews h2 {
  color: #ffffff;
}

.dk-service-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  min-height: 330px;
  padding: 26px;
}

.dk-service-card h3 {
  font-size: 1.6rem;
}

.dk-service-card p {
  color: rgba(255, 255, 255, 0.72);
}

.dk-slider-controls-light button {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.28);
  color: #ffffff;
}

.dk-why {
  background: #ffffff;
}

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

.dk-why-list article {
  background: #f7f1e7;
  border: 1px solid var(--dk-line);
  border-radius: 8px;
  min-height: 180px;
  padding: 22px;
}

.dk-why-list strong,
.dk-why-list span {
  display: block;
}

.dk-why-list strong {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.dk-why-list span {
  color: var(--dk-muted);
  line-height: 1.5;
}

.dk-marquee {
  background: var(--dk-orange);
  color: #ffffff;
  overflow: hidden;
  padding: 18px 0;
}

.dk-marquee-track {
  animation: dk-marquee 34s linear infinite;
  display: flex;
  gap: 12px;
  width: max-content;
}

.dk-marquee span {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 10px 16px;
}

@keyframes dk-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.dk-news {
  background:
    linear-gradient(180deg, #f7f1e7, #ffffff);
}

.dk-news-card {
  background: var(--dk-green-2);
  flex-basis: 330px;
  height: 430px;
  position: relative;
}

.dk-news-card-wide {
  flex-basis: 560px;
}

.dk-news-card img {
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
  transition: transform 0.5s ease;
  width: 100%;
}

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

.dk-news-card::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(7, 17, 14, 0.84));
  content: "";
  inset: 0;
  position: absolute;
}

.dk-news-card > a {
  inset: 0;
  position: absolute;
  z-index: 3;
}

.dk-news-card div {
  bottom: 18px;
  color: #ffffff;
  left: 18px;
  position: absolute;
  right: 18px;
  z-index: 2;
}

.dk-news-card span {
  display: block;
  font-size: 0.86rem;
  font-weight: 1000;
  margin-bottom: 8px;
  opacity: 0.72;
}

.dk-news-card strong {
  display: block;
  font-size: 1.45rem;
  line-height: 1.1;
}

.dk-news-card-wide strong {
  font-size: 2rem;
}

.dk-review-card {
  background: #fffaf0;
  color: var(--dk-ink);
  flex-basis: 380px;
  min-height: 310px;
  padding: 24px;
}

.dk-review-card h3 {
  font-size: 1.25rem;
  margin-bottom: 6px;
}

.dk-review-card > span,
.dk-review-card small {
  color: var(--dk-muted);
  font-weight: 900;
}

.dk-review-card p {
  margin-top: 22px;
}

.dk-stars {
  color: var(--dk-orange);
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.dk-request {
  background:
    radial-gradient(circle at 85% 20%, rgba(233, 189, 101, 0.24), transparent 26%),
    #fffaf0;
}

.dk-contact-row {
  margin-top: 24px;
}

.dk-contact-row a {
  background: #ffffff;
  border: 1px solid var(--dk-line);
  border-radius: 999px;
  color: var(--dk-green);
  font-weight: 1000;
  padding: 10px 14px;
}

.dk-request-form .lead-form {
  box-shadow: 0 28px 70px rgba(21, 24, 19, 0.12);
}

.dk-reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--delay, 0s);
}

.dk-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .dk-hero-grid,
  .dk-about-grid,
  .dk-regulation-grid,
  .dk-why-grid,
  .dk-request-grid {
    grid-template-columns: 1fr;
  }

  .dk-hero {
    min-height: auto;
  }

  .dk-hero-benefits,
  .dk-proof-grid,
  .dk-why-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .dk-regulation-title {
    position: static;
  }

  .dk-step {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .dk-page {
    padding-left: 18px;
    padding-right: 18px;
  }

  .dk-section,
  .dk-dark,
  .dk-reviews {
    padding: 64px 0;
  }

  .dk-hero {
    padding-top: 76px;
  }

  .dk-hero-copy h1 {
    font-size: 3rem;
  }

  .dk-hero-grid {
    gap: 30px;
  }

  .dk-visual-window {
    transform: none;
  }

  .dk-note-left,
  .dk-note-right,
  .dk-floating-card {
    position: static;
    transform: none;
    margin-top: 12px;
  }

  .dk-hero-benefits,
  .dk-proof-grid,
  .dk-why-list {
    grid-template-columns: 1fr;
  }

  .dk-product-card,
  .dk-service-card,
  .dk-news-card,
  .dk-news-card-wide,
  .dk-review-card {
    flex-basis: 84vw;
  }

  .dk-news-card {
    height: 360px;
  }

  .dk-news-card-wide strong {
    font-size: 1.45rem;
  }

  .dk-section-head {
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .dk-marquee-track {
    animation: none;
  }

  .dk-reveal,
  .dk-slider-track,
  .dk-news-card img,
  .dk-btn,
  .dk-product-card,
  .dk-service-card,
  .dk-news-card,
  .dk-review-card {
    transition: none !important;
  }
}

/* Softer furniture-company direction inspired by mebel-reforma.ru */
body {
  background: #fbf8f2;
}

.site-header {
  background: rgba(255, 252, 246, 0.92);
  border-bottom: 1px solid rgba(74, 66, 54, 0.09);
  box-shadow: 0 10px 34px rgba(65, 54, 38, 0.08);
}

.site-nav {
  color: #6e665b;
}

.header-phone,
.brand {
  color: #2d2a24;
}

.brand-mark {
  background: #8f6b43;
  color: #fff8ed;
}

.dk-landing {
  --dk-bg: #fbf8f2;
  --dk-ink: #2b2924;
  --dk-muted: #756f64;
  --dk-green: #58745f;
  --dk-green-2: #3f5d4a;
  --dk-orange: #b98249;
  --dk-gold: #d8b06f;
  --dk-card: #fffdf7;
  --dk-line: rgba(83, 73, 58, 0.13);
  background:
    radial-gradient(circle at 16% 8%, rgba(216, 176, 111, 0.24), transparent 30%),
    radial-gradient(circle at 85% 12%, rgba(88, 116, 95, 0.16), transparent 32%),
    linear-gradient(180deg, #fbf8f2 0%, #f6efe4 54%, #fbf8f2 100%);
}

.dk-section {
  padding: 82px 0;
}

.dk-kicker {
  color: var(--dk-green);
  font-size: 0.76rem;
  letter-spacing: 0.16em;
}

.dk-landing h1,
.dk-landing h2,
.dk-landing h3 {
  letter-spacing: -0.03em;
}

.dk-landing h2 {
  font-size: clamp(2rem, 3.1vw, 3.65rem);
  line-height: 1.08;
}

.dk-btn {
  border-radius: 999px;
  min-height: 52px;
  padding: 0 24px;
  transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

.dk-btn:hover,
.dk-product-card:hover,
.dk-service-card:hover,
.dk-news-card:hover,
.dk-review-card:hover {
  transform: translateY(-2px);
}

.dk-btn-primary {
  background: #55745c;
  box-shadow: 0 14px 30px rgba(85, 116, 92, 0.22);
  color: #ffffff;
}

.dk-btn-ghost {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(85, 116, 92, 0.28);
  color: #48614e;
}

.dk-link {
  color: #55745c;
}

.dk-hero {
  background:
    linear-gradient(105deg, rgba(251, 248, 242, 0.94), rgba(251, 248, 242, 0.74)),
    var(--hero-image) right center / cover;
  color: var(--dk-ink);
  min-height: 720px;
  padding: 92px 0 34px;
}

.dk-hero::before {
  background:
    linear-gradient(90deg, rgba(139, 111, 75, 0.07) 1px, transparent 1px),
    linear-gradient(rgba(139, 111, 75, 0.06) 1px, transparent 1px);
  background-size: 92px 92px;
  opacity: 0.42;
}

.dk-hero-grid {
  align-items: center;
  min-height: 540px;
}

.dk-hero-copy {
  background: rgba(255, 253, 247, 0.72);
  border: 1px solid rgba(83, 73, 58, 0.1);
  border-radius: 24px;
  padding: clamp(24px, 4vw, 44px);
  backdrop-filter: blur(12px);
}

.dk-hero-copy h1 {
  color: #2c2a25;
  font-size: clamp(2.7rem, 5vw, 5.25rem);
  line-height: 1.02;
}

.dk-hero-lead {
  color: #675f54 !important;
  font-size: clamp(1rem, 1.45vw, 1.22rem);
  max-width: 680px;
}

.dk-hero-tags span {
  background: #efe4d1;
  border: 1px solid rgba(137, 105, 67, 0.16);
  color: #6b5a43;
  padding: 9px 13px;
}

.dk-visual-window {
  background: rgba(255, 253, 247, 0.96);
  border: 1px solid rgba(83, 73, 58, 0.12);
  border-radius: 24px;
  box-shadow: 0 24px 70px rgba(74, 61, 42, 0.15);
  transform: none;
}

.dk-window-head strong {
  color: #9b6f3f;
}

.dk-room-plan {
  background:
    linear-gradient(90deg, rgba(139, 111, 75, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(139, 111, 75, 0.08) 1px, transparent 1px),
    #f5ead7;
  background-size: 34px 34px;
  border-color: rgba(139, 111, 75, 0.16);
  border-radius: 18px;
}

.dk-room-plan span {
  background: linear-gradient(135deg, #caa16d, #8f6b43);
  border-radius: 12px;
  box-shadow: inset 0 -10px 20px rgba(82, 55, 28, 0.18);
}

.dk-visual-note,
.dk-floating-card {
  border-radius: 18px;
  box-shadow: 0 16px 42px rgba(74, 61, 42, 0.13);
}

.dk-visual-note {
  background: #ffffff;
  border: 1px solid rgba(83, 73, 58, 0.1);
  color: #55745c;
}

.dk-floating-card {
  background: #55745c;
  bottom: -26px;
}

.dk-hero-benefits {
  margin-top: 22px;
}

.dk-benefit {
  background: rgba(255, 253, 247, 0.9);
  border: 1px solid rgba(83, 73, 58, 0.11);
  border-radius: 20px;
  box-shadow: 0 16px 44px rgba(74, 61, 42, 0.08);
  color: var(--dk-ink);
}

.dk-benefit span,
.dk-step span,
.dk-service-card span {
  color: #9b6f3f;
  margin-bottom: 22px;
}

.dk-benefit p {
  color: #776d61;
}

.dk-about,
.dk-catalog-showcase,
.dk-faq {
  background:
    linear-gradient(180deg, rgba(255, 253, 247, 0.88), rgba(246, 239, 228, 0.75));
}

.dk-proof-grid div,
.dk-step,
.dk-product-card,
.dk-why-list article,
.dk-review-card,
.dk-request-form .lead-form,
.dk-about-collage div {
  background: #fffdf7;
  border: 1px solid rgba(83, 73, 58, 0.11);
  border-radius: 20px;
  box-shadow: 0 18px 48px rgba(74, 61, 42, 0.08);
}

.dk-about-collage img {
  border-radius: 24px;
}

.dk-regulation {
  background:
    radial-gradient(circle at left center, rgba(88, 116, 95, 0.11), transparent 30%),
    #fbf8f2;
}

.dk-step {
  align-items: center;
}

.dk-product-card,
.dk-service-card,
.dk-news-card,
.dk-review-card {
  border-radius: 22px;
}

.dk-product-card {
  flex-basis: 340px;
}

.dk-product-card img {
  aspect-ratio: 5 / 3.6;
}

.dk-product-body > span {
  color: #8f6b43;
}

.dk-product-body strong,
.dk-product-body em {
  background: #f1e5d3;
  color: #534431;
}

.dk-slider-track {
  transition: transform 0.8s cubic-bezier(0.22, 0.75, 0.22, 1);
}

.dk-slider-controls button {
  background: #fffdf7;
  border-color: rgba(83, 73, 58, 0.14);
  color: #55745c;
}

.dk-slider-controls button:not(:disabled):hover {
  background: #55745c;
  color: #ffffff;
}

.dk-dark,
.dk-reviews {
  background:
    radial-gradient(circle at 12% 4%, rgba(216, 176, 111, 0.2), transparent 28%),
    linear-gradient(180deg, #edf3ea, #fbf8f2);
  color: var(--dk-ink);
}

.dk-dark h2,
.dk-reviews h2 {
  color: var(--dk-ink);
}

.dk-dark .dk-kicker,
.dk-reviews .dk-kicker {
  color: #55745c;
}

.dk-service-card {
  background: #fffdf7;
  border: 1px solid rgba(83, 73, 58, 0.11);
  box-shadow: 0 18px 48px rgba(74, 61, 42, 0.08);
  color: var(--dk-ink);
  min-height: 280px;
}

.dk-service-card h3 {
  font-size: 1.35rem;
}

.dk-service-card p {
  color: #756f64;
}

.dk-slider-controls-light button {
  background: #fffdf7;
  border-color: rgba(83, 73, 58, 0.14);
  color: #55745c;
}

.dk-why {
  background: #fffdf7;
}

.dk-marquee {
  background: #e9ddc9;
  color: #5f503d;
  padding: 14px 0;
}

.dk-marquee span {
  background: rgba(255, 253, 247, 0.66);
  border: 1px solid rgba(83, 73, 58, 0.12);
  font-size: 0.92rem;
  padding: 8px 14px;
}

.dk-marquee-track {
  animation-duration: 42s;
}

.dk-news {
  background:
    radial-gradient(circle at 85% 0%, rgba(88, 116, 95, 0.1), transparent 28%),
    #fbf8f2;
}

.dk-news-card {
  background: #eadcc7;
  flex-basis: 320px;
  height: 380px;
}

.dk-news-card-wide {
  flex-basis: 500px;
}

.dk-news-card::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(48, 42, 34, 0.58));
}

.dk-news-card div {
  background: rgba(255, 253, 247, 0.9);
  border-radius: 18px;
  color: #2b2924;
  left: 16px;
  padding: 14px;
  right: 16px;
}

.dk-news-card span {
  color: #8f6b43;
  opacity: 1;
}

.dk-news-card strong {
  font-size: 1.22rem;
  line-height: 1.18;
}

.dk-news-card-wide strong {
  font-size: 1.55rem;
}

.dk-review-card {
  flex-basis: 360px;
  min-height: 280px;
}

.dk-stars {
  color: #d49a4f;
}

.dk-request {
  background:
    radial-gradient(circle at 82% 18%, rgba(216, 176, 111, 0.2), transparent 28%),
    linear-gradient(180deg, #fffdf7, #f5ecdf);
}

.dk-contact-row a {
  background: #fffdf7;
  border-color: rgba(83, 73, 58, 0.12);
  color: #55745c;
}

.lead-form,
.studio-form {
  border-radius: 20px;
}

.form-control,
.form-select,
input,
textarea,
select {
  background: #fffdf7;
  border-color: rgba(83, 73, 58, 0.14);
  border-radius: 12px;
}

.button-dark {
  background: #55745c;
}

.dk-reveal {
  transform: translateY(18px);
  transition-duration: 0.95s;
}

@media (max-width: 980px) {
  .dk-hero-grid {
    min-height: auto;
  }

  .dk-hero-copy {
    margin-top: 18px;
  }
}

@media (max-width: 640px) {
  .dk-hero-copy h1 {
    font-size: 2.55rem;
  }

  .dk-landing h2 {
    font-size: 2rem;
  }

  .dk-product-card,
  .dk-service-card,
  .dk-news-card,
  .dk-news-card-wide,
  .dk-review-card {
    flex-basis: 82vw;
  }
}

/* Reforma-inspired homepage: light furniture showcase, visible motion, real photos */
.rf-landing {
  --rf-bg: #eee7bf;
  --rf-paper: #fffaf0;
  --rf-ink: #2e2a24;
  --rf-muted: #6d634f;
  --rf-line: rgba(94, 84, 64, 0.18);
  --rf-green: #676149;
  --rf-green-deep: #4f4838;
  --rf-wood: #c8945a;
  --rf-sand: #e4d99f;
  --rf-accent: #d7753e;
  --rf-accent-deep: #bd6134;
  --rf-accent-shadow: rgba(172, 88, 48, 0.24);
  --rf-card-ink: #2e2a24;
  --rf-card-muted: #6d634f;
  --rf-card-accent: var(--rf-green);
  --rf-hero-bg:
    linear-gradient(115deg, rgba(238, 231, 191, 0.98), rgba(238, 231, 191, 0.72)),
    radial-gradient(circle at 85% 42%, rgba(255, 250, 240, 0.92), transparent 34%);
  --rf-intro-bg:
    linear-gradient(180deg, rgba(255, 250, 240, 0.98), rgba(238, 231, 191, 0.92)),
    radial-gradient(circle at 18% 20%, rgba(200, 148, 90, 0.16), transparent 34%);
  --rf-options-bg: linear-gradient(180deg, #fffaf0, #eee4b6);
  --rf-works-bg: var(--rf-paper);
  --rf-reviews-bg:
    radial-gradient(circle at 84% 8%, rgba(200, 148, 90, 0.16), transparent 28%),
    #eee7bf;
  --rf-process-bg:
    radial-gradient(circle at 8% 8%, rgba(103, 97, 73, 0.12), transparent 26%),
    #eee7bf;
  --rf-faq-bg: var(--rf-paper);
  --rf-request-bg:
    radial-gradient(circle at 20% 6%, rgba(103, 97, 73, 0.15), transparent 26%),
    #eee4b6;
  background:
    radial-gradient(circle at 14% 2%, rgba(200, 148, 90, 0.2), transparent 30%),
    radial-gradient(circle at 88% 6%, rgba(103, 97, 73, 0.16), transparent 32%),
    var(--rf-bg);
  color: var(--rf-ink);
  overflow: hidden;
}

.rf-style-hotel {
  --rf-bg: #f4dec5;
  --rf-paper: #fff4e5;
  --rf-ink: #322015;
  --rf-muted: #7e6048;
  --rf-line: rgba(143, 92, 49, 0.2);
  --rf-green: #8a6040;
  --rf-green-deep: #51311e;
  --rf-wood: #c17b41;
  --rf-sand: #e1bc88;
  --rf-accent: #c95f32;
  --rf-accent-deep: #9d421f;
  --rf-accent-shadow: rgba(201, 95, 50, 0.25);
  --rf-card-ink: #332116;
  --rf-card-muted: #7b604b;
  --rf-card-accent: #9b5d3a;
  --rf-hero-bg:
    radial-gradient(circle at 76% 32%, rgba(201, 95, 50, 0.2), transparent 30%),
    linear-gradient(118deg, rgba(244, 222, 197, 0.98), rgba(255, 244, 229, 0.76)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.34), transparent 38%);
  --rf-intro-bg:
    linear-gradient(180deg, #fff4e5, #e9c69b),
    radial-gradient(circle at 10% 20%, rgba(190, 119, 65, 0.2), transparent 30%);
  --rf-options-bg: linear-gradient(180deg, #fff1de, #e8bd82);
  --rf-works-bg: #f6dfbf;
  --rf-reviews-bg:
    radial-gradient(circle at 78% 10%, rgba(201, 95, 50, 0.2), transparent 30%),
    #edc89b;
  --rf-process-bg:
    radial-gradient(circle at 10% 8%, rgba(201, 95, 50, 0.16), transparent 28%),
    linear-gradient(180deg, #f6dfbf, #e8bd82);
  --rf-faq-bg: #fff1de;
  --rf-request-bg:
    linear-gradient(135deg, rgba(81, 49, 30, 0.14), transparent),
    #edc18b;
  background:
    radial-gradient(circle at 10% 6%, rgba(201, 95, 50, 0.18), transparent 28%),
    radial-gradient(circle at 88% 12%, rgba(255, 255, 255, 0.34), transparent 30%),
    var(--rf-bg);
}

.rf-style-architect {
  --rf-bg: #e7eceb;
  --rf-paper: #fbfcf8;
  --rf-ink: #202827;
  --rf-muted: #5c6a68;
  --rf-line: rgba(66, 88, 86, 0.16);
  --rf-green: #55706d;
  --rf-green-deep: #304845;
  --rf-wood: #9f8565;
  --rf-sand: #d6dedb;
  --rf-accent: #55757a;
  --rf-accent-deep: #344f54;
  --rf-accent-shadow: rgba(52, 79, 84, 0.18);
  --rf-card-ink: #202827;
  --rf-card-muted: #5c6a68;
  --rf-card-accent: #55757a;
  --rf-hero-bg:
    linear-gradient(115deg, rgba(231, 236, 235, 0.98), rgba(251, 252, 248, 0.78)),
    linear-gradient(90deg, rgba(66, 88, 86, 0.085) 1px, transparent 1px),
    linear-gradient(0deg, rgba(66, 88, 86, 0.065) 1px, transparent 1px);
  --rf-intro-bg:
    linear-gradient(180deg, #fbfcf8, #dce5e2),
    radial-gradient(circle at 18% 22%, rgba(85, 117, 122, 0.12), transparent 30%);
  --rf-options-bg: linear-gradient(180deg, #fbfcf8, #d8e0dc);
  --rf-works-bg: #edf2ef;
  --rf-reviews-bg:
    linear-gradient(135deg, rgba(85, 112, 109, 0.12), transparent),
    #dde7e3;
  --rf-process-bg:
    linear-gradient(90deg, rgba(66, 88, 86, 0.075) 1px, transparent 1px),
    linear-gradient(0deg, rgba(66, 88, 86, 0.055) 1px, transparent 1px),
    #e3ebe8;
  --rf-faq-bg: #fbfcf8;
  --rf-request-bg:
    linear-gradient(135deg, rgba(48, 72, 69, 0.12), transparent),
    #dce5e1;
  background:
    linear-gradient(90deg, rgba(66, 88, 86, 0.06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(66, 88, 86, 0.045) 1px, transparent 1px),
    var(--rf-bg);
  background-size: 38px 38px, 38px 38px, auto;
}

.rf-style-architect .rf-hero {
  background-size: auto, 34px 34px, 34px 34px;
}

.rf-style-workshop {
  --rf-bg: #d2cdc1;
  --rf-paper: #f5ead7;
  --rf-ink: #241f1b;
  --rf-muted: #62574c;
  --rf-line: rgba(65, 58, 50, 0.24);
  --rf-green: #4b554f;
  --rf-green-deep: #252c29;
  --rf-wood: #9c5a33;
  --rf-sand: #c5a16f;
  --rf-accent: #b6532f;
  --rf-accent-deep: #80371f;
  --rf-accent-shadow: rgba(128, 55, 31, 0.24);
  --rf-card-ink: #241f1b;
  --rf-card-muted: #62574c;
  --rf-card-accent: #9c5a33;
  --rf-hero-bg:
    linear-gradient(115deg, rgba(210, 205, 193, 0.98), rgba(245, 234, 215, 0.68)),
    radial-gradient(circle at 72% 36%, rgba(75, 85, 79, 0.2), transparent 34%),
    repeating-linear-gradient(135deg, rgba(36, 31, 27, 0.08) 0 2px, transparent 2px 18px);
  --rf-intro-bg:
    linear-gradient(180deg, #f5ead7, #d0b895),
    radial-gradient(circle at 18% 18%, rgba(37, 44, 41, 0.14), transparent 30%);
  --rf-options-bg: linear-gradient(180deg, #f2e4ce, #caa879);
  --rf-works-bg: #dfcfb4;
  --rf-reviews-bg:
    radial-gradient(circle at 82% 12%, rgba(156, 90, 51, 0.24), transparent 30%),
    #d3bea0;
  --rf-process-bg:
    repeating-linear-gradient(135deg, rgba(36, 31, 27, 0.08) 0 2px, transparent 2px 18px),
    linear-gradient(180deg, #d2cdc1, #bca98c);
  --rf-faq-bg: #f5ead7;
  --rf-request-bg:
    linear-gradient(135deg, rgba(36, 31, 27, 0.16), transparent),
    #d4b68c;
  background:
    repeating-linear-gradient(90deg, rgba(36, 31, 27, 0.055) 0 1px, transparent 1px 22px),
    var(--rf-bg);
}

.rf-style-materials {
  --rf-bg: #ead5a7;
  --rf-paper: #fff4d8;
  --rf-ink: #342312;
  --rf-muted: #7a5a35;
  --rf-line: rgba(139, 92, 39, 0.2);
  --rf-green: #8a6232;
  --rf-green-deep: #533817;
  --rf-wood: #b97930;
  --rf-sand: #d7a853;
  --rf-accent: #b97826;
  --rf-accent-deep: #875419;
  --rf-accent-shadow: rgba(135, 84, 25, 0.25);
  --rf-card-ink: #342312;
  --rf-card-muted: #7a5a35;
  --rf-card-accent: #8a6232;
  --rf-hero-bg:
    radial-gradient(circle at 72% 28%, rgba(185, 120, 38, 0.24), transparent 28%),
    linear-gradient(115deg, rgba(234, 213, 167, 0.98), rgba(255, 244, 216, 0.78)),
    repeating-linear-gradient(45deg, rgba(139, 92, 39, 0.08) 0 10px, rgba(255, 255, 255, 0.1) 10px 20px);
  --rf-intro-bg:
    linear-gradient(180deg, #fff4d8, #e0bd75),
    radial-gradient(circle at 14% 22%, rgba(215, 168, 83, 0.22), transparent 34%);
  --rf-options-bg:
    radial-gradient(circle at 16% 16%, rgba(185, 120, 38, 0.18), transparent 28%),
    linear-gradient(180deg, #fff0c9, #d8ad5b);
  --rf-works-bg: #edd096;
  --rf-reviews-bg:
    radial-gradient(circle at 82% 10%, rgba(185, 120, 38, 0.2), transparent 30%),
    #deb86c;
  --rf-process-bg:
    repeating-linear-gradient(45deg, rgba(139, 92, 39, 0.08) 0 12px, transparent 12px 24px),
    linear-gradient(180deg, #ead5a7, #d7a853);
  --rf-faq-bg: #fff0c9;
  --rf-request-bg:
    linear-gradient(135deg, rgba(83, 56, 23, 0.16), transparent),
    #d9ad5d;
  background:
    radial-gradient(circle at 14% 8%, rgba(185, 120, 38, 0.18), transparent 28%),
    repeating-linear-gradient(45deg, rgba(139, 92, 39, 0.055) 0 12px, transparent 12px 24px),
    var(--rf-bg);
}

.rf-style-materials .rf-hero {
  background-size: auto, auto, 42px 42px;
}

.rf-style-premium {
  --rf-bg: #161412;
  --rf-paper: #faf2e4;
  --rf-ink: #f8ead4;
  --rf-muted: #d6c3a8;
  --rf-line: rgba(238, 212, 166, 0.2);
  --rf-green: #d6ad65;
  --rf-green-deep: #f3ce82;
  --rf-wood: #b8733d;
  --rf-sand: #473522;
  --rf-accent: #df8644;
  --rf-accent-deep: #9e542c;
  --rf-accent-shadow: rgba(223, 134, 68, 0.28);
  --rf-card-ink: #2e2a24;
  --rf-card-muted: #6d634f;
  --rf-card-accent: #a46830;
  --rf-hero-bg:
    radial-gradient(circle at 78% 32%, rgba(223, 134, 68, 0.2), transparent 30%),
    radial-gradient(circle at 20% 4%, rgba(243, 206, 130, 0.12), transparent 26%),
    linear-gradient(115deg, rgba(22, 20, 18, 0.98), rgba(42, 31, 24, 0.88));
  --rf-intro-bg:
    linear-gradient(180deg, #171514, #2b211b),
    radial-gradient(circle at 16% 20%, rgba(214, 173, 101, 0.14), transparent 28%);
  --rf-options-bg: linear-gradient(180deg, #191614, #2c211a);
  --rf-works-bg: #171514;
  --rf-reviews-bg:
    radial-gradient(circle at 82% 10%, rgba(223, 134, 68, 0.16), transparent 30%),
    #1d1916;
  --rf-process-bg:
    radial-gradient(circle at 12% 10%, rgba(214, 173, 101, 0.16), transparent 28%),
    linear-gradient(180deg, #171514, #2b211b);
  --rf-faq-bg: #171514;
  --rf-request-bg:
    radial-gradient(circle at 18% 10%, rgba(214, 173, 101, 0.16), transparent 30%),
    #261d18;
}

.rf-style-lamborghini {
  --rf-bg: #070a08;
  --rf-paper: #f3f8e8;
  --rf-ink: #f6ffe4;
  --rf-muted: #d5e4bd;
  --rf-line: rgba(202, 255, 0, 0.34);
  --rf-green: #caff00;
  --rf-green-deep: #89c400;
  --rf-wood: #63723a;
  --rf-sand: #202a17;
  --rf-accent: #caff00;
  --rf-accent-deep: #76a600;
  --rf-accent-shadow: rgba(202, 255, 0, 0.3);
  --rf-card-ink: #11160f;
  --rf-card-muted: #4f5f39;
  --rf-card-accent: #6e9f00;
  --rf-hero-bg:
    linear-gradient(118deg, transparent 0 57%, rgba(202, 255, 0, 0.3) 57% 59%, transparent 59%),
    radial-gradient(circle at 82% 34%, rgba(202, 255, 0, 0.22), transparent 28%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.055) 0 2px, transparent 2px 13px),
    linear-gradient(115deg, rgba(7, 10, 8, 0.99), rgba(18, 25, 17, 0.94) 62%, rgba(43, 57, 22, 0.9));
  --rf-intro-bg:
    linear-gradient(180deg, #070a08, #1b2414),
    radial-gradient(circle at 14% 18%, rgba(202, 255, 0, 0.18), transparent 30%);
  --rf-options-bg: linear-gradient(180deg, #090d0a, #202b18);
  --rf-works-bg: #080c08;
  --rf-reviews-bg:
    radial-gradient(circle at 82% 10%, rgba(202, 255, 0, 0.16), transparent 30%),
    #10170d;
  --rf-process-bg:
    linear-gradient(118deg, transparent 0 58%, rgba(202, 255, 0, 0.22) 58% 60%, transparent 60%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.055) 0 2px, transparent 2px 13px),
    linear-gradient(180deg, #070a08, #1b2414);
  --rf-faq-bg: #070a08;
  --rf-request-bg:
    radial-gradient(circle at 18% 10%, rgba(202, 255, 0, 0.18), transparent 30%),
    #151e11;
  background:
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0 2px, transparent 2px 14px),
    radial-gradient(circle at 84% 8%, rgba(202, 255, 0, 0.16), transparent 30%),
    var(--rf-bg);
}

.rf-style-lamborghini .rf-hero {
  background-size: auto, auto, 30px 30px, auto;
}

.rf-style-ferrari {
  --rf-bg: #350606;
  --rf-paper: #fff1df;
  --rf-ink: #fff3df;
  --rf-muted: #f0cdb3;
  --rf-line: rgba(255, 210, 128, 0.22);
  --rf-green: #ffd86a;
  --rf-green-deep: #ffe0a3;
  --rf-wood: #b78948;
  --rf-sand: #4b1410;
  --rf-accent: #e51d16;
  --rf-accent-deep: #9f0f0b;
  --rf-accent-shadow: rgba(229, 29, 22, 0.3);
  --rf-card-ink: #2d1713;
  --rf-card-muted: #765348;
  --rf-card-accent: #a30e0b;
  --rf-hero-bg:
    linear-gradient(118deg, transparent 0 60%, rgba(255, 216, 106, 0.22) 60% 62%, transparent 62%),
    radial-gradient(circle at 78% 34%, rgba(229, 29, 22, 0.26), transparent 30%),
    radial-gradient(circle at 18% 8%, rgba(255, 216, 106, 0.14), transparent 26%),
    linear-gradient(115deg, rgba(53, 6, 6, 0.98), rgba(111, 12, 9, 0.93));
  --rf-intro-bg:
    linear-gradient(180deg, #2a0808, #4b1210),
    radial-gradient(circle at 14% 18%, rgba(255, 210, 128, 0.14), transparent 30%);
  --rf-options-bg: linear-gradient(180deg, #350606, #6c0f0b);
  --rf-works-bg: #380707;
  --rf-reviews-bg:
    radial-gradient(circle at 82% 10%, rgba(224, 31, 31, 0.18), transparent 30%),
    #3b0d0b;
  --rf-process-bg:
    linear-gradient(118deg, transparent 0 60%, rgba(255, 216, 106, 0.18) 60% 62%, transparent 62%),
    linear-gradient(180deg, #350606, #6c0f0b);
  --rf-faq-bg: #350606;
  --rf-request-bg:
    radial-gradient(circle at 18% 10%, rgba(255, 210, 128, 0.14), transparent 30%),
    #4b1210;
  background:
    radial-gradient(circle at 84% 8%, rgba(229, 29, 22, 0.18), transparent 30%),
    radial-gradient(circle at 12% 4%, rgba(255, 216, 106, 0.12), transparent 28%),
    var(--rf-bg);
}

.rf-style-premium .rf-board-tile,
.rf-style-premium .rf-board-caption,
.rf-style-premium .rf-hero-facts span,
.rf-style-premium .rf-product-card,
.rf-style-premium .rf-work-card,
.rf-style-premium .rf-review-card,
.rf-style-premium .rf-form-card .lead-form,
.rf-style-premium .rf-soft-cards article,
.rf-style-premium .rf-process-card,
.rf-style-premium .rf-options-list article,
.rf-style-premium .rf-intro-stats article,
.rf-style-premium .rf-value-list article,
.rf-style-lamborghini .rf-board-tile,
.rf-style-lamborghini .rf-board-caption,
.rf-style-lamborghini .rf-hero-facts span,
.rf-style-lamborghini .rf-product-card,
.rf-style-lamborghini .rf-work-card,
.rf-style-lamborghini .rf-review-card,
.rf-style-lamborghini .rf-form-card .lead-form,
.rf-style-lamborghini .rf-soft-cards article,
.rf-style-lamborghini .rf-process-card,
.rf-style-lamborghini .rf-options-list article,
.rf-style-lamborghini .rf-intro-stats article,
.rf-style-lamborghini .rf-value-list article,
.rf-style-ferrari .rf-board-tile,
.rf-style-ferrari .rf-board-caption,
.rf-style-ferrari .rf-hero-facts span,
.rf-style-ferrari .rf-product-card,
.rf-style-ferrari .rf-work-card,
.rf-style-ferrari .rf-review-card,
.rf-style-ferrari .rf-form-card .lead-form,
.rf-style-ferrari .rf-soft-cards article,
.rf-style-ferrari .rf-process-card,
.rf-style-ferrari .rf-options-list article,
.rf-style-ferrari .rf-intro-stats article,
.rf-style-ferrari .rf-value-list article {
  color: var(--rf-card-ink);
}

.rf-style-premium .rf-board-tile h3,
.rf-style-premium .rf-board-tile strong,
.rf-style-premium .rf-board-caption strong,
.rf-style-premium .rf-hero-facts strong,
.rf-style-premium .rf-product-card h3,
.rf-style-premium .rf-work-card h3,
.rf-style-premium .rf-review-card h3,
.rf-style-lamborghini .rf-board-tile h3,
.rf-style-lamborghini .rf-board-tile strong,
.rf-style-lamborghini .rf-board-caption strong,
.rf-style-lamborghini .rf-hero-facts strong,
.rf-style-lamborghini .rf-product-card h3,
.rf-style-lamborghini .rf-work-card h3,
.rf-style-lamborghini .rf-review-card h3,
.rf-style-ferrari .rf-board-tile h3,
.rf-style-ferrari .rf-board-tile strong,
.rf-style-ferrari .rf-board-caption strong,
.rf-style-ferrari .rf-hero-facts strong,
.rf-style-ferrari .rf-product-card h3,
.rf-style-ferrari .rf-work-card h3,
.rf-style-ferrari .rf-review-card h3,
.rf-style-premium .rf-intro-stats strong,
.rf-style-premium .rf-value-list strong,
.rf-style-premium .rf-soft-cards strong,
.rf-style-premium .rf-options-list strong,
.rf-style-premium .rf-process-card strong,
.rf-style-lamborghini .rf-intro-stats strong,
.rf-style-lamborghini .rf-value-list strong,
.rf-style-lamborghini .rf-soft-cards strong,
.rf-style-lamborghini .rf-options-list strong,
.rf-style-lamborghini .rf-process-card strong,
.rf-style-ferrari .rf-intro-stats strong,
.rf-style-ferrari .rf-value-list strong,
.rf-style-ferrari .rf-soft-cards strong,
.rf-style-ferrari .rf-options-list strong,
.rf-style-ferrari .rf-process-card strong {
  color: var(--rf-card-ink);
}

.rf-style-premium .rf-board-tile p,
.rf-style-premium .rf-board-caption p,
.rf-style-premium .rf-product-card p,
.rf-style-premium .rf-work-card p,
.rf-style-premium .rf-review-card p,
.rf-style-lamborghini .rf-board-tile p,
.rf-style-lamborghini .rf-board-caption p,
.rf-style-lamborghini .rf-product-card p,
.rf-style-lamborghini .rf-work-card p,
.rf-style-lamborghini .rf-review-card p,
.rf-style-ferrari .rf-board-tile p,
.rf-style-ferrari .rf-board-caption p,
.rf-style-ferrari .rf-product-card p,
.rf-style-ferrari .rf-work-card p,
.rf-style-ferrari .rf-review-card p,
.rf-style-premium .rf-intro-stats span,
.rf-style-premium .rf-value-list p,
.rf-style-premium .rf-soft-cards span,
.rf-style-premium .rf-options-list span,
.rf-style-premium .rf-process-card p,
.rf-style-lamborghini .rf-intro-stats span,
.rf-style-lamborghini .rf-value-list p,
.rf-style-lamborghini .rf-soft-cards span,
.rf-style-lamborghini .rf-options-list span,
.rf-style-lamborghini .rf-process-card p,
.rf-style-ferrari .rf-intro-stats span,
.rf-style-ferrari .rf-value-list p,
.rf-style-ferrari .rf-soft-cards span,
.rf-style-ferrari .rf-options-list span,
.rf-style-ferrari .rf-process-card p {
  color: var(--rf-card-muted);
}

.rf-style-premium .rf-intro-stats strong,
.rf-style-premium .rf-process-card span,
.rf-style-premium .rf-product-copy > span,
.rf-style-premium .rf-work-card span,
.rf-style-lamborghini .rf-intro-stats strong,
.rf-style-lamborghini .rf-process-card span,
.rf-style-lamborghini .rf-product-copy > span,
.rf-style-lamborghini .rf-work-card span,
.rf-style-ferrari .rf-intro-stats strong,
.rf-style-ferrari .rf-process-card span,
.rf-style-ferrari .rf-product-copy > span,
.rf-style-ferrari .rf-work-card span {
  color: var(--rf-card-accent);
}

.rf-page {
  margin: 0 auto;
  max-width: 1240px;
  padding: 0 42px;
}

.rf-section {
  padding: 88px 0;
  position: relative;
}

.rf-kicker {
  color: var(--rf-green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  margin: 0 0 14px;
  text-transform: uppercase;
}

.rf-landing h1,
.rf-landing h2,
.rf-landing h3 {
  color: var(--rf-ink);
  letter-spacing: -0.025em;
  line-height: 1.08;
}

.rf-landing h1 {
  font-size: clamp(2.35rem, 4vw, 4.15rem);
  margin: 0;
}

.rf-landing h2 {
  font-size: clamp(1.95rem, 2.8vw, 3.25rem);
  margin: 0;
}

.rf-landing p {
  color: var(--rf-muted);
}

.rf-hero {
  background: var(--rf-hero-bg);
  min-height: 640px;
  padding: 74px 0 44px;
}

.rf-hero-grid,
.rf-intro-grid,
.rf-options-grid,
.rf-request-grid {
  align-items: center;
  display: grid;
  gap: 42px;
  grid-template-columns: minmax(0, 0.86fr) minmax(380px, 1.14fr);
}

.rf-hero-copy {
  position: relative;
  z-index: 2;
}

.rf-lead {
  font-size: 1.08rem;
  line-height: 1.68;
  max-width: 600px;
}

.rf-actions,
.rf-hero-facts,
.rf-section-head,
.rf-contact-links {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.rf-actions {
  margin-top: 24px;
}

.rf-button {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

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

.rf-button-primary {
  background: linear-gradient(135deg, var(--rf-accent), var(--rf-accent-deep));
  box-shadow: 0 16px 34px var(--rf-accent-shadow);
  color: #ffffff;
}

.rf-button-light {
  background: var(--rf-paper);
  border: 1px solid var(--rf-line);
  color: var(--rf-green-deep);
}

.rf-style-premium .rf-button-light {
  color: #5d3b1f;
}

.rf-style-lamborghini .rf-button-light {
  background: #eff8d8;
  border-color: rgba(202, 255, 0, 0.48);
  box-shadow: 0 14px 32px rgba(202, 255, 0, 0.12);
  color: #11160f;
}

.rf-style-lamborghini .rf-button-primary {
  color: #11160f;
}

.rf-style-lamborghini .rf-hero-facts span,
.rf-style-lamborghini .rf-board-tile,
.rf-style-lamborghini .rf-board-caption,
.rf-style-lamborghini .rf-work-card,
.rf-style-lamborghini .rf-review-card,
.rf-style-lamborghini .rf-product-card,
.rf-style-lamborghini .rf-process-card,
.rf-style-lamborghini .rf-options-list article,
.rf-style-lamborghini .rf-intro-stats article,
.rf-style-lamborghini .rf-value-list article {
  border-color: rgba(202, 255, 0, 0.32);
  box-shadow: 0 18px 54px rgba(202, 255, 0, 0.08), 0 20px 54px rgba(0, 0, 0, 0.16);
}

.rf-style-ferrari .rf-button-light {
  background: #fff0dc;
  border-color: rgba(255, 216, 106, 0.42);
  color: #9f0f0b;
}

.rf-style-ferrari .rf-hero-facts span,
.rf-style-ferrari .rf-board-tile,
.rf-style-ferrari .rf-board-caption,
.rf-style-ferrari .rf-work-card,
.rf-style-ferrari .rf-review-card,
.rf-style-ferrari .rf-product-card,
.rf-style-ferrari .rf-process-card,
.rf-style-ferrari .rf-options-list article,
.rf-style-ferrari .rf-intro-stats article,
.rf-style-ferrari .rf-value-list article {
  border-color: rgba(229, 29, 22, 0.2);
  box-shadow: 0 18px 54px rgba(229, 29, 22, 0.11), 0 18px 48px rgba(45, 16, 12, 0.14);
}

.rf-hero-facts {
  margin-top: 28px;
}

.rf-hero-facts span {
  background: rgba(255, 253, 247, 0.76);
  border: 1px solid var(--rf-line);
  border-radius: 18px;
  box-shadow: 0 14px 38px rgba(68, 55, 37, 0.07);
  color: var(--rf-muted);
  display: grid;
  gap: 4px;
  max-width: 178px;
  min-height: 82px;
  padding: 13px;
}

.rf-hero-facts strong {
  color: var(--rf-ink);
  display: block;
  font-size: 1.08rem;
}

.rf-project-board {
  isolation: isolate;
  min-height: 520px;
  position: relative;
}

.rf-project-board::before {
  background:
    linear-gradient(90deg, rgba(96, 120, 100, 0.075) 1px, transparent 1px),
    linear-gradient(rgba(96, 120, 100, 0.075) 1px, transparent 1px);
  background-size: 28px 28px;
  border: 1px solid rgba(96, 120, 100, 0.11);
  border-radius: 34px;
  content: "";
  inset: 22px 6px 48px;
  position: absolute;
}

.rf-style-lamborghini .rf-project-board::before {
  background:
    linear-gradient(90deg, rgba(202, 255, 0, 0.09) 1px, transparent 1px),
    linear-gradient(rgba(202, 255, 0, 0.08) 1px, transparent 1px);
  border-color: rgba(202, 255, 0, 0.18);
}

.rf-style-ferrari .rf-project-board::before {
  background:
    linear-gradient(90deg, rgba(255, 216, 106, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(255, 216, 106, 0.07) 1px, transparent 1px);
  border-color: rgba(255, 216, 106, 0.16);
}

.rf-sketch-line {
  background: rgba(96, 120, 100, 0.34);
  height: 1px;
  pointer-events: none;
  position: absolute;
  transform-origin: left center;
  z-index: 3;
}

.rf-sketch-line::after {
  border-right: 1px solid rgba(96, 120, 100, 0.45);
  border-top: 1px solid rgba(96, 120, 100, 0.45);
  content: "";
  height: 8px;
  position: absolute;
  right: 0;
  top: -4px;
  transform: rotate(45deg);
  width: 8px;
}

.rf-sketch-line-a {
  left: 16%;
  top: 17%;
  transform: rotate(-8deg);
  width: 34%;
}

.rf-sketch-line-b {
  right: 11%;
  top: 57%;
  transform: rotate(92deg);
  width: 18%;
}

.rf-sketch-line-c {
  bottom: 24%;
  left: 38%;
  transform: rotate(11deg);
  width: 28%;
}

.rf-board-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-template-rows: repeat(7, 58px);
  position: relative;
  z-index: 2;
}

.rf-board-tile {
  background: rgba(255, 253, 247, 0.94);
  border: 1px solid var(--rf-line);
  border-radius: 26px;
  box-shadow: 0 16px 46px rgba(68, 55, 37, 0.11);
  overflow: hidden;
  padding: 16px;
  position: relative;
}

.rf-board-photo {
  padding: 10px;
}

.rf-board-main-photo {
  grid-column: 1 / 5;
  grid-row: 1 / 5;
  z-index: 1;
}

.rf-board-blueprint {
  grid-column: 4 / 7;
  grid-row: 1 / 4;
  padding: 10px;
  z-index: 3;
}

.rf-board-material {
  grid-column: 1 / 3;
  grid-row: 5 / 8;
  z-index: 3;
}

.rf-board-icons {
  grid-column: 3 / 5;
  grid-row: 5 / 8;
  z-index: 4;
}

.rf-board-measure {
  grid-column: 5 / 7;
  grid-row: 4 / 8;
  z-index: 4;
}

.rf-board-photo img,
.rf-board-blueprint img,
.rf-product-image img,
.rf-news-image img,
.rf-work-image img,
.rf-options-photo img {
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.rf-board-blueprint img {
  filter: saturate(0.92) contrast(0.98);
}

.rf-board-main-photo img {
  border-radius: 18px;
  object-fit: cover;
}

.rf-board-photo span,
.rf-board-blueprint span,
.rf-board-measure small,
.rf-board-caption span {
  color: var(--rf-card-accent);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.rf-board-photo span {
  background: rgba(255, 253, 247, 0.92);
  border-radius: 999px;
  bottom: 14px;
  left: 14px;
  padding: 7px 10px;
  position: absolute;
}

.rf-board-blueprint span {
  background: rgba(255, 253, 247, 0.94);
  border-radius: 999px;
  bottom: 14px;
  left: 14px;
  padding: 7px 10px;
  position: absolute;
}

.rf-board-material strong,
.rf-board-icons strong,
.rf-board-measure strong,
.rf-board-caption strong {
  display: block;
  line-height: 1.15;
}

.rf-board-material p,
.rf-board-icons p,
.rf-board-measure p {
  font-size: 0.94rem;
  line-height: 1.45;
  margin: 6px 0 0;
}

.rf-material-strip {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 14px;
}

.rf-material-strip i {
  border: 1px solid rgba(84, 72, 55, 0.12);
  border-radius: 16px;
  display: block;
  height: 54px;
}

.rf-material-strip i:nth-child(1) {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent),
    #d7a66b;
}

.rf-material-strip i:nth-child(2) {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), transparent),
    #8b633f;
}

.rf-material-strip i:nth-child(3) {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.22), transparent),
    #3b3830;
}

.rf-furniture-icons {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
}

.rf-furniture-icon {
  background: #f4edcf;
  border: 1px solid rgba(84, 72, 55, 0.16);
  border-radius: 18px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.45);
  display: block;
  height: 56px;
  position: relative;
  width: 56px;
}

.rf-icon-capsule::before {
  border: 3px solid var(--rf-green-deep);
  border-radius: 8px;
  content: "";
  height: 30px;
  left: 12px;
  position: absolute;
  top: 12px;
  width: 32px;
}

.rf-icon-capsule::after {
  background: var(--rf-green-deep);
  content: "";
  height: 3px;
  left: 15px;
  position: absolute;
  top: 27px;
  width: 26px;
}

.rf-icon-light::before {
  background: var(--rf-green-deep);
  border-radius: 999px 999px 0 0;
  content: "";
  height: 24px;
  left: 25px;
  position: absolute;
  top: 11px;
  width: 6px;
}

.rf-icon-light::after {
  background: #e5ba63;
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(242, 200, 113, 0.72);
  content: "";
  height: 12px;
  left: 22px;
  position: absolute;
  top: 32px;
  width: 12px;
}

.rf-icon-storage::before {
  border: 3px solid var(--rf-green-deep);
  border-radius: 7px;
  content: "";
  height: 34px;
  left: 14px;
  position: absolute;
  top: 10px;
  width: 28px;
}

.rf-icon-storage::after {
  background:
    linear-gradient(var(--rf-green-deep), var(--rf-green-deep)) 0 0 / 100% 2px no-repeat,
    linear-gradient(var(--rf-green-deep), var(--rf-green-deep)) 0 12px / 100% 2px no-repeat,
    linear-gradient(var(--rf-green-deep), var(--rf-green-deep)) 0 24px / 100% 2px no-repeat;
  content: "";
  height: 28px;
  left: 20px;
  position: absolute;
  top: 17px;
  width: 16px;
}

.rf-board-measure div {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.rf-board-measure i {
  background: linear-gradient(90deg, var(--rf-green), transparent);
  display: block;
  height: 2px;
  position: relative;
}

.rf-board-measure i::after {
  background: var(--rf-green);
  border-radius: 50%;
  content: "";
  height: 8px;
  position: absolute;
  right: 0;
  top: -3px;
  width: 8px;
}

.rf-board-caption {
  background: rgba(255, 253, 247, 0.94);
  border: 1px solid var(--rf-line);
  border-radius: 24px;
  box-shadow: 0 18px 50px rgba(68, 55, 37, 0.13);
  margin: 12px 48px 0 auto;
  padding: 14px 18px;
  position: relative;
  width: min(420px, 78%);
  z-index: 2;
}

.rf-float-a {
  animation: rf-float-a 7s ease-in-out infinite;
}

.rf-float-b {
  animation: rf-float-b 8.5s ease-in-out infinite;
}

.rf-float-c {
  animation: rf-float-c 9s ease-in-out infinite;
}

.rf-float-d {
  animation: rf-float-d 7.8s ease-in-out infinite;
}

.rf-float-e {
  animation: rf-float-e 8.2s ease-in-out infinite;
}

.rf-float-f {
  animation: rf-float-f 9.5s ease-in-out infinite;
}

@keyframes rf-float-a {
  50% {
    transform: translate(8px, -10px) rotate(-1deg);
  }
}

@keyframes rf-float-b {
  50% {
    transform: translate(-8px, 9px) rotate(1.4deg);
  }
}

@keyframes rf-float-c {
  50% {
    transform: translate(10px, 7px) rotate(0.8deg);
  }
}

@keyframes rf-float-d {
  50% {
    transform: translate(-7px, -8px) rotate(-1.2deg);
  }
}

@keyframes rf-float-e {
  50% {
    transform: translate(6px, 10px) rotate(1deg);
  }
}

@keyframes rf-float-f {
  50% {
    transform: translate(-10px, -4px) rotate(-0.6deg);
  }
}

.rf-ticker {
  background: #e4d99f;
  border-bottom: 1px solid var(--rf-line);
  border-top: 1px solid var(--rf-line);
  overflow: hidden;
  padding: 14px 0;
}

.rf-ticker-track,
.rf-moving-track {
  display: flex;
  width: max-content;
}

.rf-ticker-track {
  animation: rf-marquee 38s linear infinite;
  gap: 12px;
}

.rf-ticker span {
  background: rgba(255, 253, 247, 0.72);
  border: 1px solid rgba(84, 72, 55, 0.12);
  border-radius: 999px;
  color: #65533d;
  font-weight: 900;
  padding: 9px 15px;
  white-space: nowrap;
}

@keyframes rf-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.rf-intro {
  background: var(--rf-intro-bg);
  padding: 74px 0 84px;
}

.rf-intro-showcase {
  align-items: center;
  display: grid;
  gap: 54px;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
}

.rf-intro-photo {
  border-radius: 34px;
  box-shadow: 0 26px 80px rgba(68, 55, 37, 0.16);
  min-height: 480px;
  overflow: hidden;
  position: relative;
}

.rf-intro-photo::before {
  background:
    linear-gradient(180deg, transparent 42%, rgba(46, 42, 36, 0.48)),
    radial-gradient(circle at 20% 10%, rgba(255, 255, 255, 0.34), transparent 34%);
  content: "";
  inset: 0;
  position: absolute;
  z-index: 1;
}

.rf-intro-photo img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  object-position: center;
  position: absolute;
  width: 100%;
}

.rf-intro-badge {
  background: rgba(255, 253, 247, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 20px;
  box-shadow: 0 18px 42px rgba(34, 31, 27, 0.16);
  display: grid;
  gap: 2px;
  padding: 12px 15px;
  position: absolute;
  z-index: 2;
}

.rf-intro-badge strong,
.rf-intro-badge span {
  display: block;
}

.rf-intro-badge strong {
  color: var(--rf-green-deep);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.rf-intro-badge span {
  color: var(--rf-muted);
  font-weight: 800;
}

.rf-intro-badge-top {
  right: 22px;
  top: 24px;
}

.rf-intro-badge-bottom {
  bottom: 24px;
  left: 22px;
}

.rf-intro-copy h2 {
  font-size: clamp(2rem, 3vw, 3.35rem);
  max-width: 760px;
}

.rf-intro-copy > p:not(.rf-kicker) {
  font-size: 1.08rem;
  line-height: 1.72;
  margin: 18px 0 0;
  max-width: 720px;
}

.rf-intro-stats {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 26px;
}

.rf-intro-stats article {
  background: rgba(255, 250, 240, 0.82);
  border: 1px solid var(--rf-line);
  border-radius: 24px;
  box-shadow: 0 14px 38px rgba(73, 61, 42, 0.07);
  padding: 16px;
}

.rf-intro-stats strong,
.rf-intro-stats span {
  display: block;
}

.rf-intro-stats strong {
  color: var(--rf-accent);
  font-size: clamp(1.7rem, 2.4vw, 2.4rem);
  letter-spacing: -0.04em;
  line-height: 1;
}

.rf-intro-stats span {
  color: var(--rf-muted);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.35;
  margin-top: 8px;
}

.rf-value-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.rf-value-list article {
  align-items: center;
  background: rgba(255, 253, 247, 0.82);
  border: 1px solid var(--rf-line);
  border-radius: 24px;
  box-shadow: 0 16px 42px rgba(68, 55, 37, 0.07);
  display: grid;
  gap: 16px;
  grid-template-columns: 58px 1fr;
  padding: 16px 18px;
}

.rf-value-list strong {
  display: block;
  margin-bottom: 4px;
}

.rf-value-list p {
  color: var(--rf-muted);
  line-height: 1.45;
  margin: 0;
}

.rf-value-icon {
  background: #f4edcf;
  border: 1px solid rgba(84, 72, 55, 0.14);
  border-radius: 18px;
  display: block;
  height: 58px;
  position: relative;
  width: 58px;
}

.rf-value-plan::before,
.rf-value-plan::after {
  content: "";
  position: absolute;
}

.rf-value-plan::before {
  border: 2px solid var(--rf-green-deep);
  border-radius: 8px;
  height: 28px;
  left: 14px;
  top: 14px;
  width: 30px;
}

.rf-value-plan::after {
  background:
    linear-gradient(var(--rf-green-deep), var(--rf-green-deep)) 0 0 / 100% 2px no-repeat,
    linear-gradient(90deg, var(--rf-green-deep), var(--rf-green-deep)) 50% 0 / 2px 100% no-repeat;
  height: 30px;
  left: 14px;
  opacity: 0.65;
  top: 14px;
  width: 30px;
}

.rf-value-comfort::before {
  background: var(--rf-green-deep);
  border-radius: 999px 999px 0 0;
  content: "";
  height: 25px;
  left: 26px;
  position: absolute;
  top: 12px;
  width: 6px;
}

.rf-value-comfort::after {
  background: #e5ba63;
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(229, 186, 99, 0.8);
  content: "";
  height: 13px;
  left: 23px;
  position: absolute;
  top: 35px;
  width: 13px;
}

.rf-value-service::before {
  border: 3px solid var(--rf-green-deep);
  border-radius: 9px;
  content: "";
  height: 32px;
  left: 15px;
  position: absolute;
  top: 13px;
  width: 28px;
}

.rf-value-service::after {
  background:
    linear-gradient(90deg, transparent 0 38%, var(--rf-green-deep) 38% 48%, transparent 48%),
    linear-gradient(var(--rf-green-deep), var(--rf-green-deep)) 50% 14px / 22px 2px no-repeat;
  content: "";
  height: 36px;
  left: 14px;
  opacity: 0.75;
  position: absolute;
  top: 12px;
  width: 32px;
}

.rf-soft-cards,
.rf-process-grid,
.rf-options-list {
  display: grid;
  gap: 16px;
}

.rf-soft-cards {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 26px;
}

.rf-soft-cards article,
.rf-process-card,
.rf-options-list article,
.rf-review-card,
.rf-form-card .lead-form {
  background: var(--rf-paper);
  border: 1px solid var(--rf-line);
  border-radius: 24px;
  box-shadow: 0 18px 48px rgba(68, 55, 37, 0.08);
}

.rf-soft-cards article,
.rf-options-list article {
  padding: 20px;
}

.rf-soft-cards strong,
.rf-soft-cards span,
.rf-options-list strong,
.rf-options-list span {
  display: block;
}

.rf-soft-cards strong,
.rf-options-list strong {
  margin-bottom: 8px;
}

.rf-soft-cards span,
.rf-options-list span {
  color: var(--rf-muted);
  line-height: 1.5;
}

.rf-section-head {
  justify-content: space-between;
  margin-bottom: 34px;
}

.rf-section-head h2 {
  max-width: 780px;
}

.rf-catalog-strip {
  padding-top: 74px;
}

.rf-catalog-head {
  align-items: end;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 760px) auto;
  margin-bottom: 30px;
}

.rf-catalog-head h2 {
  font-size: clamp(1.95rem, 3vw, 3.25rem);
  max-width: 740px;
}

.rf-catalog-head p:not(.rf-kicker) {
  color: var(--rf-muted);
  font-size: 1.02rem;
  line-height: 1.65;
  margin: 18px 0 0;
  max-width: 720px;
}

.rf-link {
  color: var(--rf-green-deep);
  font-weight: 900;
}

.rf-moving-window {
  margin: 0 auto;
  max-width: 1480px;
  overflow: hidden;
  padding: 0 0 12px;
}

.rf-works-window {
  cursor: grab;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  touch-action: pan-y;
  user-select: none;
}

.rf-works-window.is-dragging {
  cursor: grabbing;
}

.rf-works-window::-webkit-scrollbar {
  display: none;
}

.rf-moving-track {
  gap: 18px;
  padding: 0 18px;
}

.rf-moving-window:hover .rf-moving-track {
  animation-play-state: paused;
}

.rf-products-track {
  animation: rf-products 34s linear infinite;
}

.rf-news-track {
  animation: rf-products 38s linear infinite reverse;
}

.rf-works-track {
  animation: none;
}

.rf-reviews-track {
  animation: rf-products 42s linear infinite;
}

@keyframes rf-products {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.rf-product-card,
.rf-news-card,
.rf-work-card {
  background: var(--rf-paper);
  border: 1px solid var(--rf-line);
  border-radius: 28px;
  box-shadow: 0 20px 54px rgba(68, 55, 37, 0.09);
  flex: 0 0 330px;
  overflow: hidden;
}

.rf-product-image {
  background: linear-gradient(145deg, #fffaf0, #e6dba8);
  height: 230px;
  padding: 18px;
}

.rf-product-copy,
.rf-news-card > div:last-child,
.rf-work-card > div:last-child {
  padding: 20px;
}

.rf-product-copy > span,
.rf-news-card span,
.rf-work-card span {
  color: var(--rf-card-accent);
  display: block;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin-bottom: 9px;
  text-transform: uppercase;
}

.rf-product-copy h3,
.rf-news-card h3,
.rf-work-card h3 {
  font-size: 1.25rem;
  margin: 0 0 10px;
}

.rf-work-card p {
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

.rf-product-copy p {
  min-height: 78px;
}

.rf-product-copy div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.rf-product-copy strong,
.rf-product-copy em {
  background: #eadfab;
  border-radius: 999px;
  color: #5a503d;
  font-style: normal;
  font-weight: 900;
  padding: 8px 11px;
}

.rf-process {
  background: var(--rf-process-bg);
}

.rf-process-grid {
  grid-template-columns: repeat(4, 1fr);
}

.rf-process-card {
  min-height: 250px;
  padding: 24px;
  position: relative;
}

.rf-process-card:nth-child(even) {
  margin-top: 34px;
}

.rf-process-card span {
  color: var(--rf-wood);
  display: block;
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 40px;
}

.rf-process-card strong {
  display: block;
  font-size: 1.15rem;
}

.rf-options {
  background: var(--rf-options-bg);
}

.rf-options-photo {
  background: var(--rf-paper);
  border: 1px solid var(--rf-line);
  border-radius: 34px;
  box-shadow: 0 24px 70px rgba(68, 55, 37, 0.11);
  height: 440px;
  padding: 24px;
}

.rf-options-list {
  margin-top: 28px;
}

.rf-news,
.rf-works {
  background: var(--rf-works-bg);
}

.rf-news-card,
.rf-work-card {
  flex-basis: 340px;
}

.rf-news-image,
.rf-work-image {
  background: #f3eadc;
  height: 220px;
  padding: 14px;
}

.rf-work-image {
  border: 0;
  cursor: zoom-in;
  display: block;
  width: 100%;
}

.rf-works-window.is-dragging .rf-work-image {
  cursor: grabbing;
}

.rf-work-modal[hidden] {
  display: none !important;
}

.rf-work-modal {
  align-items: center;
  display: grid;
  inset: 0;
  justify-items: center;
  padding: 24px;
  position: fixed;
  z-index: 80;
}

.rf-work-modal-backdrop {
  background: rgba(35, 30, 24, 0.72);
  border: 0;
  cursor: zoom-out;
  inset: 0;
  position: absolute;
}

.rf-work-modal-card {
  background: var(--rf-paper);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 28px;
  box-shadow: 0 28px 90px rgba(20, 16, 12, 0.42);
  display: grid;
  gap: 14px;
  max-height: calc(100vh - 48px);
  max-width: min(980px, calc(100vw - 48px));
  overflow: auto;
  padding: 14px;
  position: relative;
  z-index: 1;
}

.rf-work-modal-card img {
  border-radius: 20px;
  max-height: 72vh;
  object-fit: contain;
  width: 100%;
}

.rf-work-modal-card div {
  padding: 0 6px 6px;
}

.rf-work-modal-card strong {
  display: block;
  font-size: 1.2rem;
}

.rf-work-modal-card p {
  margin: 6px 0 0;
}

.rf-work-modal-close {
  background: var(--ink);
  border: 0;
  border-radius: 999px;
  color: var(--surface);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  min-height: 38px;
  padding: 0 14px;
  position: absolute;
  right: 22px;
  top: 22px;
  z-index: 2;
}

body.is-work-modal-open {
  overflow: hidden;
}

.rf-reviews {
  background: var(--rf-reviews-bg);
}

.rf-review-card {
  flex: 0 0 340px;
  min-height: 278px;
  padding: 24px;
}

.rf-stars {
  color: #d7753e;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}

.rf-review-card h3 {
  font-size: 1.18rem;
  margin: 0 0 6px;
}

.rf-review-card strong,
.rf-review-card small {
  color: var(--rf-muted);
  display: block;
  font-size: 0.9rem;
}

.rf-review-card p {
  line-height: 1.65;
}

.rf-faq {
  background: var(--rf-faq-bg);
}

.rf-faq details {
  background: var(--rf-paper);
  border-color: var(--rf-line);
  color: var(--rf-card-ink);
}

.rf-faq summary {
  color: var(--rf-card-ink);
}

.rf-faq details p {
  color: var(--rf-card-muted);
}

.rf-request {
  background: var(--rf-request-bg);
}

.rf-contact-links {
  margin-top: 24px;
}

.rf-contact-links a {
  background: var(--rf-paper);
  border: 1px solid var(--rf-line);
  border-radius: 999px;
  color: var(--rf-green-deep);
  font-weight: 900;
  padding: 10px 14px;
}

.rf-contact-meta {
  color: var(--rf-muted);
  display: grid;
  gap: 6px;
  margin-top: 18px;
}

.rf-form-card .lead-form {
  padding: 26px;
}

.rf-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.85s ease, transform 0.85s ease;
  transition-delay: var(--delay, 0s);
}

.rf-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .rf-hero-grid,
  .rf-intro-showcase,
  .rf-options-grid,
  .rf-request-grid {
    grid-template-columns: 1fr;
  }

  .rf-intro-showcase {
    gap: 34px;
  }

  .rf-hero {
    min-height: auto;
  }

  .rf-project-board,
  .rf-main-photo,
  .rf-options-photo {
    min-height: 0;
    height: auto;
  }

  .rf-project-board,
  .rf-options-photo {
    aspect-ratio: 4 / 3;
  }

  .rf-board-grid {
    grid-template-rows: repeat(7, minmax(54px, 1fr));
    height: 100%;
  }

  .rf-soft-cards,
  .rf-process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .rf-process-card:nth-child(even) {
    margin-top: 0;
  }

  .rf-catalog-head {
    align-items: start;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .rf-page {
    padding: 0 18px;
  }

  .rf-section {
    padding: 62px 0;
  }

  .rf-hero {
    padding-top: 74px;
  }

  .rf-landing h1 {
    font-size: 2.22rem;
  }

  .rf-landing h2 {
    font-size: 2rem;
  }

  .rf-intro-photo {
    min-height: 360px;
  }

  .rf-intro-badge {
    max-width: 210px;
  }

  .rf-value-list article {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .rf-intro-stats {
    grid-template-columns: 1fr;
  }

  .rf-catalog-head h2 {
    font-size: 2rem;
  }

  .rf-hero-facts,
  .rf-soft-cards,
  .rf-process-grid {
    grid-template-columns: 1fr;
  }

  .rf-project-board {
    aspect-ratio: auto;
    min-height: 760px;
  }

  .rf-project-board::before {
    inset: 12px 0 70px;
  }

  .rf-sketch-line {
    display: none;
  }

  .rf-board-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .rf-board-main-photo,
  .rf-board-blueprint,
  .rf-board-material,
  .rf-board-icons,
  .rf-board-measure {
    grid-column: auto;
    grid-row: auto;
    min-height: 160px;
  }

  .rf-board-main-photo,
  .rf-board-blueprint {
    grid-column: 1 / -1;
    min-height: 220px;
  }

  .rf-board-caption {
    margin-top: 12px;
    position: static;
    transform: none;
    width: auto;
  }

  .rf-product-card,
  .rf-news-card,
  .rf-work-card,
  .rf-review-card {
    flex-basis: 82vw;
  }
}

@media (prefers-reduced-motion: reduce) {
  .rf-ticker-track,
  .rf-products-track,
  .rf-news-track,
  .rf-works-track,
  .rf-reviews-track {
    animation: none !important;
  }

  .rf-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .rf-float-a,
  .rf-float-b,
  .rf-float-c,
  .rf-float-d,
  .rf-float-e,
  .rf-float-f {
    animation: none !important;
  }
}
