* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #faf7f1;
  color: #231c15;
}

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

.top-bar {
  background: #2b2118;
  color: white;
  text-align: center;
  padding: 10px 16px;
  font-size: 14px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid #eadfce;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 48px;
}

.logo {
  font-size: 30px;
  font-weight: 900;
  letter-spacing: -1.5px;
}

.nav {
  display: flex;
  gap: 28px;
  font-size: 15px;
  font-weight: 700;
}

.nav a:hover {
  color: #8a5a37;
}

.header-button {
  background: #2b2118;
  color: white;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 800;
}

.hero {
  min-height: 680px;
  display: flex;
  align-items: center;
  padding: 90px 48px;
  color: white;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.18)),
    radial-gradient(circle at 75% 35%, #c99b72 0, transparent 28%),
    linear-gradient(135deg, #2b2118, #8a5a37 55%, #d8b58f);
}

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

.eyebrow {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 13px;
  font-weight: 900;
}

h1 {
  margin: 0 0 24px;
  font-size: clamp(48px, 7vw, 88px);
  line-height: 0.94;
  letter-spacing: -4px;
}

h2 {
  margin: 0 0 16px;
  font-size: clamp(34px, 4.5vw, 58px);
  line-height: 1;
  letter-spacing: -2.5px;
}

h3 {
  margin: 0 0 10px;
  font-size: 24px;
  letter-spacing: -0.6px;
}

p {
  line-height: 1.65;
}

.hero-content p {
  max-width: 620px;
  font-size: 18px;
}

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

.button {
  display: inline-block;
  background: #2b2118;
  color: white;
  padding: 15px 25px;
  border-radius: 999px;
  font-weight: 900;
  border: 2px solid #2b2118;
}

.button.secondary {
  background: transparent;
  color: white;
  border-color: white;
}

.button.light {
  background: white;
  color: #2b2118;
  border-color: white;
}

.section {
  padding: 88px 48px;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 36px;
}

.section-heading p {
  font-size: 17px;
  color: #625142;
}

.intro-section {
  background: white;
}

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

.benefit-card {
  background: #faf7f1;
  border: 1px solid #eadfce;
  padding: 24px;
  border-radius: 22px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.benefit-card span {
  background: #8a5a37;
  color: white;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  font-weight: 900;
}

.benefit-card p {
  margin: 0;
  font-weight: 700;
}

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

.space-card,
.collection-card {
  background: white;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.08);
}

.card-content {
  padding: 24px;
}

.card-content p {
  color: #6c5a49;
}

.card-content a {
  color: #8a5a37;
  font-weight: 900;
}

.visual {
  height: 250px;
  background-size: cover;
  background-position: center;
}

.visual.tall {
  height: 360px;
}

.hotel {
  background:
    linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.18)),
    linear-gradient(135deg, #b98b65, #efe0ce);
}

.residential {
  background:
    linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.15)),
    linear-gradient(135deg, #d8b58f, #f3eadc);
}

.office {
  background:
    linear-gradient(rgba(0,0,0,0.08), rgba(0,0,0,0.18)),
    linear-gradient(135deg, #5f554c, #d6c5b2);
}

.restaurant {
  background:
    linear-gradient(rgba(0,0,0,0.08), rgba(0,0,0,0.18)),
    linear-gradient(135deg, #8a5a37, #e3c19c);
}

.sofa {
  background:
    linear-gradient(rgba(0,0,0,0.08), rgba(0,0,0,0.16)),
    linear-gradient(135deg, #8b725d, #ead8c3);
}

.bedroom {
  background:
    linear-gradient(rgba(0,0,0,0.08), rgba(0,0,0,0.16)),
    linear-gradient(135deg, #aa7f5c, #f0dfca);
}

.dining {
  background:
    linear-gradient(rgba(0,0,0,0.08), rgba(0,0,0,0.16)),
    linear-gradient(135deg, #6f4d34, #d8b58f);
}

.quote-banner {
  margin: 20px 48px;
  padding: 58px;
  border-radius: 34px;
  background: #8a5a37;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.quote-banner div {
  max-width: 780px;
}

.quote-banner p {
  max-width: 680px;
}

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

.collection-label {
  margin: 0 0 8px;
  color: #8a5a37;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.projects-section {
  background: white;
}

.project-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: stretch;
}

.project-large {
  min-height: 470px;
  border-radius: 30px;
}

.project-one {
  background:
    linear-gradient(rgba(0,0,0,0.08), rgba(0,0,0,0.12)),
    linear-gradient(135deg, #b98b65, #f3eadc 60%, #6f4d34);
}

.project-text {
  background: #faf7f1;
  border-radius: 30px;
  padding: 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-section {
  margin: 20px 48px 88px;
  padding: 76px 36px;
  border-radius: 34px;
  text-align: center;
  background: #efe3d2;
}

.contact-section p {
  max-width: 660px;
  margin-left: auto;
  margin-right: auto;
}

.footer {
  background: #2b2118;
  color: white;
  padding: 54px 48px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 36px;
}

.footer p {
  color: #e7d9c8;
}

.footer a {
  display: block;
  color: #e7d9c8;
  margin-top: 8px;
}

.footer-title {
  font-weight: 900;
  color: white !important;
}

@media (max-width: 980px) {
  .site-header {
    padding: 18px 24px;
    flex-direction: column;
    gap: 16px;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero,
  .section {
    padding: 64px 24px;
  }

  .space-grid,
  .collection-grid,
  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .quote-banner {
    margin: 20px 24px;
    padding: 38px;
    flex-direction: column;
    align-items: flex-start;
  }

  .project-layout {
    grid-template-columns: 1fr;
  }

  .contact-section {
    margin: 20px 24px 70px;
  }

  .footer {
    grid-template-columns: 1fr;
    padding: 46px 24px;
  }
}