/* ============================================================
   3. HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh; max-height: 1010px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  /* background: url('https://www.figma.com/api/mcp/asset/c6f82c79-a752-474d-8bea-f2341d3a03d5') center/cover no-repeat; */
  background-repeat: no-repeat;
  background-position: center/cover;
}
.hero__overlay { position: absolute; inset: 0; background: rgba(0,0,0,.38); }
.hero__content {
  position: relative; text-align: center; color: var(--white);
  padding: 0 40px; max-width: 1100px;
}
.hero__content h1 {
  font-family: var(--font-head); font-size: 61px; font-weight: 400;
  line-height: 1.08; margin-bottom: 22px;
}
.hero__subtitle {
  font-size: 27px; font-weight: 600;
  letter-spacing: 2.7px; text-transform: uppercase; margin-bottom: 60px;
}
.hero__buttons { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }

.hero__arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(28,28,28,.6); color: var(--cream);
  width: 60px; height: 110px;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; cursor: pointer; z-index: 10;
}
.hero__arrow--prev { left: 0; }
.hero__arrow--next { right: 0; }

/* ============================================================
   4. SERVICES (3-column)
   ============================================================ */
.services { padding: 90px 0; background: var(--white); }
.services__grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 50px;
}
.service-card { text-align: center; }
.service-card__img {
  width: 100%; height: 280px; object-fit: cover; display: block;
}
.service-card__box {
  background: var(--white); padding: 30px 20px;
  box-shadow: 0 2px 20px rgba(0,0,0,.08);
  margin: 0 10px;
}
.service-card__title {
  font-family: var(--font-head); font-size: 19px; color: var(--dark);
  margin-bottom: 16px; line-height: 1.3;
}
.service-card__desc {
  font-size: 13.8px; font-weight: 300; line-height: 1.9;
  color: var(--charcoal); margin-bottom: 28px;
}
.service-card__link {
  display: block; font-size: 12px; font-weight: 600;
  letter-spacing: 1.2px; text-transform: uppercase;
  color: var(--dark); margin-bottom: 16px;
}
.service-card__link:hover { color: var(--rust); }

/* ============================================================
   5. VIDEO SECTION
   ============================================================ */
.video-section {
  position: relative; height: 600px;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.video-section__bg {
  position: absolute; inset: 0;
  background-repeat: no-repeat;
  background-position: center/cover;
}
.video-section__overlay { position: absolute; inset: 0; background: rgba(20,15,10,.65); }
.video-section__content { position: relative; text-align: center; color: var(--white); }
.video-section__content h2 {
  font-family: var(--font-head); font-size: 53px; font-weight: 400; margin-bottom: 20px;
}
.video-section__content p {
  font-size: 17px; font-weight: 600; text-transform: uppercase;
  line-height: 1.6; margin-bottom: 40px;
}
.play-btn {
  width: 72px; height: 72px; border-radius: 50%;
  border: 3px solid var(--cream); color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; margin: 0 auto; cursor: pointer; padding-left: 5px;
}

/* ============================================================
   6. FURNITURE PRODUCTS (2 rows × 3)
   ============================================================ */
.products { padding: 80px 0; background: var(--white); }
.products__heading {
  font-family: var(--font-head); font-size: 53px; font-weight: 400;
  text-align: center; margin-bottom: 60px; color: var(--dark);
}
.products__grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 30px; margin-bottom: 30px;
}
.product-card__img {
  width: 100%; height: 305px; object-fit: cover; display: block;
}
.product-card__info { padding: 18px 0 10px; }
.product-card__name {
  font-family: var(--font-prod); font-size: 25px; color: var(--dark); margin-bottom: 5px;
}
.product-card__price {
  font-size: 12px; font-weight: 600; letter-spacing: 1.3px;
  text-transform: uppercase; color: var(--mid-gray); margin-bottom: 2px;
}
.product-card__price span { color: var(--dark); font-size: 17px; letter-spacing: 1.8px; font-weight: 600; }
.product-card__cta {
  display: block; font-size: 13px; font-weight: 600;
  letter-spacing: 1.3px; text-transform: uppercase;
  color: var(--rust); margin-top: 10px;
}
.products__footer { text-align: center; margin-top: 40px; }

/* ============================================================
   7. WOOD PRODUCTS
   ============================================================ */
.wood-products { padding: 80px 0; background: var(--light-bg); }
.wood-products .wrap {
  display: grid; grid-template-columns: 340px 1fr; gap: 80px; align-items: start;
}
.wood-products__text { padding-top: 20px; text-align: center; }
.wood-products__text h2 {
  font-family: var(--font-head); font-size: 33px; color: var(--charcoal); margin-bottom: 16px;
}
.wood-products__text p {
  font-size: 13.8px; font-weight: 300; line-height: 1.9;
  color: var(--charcoal); margin-bottom: 30px;
}
.wood-products__cards { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.wood-card__img { width: 100%; height: 305px; object-fit: cover; display: block; }
.wood-card__name {
  font-family: var(--font-prod); font-size: 25px; color: var(--dark);
  margin: 16px 0 4px;
}
.wood-card__price {
  font-size: 12px; font-weight: 600; letter-spacing: 1.3px;
  text-transform: uppercase; color: var(--mid-gray);
}
.wood-card__price span { color: var(--dark); font-size: 17px; letter-spacing: 1.8px; }
.wood-card__cta {
  display: block; font-size: 13px; font-weight: 600;
  letter-spacing: 1.3px; text-transform: uppercase;
  color: var(--rust); margin-top: 10px;
}

/* ============================================================
   8. CTA SECTION
   ============================================================ */
.cta {
  position: relative; min-height: 580px;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.cta__bg {
  position: absolute; inset: 0;
  background-repeat: no-repeat;
  background-position: center/cover;
}
.cta__overlay { position: absolute; inset: 0; background: rgba(20,12,5,.42); }
.cta__content { position: relative; text-align: center; color: var(--white); padding: 0 40px; }
.cta__content h2 {
  font-family: var(--font-head); font-size: 64px; font-weight: 400; margin-bottom: 24px;
}
.cta__content p {
  font-size: 14px; font-weight: 600; text-transform: uppercase;
  letter-spacing: .5px; margin-bottom: 50px;
}

/* ============================================================
   9. PROCESS SECTION
   ============================================================ */
.process {
  position: relative; padding: 100px 0; overflow: hidden;
  background: url('https://www.figma.com/api/mcp/asset/e16db404-80b7-4bce-bf02-7510257ab79b') center/cover no-repeat;
}
.process__overlay { position: absolute; inset: 0; background: rgba(55,35,15,.72); }
.process .wrap { position: relative; }
.process h2 {
  font-family: var(--font-head); font-size: 53px; font-weight: 400;
  color: var(--white); text-align: center; margin-bottom: 70px;
}
.process__steps {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 60px; margin-bottom: 60px;
}
.process-step { text-align: center; }
.process-step__icon { height: 55px; width: auto; margin: 0 auto 22px; }
.process-step h3 {
  font-family: var(--font-head); font-size: 33px; font-weight: 400;
  color: var(--cream); margin-bottom: 20px;
}
.process-step p {
  font-size: 13.8px; font-weight: 300; line-height: 1.95; color: var(--white);
}
.process__footer { text-align: center; }

/* ============================================================
   10. FULL ROOM DESIGN & BUILD
   ============================================================ */
.works {
  background: url('https://www.figma.com/api/mcp/asset/746f2218-685a-48c1-a2c4-7974249aa17f') center/cover no-repeat;
  padding: 100px 0;
}
.works h2 {
  font-family: var(--font-head); font-size: 53px; font-weight: 400;
  color: var(--dark); text-align: center; margin-bottom: 60px;
}
.works__grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-bottom: 24px;
}
.work-item__img { width: 100%; height: 240px; object-fit: cover; display: block; }
.work-item__name {
  font-family: var(--font-head); font-size: 17px; text-transform: uppercase;
  letter-spacing: .07px; color: var(--dark); margin-top: 16px;
}
.work-item__loc { font-size: 13px; color: var(--muted); letter-spacing: .1px; }
.works__footer { text-align: center; margin-top: 50px; }

/* ============================================================
   11. REVIEWS
   ============================================================ */
.reviews { padding: 80px 0; background: var(--white); }
.reviews .wrap { text-align: center; }
.reviews img { max-width: 1000px; margin: 0 auto; width: 100%; }

/* ============================================================
   12. ABOUT / MEET MICHAEL
   ============================================================ */
.about { padding: 100px 0; background: var(--white); }
.about .wrap {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.about__text h2 {
  font-family: var(--font-head); font-size: 38px; font-weight: 400;
  color: var(--charcoal); margin-bottom: 28px;
}
.about__text p {
  font-size: 14px; font-weight: 300; line-height: 1.95;
  color: var(--charcoal); margin-bottom: 16px;
}
.about__text .accent {
  font-size: 16px; font-weight: 600; color: var(--rust);
  line-height: 1.9; margin-bottom: 36px;
}
.about__img-wrap { position: relative; }
.about__img-wrap img.main { width: 100%; height: 570px; object-fit: cover; }
.about__img-wrap img.logo-badge {
  position: absolute; bottom: -20px; right: 20px;
  width: 220px; background: var(--white); padding: 12px;
}