﻿.video-hero {
  position: relative;
  min-height: calc(100vh - 160px);
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
}

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

.video-hero-media-youtube {
  top: 50%;
  left: 50%;
  width: 177.78vh;
  min-width: 100%;
  height: 56.25vw;
  min-height: 100%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.video-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(20, 12, 35, 0.78) 10%, rgba(20, 12, 35, 0.45) 50%, rgba(20, 12, 35, 0.28) 100%);
}

.video-hero-content {
  position: relative;
  z-index: 2;
  max-width: 920px;
  padding: 6vw;
  color: #fff;
}

.video-hero-kicker {
  margin: 0 0 10px;
  font-size: clamp(0.9rem, 1.5vw, 1.15rem);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.9;
}

.video-hero-title {
  margin: 0;
  font-size: clamp(2rem, 5.4vw, 4.2rem);
  line-height: 1.04;
}

.video-hero-text {
  margin: 18px 0 0;
  max-width: 700px;
  font-size: clamp(1rem, 2vw, 1.45rem);
  line-height: 1.45;
}

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

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 700;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero-btn:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.hero-btn-primary {
  background: #f9c340;
  color: #2e1d00;
}

.hero-btn-secondary {
  border: 2px solid rgba(255, 255, 255, 0.7);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.construction-section {
  background: #7f93b3;
  padding: 54px 20px 72px;
}

.construction-wrap {
  max-width: 1380px;
  margin: 0 auto;
}

.construction-heading {
  margin: 0;
  text-align: center;
  color: #fff;
  font-size: clamp(2rem, 4.2vw, 4.5rem);
  font-weight: 600;
  
  
}

.construction-grid {
  margin-top: 44px;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 34px;
  align-items: center;
}

.construction-copy h3 {
  margin: 0;
  color: white;
  font-size: 25px;
  line-height: 1.25;
  text-align: center;
}

.construction-copy p {
  margin: 26px 0 0;
  color: #fff;
  font-size: 18px;
  line-height: 1.45;
  font-weight: 700;
  max-width: 780px;
}

.construction-btn {
  margin-top: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  padding: 13px 28px;
  border-radius: 999px;
  text-decoration: none;
  background: #58d46f;
  color: #fff;
  font-size: clamp(1.05rem, 1.4vw, 1.7rem);
  font-weight: 700;
}

.construction-media {
  aspect-ratio: 16 / 9;
  width: 100%;
  max-width: 860px;
  justify-self: end;
  overflow: hidden;
  border: 4px solid rgba(255, 255, 255, 0.65);
}

.construction-media video {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  object-fit: cover;
}

.living-section {
  background: white;
  padding: clamp(56px, 6vw, 92px) 20px;
}

.living-wrap {
  max-width: 1440px;
  margin: 0 auto;
}

.living-grid {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(360px, 1.12fr);
  gap: clamp(26px, 3vw, 54px);
  align-items: stretch;
}

.living-media {
  margin: 0;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 18px 36px rgba(18, 23, 34, 0.16);
}

.living-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.living-copy {
  background: #f7f7f7;
  border: 1px solid #dddddd;
  border-radius: 10px;
  padding: clamp(24px, 3vw, 48px);
  display: flex;
  flex-direction: column;
}

.living-copy h2 {
  margin: 0;
  color: #111;
  font-size: clamp(1.95rem, 3vw, 3.55rem);
  line-height: 1.16;
  font-weight: 800;
  letter-spacing: -0.01em;
  max-width: 780px;
}

.living-copy p {
  margin: 20px 0 0;
  color: #1f1f1f;
  font-size: clamp(1rem, 1.15vw, 1.36rem);
  line-height: 1.7;
  max-width: 760px;
}

.living-btn {
  margin-top: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 162px;
  padding: 13px 28px;
  border-radius: 999px;
  text-decoration: none;
  background: #58d46f;
  color: #fff;
  font-size: clamp(1rem, 1.05vw, 1.22rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.living-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(56, 168, 91, 0.25);
  background: #49c861;
}

.layout-plan-section {
  background: #fff;
  padding: clamp(56px, 6vw, 92px) 20px;
}

.layout-plan-wrap {
  max-width: 500px;
  margin: 0 auto;
}

.layout-plan-divider {
  height: 2px;
  background: #c99a17;
  width: min(100%, 1180px);
  margin: 0 auto;
}

.layout-plan-title {
  margin: clamp(24px, 3vw, 42px) 0 clamp(28px, 3.5vw, 48px);
  text-align: center;
  color: #9a7400;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.layout-plan-card {
  margin: 0 auto;
  max-width: 1080px;
  background: #f8f4ee;
  border-radius: 10px;
  border: 1px solid #dfd8cd;
  overflow: hidden;
  box-shadow: 0 16px 32px rgba(22, 26, 33, 0.11);
}

.layout-plan-card img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.luxury-banner-section {
  position: relative;
  overflow: hidden;
  background: #111 url("images/building1.webp") center center / cover no-repeat;
  min-height: clamp(520px, 62vw, 760px);
  display: flex;
  align-items: center;
}

.luxury-banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 12, 20, 0.62);
}

.luxury-banner-wrap {
  position: relative;
  z-index: 1;
  width: min(1320px, 100%);
  margin: 0 auto;
  padding: clamp(54px, 7vw, 96px) 20px;
  color: #fff;
  text-align: center;
}

.luxury-banner-wrap h2 {
  margin: 0;
  font-size: clamp(2rem, 5.1vw, 5rem);
  line-height: 1.14;
  font-weight: 700;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}

.luxury-banner-wrap p {
  margin: clamp(20px, 2.4vw, 30px) auto 0;
  max-width: 1300px;
  font-size: clamp(1.05rem, 2vw, 1.9rem);
  line-height: 1.45;
  font-family: "Times New Roman", Georgia, serif;
}

.luxury-banner-btn {
  margin-top: clamp(26px, 3vw, 42px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  padding: 13px 30px;
  border-radius: 999px;
  background: #58d46f;
  color: #fff;
  text-decoration: none;
  font-size: clamp(1rem, 1.2vw, 1.35rem);
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.luxury-banner-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(56, 168, 91, 0.26);
  background: #49c861;
}

.news-section {
  background: #571255;
  padding: clamp(48px, 6vw, 86px) 20px;
}

.news-wrap {
  max-width: 1107px;
  margin: 0 auto;
}

.news-title {
  margin: 0 auto clamp(34px, 4vw, 48px);
  color: #fff;
  text-align: center;
  font-size: 30px;
  font-weight: 800;
  line-height: 1.1;
  position: relative;
  width: fit-content;
  padding: 0 20px;
}

.news-title::before,
.news-title::after {
  content: "";
  position: absolute;
  top: 50%;
  width: clamp(120px, 26vw, 520px);
  height: 2px;
  background: rgba(255, 255, 255, 0.8);
}

.news-title::before {
  right: 100%;
  margin-right: 16px;
}

.news-title::after {
  left: 100%;
  margin-left: 16px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

.news-card {
  background: white;
  border: 1px solid #d8d8d8;
  box-shadow: 0 10px 26px rgba(22, 10, 30, 0.32);
  display: flex;
  flex-direction: column;
}

.news-card img {
  width: 100%;
  aspect-ratio: 16 / 8.2;
  object-fit: cover;
  display: block;
}

.news-card-body {
  padding: clamp(20px, 2.2vw, 30px);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.news-card h3 {
  margin: 0;
  color: #273142;
  font-size: clamp(1.32rem, 1.75vw, 2.08rem);
  line-height: 1.28;
  font-weight: 700;
  text-align: center;
}

.news-meta {
  margin: 14px 0 0;
  color: #787878;
  font-size: clamp(1rem, 1.15vw, 1.26rem);
  line-height: 1.35;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 14px;
}

.news-meta i {
  margin-right: 6px;
}

.news-card p {
  margin: 18px 0 0;
  color: #404f64;
  font-size: clamp(1.08rem, 1.24vw, 1.5rem);
  line-height: 1.55;
  text-align: center;
}

.news-btn {
  margin: 22px auto 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e53d3d;
  color: #333;
  text-decoration: none;
  padding: 11px 24px;
  min-width: 146px;
  font-size: clamp(1.02rem, 1.1vw, 1.25rem);
  background: #fff;
}

@media (max-width: 980px) {
  .video-hero {
    min-height: 78vh;
  }

  .video-hero-content {
    max-width: 100%;
  }

  .construction-grid {
    grid-template-columns: 1fr;
  }

  .construction-copy h3 {
    text-align: left;
    font-size: 1.7rem;
  }

  .construction-media {
    max-width: 100%;
    justify-self: stretch;
  }

  .living-grid {
    grid-template-columns: 1fr;
  }

  .living-media img {
    min-height: 300px;
  }

  .living-copy {
    padding: 24px;
  }

  .layout-plan-card {
    max-width: 100%;
  }

  .luxury-banner-wrap {
    text-align: left;
  }

  .luxury-banner-wrap h2,
  .luxury-banner-wrap p {
    margin-left: 0;
    margin-right: 0;
  }

  .news-grid {
    grid-template-columns: 1fr;
    max-width: 760px;
    margin: 0 auto;
  }

  .news-title::before,
  .news-title::after {
    display: none;
  }
}

@media (max-width: 700px) {
  .video-hero {
    min-height: 72vh;
  }

  .video-hero-content {
    padding: 32px 18px;
  }

  .video-hero-title {
    font-size: clamp(1.9rem, 9vw, 2.8rem);
  }

  .video-hero-text {
    font-size: 1rem;
  }

  .hero-btn,
  .construction-btn,
  .living-btn,
  .luxury-banner-btn,
  .news-btn {
    width: 100%;
  }

  .construction-section,
  .living-section,
  .layout-plan-section,
  .news-section {
    padding-left: 14px;
    padding-right: 14px;
  }

  .construction-heading {
    font-size: 1.8rem;
    text-shadow: none;
  }

  .construction-copy p,
  .luxury-banner-wrap p,
  .news-card p {
    font-size: 1rem;
  }

  .living-copy h2,
  .layout-plan-title,
  .luxury-banner-wrap h2 {
    font-size: 1.85rem;
  }

  .news-card-body {
    padding: 18px 16px;
  }
}

@media (max-width: 480px) {
  .video-hero {
    min-height: 64vh;
  }

  .video-hero-actions {
    gap: 10px;
  }

  .living-media img {
    min-height: 220px;
  }

  .news-title {
    font-size: 1.6rem;
    padding: 0;
  }
}
