/* ==========================================================================
   Pavilion Square KLCC — Property Information Landing Page
   ========================================================================== */

:root {
  --color-bg: #F8F1E4;
  --color-bg-alt: #F0E2C9;
  --color-ink: #241A12;
  --color-ink-soft: #5B4A3B;
  --color-brown-deep: #241A12;
  --color-terracotta: #C1502E;
  --color-terracotta-dark: #9A3A20;
  --color-terracotta-light: #E37A4C;
  --color-gold: #D9A45E;
  --color-cream: #F8F1E4;
  --color-white: #FFFFFF;
  --color-border: rgba(36, 26, 18, 0.12);

  --font-display: "Cormorant Garamond", "Georgia", serif;
  --font-body: "Jost", "Helvetica Neue", Arial, sans-serif;

  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 22px;

  --shadow-soft: 0 12px 32px rgba(36, 20, 12, 0.16);
  --shadow-card: 0 8px 24px rgba(36, 20, 12, 0.10);

  --container-w: 1180px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-ink);
  background: var(--color-bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--color-brown-deep);
  margin: 0 0 0.5em;
  font-weight: 600;
  line-height: 1.15;
}
p { margin: 0 0 1em; }
.container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 24px;
}
section { position: relative; }
.section-pad { padding: 56px 0; }
@media (max-width: 768px) {
  .section-pad { padding: 44px 0; }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-terracotta);
  font-weight: 600;
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--color-terracotta);
  display: inline-block;
}
.section-head {
  max-width: 640px;
  margin-bottom: 28px;
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.8rem, 3.2vw, 2.5rem); }
.section-head p { color: var(--color-ink-soft); font-size: 1.02rem; }

/* ---------- Bilingual (ZH) labels ---------- */
.eyebrow .zh-tag {
  text-transform: none;
  letter-spacing: 0.02em;
  font-weight: 500;
  margin-left: 8px;
  opacity: 0.85;
}
.zh-subtitle {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-ink-soft);
  margin: -6px 0 4px;
}
.zh-subtitle.on-dark {
  color: rgba(248,241,228,0.9);
  text-shadow: 0 1px 10px rgba(15,9,6,0.7);
}
.zh {
  display: block;
  font-size: 0.82rem;
  color: var(--color-ink-soft);
  letter-spacing: 0.01em;
  margin-top: 4px;
}
.zh.on-dark { color: rgba(248,241,228,0.82); text-shadow: 0 1px 10px rgba(15,9,6,0.6); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.94rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--color-terracotta);
  color: var(--color-cream);
  box-shadow: var(--shadow-card);
}
.btn-primary:hover { background: var(--color-terracotta-dark); box-shadow: var(--shadow-soft); }
.btn-outline {
  background: transparent;
  color: var(--color-brown-deep);
  border-color: var(--color-brown-deep);
}
.btn-outline:hover { background: var(--color-brown-deep); color: var(--color-cream); }
.btn-on-dark {
  background: transparent;
  color: var(--color-cream);
  border-color: rgba(250,241,228,0.6);
}
.btn-on-dark:hover { background: var(--color-cream); color: var(--color-brown-deep); }
.btn-light {
  background: var(--color-cream);
  color: var(--color-terracotta-dark);
}
.btn-light:hover { background: var(--color-white); }
.btn-block { width: 100%; }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  background: rgba(248, 241, 228, 0.98);
  border-bottom: 1px solid var(--color-line-soft);
  transition: box-shadow 0.3s ease, padding 0.3s ease;
  padding: 18px 0;
}
.site-header.is-scrolled {
  background: rgba(248, 241, 228, 0.96);
  box-shadow: 0 4px 18px rgba(36, 20, 12, 0.1);
  padding: 12px 0;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-cream);
}
.site-header.is-scrolled .brand { color: var(--color-brown-deep); }
.brand.on-dark { color: var(--color-cream); }
.brand small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  opacity: 0.75;
}

.main-nav ul {
  display: flex;
  gap: 30px;
}
.main-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-cream);
  transition: opacity 0.2s ease;
  opacity: 0.9;
}
.site-header.is-scrolled .main-nav a { color: var(--color-brown-deep); }
.main-nav a:hover { opacity: 1; color: var(--color-terracotta-light); }
.site-header.is-scrolled .main-nav a:hover { color: var(--color-terracotta); }

.header-cta { display: flex; align-items: center; gap: 14px; }
.header-cta .btn { padding: 11px 22px; font-size: 0.86rem; }
.header-cta .wa-icon-sm { display: none; width: 18px; height: 18px; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-cream);
  margin: 6px 0;
  transition: all 0.25s ease;
}
.site-header.is-scrolled .nav-toggle span { background: var(--color-brown-deep); }

@media (max-width: 900px) {
  .main-nav { display: none; }
  .header-cta .btn-outline-label { display: none; }
  .header-cta .wa-icon-sm { display: block; }
  .header-cta .btn { padding: 11px 14px; }
  .nav-toggle { display: block; }
  body.nav-open .main-nav {
    display: block;
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: min(78vw, 320px);
    background: var(--color-brown-deep);
    padding: 100px 32px 32px;
    z-index: 600;
    box-shadow: -10px 0 30px rgba(0,0,0,0.25);
  }
  body.nav-open .main-nav ul { flex-direction: column; gap: 22px; }
  body.nav-open .main-nav a,
  body.nav-open .site-header.is-scrolled .main-nav a { color: var(--color-cream); font-size: 1.05rem; }
  .nav-scrim { display: none; }
  body.nav-open .nav-scrim {
    display: block;
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 480;
  }
}

/* ---------- Hero ---------- */
/* ---------- Hero (split: copy left, image right) ---------- */
.hero {
  background: var(--color-bg);
  color: var(--color-ink);
  padding: 70px 0 48px;
  border-bottom: 1px solid var(--color-line-soft);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
/* Gold reads well on a dark photo but is too faint on the light panel */
.hero .eyebrow { color: var(--color-ink-soft); margin-bottom: 18px; }
.hero .eyebrow::before { background: var(--color-ink-soft); }
.hero h1 {
  color: var(--color-ink);
  font-size: clamp(2.3rem, 4.2vw, 3.4rem);
  line-height: 1.06;
  margin-bottom: 20px;
  text-shadow: none;
}
.hero h1 .zh-inline { color: var(--color-ink-soft); }
/* Hero USP badges - key selling points */
.hero-usps {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 22px;
  max-width: 520px;
}
.hero-usps li {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 18px 10px 14px;
  border: 1px solid rgba(193, 80, 46, 0.35);
  background: rgba(193, 80, 46, 0.07);
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0.005em;
  color: var(--color-ink);
}
.hero-usps .tick {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--color-terracotta);
  color: var(--color-white);
}

.hero p.lead {
  font-size: 1.06rem;
  line-height: 1.65;
  color: var(--color-ink-soft);
  max-width: 480px;
  margin-bottom: 12px;
  font-weight: 300;
  text-shadow: none;
}
.hero .hero-zh { color: var(--color-ink-soft); margin-bottom: 34px; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-bottom: 0; }

.hero-figure {
  margin: 0;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.hero-figure img {
  display: block;
  width: 100%;
  height: auto;          /* natural portrait ratio - never cropped */
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 32px;
  border-top: 1px solid var(--color-line);
  padding-top: 26px;
  margin-top: 40px;
}
.hero-facts .fact strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--color-ink);
  font-weight: 500;
  margin-bottom: 5px;
}
.hero-facts .fact span {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-ink-soft);
}
.hero-facts .fact span.zh {
  font-size: 0.68rem;
  letter-spacing: 0.02em;
  text-transform: none;
  margin-top: 2px;
}

@media (max-width: 900px) {
  .hero { padding: 40px 0 36px; }
  .hero-grid { grid-template-columns: 1fr; gap: 26px; }
  .hero-figure { order: -1; }
  .hero-usps { max-width: none; gap: 8px; margin-bottom: 18px; }
  .hero-usps li { font-size: 0.94rem; padding: 8px 15px 8px 11px; }
  .hero-facts {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 30px;
    padding-top: 14px;
  }
  .hero-facts .fact {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: baseline;
    column-gap: 16px;
    padding: 9px 0;
    border-bottom: 1px solid var(--color-line-soft);
  }
  .hero-facts .fact:last-child { border-bottom: 0; padding-bottom: 0; }
  .hero-facts .fact strong { font-size: 1.02rem; margin-bottom: 0; }
  .hero-facts .fact span { text-align: right; font-size: 0.65rem; }
}

/* ---------- About / Intro grid (used on simple pages) ---------- */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.intro-facts { display: grid; gap: 12px; margin: 26px 0; }
.intro-facts li { display: flex; justify-content: space-between; gap: 14px; padding: 10px 0; border-bottom: 1px solid var(--color-border); font-size: 0.95rem; }
.intro-facts li strong { color: var(--color-brown-deep); }
.intro-facts li span { color: var(--color-ink-soft); }
.intro-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.intro-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); }
@media (max-width: 860px) {
  .intro-grid { grid-template-columns: 1fr; }
}

/* ---------- Intro / USP ---------- */
.intro { background: var(--color-cream); }
.usp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.usp-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 26px 22px;
  text-align: left;
}
.usp-card .icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--color-bg-alt);
  color: var(--color-terracotta);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.usp-card h4 { font-size: 1.05rem; margin-bottom: 6px; }
.usp-card span { display: block; font-size: 0.86rem; color: var(--color-ink-soft); }

@media (max-width: 900px) {
  .usp-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .usp-grid { grid-template-columns: 1fr; }
}

/* ---------- Image Banners ---------- */
.banner {
  min-height: 58vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
}
.banner-inner { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.banner .eyebrow { color: var(--color-gold); text-shadow: 0 1px 10px rgba(15,9,6,0.75); }
.banner .eyebrow::before { display: none; }
.banner h2 {
  color: var(--color-cream);
  font-size: clamp(1.9rem, 4vw, 3rem);
  max-width: 720px;
  margin-bottom: 6px;
  text-shadow: 0 2px 26px rgba(15,9,6,0.8), 0 1px 5px rgba(15,9,6,0.65);
}
.banner p {
  color: rgba(248,241,228,0.95);
  max-width: 560px;
  text-shadow: 0 1px 14px rgba(15,9,6,0.7);
}
.banner-cta { min-height: 56vh; }
.banner-tall { min-height: 64vh; }

/* ---------- Gallery ---------- */
.gallery { background: var(--color-bg-alt); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 14px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  background: var(--color-ink);
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item .cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 14px 16px;
  background: linear-gradient(0deg, rgba(0,0,0,0.7), transparent);
  color: var(--color-cream);
  font-size: 0.86rem;
  opacity: 0;
  transform: translateY(6px);
  transition: all 0.25s ease;
}
.gallery-item:hover .cap { opacity: 1; transform: translateY(0); }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }

.gallery-note {
  margin-top: 22px;
  font-size: 0.82rem;
  color: var(--color-ink-soft);
  font-style: italic;
}

@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .gallery-item.wide { grid-column: span 2; }
}
@media (max-width: 560px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.wide, .gallery-item.tall { grid-column: span 1; grid-row: span 1; }
}

/* Lightbox */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(18, 10, 6, 0.92);
  z-index: 900;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.lightbox.is-open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 80vh; border-radius: var(--radius-sm); }
.lightbox .lb-cap { color: var(--color-cream); text-align: center; margin-top: 14px; font-size: 0.9rem; }
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  background: rgba(248,241,228,0.12);
  border: 1px solid rgba(248,241,228,0.3);
  color: var(--color-cream);
  border-radius: 50%;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
}
.lightbox-close { top: 24px; right: 24px; }
.lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); }

/* ---------- Layout / Floor Plans ---------- */
.layout-section { background: var(--color-cream); }
.floorplan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 22px;
}
.floorplan-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  cursor: pointer;
}
.floorplan-card .fp-img {
  aspect-ratio: 4/3.4;
  overflow: hidden;
  background: var(--color-bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
}
.floorplan-card .fp-img img { width: 100%; height: 100%; object-fit: contain; transition: transform 0.4s ease; }
.floorplan-card:hover .fp-img img { transform: scale(1.04); }
.floorplan-card .fp-meta {
  padding: 16px 20px 20px;
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
  border-top: 1px solid var(--color-border);
}
.floorplan-card .fp-meta h4 { font-size: 1.05rem; margin: 0; flex: 1 0 auto; }
.floorplan-card .fp-meta span {
  font-size: 0.8rem;
  color: var(--color-terracotta-dark);
  font-weight: 600;
  background: var(--color-bg-alt);
  padding: 4px 10px;
  border-radius: 999px;
}
.layout-cta {
  margin-top: 40px;
  background: var(--color-terracotta);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  color: var(--color-cream);
}
.layout-cta h3 { color: var(--color-cream); margin-bottom: 6px; font-size: 1.4rem; }
.layout-cta span { color: rgba(248,241,228,0.88); max-width: 480px; display: block; }

/* ---------- Location ---------- */
.location { background: var(--color-bg-alt); }
.location-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 24px;
  align-items: stretch;
}
.location-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.location-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.location-media.single { max-width: 900px; margin: 0 auto; }
.location-media.single img { height: auto; }
.location-actions { display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; justify-content: center; }
@media (max-width: 860px) {
  .location-grid { grid-template-columns: 1fr; }
}

/* ---------- Contact ---------- */
.contact { background: var(--color-cream); }
.contact-grid.single { display: flex; justify-content: center; }
.contact-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-card);
  max-width: 460px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
.contact-card .agent-row { justify-content: center; }
.contact-card .contact-list { justify-content: center; }
.contact-card .contact-list li { justify-content: center; }
.contact-card .contact-actions { justify-content: center; }
.agent-row { display: flex; gap: 16px; align-items: center; margin-bottom: 22px; }
.agent-row h4 { margin: 0 0 2px; font-size: 1.15rem; }
.agent-row span { font-size: 0.85rem; color: var(--color-ink-soft); }
.contact-list { display: grid; gap: 14px; margin-bottom: 24px; }
.contact-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 0.94rem; }
.contact-list svg { width: 20px; height: 20px; color: var(--color-terracotta); flex-shrink: 0; margin-top: 2px; }
.contact-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--color-ink);
  color: rgba(248,241,228,0.75);
  padding: 56px 0 28px;
  font-size: 0.88rem;
}
.disclaimer {
  background: rgba(248,241,228,0.04);
  border: 1px solid rgba(248,241,228,0.1);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  font-size: 0.78rem;
  line-height: 1.75;
  color: rgba(248,241,228,0.55);
  margin-bottom: 24px;
}
.disclaimer strong { color: rgba(248,241,228,0.75); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.78rem;
  color: rgba(248,241,228,0.45);
}
.footer-agency {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.footer-agency .agency-logo {
  height: 20px;
  width: auto;
  background: var(--color-cream);
  padding: 4px 8px;
  border-radius: 6px;
}

/* ---------- WhatsApp floating button ---------- */
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 700;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 26px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s ease;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; }
.wa-float .pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  opacity: 0.5;
  animation: wa-pulse 2.2s ease-out infinite;
  z-index: -1;
}
@keyframes wa-pulse {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.9); opacity: 0; }
}
@media (max-width: 600px) {
  .wa-float { width: 54px; height: 54px; right: 16px; bottom: 16px; }
  .wa-float svg { width: 26px; height: 26px; }
}

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ---------- Utility ---------- */
.mt-0 { margin-top: 0; }
.text-center { text-align: center; }

/* ===================== VIDEO BANNER ===================== */
.video-banner { position: relative; width: 100%; background: #0b0a08; overflow: hidden; }
.video-banner video {
  display: block;
  width: 100%;
  aspect-ratio: 21 / 9;
  max-height: 56vh;
  object-fit: cover;
}
/* The header floats transparent over this banner; a top scrim keeps its
   light nav text legible when the footage cuts to a bright sky frame. */
.video-banner::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 190px;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(10,9,7,0.55) 0%, rgba(10,9,7,0) 100%);
}

.video-sound {
  position: absolute;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 17px;
  border: 1px solid rgba(247, 244, 237, 0.45);
  border-radius: 999px;
  background: rgba(15, 13, 10, 0.42);
  -webkit-backdrop-filter: blur(7px);
  backdrop-filter: blur(7px);
  color: #F7F4ED;
  font-family: inherit;
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease;
}
.video-sound:hover,
.video-sound:focus-visible { background: rgba(15,13,10,0.72); border-color: rgba(247,244,237,0.85); }
.video-sound svg { width: 17px; height: 17px; flex: none; }
.video-sound .wave { display: none; }
.video-sound.is-on .wave { display: inline; }
.video-sound.is-on .cross { display: none; }

/* ===================== MOBILE COMPACTION ===================== */
@media (max-width: 640px) {
  .video-banner video { aspect-ratio: 16 / 9; max-height: 42vh; }
  .video-sound { right: 12px; bottom: 12px; padding: 8px 13px; font-size: 0.68rem; }

  .section-pad { padding: 34px 0; }
  .floorplan-grid, .usp-grid { gap: 12px; }
  .floorplan-card .fp-meta { padding: 8px 13px; }
  .location-list { gap: 7px; margin: 20px 0 26px; }
  .location-list li { padding-bottom: 9px; font-size: 0.88rem; gap: 2px; }
  .site-footer { padding: 40px 0 24px; }
  .disclaimer { padding: 16px 17px; font-size: 0.72rem; line-height: 1.6; margin-bottom: 18px; }
  .disclaimer p { margin-bottom: 9px; }
  .disclaimer p:last-child { margin-bottom: 0; }
  .footer-bottom { font-size: 0.72rem; gap: 8px; }
}

/* ===== Solid header (matches Oxley & Conlay) =====
   Header no longer floats over the banner, so its text is dark by default
   and the banner's protective top scrim is no longer needed. */
.brand { color: var(--color-brown-deep); }
.main-nav a { color: var(--color-brown-deep); }
.nav-toggle span { background: var(--color-brown-deep); }
.video-banner::before { display: none; }

/* ===== Photo bands: shorter + consistent across all four projects ===== */
@media (max-width: 900px) {
  .banner { min-height: 46vh; }
  .banner-cta { min-height: 44vh; }
  .banner-tall { min-height: 50vh; }
}

/* ===== Banner text without a scrim =====
   Overlays were removed so the photography reads at full strength; the
   headings keep their legibility from a shadow that only darkens the
   pixels behind the letters. */
.banner h2,
.banner .eyebrow,
.banner .zh-subtitle,
.banner .zh,
.banner p {
  text-shadow: 0 2px 18px rgba(8,7,5,0.8), 0 1px 5px rgba(8,7,5,0.6);
}

/* Lead paragraph sat at --color-ink-soft, which is light for reading at a
   glance. Step it darker while keeping it lighter than the headline. */
.hero p.lead { color: #4A4339; }
.hero .hero-zh { color: #57503F; }
/* ---------- Banner CTAs ----------
   Overlays are gone, so a transparent outline button disappeared into the
   photography. Solid cream reads on any frame, light or dark. */
.banner .btn,
.banner .btn-on-dark,
.banner .btn-primary {
  background: var(--color-cream);
  color: var(--color-ink);
  border-color: var(--color-cream);
  box-shadow: 0 6px 22px rgba(8, 7, 5, 0.3);
}
.banner .btn:hover,
.banner .btn-on-dark:hover,
.banner .btn-primary:hover {
  background: #fff;
  border-color: #fff;
  color: var(--color-ink);
}

/* ---------- Hero fact icons: same circular badge, scaled for a compact row ---------- */
.hero-facts .fact .icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--color-bg-alt);
  color: var(--color-terracotta);
  border: 1px solid var(--color-line-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  flex: none;
}
@media (max-width: 900px) {
  /* Compact mobile rows put the badge inline with the value */
  .hero-facts .fact { grid-template-columns: auto auto 1fr; column-gap: 11px; }
  .hero-facts .fact .icon { width: 26px; height: 26px; margin-bottom: 0; align-self: center; }
  .hero-facts .fact .icon svg { width: 14px; height: 14px; }
  .hero-facts .fact .zh { grid-column: 3; }
}


/* ---------- Independent-site notice (above the fold) ---------- */
.site-notice {
  background: var(--color-bg-alt, #ECE6D8);
  border-bottom: 1px solid rgba(33, 29, 24, 0.09);
  color: var(--color-ink-soft, #635C4E);
  font-size: 0.72rem;
  line-height: 1.5;
  letter-spacing: 0.015em;
  text-align: center;
  margin: 0;
  padding: 9px 20px;
}
.site-notice strong { font-weight: 600; color: var(--color-ink, #211D18); }
@media (max-width: 600px) {
  .site-notice { font-size: 0.66rem; padding: 8px 14px; letter-spacing: 0; }
}
