/* ============================================================
   THE ZERO NAI YANG — WordPress Scoped Stylesheet
   All selectors scoped under .zny to avoid WP theme conflicts
   CSS variables prefixed with --zny- to avoid collisions
   ============================================================ */

/* ──────────────── SCOPED RESET & VARIABLES ──────────────── */
.zny {
  --zny-accent: #856C4E;
  --zny-accent-light: #D9C291;
  --zny-accent-bg: rgba(133, 108, 78, 0.06);
  --zny-bg-primary: #FDFBF7;
  --zny-bg-secondary: #F5F0E8;
  --zny-text-primary: #1C1C1C;
  --zny-text-body: #4A4A4A;
  --zny-text-muted: #8A8A7A;
  --zny-white: #fff;
  --zny-font-heading: 'Josefin Sans', sans-serif;
  --zny-font-body: 'Montserrat', sans-serif;
  --zny-font-mono: 'JetBrains Mono', monospace;
  --zny-border-subtle: rgba(133, 108, 78, 0.05);
  --zny-border-light: rgba(133, 108, 78, 0.06);
  --zny-border-medium: rgba(133, 108, 78, 0.12);
  --zny-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.03);
  --zny-shadow-md: 0 4px 24px rgba(133, 108, 78, 0.04);
  --zny-shadow-hover: 0 16px 40px rgba(133, 108, 78, 0.08);
  --zny-radius-sm: 8px;
  --zny-radius-md: 12px;
  --zny-radius-lg: 16px;
  --zny-radius-xl: 20px;
  --zny-section-padding: 76px 20px;
  --zny-container-max: 1240px;
  --zny-section-padding-x: 20px;
  --zny-sticky-offset: 80px;

  background: var(--zny-bg-primary);
  color: var(--zny-text-primary);
  font-family: var(--zny-font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
}

.zny *,
.zny *::before,
.zny *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.zny ::selection {
  background: var(--zny-accent-light);
  color: var(--zny-accent);
}

.zny img {
  max-width: 100%;
  display: block;
  border: none;
  height: auto;
}

.zny a {
  text-decoration: none;
  color: inherit;
  background: none;
  box-shadow: none;
}

.zny button {
  font-family: var(--zny-font-body);
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
  line-height: inherit;
}

.zny h1, .zny h2, .zny h3, .zny h4, .zny h5, .zny h6 {
  font-family: var(--zny-font-heading);
  margin: 0;
  padding: 0;
  line-height: 1.2;
  letter-spacing: normal;
  color: inherit;
}

.zny p {
  margin: 0;
  padding: 0;
}

.zny select,
.zny input,
.zny textarea {
  font-family: var(--zny-font-body);
  border-radius: 0;
  -webkit-appearance: none;
}

.zny ul, .zny ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* ──────────────── LAYOUT ──────────────── */
.zny .container {
  max-width: var(--zny-container-max);
  margin: 0 auto;
}

.zny .text-center {
  text-align: center;
}

/* ──────────────── LAZY IMAGE ──────────────── */
.zny .lazy-img {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #E8E0D4, #D8D0C4);
}

.zny .lazy-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transition: opacity 0.5s;
}

.zny .lazy-img img.loaded {
  opacity: 1;
}

/* ──────────────── SECTION TYPOGRAPHY ──────────────── */
.zny .section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--zny-accent-light);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.zny .section-title {
  font-family: var(--zny-font-heading);
  font-size: clamp(26px, 3.6vw, 36px);
  font-weight: 600;
  color: var(--zny-accent);
  margin: 0 0 6px;
}

.zny .section-subtitle {
  color: var(--zny-text-muted);
  font-size: 14px;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ──────────────── BUTTONS ──────────────── */
.zny .btn-primary {
  padding: 15px 30px;
  border: none;
  border-radius: 10px;
  background: var(--zny-accent);
  color: #F5F0E8;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--zny-font-body);
  box-shadow: 0 4px 20px rgba(133, 108, 78, 0.2);
  transition: transform 0.2s;
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.zny .btn-primary:hover {
  transform: translateY(-2px);
}

.zny .btn-outline {
  padding: 15px 26px;
  border-radius: 10px;
  border: 1.5px solid var(--zny-accent);
  background: rgba(255, 255, 255, 0.5);
  color: var(--zny-accent);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  font-family: var(--zny-font-body);
  backdrop-filter: blur(8px);
  transition: all 0.2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.zny .btn-outline:hover {
  background: var(--zny-accent);
  color: #F5F0E8;
}

.zny .btn-sm {
  padding: 8px 18px;
  font-size: 12px;
  font-weight: 600;
}

/* ──────────────── SCROLL REVEAL ──────────────── */
.zny .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.zny .reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ──────────────── NAVIGATION ──────────────── */
.zny .main-nav {
  position: relative;
  z-index: 999;
  background: rgba(253, 251, 247, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--zny-border-light);
  padding: 0 var(--zny-section-padding-x);
  transition: box-shadow 0.2s ease;
}

.zny .main-nav.is-stuck {
  position: fixed;
  top: var(--zny-sticky-offset);
  left: 0;
  right: 0;
  width: 100%;
}

.zny.nav-is-stuck {
  padding-top: 56px;
}

.zny .nav-inner {
  max-width: var(--zny-container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
  padding: 0 20px;
}

.zny .nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.zny .nav-brand img {
  height: 26px;
}

.zny .nav-brand span {
  font-family: var(--zny-font-heading);
  font-size: 12px;
  font-weight: 600;
  color: var(--zny-accent);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 0.6;
}

.zny .nav-links {
  display: flex;
  gap: 18px;
  align-items: center;
}

.zny .nav-link {
  background: none;
  border: none;
  color: var(--zny-text-body);
  font-size: 12.5px;
  font-weight: 500;
  cursor: pointer;
  font-family: var(--zny-font-body);
  padding: 4px 0;
  position: relative;
  white-space: nowrap;
  text-decoration: none;
}

.zny .nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--zny-accent-light);
  transition: width 0.25s;
}

.zny .nav-link:hover::after {
  width: 100%;
}

.zny .nav-cta {
  padding: 8px 18px;
  border: none;
  border-radius: var(--zny-radius-sm);
  background: var(--zny-accent);
  color: #F5F0E8;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--zny-font-body);
  margin-left: 4px;
}

.zny .mobile-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  display: none;
  flex-direction: column;
  gap: 5px;
}

.zny .mobile-toggle span {
  width: 22px;
  height: 2px;
  background: var(--zny-accent);
  display: block;
  border-radius: 1px;
  transition: 0.3s;
}

.zny .mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.zny .mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.zny .mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.zny .mobile-menu {
  display: none;
  flex-direction: column;
  gap: 2px;
  padding: 8px 0 16px;
  animation: zny-fadeDown 0.25s;
}

.zny .mobile-menu.open {
  display: flex;
}

.zny .mobile-menu button,
.zny .mobile-menu a {
  background: none;
  border: none;
  padding: 10px 0;
  color: var(--zny-text-primary);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  font-family: var(--zny-font-body);
  text-align: left;
  text-decoration: none;
  display: block;
}

.zny .mobile-menu .mobile-cta {
  margin-top: 6px;
  padding: 13px;
  border: none;
  border-radius: 10px;
  background: var(--zny-accent);
  color: #F5F0E8;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--zny-font-body);
  text-align: center;
}

/* ──────────────── HERO ──────────────── */
.zny .hero {
  position: relative;
  overflow: hidden;
  min-height: 520px;
}

.zny .hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.zny .hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.zny .hero-slide.active {
  opacity: 1;
}

.zny .hero-slide .lazy-img {
  width: 100%;
  height: 100%;
}

.zny .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(253, 251, 247, 0.97) 0%, rgba(253, 251, 247, 0.92) 42%, rgba(253, 251, 247, 0.25) 100%);
}

.zny .hero-grid {
  max-width: var(--zny-container-max);
  margin: 0 auto;
  padding: 28px var(--zny-section-padding-x) 40px;
  display: grid;
  grid-template-columns: 1fr 370px;
  gap: 36px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.zny .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(217, 194, 145, 0.12);
  border: 1px solid rgba(217, 194, 145, 0.25);
  border-radius: var(--zny-radius-xl);
  padding: 5px 13px;
  font-size: 11px;
  font-weight: 600;
  color: var(--zny-accent);
}

.zny .hero-badge img {
  height: 16px;
}

.zny .hero h1 {
  font-family: var(--zny-font-heading);
  font-size: clamp(30px, 4.8vw, 50px);
  font-weight: 600;
  line-height: 1.12;
  color: var(--zny-accent);
  margin: 0 0 14px;
  letter-spacing: -0.5px;
}

.zny .hero h1 span {
  color: var(--zny-accent-light);
}

.zny .hero-mobile-img {
  display: none;
}

.zny .hero-desc {
  font-size: 16px;
  line-height: 1.65;
  color: var(--zny-text-body);
  max-width: 520px;
  margin: 0 0 22px;
}

.zny .hero-stats {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 18px;
  margin-bottom: 26px;
}

.zny .hero-stat {
  border-left: 2px solid var(--zny-accent-light);
  padding-left: 12px;
}

.zny .hero-stat-value {
  font-family: var(--zny-font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--zny-accent);
}

.zny .hero-stat-label {
  font-size: 11px;
  color: var(--zny-text-muted);
  font-weight: 500;
}

.zny .eia-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--zny-border-medium);
  border-radius: 14px;
  padding: 12px 20px;
  margin-bottom: 22px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.zny .eia-badge img {
  height: 36px;
}

.zny .eia-badge-title {
  font-family: var(--zny-font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--zny-accent);
}

.zny .eia-badge-sub {
  font-size: 11px;
  color: var(--zny-text-muted);
}

.zny .hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.zny .hero-thumbs {
  display: flex;
  gap: 8px;
  margin-top: 22px;
}

.zny .hero-thumb {
  width: 60px;
  height: 42px;
  border-radius: var(--zny-radius-sm);
  overflow: hidden;
  border: 2px solid var(--zny-border-medium);
  cursor: pointer;
  opacity: 0.55;
  transition: all 0.3s;
  flex-shrink: 0;
}

.zny .hero-thumb.active {
  border-color: var(--zny-accent-light);
  opacity: 1;
}

.zny .hero-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.zny .hero-form-desktop {
  display: block;
}

.zny .hero-form-mobile {
  display: none;
  margin-top: 28px;
}

/* ──────────────── STATS BAR ──────────────── */
.zny .stats-bar {
  background: var(--zny-accent);
  padding: 34px var(--zny-section-padding-x);
}

.zny .stats-grid {
  max-width: var(--zny-container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.zny .stat-value {
  font-family: var(--zny-font-heading);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  color: var(--zny-accent-light);
}

.zny .stat-label {
  font-size: 12px;
  color: #fff;
  margin-top: 2px;
}

/* ──────────────── AWARDS ──────────────── */
.zny .awards {
  background: var(--zny-bg-secondary);
  padding: 34px var(--zny-section-padding-x);
  border-bottom: 1px solid var(--zny-border-subtle);
}

.zny .awards .container {
  max-width: 1100px;
}

.zny .awards-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  color: var(--zny-text-muted);
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 18px;
}

.zny .badge-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.zny .badge-card {
  background: var(--zny-white);
  border-radius: var(--zny-radius-md);
  padding: 18px 12px;
  border: 1px solid var(--zny-border-subtle);
  text-align: center;
  box-shadow: var(--zny-shadow-sm);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.zny .badge-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
}

.zny .badge-card img {
  height: 32px;
  max-width: 80%;
  object-fit: contain;
}

.zny .badge-card-title {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--zny-accent);
}

.zny .badge-card-sub {
  font-size: 9.5px;
  color: var(--zny-text-muted);
  margin-top: 1px;
}

/* ──────────────── INVESTMENT ──────────────── */
.zny .investment {
  padding: 86px var(--zny-section-padding-x);
  background: var(--zny-bg-primary);
}

.zny .investment .section-subtitle {
  font-size: 18px;
}

.zny .investment-box {
  background: var(--zny-white);
  border-radius: var(--zny-radius-xl);
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid var(--zny-border-subtle);
  margin-bottom: 48px;
  box-shadow: var(--zny-shadow-md);
}

.zny .timeline {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  position: relative;
  padding: 0 10px;
  margin-bottom: 40px;
}

.zny .timeline-step {
  display: flex;
  align-items: flex-start;
  flex: 1;
  position: relative;
}

.zny .timeline-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 100%;
}

.zny .timeline-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--zny-white);
  border: 2px solid var(--zny-accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 16px rgba(133, 108, 78, 0.1);
}

.zny .timeline-icon:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(133, 108, 78, 0.22);
}

.zny .timeline-icon svg {
  width: 22px;
  height: 22px;
  color: var(--zny-accent-light);
  stroke-width: 1.8;
}

.zny .timeline-date {
  font-family: var(--zny-font-mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--zny-accent-light);
  margin-bottom: 3px;
}

.zny .timeline-label {
  font-size: 11.5px;
  color: var(--zny-text-muted);
  text-align: center;
  max-width: 120px;
  line-height: 1.35;
}

.zny .timeline-line {
  position: absolute;
  top: 26px;
  left: 50%;
  right: -50%;
  height: 2px;
  background: #E8E0D4;
  z-index: 1;
}

.zny .investment-details {
  border-top: 1px solid var(--zny-border-light);
  padding-top: 28px;
}

.zny .inv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.zny .inv-grid p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--zny-text-body);
  margin: 0;
}

.zny .inv-grid p.larger {
  font-size: 15px;
  margin-bottom: 16px;
}

.zny .inv-callout {
  background: rgba(133, 108, 78, 0.04);
  border-radius: var(--zny-radius-md);
  padding: 14px 18px;
  border-left: 3px solid var(--zny-accent-light);
}

.zny .inv-callout p {
  font-size: 12px;
  font-weight: 600;
  color: var(--zny-accent);
  line-height: 1.5;
}

.zny .inv-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.zny .inv-card {
  background: var(--zny-white);
  border-radius: var(--zny-radius-lg);
  padding: 26px 22px;
  border: 1px solid var(--zny-border-subtle);
  height: 100%;
  transition: transform 0.35s, box-shadow 0.35s;
}

.zny .inv-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--zny-shadow-hover);
}

.zny .inv-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--zny-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.zny .inv-card-icon svg {
  width: 22px;
  height: 22px;
  color: var(--zny-accent);
  stroke-width: 1.8;
}

.zny .inv-card h3 {
  font-family: var(--zny-font-heading);
  font-size: 19px;
  font-weight: 600;
  color: var(--zny-accent);
  margin: 0 0 3px;
}

.zny .inv-card-sub {
  font-size: 12.5px;
  color: var(--zny-accent-light);
  font-weight: 600;
  margin-bottom: 10px;
}

.zny .inv-card p {
  font-size: 13px;
  line-height: 1.6;
  color: #5A5A5A;
  margin: 0;
}

/* ──────────────── SUSTAINABILITY ──────────────── */
.zny .sustainability {
  padding: var(--zny-section-padding);
  background: var(--zny-accent);
  position: relative;
  overflow: hidden;
}

.zny .sustainability .section-title {
  color: #F5F0E8;
}

.zny .sustainability .section-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14.5px;
  max-width: 640px;
}

.zny .sustainability-orb {
  position: absolute;
  top: -120px;
  right: -120px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217, 194, 145, 0.05) 0%, transparent 70%);
}

.zny .eco-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 36px;
}

.zny .eco-card {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 14px;
  padding: 28px 20px;
  border: 1px solid rgba(217, 194, 145, 0.1);
  text-align: center;
}

.zny .eco-card-value {
  font-family: var(--zny-font-heading);
  font-size: clamp(24px, 2.8vw, 34px);
  font-weight: 700;
  color: var(--zny-accent-light);
  line-height: 1.1;
}

.zny .eco-card-title {
  font-size: 13px;
  font-weight: 600;
  color: #F5F0E8;
  margin-top: 8px;
}

.zny .eco-card-desc {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 3px;
}

.zny .eco-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
}

.zny .eco-feature {
  display: flex;
  align-items: center;
  gap: 8px;
}

.zny .eco-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--zny-accent-light);
  flex-shrink: 0;
}

/* ──────────────── LIFESTYLE ──────────────── */
.zny .lifestyle {
  padding: var(--zny-section-padding);
  background: var(--zny-bg-secondary);
}

.zny .lifestyle-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 24px;
}

.zny .lifestyle-card {
  border-radius: var(--zny-radius-lg);
  overflow: hidden;
  background: var(--zny-white);
  border: 1px solid var(--zny-border-light);
  transition: transform 0.35s, box-shadow 0.35s;
}

.zny .lifestyle-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--zny-shadow-hover);
}

.zny .lifestyle-card-img {
  position: relative;
  height: 260px;
  overflow: hidden;
}

.zny .lifestyle-card-img .lazy-img {
  width: 100%;
  height: 100%;
}

.zny .lifestyle-card-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 14px;
  border-radius: var(--zny-radius-xl);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  z-index: 1;
}

.zny .lifestyle-card-tag.exclusive {
  background: var(--zny-accent);
  color: #F5F0E8;
}

.zny .lifestyle-card-tag.unique {
  background: var(--zny-accent-light);
  color: var(--zny-accent);
}

.zny .lifestyle-card-body {
  padding: 22px 24px 26px;
}

.zny .lifestyle-card-body h3 {
  font-family: var(--zny-font-heading);
  font-size: 22px;
  font-weight: 600;
  color: var(--zny-accent);
  margin: 0 0 8px;
}

.zny .lifestyle-card-body p {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--zny-text-body);
  margin: 0;
}

.zny .amenity-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 24px;
}

.zny .amenity-card {
  background: var(--zny-white);
  border-radius: 14px;
  padding: 22px 18px;
  border: 1px solid var(--zny-border-subtle);
  height: 100%;
}

.zny .amenity-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--zny-accent-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.zny .amenity-icon svg {
  width: 20px;
  height: 20px;
  color: var(--zny-accent);
  stroke-width: 1.8;
}

.zny .amenity-card h4 {
  font-family: var(--zny-font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--zny-accent);
  margin: 0 0 4px;
}

.zny .amenity-card p {
  font-size: 12px;
  line-height: 1.5;
  color: var(--zny-text-body);
  margin: 0;
  min-height: 2.9em;
}

.zny .amenity-bar {
  background: var(--zny-white);
  border-radius: 14px;
  padding: 20px 28px;
  border: 1px solid var(--zny-border-light);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.zny .amenity-bar-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: var(--zny-accent);
  font-weight: 500;
}

.zny .amenity-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--zny-accent-light);
  flex-shrink: 0;
}

/* ──────────────── UNITS ──────────────── */
.zny .units {
  padding: var(--zny-section-padding);
  background: var(--zny-bg-primary);
}

.zny .units-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.zny .unit-card {
  border-radius: var(--zny-radius-lg);
  overflow: hidden;
  border: 1px solid var(--zny-border-light);
  background: var(--zny-white);
  transition: transform 0.35s, box-shadow 0.35s;
}

.zny .unit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(133, 108, 78, 0.1);
}

.zny .unit-card.featured {
  border: 2px solid var(--zny-accent-light);
}

.zny .unit-card-img {
  position: relative;
}

.zny .unit-card-img .lazy-img {
  width: 100%;
  height: 210px;
}

.zny .unit-popular-tag {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
  background: var(--zny-accent);
  color: var(--zny-accent-light);
  text-align: center;
  padding: 5px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.zny .unit-card-body {
  padding: 22px;
}

.zny .unit-type {
  font-family: var(--zny-font-heading);
  font-size: 21px;
  font-weight: 600;
  color: var(--zny-accent);
}

.zny .unit-size {
  font-size: 12px;
  color: var(--zny-text-muted);
  margin-bottom: 10px;
}

.zny .unit-price {
  font-family: var(--zny-font-heading);
  font-size: 26px;
  font-weight: 700;
  color: var(--zny-accent);
  margin-bottom: 4px;
}

.zny .unit-yield {
  font-size: 12px;
  color: var(--zny-accent-light);
  font-weight: 600;
  margin-bottom: 10px;
}

.zny .unit-desc {
  font-size: 13px;
  line-height: 1.5;
  color: var(--zny-text-body);
  margin: 0 0 16px;
}

.zny .unit-btn {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--zny-font-body);
  cursor: pointer;
}

.zny .unit-btn.primary {
  background: var(--zny-accent);
  color: #F5F0E8;
}

.zny .unit-btn.accent {
  background: var(--zny-accent-light);
  color: var(--zny-accent);
}

.zny .unit-btn.tour {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: transparent;
  color: var(--zny-accent);
  border: 1.5px solid var(--zny-accent);
  text-decoration: none;
  cursor: pointer;
}

.zny .unit-btn.tour:hover {
  background: var(--zny-accent);
  color: #F5F0E8;
}

.zny .unit-btn.tour svg {
  width: 15px;
  height: 15px;
}

.zny .unit-card-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.zny .units-extra {
  margin-top: 28px;
  background: var(--zny-white);
  border-radius: var(--zny-radius-lg);
  padding: 26px clamp(16px, 3vw, 32px);
  border: 1px solid var(--zny-border-subtle);
}

.zny .units-extra-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}

.zny .units-extra-card {
  border-radius: var(--zny-radius-md);
  padding: 20px;
  background: rgba(133, 108, 78, 0.02);
  border: 1px solid var(--zny-border-light);
}

.zny .units-extra-card h4 {
  font-family: var(--zny-font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--zny-accent);
  margin-bottom: 4px;
}

.zny .units-extra-card p {
  font-size: 12px;
  color: var(--zny-text-muted);
  margin: 0;
}

/* Floor plans */
.zny .floor-plans {
  margin-top: 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.zny .floor-plans > div {
  border-radius: var(--zny-radius-lg);
  overflow: hidden;
  border: 1px solid var(--zny-border-light);
}

.zny .floor-plans .lazy-img {
  width: 100%;
  height: 100%;
}

/* Payment schedule */
.zny .payment-schedule {
  margin-top: 36px;
  background: var(--zny-bg-secondary);
  border-radius: var(--zny-radius-lg);
  padding: 26px clamp(16px, 3vw, 32px);
}

.zny .payment-schedule h3 {
  font-family: var(--zny-font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--zny-accent);
  margin: 0 0 8px;
  text-align: center;
}

.zny .payment-schedule > p {
  text-align: center;
  font-size: 12px;
  color: var(--zny-text-muted);
  margin-bottom: 20px;
}

.zny .payment-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.zny .payment-step {
  display: flex;
  align-items: center;
  gap: 8px;
}

.zny .payment-step-box {
  background: var(--zny-white);
  border-radius: 10px;
  padding: 10px 13px;
  text-align: center;
  min-width: 88px;
  border: 1px solid var(--zny-border-subtle);
}

.zny .payment-step-value {
  font-family: var(--zny-font-mono);
  font-size: 14px;
  font-weight: 700;
  color: var(--zny-accent);
}

.zny .payment-step-label {
  font-size: 10px;
  color: var(--zny-text-muted);
  margin-top: 1px;
}

.zny .payment-arrow {
  color: var(--zny-accent-light);
  font-size: 16px;
}

.zny .payment-methods {
  text-align: center;
  margin-top: 16px;
}

.zny .payment-methods-inner {
  display: inline-flex;
  gap: 16px;
  background: var(--zny-white);
  border-radius: 10px;
  padding: 12px 22px;
  border: 1px solid var(--zny-border-subtle);
  align-items: center;
}

.zny .payment-methods img {
  height: 18px;
}

.zny .payment-methods span {
  font-size: 11px;
  color: var(--zny-text-muted);
}

.zny .payment-divider {
  width: 1px;
  height: 18px;
  background: rgba(133, 108, 78, 0.1);
}

/* ──────────────── GALLERY ──────────────── */
.zny .gallery-section {
  padding: var(--zny-section-padding);
  background: var(--zny-bg-secondary);
}

.zny .gal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 195px;
  gap: 10px;
}

.zny .gal-item {
  cursor: pointer;
  overflow: hidden;
  border-radius: var(--zny-radius-md);
  position: relative;
}

.zny .gal-item.tall {
  grid-row: span 2;
}

.zny .gal-item .lazy-img {
  width: 100%;
  height: 100%;
  border-radius: var(--zny-radius-md);
}

.zny .gal-item img {
  transition: transform 0.5s ease !important;
}

.zny .gal-item:hover img {
  transform: scale(1.06) !important;
}

.zny .gal-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 14px;
  border-radius: var(--zny-radius-md);
}

.zny .gal-item:hover .gal-overlay {
  opacity: 1;
}

.zny .gal-overlay span {
  color: var(--zny-white);
  font-size: 12px;
  font-weight: 600;
}

/* ──────────────── LOCATION ──────────────── */
.zny .location {
  padding: var(--zny-section-padding);
  background: var(--zny-accent);
}

.zny .loc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
}

.zny .location .section-title {
  color: #F5F0E8;
}

.zny .location-desc {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 22px;
}

.zny .location-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}

.zny .location-item {
  display: flex;
  justify-content: space-between;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.zny .location-item-name {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
}

.zny .location-item-dist {
  font-size: 12px;
  color: var(--zny-accent-light);
  font-weight: 500;
  font-family: var(--zny-font-mono);
}

.zny .location-highlights {
  margin-top: 20px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.zny .location-highlight {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(217, 194, 145, 0.1);
  border-radius: var(--zny-radius-xl);
  padding: 6px 14px;
  border: 1px solid rgba(217, 194, 145, 0.15);
}

.zny .location-highlight svg {
  width: 14px;
  height: 14px;
  color: var(--zny-accent-light);
  stroke-width: 2;
}

.zny .location-highlight span {
  font-size: 11px;
  font-weight: 600;
  color: var(--zny-accent-light);
}

.zny .location-image {
  border-radius: var(--zny-radius-lg);
  overflow: hidden;
  border: 1px solid rgba(217, 194, 145, 0.1);
}

.zny .location-image .lazy-img {
  width: 100%;
  height: 500px;
}

/* ──────────────── LIMOUSINE ──────────────── */
.zny .limousine {
  padding: 48px var(--zny-section-padding-x);
  background: linear-gradient(135deg, #F5F0E8 0%, #EDE6D8 100%);
  border-top: 1px solid rgba(217, 194, 145, 0.15);
  border-bottom: 1px solid rgba(217, 194, 145, 0.15);
}

.zny .limo-grid {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
}

.zny .limo-grid h3 {
  font-family: var(--zny-font-heading);
  font-size: clamp(20px, 2.6vw, 26px);
  font-weight: 600;
  color: var(--zny-accent);
  margin: 0 0 6px;
}

.zny .limo-grid h3 span {
  color: var(--zny-accent-light);
}

.zny .limo-grid p {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--zny-text-body);
  margin: 0;
}

.zny .limo-cta {
  padding: 14px 28px;
  border: none;
  border-radius: 10px;
  background: var(--zny-accent);
  color: #F5F0E8;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--zny-font-body);
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.2s, box-shadow 0.2s;
  display: inline-block;
}

.zny .limo-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(133, 108, 78, 0.2);
}

/* ──────────────── DEVELOPER ──────────────── */
.zny .developer {
  padding: var(--zny-section-padding);
  background: var(--zny-bg-primary);
}

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

.zny .cred-card {
  background: var(--zny-white);
  border-radius: 14px;
  padding: 24px;
  text-align: center;
  border: 1px solid rgba(133, 108, 78, 0.04);
}

.zny .cred-card-value {
  font-family: var(--zny-font-heading);
  font-size: 32px;
  font-weight: 700;
  color: var(--zny-accent);
  margin-bottom: 4px;
}

.zny .cred-card-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--zny-text-primary);
  margin-bottom: 6px;
}

.zny .cred-card-desc {
  font-size: 12px;
  color: var(--zny-text-muted);
}

.zny .bangtao-callout {
  margin-top: 28px;
  border-radius: var(--zny-radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, rgba(133, 108, 78, 0.04), rgba(133, 108, 78, 0.02));
  border: 1px solid var(--zny-border-light);
  padding: 28px clamp(20px, 3vw, 36px);
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.zny .bangtao-callout-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--zny-accent-light);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.zny .bangtao-callout h3 {
  font-family: var(--zny-font-heading);
  font-size: 22px;
  font-weight: 600;
  color: var(--zny-accent);
  margin: 0 0 8px;
}

.zny .bangtao-callout p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--zny-text-body);
  margin: 0;
}

.zny .bangtao-stats {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.zny .bangtao-stat {
  background: var(--zny-white);
  border-radius: var(--zny-radius-md);
  padding: 14px 16px;
  text-align: center;
  border: 1px solid var(--zny-border-subtle);
  min-width: 70px;
}

.zny .bangtao-stat-value {
  font-family: var(--zny-font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--zny-accent);
}

.zny .bangtao-stat-label {
  font-size: 10px;
  color: var(--zny-text-muted);
}

/* ──────────── Award Showcase ──────────── */
.zny .award-showcase {
  margin-top: 28px;
  border-radius: var(--zny-radius-lg);
  overflow: hidden;
  background: var(--zny-white);
  border: 1px solid var(--zny-border-light);
}

.zny .award-showcase-img img {
  width: 100%;
  height: auto;
  display: block;
}

.zny .award-showcase-caption {
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.zny .award-showcase-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--zny-accent), var(--zny-accent-light));
  color: var(--zny-white);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  flex-shrink: 0;
}

.zny .award-showcase-badge svg {
  width: 13px;
  height: 13px;
}

.zny .award-showcase-caption strong {
  font-family: var(--zny-font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--zny-text-primary);
}

.zny .award-showcase-caption > span:last-child {
  font-size: 12px;
  color: var(--zny-text-muted);
  margin-left: auto;
}

/* ──────────────── FAQ ──────────────── */
.zny .faq {
  padding: var(--zny-section-padding);
  background: var(--zny-bg-primary);
}

.zny .faq .container {
  max-width: 720px;
}

.zny .faq-item {
  border-radius: 14px;
  border: 1px solid var(--zny-border-light);
  background: rgba(255, 255, 255, 0.5);
  overflow: hidden;
  margin-bottom: 6px;
  transition: all 0.3s;
}

.zny .faq-item.active {
  border-color: var(--zny-border-medium);
  background: var(--zny-white);
  box-shadow: 0 4px 16px rgba(133, 108, 78, 0.06);
}

.zny .faq-question {
  width: 100%;
  padding: 18px 22px;
  border: none;
  background: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--zny-font-body);
  text-align: left;
  transition: background 0.2s;
}

.zny .faq-question:hover {
  background: rgba(133, 108, 78, 0.03);
}

.zny .faq-question span:first-child {
  font-size: 15px;
  font-weight: 500;
  color: var(--zny-text-primary);
  padding-right: 14px;
}

.zny .faq-toggle {
  font-size: 20px;
  color: var(--zny-accent-light);
  transition: transform 0.3s, color 0.3s;
  flex-shrink: 0;
  font-weight: 300;
}

.zny .faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: var(--zny-accent);
}

.zny .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.zny .faq-answer-inner {
  padding: 0 22px 18px;
  border-top: 1px solid var(--zny-border-light);
}

.zny .faq-answer-inner p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--zny-text-body);
  margin: 14px 0 0;
}

/* ──────────────── CONTACT CTA ──────────────── */
.zny .contact-cta {
  padding: var(--zny-section-padding);
  background: linear-gradient(165deg, var(--zny-accent) 0%, #6B563E 100%);
  position: relative;
  overflow: hidden;
}

.zny .contact-orb {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217, 194, 145, 0.06) 0%, transparent 70%);
}

.zny .contact-inner {
  max-width: 520px;
  margin: 0 auto;
  position: relative;
  text-align: center;
}

.zny .contact-pulse-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(217, 194, 145, 0.15);
  border: 1px solid rgba(217, 194, 145, 0.3);
  border-radius: var(--zny-radius-xl);
  padding: 5px 14px;
  font-size: 11px;
  font-weight: 700;
  color: var(--zny-accent-light);
  margin-bottom: 14px;
}

.zny .pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--zny-accent-light);
  animation: zny-pulse 2s infinite;
}

.zny .contact-cta .section-title {
  color: #F5F0E8;
  margin-bottom: 8px;
}

.zny .contact-cta .section-subtitle {
  color: #fff;
}

/* ──────────────── LEAD FORM ──────────────── */

/* Base lead form (light variant by default — HTML class version) */
.zny .lead-form {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(20px);
  border-radius: var(--zny-radius-xl);
  padding: 30px 26px;
  border: 1px solid rgba(133, 108, 78, 0.1);
  text-align: left;
}

/* Dark variant — class selector (HTML version) */
.zny .lead-form.dark {
  background: rgba(0, 0, 0, 0.45);
  border-color: rgba(217, 194, 145, 0.35);
}

/* Dark variant — data-variant selector (WP version) */
.zny .lead-form[data-variant="dark"] {
  background: rgba(0, 0, 0, 0.45);
  border-color: rgba(217, 194, 145, 0.35);
}

/* Light variant — data-variant selector (WP version) */
.zny .lead-form[data-variant="light"] {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(133, 108, 78, 0.1);
}

.zny .lead-form h3 {
  font-family: var(--zny-font-heading);
  font-size: 21px;
  font-weight: 600;
  color: var(--zny-accent);
  margin: 0 0 4px;
}

.zny .lead-form[data-variant="dark"] h3 {
  color: #fff;
}

.zny .lead-form .form-subtitle {
  color: var(--zny-text-muted);
  font-size: 11px;
  margin: 0 0 18px;
  line-height: 1.5;
}

.zny .lead-form.dark .form-subtitle,
.zny .lead-form[data-variant="dark"] .form-subtitle {
  color: #d5d0c0;
}

.zny .lead-form .form-fields {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.zny .lead-form select,
.zny .lead-form input[type="text"],
.zny .lead-form input[type="email"],
.zny .lead-form input[type="tel"] {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid rgba(133, 108, 78, 0.14);
  border-radius: 10px;
  background: rgba(133, 108, 78, 0.035);
  color: var(--zny-text-primary);
  font-size: 14px;
  font-family: var(--zny-font-body);
  outline: none;
  box-sizing: border-box;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
  line-height: 1.4;
  height: auto;
}

/* Dark variant inputs — class selector */
.zny .lead-form.dark select,
.zny .lead-form.dark input[type="text"],
.zny .lead-form.dark input[type="email"],
.zny .lead-form.dark input[type="tel"] {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

/* Dark variant inputs — data-variant selector */
.zny .lead-form[data-variant="dark"] select,
.zny .lead-form[data-variant="dark"] input[type="text"],
.zny .lead-form[data-variant="dark"] input[type="email"],
.zny .lead-form[data-variant="dark"] input[type="tel"] {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

/* Light variant inputs — data-variant selector */
.zny .lead-form[data-variant="light"] select,
.zny .lead-form[data-variant="light"] input[type="text"],
.zny .lead-form[data-variant="light"] input[type="email"],
.zny .lead-form[data-variant="light"] input[type="tel"] {
  background: rgba(133, 108, 78, 0.035);
  border: 1px solid rgba(133, 108, 78, 0.14);
  color: var(--zny-text-primary);
}

.zny .lead-form.dark input::placeholder,
.zny .lead-form[data-variant="dark"] input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.zny .lead-form.dark select,
.zny .lead-form[data-variant="dark"] .form-fields select {
  color: rgba(255, 255, 255, 0.7);
}

.zny .lead-form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M3 5l3 3 3-3' stroke='%238A8A7A' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.zny .lead-form .field-error {
  border-color: rgba(239, 68, 68, 0.6) !important;
}

.zny .agent-label {
  font-size: 12px;
  color: var(--zny-text-muted);
  margin-bottom: 6px;
}

.zny .lead-form.dark .agent-label,
.zny .lead-form[data-variant="dark"] .agent-label {
  color: #d5d0c0;
}

.zny .agent-options {
  display: flex;
  gap: 8px;
}

.zny .agent-btn {
  flex: 1;
  padding: 10px;
  border: 1px solid rgba(133, 108, 78, 0.14);
  border-radius: var(--zny-radius-sm);
  background: rgba(133, 108, 78, 0.035);
  color: var(--zny-text-muted);
  font-size: 13px;
  font-weight: 400;
  font-family: var(--zny-font-body);
  transition: all 0.2s;
  cursor: pointer;
}

.zny .agent-btn.selected {
  border-color: var(--zny-accent);
  background: rgba(133, 108, 78, 0.06);
  color: var(--zny-text-primary);
  font-weight: 600;
}

/* Light variant agent buttons — data-variant selector */
.zny .lead-form[data-variant="light"] .agent-btn {
  background: rgba(133, 108, 78, 0.035);
  border: 1px solid rgba(133, 108, 78, 0.14);
  color: var(--zny-text-muted);
}

.zny .lead-form[data-variant="light"] .agent-btn.selected {
  border-color: var(--zny-accent);
  background: rgba(133, 108, 78, 0.06);
  color: var(--zny-text-primary);
  font-weight: 600;
}

/* Dark variant agent buttons — class selector */
.zny .lead-form.dark .agent-btn {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.7);
}

.zny .lead-form.dark .agent-btn.selected {
  border-color: var(--zny-accent-light);
  background: rgba(217, 194, 145, 0.15);
  color: #fff;
}

/* Dark variant agent buttons — data-variant selector */
.zny .lead-form[data-variant="dark"] .agent-btn {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.7);
}

.zny .lead-form[data-variant="dark"] .agent-btn.selected {
  border-color: var(--zny-accent-light);
  background: rgba(217, 194, 145, 0.15);
  color: #fff;
  font-weight: 600;
}

.zny .form-error-msg {
  color: #ef4444;
  font-size: 12px;
  margin: 2px 0 0;
  text-align: center;
  display: none;
}

.zny .form-error-msg.visible {
  display: block;
}

.zny .form-submit {
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 10px;
  background: var(--zny-accent);
  color: #F5F0E8;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--zny-font-body);
  cursor: pointer;
  letter-spacing: 0.4px;
  transition: transform 0.2s, box-shadow 0.2s;
  line-height: 1;
}

.zny .form-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.zny .form-submit:disabled {
  cursor: not-allowed;
  opacity: 0.7;
}

/* Light variant submit — data-variant selector */
.zny .lead-form[data-variant="light"] .form-submit {
  background: var(--zny-accent);
  color: #F5F0E8;
}

/* Dark variant submit — class selector */
.zny .lead-form.dark .form-submit {
  background: var(--zny-accent-light);
  color: #3A2A1A;
}

/* Dark variant submit — data-variant selector */
.zny .lead-form[data-variant="dark"] .form-submit {
  background: var(--zny-accent-light);
  color: #3A2A1A;
}

.zny .form-note {
  color: var(--zny-text-muted);
  font-size: 11px;
  margin: 10px 0 0;
  text-align: center;
}

.zny .lead-form.dark .form-note,
.zny .lead-form[data-variant="dark"] .form-note {
  color: #d5d0c0;
}

.zny .form-success {
  text-align: center;
  padding: 40px;
  display: none;
}

.zny .form-success.visible {
  display: block;
}

.zny .form-success h3 {
  font-family: var(--zny-font-heading);
  font-size: 24px;
  font-weight: 600;
  color: var(--zny-accent);
  margin: 0 0 8px;
}

.zny .form-success p {
  color: var(--zny-accent);
  font-size: 14px;
  margin: 0;
}

/* ──────────────── WHATSAPP FAB ──────────────── */
.zny .wa-fab {
  position: fixed;
  bottom: 76px;
  right: 20px;
  z-index: 997;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
}

.zny .wa-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
}

.zny .wa-fab svg {
  width: 26px;
  height: 26px;
  fill: #fff;
}

/* ──────────────── STICKY MOBILE CTA ──────────────── */
.zny .sticky-mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  background: rgba(133, 108, 78, 0.95);
  backdrop-filter: blur(12px);
  padding: 11px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.4s, opacity 0.4s;
  border-top: 1px solid rgba(217, 194, 145, 0.15);
}

.zny .sticky-mobile-cta.visible {
  transform: translateY(0);
  opacity: 1;
}

.zny .sticky-cta-info .price {
  color: #F5F0E8;
  font-size: 13px;
  font-weight: 600;
}

.zny .sticky-cta-info .off-plan-tag {
  color: var(--zny-accent-light);
  font-size: 11px;
  font-weight: 700;
  margin-left: 8px;
}

.zny .sticky-cta-info .roi {
  color: var(--zny-accent-light);
  font-size: 11px;
}

.zny .sticky-cta-btn {
  padding: 10px 22px;
  border: none;
  border-radius: var(--zny-radius-sm);
  background: var(--zny-accent-light);
  color: var(--zny-accent);
  font-size: 13px;
  font-weight: 700;
  font-family: var(--zny-font-body);
  cursor: pointer;
}

/* ──────────────── LIGHTBOX ──────────────── */
.zny .lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
}

.zny .lightbox.open {
  display: flex;
}

.zny .lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  z-index: 10;
}

.zny .lightbox-prev,
.zny .lightbox-next {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  font-size: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s;
}

.zny .lightbox-prev:hover,
.zny .lightbox-next:hover {
  background: rgba(255, 255, 255, 0.2);
}

.zny .lightbox-prev {
  left: 16px;
}

.zny .lightbox-next {
  right: 16px;
}

.zny .lightbox img {
  max-width: 88vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--zny-radius-sm);
  cursor: default;
}

.zny .lightbox-caption {
  position: absolute;
  bottom: 24px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-family: var(--zny-font-body);
}

/* ──────────────── ANIMATIONS ──────────────── */
@keyframes zny-fadeDown {
  from {
    opacity: 0;
    transform: translateY(-16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes zny-pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}

/* ──────────────── RESPONSIVE ──────────────── */
@media (max-width: 860px) {
  .zny .nav-links { display: none !important; }
  .zny .mobile-toggle { display: flex !important; }
  .zny .hero-bg { display: none !important; }
  .zny .hero-thumbs { display: none !important; }
  .zny .hero-form-desktop { display: none !important; }
  .zny .hero-form-mobile { display: block !important; }

  .zny .hero-mobile-img {
    display: block;
    margin: 16px 0 20px;
    border-radius: 12px;
    overflow: hidden;
  }

  .zny .hero-mobile-img img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
  }

  .zny .hero-grid { grid-template-columns: 1fr !important; }
  .zny .hero-stats { grid-template-columns: 1fr 1fr !important; gap: 14px 18px !important; }
  .zny .hero-thumbs { gap: 6px !important; }
  .zny .hero-thumb { width: 48px !important; height: 34px !important; }

  .zny .stats-grid { grid-template-columns: 1fr 1fr !important; }
  .zny .inv-grid { grid-template-columns: 1fr !important; }
  .zny .inv-cards { grid-template-columns: 1fr 1fr !important; }

  .zny .eco-grid { grid-template-columns: 1fr 1fr !important; }
  .zny .eco-features {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    max-width: 480px !important;
    margin: 0 auto !important;
    gap: 10px 0 !important;
  }
  .zny .eco-features .eco-feature { padding-left: 20px; }

  .zny .lifestyle-grid { grid-template-columns: 1fr !important; }
  .zny .amenity-grid { grid-template-columns: 1fr 1fr !important; }
  .zny .units-grid { grid-template-columns: 1fr !important; }

  .zny .floor-plans { grid-template-columns: 1fr !important; }

  .zny .gal-grid { grid-template-columns: 1fr 1fr !important; }
  .zny .loc-grid { grid-template-columns: 1fr !important; }
  .zny .location-list { grid-template-columns: 1fr !important; }
  .zny .cred-grid { grid-template-columns: 1fr !important; }

  .zny .award-showcase-caption {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .zny .award-showcase-caption > span:last-child { margin-left: 0; }

  .zny .limo-grid {
    grid-template-columns: 1fr !important;
    text-align: center;
    justify-items: center;
  }

  .zny .timeline {
    flex-direction: column !important;
    align-items: center !important;
    gap: 8px !important;
  }
  .zny .timeline-step { flex: none !important; width: 100% !important; }
  .zny .timeline-line { display: none !important; }

  .zny .badge-grid {
    grid-template-columns: repeat(6, 1fr) !important;
  }
  .zny .badge-grid .badge-card:nth-child(1) { grid-column: 1 / 3; }
  .zny .badge-grid .badge-card:nth-child(2) { grid-column: 3 / 5; }
  .zny .badge-grid .badge-card:nth-child(3) { grid-column: 5 / 7; }
  .zny .badge-grid .badge-card:nth-child(4) { grid-column: 1 / 4; }
  .zny .badge-grid .badge-card:nth-child(5) { grid-column: 4 / 7; }
}

@media (max-width: 480px) {
  .zny .badge-grid {
    grid-template-columns: repeat(4, 1fr) !important;
  }
  .zny .badge-grid .badge-card:nth-child(1) { grid-column: 1 / 3; }
  .zny .badge-grid .badge-card:nth-child(2) { grid-column: 3 / 5; }
  .zny .badge-grid .badge-card:nth-child(3) { grid-column: 1 / 3; }
  .zny .badge-grid .badge-card:nth-child(4) { grid-column: 3 / 5; }
  .zny .badge-grid .badge-card:nth-child(5) { grid-column: 2 / 4; }

  .zny .eco-grid { grid-template-columns: 1fr !important; }
  .zny .inv-cards { grid-template-columns: 1fr !important; }
  .zny .amenity-grid { grid-template-columns: 1fr !important; }
}

@media (min-width: 861px) {
  .zny .mobile-toggle { display: none !important; }
  .zny .hero-form-mobile { display: none !important; }
}
