:root {
  --ink: #151719;
  --muted: #646b72;
  --steel: #2f363d;
  --line: #d7d2ca;
  --paper: #f4f1eb;
  --white: #ffffff;
  --wood: #9a5a2d;
  --amber: #d8892e;
  --signal: #b93f2d;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
}

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

.topbar {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(20px, 4vw, 56px);
  color: var(--white);
  background: rgba(12, 14, 16, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 2px solid var(--amber);
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: #d2d5d8;
  margin-top: 2px;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 30px);
  font-size: 0.94rem;
}

.nav a {
  color: #eef0f2;
}

.hero {
  position: relative;
  min-height: 94vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #101214;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12, 14, 16, 0.9), rgba(12, 14, 16, 0.58) 42%, rgba(12, 14, 16, 0.1)),
    linear-gradient(0deg, rgba(12, 14, 16, 0.4), rgba(12, 14, 16, 0));
}

.hero-content {
  position: relative;
  width: min(760px, calc(100% - 40px));
  margin-left: clamp(20px, 7vw, 96px);
  padding-top: 72px;
  color: var(--white);
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--amber);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 0.78rem;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 18px;
  font-size: clamp(2.4rem, 6vw, 5.7rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1.04;
  letter-spacing: 0;
  margin-bottom: 18px;
}

h3 {
  font-size: 1.14rem;
  margin-bottom: 10px;
}

.lead {
  max-width: 610px;
  color: #e2e5e8;
  font-size: clamp(1rem, 1.8vw, 1.24rem);
  line-height: 1.55;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  font-weight: 800;
}

.button.primary {
  background: var(--amber);
  color: #17120d;
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

.button.outline {
  color: var(--ink);
  border-color: #b7b0a7;
  background: transparent;
}

.button.full {
  width: 100%;
}

.section {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: 86px 0;
}

.intro {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(280px, 1fr);
  gap: 56px;
  align-items: start;
}

.intro > p,
.split p,
.contact p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 1.05rem;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  padding-top: 0;
}

.stats div {
  min-height: 150px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
}

.stats strong {
  display: block;
  color: var(--signal);
  font-size: 2.1rem;
  margin-bottom: 18px;
}

.stats span {
  font-weight: 800;
}

.brand-panel {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(280px, 0.75fr);
  gap: 42px;
  align-items: center;
  padding-top: 0;
}

.brand-panel img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid #24282d;
  background: #0d0e10;
}

.brand-panel p:not(.section-kicker) {
  color: var(--muted);
  line-height: 1.7;
  font-size: 1.05rem;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

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

.service-card {
  min-height: 230px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
}

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

.icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 26px;
  color: var(--white);
  background: var(--steel);
}

.band {
  background: var(--ink);
  color: var(--white);
}

.band-inner {
  padding: 88px 0;
}

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

.timeline div {
  padding: 24px;
  min-height: 190px;
  background: #202428;
  border: 1px solid #30363d;
}

.timeline span {
  display: block;
  margin-bottom: 16px;
  color: var(--amber);
  font-weight: 800;
}

.timeline p {
  color: #cbd0d5;
  line-height: 1.6;
}

.split {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1fr);
  gap: 56px;
  align-items: center;
}

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

.check-list li {
  padding-left: 26px;
  position: relative;
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 10px;
  height: 10px;
  background: var(--signal);
}

.furniture-preview {
  position: relative;
  min-height: 460px;
  border: 16px solid #151719;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.13), transparent 12%, transparent 88%, rgba(0, 0, 0, 0.13)),
    linear-gradient(#956031, #b87438);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.16);
}

.furniture-preview::before,
.furniture-preview::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #151719;
}

.furniture-preview::before {
  left: 50%;
}

.furniture-preview::after {
  display: none;
}

.shelf {
  position: absolute;
  left: 0;
  right: 0;
  height: 16px;
  background: #151719;
}

.shelf-top {
  top: 32%;
}

.shelf-mid {
  top: 61%;
}

.cabinet-doors {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 32%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 14px solid #151719;
}

.cabinet-doors span {
  border-right: 2px solid #2b1e16;
}

.contact {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(320px, 1fr);
  gap: 56px;
  align-items: start;
}

.contact-info {
  display: grid;
  gap: 8px;
  margin-top: 28px;
  padding: 22px;
  font-style: normal;
  background: var(--white);
  border-left: 4px solid var(--amber);
}

.contact-info strong {
  color: var(--ink);
}

.contact-info span,
.contact-info a {
  color: var(--muted);
  line-height: 1.45;
}

.contact-info a {
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
}

label {
  display: grid;
  gap: 8px;
  color: var(--steel);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #c8c3bc;
  background: #fbfaf7;
  color: var(--ink);
  font: inherit;
  padding: 13px 14px;
}

textarea {
  resize: vertical;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(20px, 4vw, 56px);
  color: #cbd0d5;
  background: #101214;
  border-top: 1px solid #2c3136;
}

.footer a {
  color: var(--amber);
  font-weight: 800;
}

@media (max-width: 860px) {
  .topbar {
    position: absolute;
    align-items: flex-start;
  }

  .nav {
    display: none;
  }

  .hero {
    min-height: 820px;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(12, 14, 16, 0.88), rgba(12, 14, 16, 0.55));
  }

  .intro,
  .split,
  .contact,
  .brand-panel {
    grid-template-columns: 1fr;
  }

  .stats,
  .service-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .footer {
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .hero-content {
    margin-left: 20px;
  }

  .button {
    width: 100%;
  }

  .section {
    padding: 64px 0;
  }

  .furniture-preview {
    min-height: 360px;
    border-width: 12px;
  }
}
