/* ============================================================
   Dwarka Puri Vrindavan — Main Stylesheet
   Version: 2.3.0
   ============================================================ */

/* ─── RESET & ROOT ─── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --gold:       #C4862A;
  --gold-light: #D4A24C;
  --gold-pale:  #F9F1E4;
  --teal:       #6B3320;
  --teal-dark:  #3D1C0E;
  --black:      #1A1208;
  --grey:       #5A4A3A;
  --grey-light: #8C7A68;
  --border:     #E8DDD0;
  --white:      #FFFDF9;
  --off:        #FAF6EF;
  --maroon:     #4A1F16;
  --bronze:     #7A4B2A;
  --sandstone:  #C4A882;
  --cream:      #F5EDD8;
  --saffron:    #C76B1C;
  --serif:      'Cormorant Garamond', Georgia, serif;
  --sans:       'Inter', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--black);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1;
  padding-top: 78px;
}

body.home { padding-top: 0; }

/* ─── NAV ─── */
nav#site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 36px;
  transition: all 0.4s ease;
  gap: 16px;
}

nav#site-nav.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 8px 36px;
  box-shadow: 0 1px 0 var(--border);
}

.nav-left { display: flex; align-items: center; gap: 12px; }
.nav-logo-link { display: flex; align-items: center; text-decoration: none; }
.nav-logo-img { height: 38px; width: auto; display: block; transition: height 0.4s ease; mix-blend-mode: screen; }
nav#site-nav.scrolled .nav-logo-img { height: 32px; mix-blend-mode: multiply; }
.nav-brand-text { display: flex; flex-direction: column; }
.nav-om { font-size: 20px; color: rgba(255,255,255,0.6); transition: color 0.4s; line-height: 1; margin-bottom: 2px; }
nav#site-nav.scrolled .nav-om { color: var(--gold); }
.nav-name { font-family: var(--serif); font-size: 18px; font-weight: 600; letter-spacing: 0.1em; color: #fff; transition: color 0.4s; line-height: 1; }
.nav-tag { font-size: 9px; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-top: 3px; transition: color 0.4s; }
nav#site-nav.scrolled .nav-name { color: var(--maroon); }
nav#site-nav.scrolled .nav-tag { color: var(--gold); }

.nav-links { display: flex; gap: 40px; list-style: none; }
.nav-links a { font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600; color: rgba(255,255,255,0.85); text-decoration: none; transition: color 0.3s; }
nav#site-nav.scrolled .nav-links a { color: var(--black); }
.nav-links a:hover { color: var(--gold-light) !important; }

#site-nav .menu { display: flex; gap: 16px; list-style: none; margin: 0; padding: 0; flex-shrink: 0; }
#site-nav .menu li { position: relative; }
#site-nav .menu li a { font-size: 10.5px; letter-spacing: 0.07em; text-transform: uppercase; font-weight: 600; color: rgba(255,255,255,0.85); text-decoration: none; transition: color 0.3s; white-space: nowrap; }
nav#site-nav.scrolled .menu li a { color: var(--black); }
#site-nav .menu li a:hover { color: var(--gold-light) !important; }

/* ─── NAV BUTTONS ─── */
.nav-ctas { display: flex; align-items: center; gap: 12px; }

.nav-cta {
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,0.5);
  color: white;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
  background: transparent;
  font-family: var(--sans);
  white-space: nowrap;
  flex-shrink: 0;
}
nav#site-nav.scrolled .nav-cta { color: var(--maroon); border-color: var(--maroon); }
.nav-cta:hover { background: var(--gold); border-color: var(--gold); color: white !important; }

.nav-cta-secondary {
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,0.5);
  color: white;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
  background: transparent;
  font-family: var(--sans);
  white-space: nowrap;
  flex-shrink: 0;
}
nav#site-nav.scrolled .nav-cta-secondary { color: var(--maroon); border-color: var(--maroon); }
.nav-cta-secondary:hover { background: var(--gold); border-color: var(--gold); color: white !important; }

/* ─── HAMBURGER ─── */
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; z-index: 600; }
.nav-hamburger span { display: block; width: 26px; height: 2px; background: var(--gold); transition: all 0.3s ease; border-radius: 2px; }
nav#site-nav.scrolled .nav-hamburger span { background: var(--black); }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── MOBILE MENU ─── */
.nav-mobile-menu { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(26,18,8,0.98); z-index: 550; flex-direction: column; align-items: center; justify-content: center; gap: 28px; padding: 40px 24px; }
.nav-mobile-menu.open { display: flex; }
.nav-mobile-menu a { font-family: var(--serif); font-size: 26px; font-weight: 600; color: rgba(255,255,255,0.85); text-decoration: none; letter-spacing: 0.06em; transition: color 0.3s; }
.nav-mobile-menu a:hover { color: var(--gold); }
.nav-mobile-cta { margin-top: 16px; font-family: var(--sans) !important; font-size: 12px !important; letter-spacing: 0.2em !important; text-transform: uppercase; background: var(--gold); color: white !important; padding: 14px 36px; font-weight: 700 !important; border: none; cursor: pointer; }
.nav-mobile-close { position: absolute; top: 20px; right: 24px; background: none; border: none; color: rgba(255,255,255,0.5); font-size: 28px; cursor: pointer; line-height: 1; transition: color 0.2s; }
.nav-mobile-close:hover { color: white; }

/* ─── HERO ─── */
#hero { position: relative; min-height: 100vh; display: grid; grid-template-columns: 1fr 480px; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background: url('../images/hero-bg.jpg') center / cover no-repeat; }
.hero-ov { position: absolute; inset: 0; background: linear-gradient(110deg, rgba(30,10,4,0.60) 0%, rgba(45,14,6,0.45) 48%, rgba(45,14,6,0.22) 100%); }
.hero-gold-line { position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, transparent, var(--gold), #E8B060, var(--gold), transparent); }
.hero-left { position: relative; z-index: 2; padding: 120px 64px 80px 72px; max-width: 740px; }
.hero-eyebrow { display: flex; align-items: center; gap: 14px; margin-bottom: 28px; }
.hero-eyebrow-line { width: 32px; height: 1px; background: var(--gold); }
.hero-eyebrow span { font-size: 10px; letter-spacing: 0.35em; text-transform: uppercase; color: #D4A24C; }
.hero-dev { font-family: var(--serif); font-size: 20px; font-weight: 300; color: rgba(255,255,255,0.3); letter-spacing: 0.12em; margin-bottom: 12px; display: block; }
h1.hero-h { font-family: var(--serif); font-size: clamp(52px,5.8vw,82px); font-weight: 600; line-height: 1.02; color: white; letter-spacing: -0.01em; margin-bottom: 22px; }
h1.hero-h em { font-style: italic; color: #D4A24C; }
.hero-sub { font-size: 19px; color: rgba(255,255,255,0.68); line-height: 1.75; max-width: 480px; margin-bottom: 36px; font-weight: 300; }
.hero-bullets { display: flex; flex-direction: column; gap: 12px; margin-bottom: 40px; }
.hb { display: flex; align-items: center; gap: 12px; }
.hb-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.hb span { font-size: 16px; color: rgba(255,255,255,0.65); line-height: 1.4; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-play { display: inline-flex; align-items: center; gap: 9px; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.78); border-bottom: 1px solid rgba(255,255,255,0.3); padding-bottom: 4px; text-decoration: none; transition: all 0.3s; }
.btn-play:hover { color: #D4A24C; border-color: #D4A24C; }
.btn-play svg { width: 14px; height: 14px; fill: currentColor; }
.btn-dl-hero { display: inline-flex; align-items: center; gap: 9px; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.78); border-bottom: 1px solid rgba(255,255,255,0.3); padding-bottom: 4px; text-decoration: none; transition: all 0.3s; cursor: pointer; background: none; border-top: none; border-left: none; border-right: none; font-family: var(--sans); }
.btn-dl-hero:hover { color: #D4A24C; border-color: #D4A24C; }
.btn-dl-hero svg { width: 13px; height: 13px; }

/* ─── HERO FORM ─── */
.hero-right { position: relative; z-index: 2; padding: 120px 56px 80px 24px; display: flex; align-items: center; height: 100%; }
.hero-form { background: white; border-top: 4px solid var(--gold); padding: 44px 40px 40px; width: 100%; box-shadow: 0 32px 80px rgba(0,0,0,0.45); }
.hf-title { font-family: var(--serif); font-size: 34px; font-weight: 600; color: var(--maroon); margin-bottom: 6px; line-height: 1.1; }
.hf-sub { font-size: 15px; color: var(--grey); margin-bottom: 28px; line-height: 1.5; font-weight: 400; }

/* ─── FORM FIELDS ─── */
.ff { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.ff label { font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--black); font-weight: 700; }
.ff input, .ff select, .ff textarea { background: var(--off); border: 1.5px solid var(--border); color: var(--black); padding: 14px 16px; font-family: var(--sans); font-size: 16px; font-weight: 500; outline: none; width: 100%; transition: border-color 0.3s; -webkit-appearance: none; border-radius: 0; }
.ff input::placeholder { color: #BBBBBB; font-weight: 300; }
.ff input:focus, .ff select:focus { border-color: var(--gold); background: white; }
.ff select { appearance: none; -webkit-appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23C4862A'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; background-color: var(--off); }
.ff select:focus { background-color: white; }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.btn-hf { width: 100%; background: var(--gold); color: white; border: none; padding: 17px; font-family: var(--sans); font-size: 14px; letter-spacing: 0.18em; text-transform: uppercase; cursor: pointer; font-weight: 700; transition: background 0.3s; margin-top: 6px; }
.btn-hf:hover { background: var(--maroon); }
.hf-note { font-size: 13px; color: var(--grey); text-align: center; margin-top: 12px; font-weight: 400; }
.hf-note a { color: var(--gold); text-decoration: none; font-weight: 600; }

/* ─── STATS BAR ─── */
.sbar { background: var(--teal-dark); display: grid; grid-template-columns: repeat(4,1fr); border-top: 3px solid var(--gold); }
.sbar-item { padding: 36px 44px; border-right: 1px solid rgba(255,255,255,0.07); }
.sbar-item:last-child { border-right: none; }
.sbar-n { font-family: var(--serif); font-size: 46px; font-weight: 600; color: var(--cream); line-height: 1; margin-bottom: 8px; }
.sbar-n sup { font-size: 20px; color: var(--gold-light); vertical-align: super; }
.sbar-l { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,220,170,0.45); line-height: 1.4; }

/* ─── SECTION SYSTEM ─── */
.section { padding: 100px 64px; }
.section-inner { max-width: 1280px; margin: 0 auto; }
.s-tag { display: inline-flex; align-items: center; gap: 12px; font-size: 10.5px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.s-tag::before { content: '✦'; font-size: 7px; }
.s-h { font-family: var(--serif); font-size: clamp(38px,4vw,62px); font-weight: 600; line-height: 1.08; color: var(--black); margin-bottom: 20px; }
.s-h em { font-style: italic; color: var(--gold); }
.s-p { font-size: 19px; color: var(--grey); line-height: 1.82; max-width: 580px; }

/* ─── B&B SECTION ─── */
#bnb { background: var(--white); padding: 0; }
.bnb-wrap { display: grid; grid-template-columns: 1fr 1fr; min-height: 700px; }
.bnb-left { padding: 100px 80px 100px 64px; display: flex; flex-direction: column; justify-content: center; }
.bnb-left .s-p { margin-bottom: 48px; }
.bnb-wrap.bnb-fullwidth { display: block; }
.bnb-wrap.bnb-fullwidth .bnb-left { padding: 100px 120px; max-width: 1280px; margin: 0 auto; }
.bnb-wrap.bnb-fullwidth .bnb-grid { grid-template-columns: repeat(4,1fr); }
.bnb-wrap.bnb-fullwidth .s-p { max-width: 820px; }
.bnb-wrap.bnb-fullwidth .policy-strip { max-width: 900px; }
.bnb-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 48px; }
.bnb-card { background: var(--off); border: 1px solid var(--border); padding: 28px 24px; }
.bnb-card-n { font-family: var(--serif); font-size: 40px; font-weight: 600; color: var(--maroon); line-height: 1; margin-bottom: 8px; }
.bnb-card-n span { font-size: 20px; color: var(--gold); }
.bnb-card-l { font-size: 14px; color: var(--grey); line-height: 1.5; }
.policy-strip { border-left: 3px solid var(--gold); padding: 20px 24px; background: var(--gold-pale); }
.policy-strip p { font-size: 15.5px; color: var(--grey); line-height: 1.72; }
.policy-strip strong { color: var(--gold); font-weight: 500; }
.bnb-right { position: relative; overflow: hidden; }
.bnb-right img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; min-height: 600px; }
.bnb-right-ov { position: absolute; inset: 0; background: linear-gradient(to top, rgba(5,15,8,0.75) 0%, transparent 55%); display: flex; flex-direction: column; justify-content: flex-end; padding: 44px 40px; }
.bnb-q { font-family: var(--serif); font-size: 22px; font-style: italic; font-weight: 300; color: white; line-height: 1.45; margin-bottom: 10px; }
.bnb-attr { font-size: 10px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--gold-light); }

/* ─── VIDEO SECTION ─── */
#video { background: var(--teal-dark); padding: 96px 64px; }
.video-inner { max-width: 960px; margin: 0 auto; text-align: center; }
#video .s-tag { color: var(--gold-light); justify-content: center; }
#video .s-tag::before { color: var(--gold-light); }
#video .s-h { color: white; }
#video .s-h em { color: var(--gold-light); }
#video .s-p { color: rgba(255,255,255,0.48); margin: 0 auto 48px; text-align: center; }
.vbox { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; border: 1px solid rgba(184,115,26,0.35); box-shadow: 0 40px 100px rgba(0,0,0,0.6); }
.vbox iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }
.vthumb { position: absolute; inset: 0; z-index: 2; cursor: pointer; background: url('../images/video-thumb.jpg') center / cover; display: flex; align-items: center; justify-content: center; transition: opacity 0.4s; }
.vthumb.hide { opacity: 0; pointer-events: none; }
.vthumb-ov { position: absolute; inset: 0; background: rgba(0,0,0,0.20); }
.vplay { position: relative; z-index: 1; width: 78px; height: 78px; border-radius: 50%; background: var(--gold); display: flex; align-items: center; justify-content: center; transition: transform 0.3s, background 0.3s; }
.vthumb:hover .vplay { transform: scale(1.1); background: var(--maroon); }
.vplay svg { width: 26px; height: 26px; fill: white; margin-left: 5px; }
.vcap { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-light); margin-top: 20px; }

/* ─── INVEST SECTION ─── */
#invest { background: var(--white); padding: 100px 64px; }
.invest-inner { max-width: 1280px; margin: 0 auto; }
.invest-top { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; margin-bottom: 56px; }
.epr-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-bottom: 64px; }
.epr-card { border: 1px solid var(--border); padding: 40px 32px; text-align: center; position: relative; transition: transform 0.3s, box-shadow 0.3s; background: white; }
.epr-card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(0,0,0,0.08); }
.epr-card.best { background: var(--maroon); border-color: var(--maroon); }
.epr-pct { font-family: var(--serif); font-size: 72px; font-weight: 600; color: var(--gold); line-height: 1; margin-bottom: 4px; }
.epr-card.best .epr-pct { color: var(--gold-light); }
.epr-label { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--grey); margin-bottom: 6px; }
.epr-card.best .epr-label { color: rgba(255,255,255,0.5); }
.epr-trigger { font-size: 14px; color: var(--grey-light); margin-bottom: 24px; }
.epr-card.best .epr-trigger { color: rgba(255,255,255,0.35); }
.epr-divider { height: 1px; background: var(--border); margin-bottom: 20px; }
.epr-card.best .epr-divider { background: rgba(255,255,255,0.1); }
.epr-row-item { display: flex; justify-content: space-between; font-size: 14px; margin-bottom: 8px; }
.epr-row-item span:first-child { color: var(--grey); }
.epr-card.best .epr-row-item span:first-child { color: rgba(255,255,255,0.4); }
.epr-row-item span:last-child { color: var(--black); font-weight: 400; }
.epr-card.best .epr-row-item span:last-child { color: white; }
.best-badge { position: absolute; top: -1px; right: 24px; background: var(--gold); color: white; font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase; padding: 5px 14px; }
.roi-head { font-family: var(--serif); font-size: 32px; font-weight: 600; color: var(--black); margin-bottom: 28px; }
.roi-head em { font-style: italic; color: var(--gold); }
.roi-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.roc { border: 1px solid var(--border); padding: 40px 32px; position: relative; background: white; transition: transform 0.3s, box-shadow 0.3s; }
.roc:hover { transform: translateY(-4px); box-shadow: 0 20px 56px rgba(0,0,0,0.07); }
.roc.feat { background: var(--maroon); border-color: var(--maroon); }
.roc-badge { position: absolute; top: 0; right: 0; background: var(--gold); color: white; font-size: 9px; letter-spacing: 0.16em; text-transform: uppercase; padding: 6px 14px; }
.roc-label { font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.roc.feat .roc-label { color: var(--gold-light); }
.roc-days { font-family: var(--serif); font-size: 64px; font-weight: 600; color: var(--maroon); line-height: 1; }
.roc.feat .roc-days { color: white; }
.roc-days-l { font-size: 14px; color: var(--grey); margin-bottom: 20px; margin-top: 4px; }
.roc.feat .roc-days-l { color: rgba(255,255,255,0.45); }
.roc-m { font-family: var(--serif); font-size: 28px; font-weight: 600; color: var(--black); margin-bottom: 20px; }
.roc.feat .roc-m { color: white; }
.roc-line { height: 1px; background: var(--border); margin-bottom: 18px; }
.roc.feat .roc-line { background: rgba(255,255,255,0.1); }
.roc-r { display: flex; justify-content: space-between; font-size: 14.5px; margin-bottom: 10px; }
.roc-r span:first-child { color: var(--grey); }
.roc.feat .roc-r span:first-child { color: rgba(255,255,255,0.42); }
.roc-r span:last-child { color: var(--black); font-weight: 400; }
.roc.feat .roc-r span:last-child { color: var(--gold-light); }
.roi-note { font-size: 12.5px; color: var(--grey-light); margin-top: 20px; text-align: center; }

/* ─── UNITS SECTION ─── */
#units { background: var(--gold-pale); padding: 100px 64px; }
.units-inner { max-width: 1280px; margin: 0 auto; }
.units-top { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 56px; flex-wrap: wrap; gap: 24px; }
.units-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 28px; }
.uc { background: white; border: 1px solid var(--border); overflow: hidden; transition: transform 0.35s, box-shadow 0.35s; }
.uc:hover { transform: translateY(-8px); box-shadow: 0 28px 64px rgba(0,0,0,0.1); }
.uc-img { position: relative; height: 210px; overflow: hidden; background: #E8E0D0; }
.uc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.65s; display: block; }
.uc:hover .uc-img img { transform: scale(1.06); }
.uc-badge { position: absolute; top: 0; left: 0; background: var(--gold); color: white; font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; padding: 7px 14px; }
.uc-badge.best-value { background: var(--teal); }
.uc-body { padding: 28px 24px 30px; }
.uc-sqft { font-family: var(--serif); font-size: 38px; font-weight: 600; color: var(--maroon); line-height: 1; margin-bottom: 18px; }
.uc-dims { margin-bottom: 20px; }
.uc-dim { display: flex; gap: 8px; align-items: flex-start; font-size: 15px; color: var(--grey); padding: 7px 0; border-bottom: 1px solid var(--border); line-height: 1.4; }
.uc-dim:last-child { border-bottom: none; }
.uc-dim::before { content: '›'; color: var(--gold); flex-shrink: 0; font-size: 18px; line-height: 1.2; }
.uc-foot { padding-top: 18px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: baseline; }
.uc-price { font-family: var(--serif); font-size: 30px; font-weight: 600; color: var(--black); }
.uc-psf { font-size: 13px; color: var(--grey-light); }
.pay-plans { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 48px; }
.pp { border: 1px solid var(--border); padding: 36px 32px; background: white; }
.pp-head { font-size: 15px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); margin-bottom: 24px; padding-bottom: 16px; border-bottom: 1px solid var(--border); font-weight: 600; }
.pp-r { display: flex; justify-content: space-between; font-size: 14.5px; color: var(--grey); padding: 9px 0; border-bottom: 1px solid var(--border); }
.pp-r:last-child { border-bottom: none; }
.pp-r span:last-child { color: var(--black); font-weight: 400; text-align: right; }

/* ─── AMENITIES SECTION ─── */
#amen { background: white; padding: 100px 64px; }
.amen-inner { max-width: 1280px; margin: 0 auto; }
.amen-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.amen-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border); margin-top: 40px; }
.amen-card { background: white; padding: 28px 24px; display: flex; flex-direction: column; gap: 10px; transition: background 0.3s; }
.amen-card:hover { background: var(--gold-pale); }
.amen-ico { font-size: 28px; line-height: 1; }
.amen-name { font-size: 16px; font-weight: 600; color: var(--black); }
.amen-desc { font-size: 13.5px; color: var(--grey); line-height: 1.5; }
.amen-photos { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 12px; height: 100%; }
.ap { overflow: hidden; background: #E0D8CC; }
.ap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.65s; display: block; }
.ap:hover img { transform: scale(1.05); }
.ap.tall { grid-row: span 2; }
.ap.tall img { min-height: 100%; }

/* ─── CONTACT SECTION ─── */
#contact { padding: 0; background: white; }
.contact-wrap { display: grid; grid-template-columns: 1fr 1fr; min-height: 600px; }
.contact-img { position: relative; overflow: hidden; }
.contact-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.contact-img-ov { position: absolute; inset: 0; background: linear-gradient(140deg, rgba(45,14,6,0.45) 0%, rgba(61,28,14,0.55) 100%); display: flex; flex-direction: column; justify-content: flex-end; padding: 56px 52px; }
.cio-om { font-size: 56px; color: rgba(255,255,255,0.1); line-height: 1; margin-bottom: 14px; }
.cio-tag { font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 12px; }
.cio-q { font-family: var(--serif); font-size: 30px; font-weight: 300; font-style: italic; color: white; line-height: 1.35; }
.contact-form { background: var(--cream); padding: 72px 56px; display: flex; flex-direction: column; justify-content: center; }
.cf-tag { font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.cf-title { font-family: var(--serif); font-size: 36px; font-weight: 600; color: var(--black); margin-bottom: 8px; }
.cf-title em { font-style: italic; color: var(--gold); }
.cf-sub { font-size: 16px; color: var(--grey); margin-bottom: 36px; line-height: 1.7; }
.crow { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.ff textarea { resize: none; height: 82px; }
.btn-cf { background: var(--gold); color: white; border: none; padding: 17px 44px; font-family: var(--sans); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; cursor: pointer; transition: background 0.3s; align-self: flex-start; margin-top: 8px; }
.btn-cf:hover { background: var(--maroon); }

/* ─── FOOTER ─── */
footer#site-footer { background: var(--black); padding: 48px 64px; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 24px; }
.f-brand { font-family: var(--serif); font-size: 18px; font-weight: 600; color: white; letter-spacing: 0.1em; }
.f-sub { font-size: 9px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--gold); margin-top: 4px; }
.f-logo img { height: 48px; width: auto; display: block; mix-blend-mode: screen; filter: brightness(0.9); }
.f-links { display: flex; gap: 28px; list-style: none; margin: 0; padding: 0; }
.f-links a { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 500; color: rgba(255,255,255,0.85); text-decoration: none; transition: color 0.3s; }
.f-links a:hover { color: var(--gold-light); }
#footer-menu { display: flex; gap: 28px; list-style: none; margin: 0; padding: 0; }
#footer-menu li a { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 500; color: rgba(255,255,255,0.85); text-decoration: none; transition: color 0.3s; }
#footer-menu li a:hover { color: var(--gold-light); }
.f-copy { font-size: 12px; color: rgba(255,255,255,0.2); text-align: right; line-height: 1.7; }
.f-copy a { color: var(--gold); text-decoration: none; }

/* ─── BROCHURE POPUP ─── */
#bro-popup-overlay { display: none; position: fixed; inset: 0; z-index: 9000; background: rgba(35,10,4,0.78); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); align-items: center; justify-content: center; }
#bro-popup-overlay.open { display: flex; }
.bro-popup { background: white; border-top: 4px solid var(--gold); width: 100%; max-width: 520px; padding: 52px 48px 44px; position: relative; box-shadow: 0 48px 120px rgba(0,0,0,0.5); animation: popSlide 0.35s ease; }
@keyframes popSlide { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: none; } }
.bro-popup-close { position: absolute; top: 18px; right: 22px; background: none; border: none; cursor: pointer; font-size: 22px; color: var(--grey-light); line-height: 1; transition: color 0.2s; }
.bro-popup-close:hover { color: var(--black); }
.bro-popup-tag { font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.bro-popup-title { font-family: var(--serif); font-size: 32px; font-weight: 600; color: var(--maroon); line-height: 1.1; margin-bottom: 8px; }
.bro-popup-title em { font-style: italic; }
.bro-popup-sub { font-size: 15px; color: var(--grey); line-height: 1.6; margin-bottom: 28px; }
.bro-popup-success { display: none; text-align: center; padding: 24px 0; }
.bro-popup-success .success-ico { font-size: 48px; margin-bottom: 14px; }
.bro-popup-success h3 { font-family: var(--serif); font-size: 28px; color: var(--maroon); margin-bottom: 8px; }
.bro-popup-success p { font-size: 16px; color: var(--grey); line-height: 1.6; }
.btn-bro-submit { width: 100%; background: var(--gold); color: white; border: none; padding: 17px; font-family: var(--sans); font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase; cursor: pointer; font-weight: 700; transition: background 0.3s; margin-top: 6px; }
.btn-bro-submit:hover { background: var(--maroon); }
.bro-popup-note { font-size: 12px; color: var(--grey-light); text-align: center; margin-top: 12px; }

/* ─── FORM RESPONSE ─── */
.dp-form-response { display: none; padding: 12px 16px; margin-bottom: 16px; font-family: var(--sans); font-size: 14px; font-weight: 500; line-height: 1.5; border-radius: 0; }

/* ─── SCROLL REVEAL ─── */
.rv { opacity: 0; transform: translateY(28px); transition: opacity 0.75s ease, transform 0.75s ease; }
.rv.vis { opacity: 1; transform: none; }
.rv.d1 { transition-delay: 0.1s; }
.rv.d2 { transition-delay: 0.2s; }
.rv.d3 { transition-delay: 0.3s; }
.rv.d4 { transition-delay: 0.4s; }

/* ─── WP ADMIN BAR ─── */
.admin-bar nav#site-nav { top: 32px; }
.admin-bar body { padding-top: 110px; }
.admin-bar body.home { padding-top: 32px; }
@media screen and (max-width: 782px) {
  .admin-bar nav#site-nav { top: 46px; }
  .admin-bar body { padding-top: 124px; }
  .admin-bar body.home { padding-top: 46px; }
}

/* ================================================================
   B&B EXPLAINER SECTION — v1.1
   ================================================================ */
.bexp-section { background: var(--cream); border-top: 1px solid rgba(196,134,42,.15); }
.bexp-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.bexp-lead { font-size: 18px; color: var(--maroon); line-height: 1.75; font-style: italic; font-family: var(--serif); border-left: 3px solid var(--gold); padding-left: 20px; margin-bottom: 36px; }
.bexp-blocks { display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px; }
.bexp-block { display: flex; gap: 16px; align-items: flex-start; padding: 20px; background: var(--white); border: 1px solid var(--border); border-left: 3px solid var(--gold); transition: box-shadow .3s; }
.bexp-block:hover { box-shadow: 0 8px 24px rgba(0,0,0,.06); }
.bexp-icon { font-size: 28px; flex-shrink: 0; line-height: 1; margin-top: 2px; }
.bexp-block-title { font-family: var(--serif); font-size: 17px; font-weight: 600; color: var(--black); margin-bottom: 8px; }
.bexp-block-text { font-size: 14.5px; color: var(--grey); line-height: 1.78; margin: 0; }
.bexp-benefits { display: flex; gap: 0; border: 1px solid rgba(196,134,42,.2); overflow: hidden; }
.bexp-benefit { flex: 1; display: flex; flex-direction: column; align-items: center; padding: 16px 12px; text-align: center; border-right: 1px solid rgba(196,134,42,.2); background: var(--teal-dark); }
.bexp-benefit:last-child { border-right: none; }
.bexp-ben-n { font-family: var(--serif); font-size: 20px; font-weight: 600; color: var(--gold); line-height: 1; margin-bottom: 4px; }
.bexp-ben-l { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.65); }
.bexp-right { display: flex; flex-direction: column; gap: 20px; }
.bexp-img-single { min-height: 380px; overflow: hidden; background: #fff; background-size: contain; background-position: center top; background-repeat: no-repeat; position: relative; }
.bexp-placeholder { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; background: rgba(61,28,14,.85); }
.bexp-placeholder span { font-size: 48px; color: rgba(255,255,255,.3); }
.bexp-placeholder small { font-size: 11px; color: rgba(255,255,255,.4); text-align: center; padding: 0 12px; line-height: 1.4; }
.bexp-video-label { display: flex; align-items: center; gap: 8px; font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 10px; }
.bexp-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); flex-shrink: 0; animation: bexp-pulse 2s infinite; }
@keyframes bexp-pulse { 0%,100%{opacity:1} 50%{opacity:.4} }
.bexp-video-wrap { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; background: #000; }
.bexp-video-wrap iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }

/* ================================================================
   FAQ SECTION — v1.1
   ================================================================ */
.faq-section { background: var(--black); position: relative; overflow: hidden; }
.faq-section .s-tag { color: var(--gold); }
.faq-section .s-h { color: #fff; }
.faq-section .s-h em { color: var(--gold); }
.faq-section .s-p { color: rgba(255,255,255,.55); }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 48px; }
.faq-item { border: 1px solid rgba(255,255,255,.08); background: rgba(255,255,255,.03); overflow: hidden; transition: border-color .3s; }
.faq-item:hover { border-color: rgba(196,134,42,.4); }
.faq-q { width: 100%; background: none; border: none; padding: 20px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; font-family: var(--sans); font-size: 15px; font-weight: 600; color: #fff; text-align: left; cursor: pointer; transition: background .25s; line-height: 1.4; }
.faq-q:hover { background: rgba(196,134,42,.08); }
.faq-q[aria-expanded="true"] { background: rgba(196,134,42,.12); color: var(--gold); }
.faq-icon { font-size: 22px; font-weight: 300; color: var(--gold); flex-shrink: 0; line-height: 1; transition: transform .3s; }
.faq-q[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-a { padding: 0 24px 20px; font-size: 14.5px; color: rgba(255,255,255,.6); line-height: 1.78; border-top: 1px solid rgba(255,255,255,.06); }
.faq-a[hidden] { display: none; }
.faq-a div { padding-top: 16px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  #hero { grid-template-columns: 1fr; height: auto; max-height: none; }
  .hero-left { padding: 100px 40px 32px; }
  .hero-right { padding: 0 40px 60px; height: auto; }
  .hero-form { max-width: 480px; }
  .bnb-wrap { grid-template-columns: 1fr; }
  .bnb-wrap.bnb-fullwidth .bnb-left { padding: 72px 40px; }
  .bnb-wrap.bnb-fullwidth .bnb-grid { grid-template-columns: 1fr 1fr; }
  .invest-top { grid-template-columns: 1fr; gap: 20px; }
  .epr-row { gap: 16px; }
  .roi-row { gap: 16px; }
  .units-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .pay-plans { gap: 20px; }
  .amen-layout { grid-template-columns: 1fr; gap: 52px; }
  .contact-wrap { grid-template-columns: 1fr; }
  .contact-img { height: 320px; }
  .bexp-inner { grid-template-columns: 1fr; gap: 48px; }
  .faq-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  nav#site-nav { padding: 6px 20px; }
  nav#site-nav.scrolled { padding: 4px 20px; }
  .nav-logo-img { height: 44px; }
  nav#site-nav.scrolled .nav-logo-img { height: 38px; }
  .nav-links, #site-nav .menu, .nav-cta, .nav-cta-secondary { display: none !important; }
  .nav-hamburger { display: flex; }
  #hero { grid-template-columns: 1fr; min-height: 100svh; }
  .hero-left { padding: 72px 20px 28px; }
  h1.hero-h { font-size: clamp(32px,8vw,46px); }
  .hero-sub { font-size: 16px; }
  .hero-right { padding: 0 20px 48px; }
  .hero-form { padding: 28px 20px 24px; max-width: 100%; }
  .hf-title { font-size: 26px; }
  .frow { grid-template-columns: 1fr; gap: 0; }
  .sbar { grid-template-columns: 1fr 1fr; }
  .sbar-item { padding: 20px 16px; }
  .sbar-n { font-size: 30px; }
  .section { padding: 60px 20px; }
  .bnb-wrap { grid-template-columns: 1fr; }
  .bnb-left { padding: 60px 20px; }
  .bnb-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .bnb-wrap.bnb-fullwidth .bnb-left { padding: 52px 20px; }
  .bnb-wrap.bnb-fullwidth .bnb-grid { grid-template-columns: 1fr 1fr; }
  #video { padding: 60px 20px; }
  #invest { padding: 60px 20px; }
  .epr-row { grid-template-columns: 1fr; gap: 16px; }
  .roi-row { grid-template-columns: 1fr; gap: 16px; }
  .invest-top { grid-template-columns: 1fr; gap: 16px; }
  #units { padding: 60px 20px; }
  .units-grid { grid-template-columns: 1fr; gap: 16px; }
  .pay-plans { grid-template-columns: 1fr; gap: 16px; }
  #amen { padding: 60px 20px; }
  .amen-layout { grid-template-columns: 1fr; gap: 40px; }
  .amen-grid { grid-template-columns: 1fr 1fr; gap: 1px; }
  .amen-photos { display: grid; grid-template-columns: 1fr 1fr; height: 280px; }
  .ap.tall { grid-row: span 1; }
  .contact-wrap { grid-template-columns: 1fr; }
  .contact-img { height: 220px; }
  .contact-form { padding: 40px 20px; }
  .crow { grid-template-columns: 1fr; }
  footer#site-footer { padding: 36px 20px; }
  .footer-inner { flex-direction: column; align-items: center; text-align: center; gap: 20px; }
  .f-links, #footer-menu { flex-wrap: wrap; justify-content: center; gap: 16px; }
  .f-copy { text-align: center; }
  .bro-popup { padding: 36px 20px 28px; margin: 16px; max-width: calc(100% - 32px); }
  .bexp-img-single { min-height: 260px; }
  .bexp-benefits { flex-direction: column; }
  .bexp-benefit { border-right: none; border-bottom: 1px solid rgba(196,134,42,.2); }
  .bexp-benefit:last-child { border-bottom: none; }
  .faq-grid { grid-template-columns: 1fr; }
}

/* ─── SECTION DIVIDER HEADINGS ─── */
.dp-section-heading { background: var(--white); padding: 64px 64px 64px; }
.dp-section-heading-inner .s-p { margin-top: 20px; max-width: 780px; }
.dp-section-heading .section-inner { padding-bottom: 0; }
.dp-section-heading-inner { max-width: 1280px; margin: 0 auto; border-bottom: 1px solid var(--border); padding-bottom: 40px; }
@media (max-width: 768px) { .dp-section-heading { padding: 48px 20px 48px; } }

/* ─── AMENITIES — 2 STACKED IMAGES ─── */
.amen-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.amen-photos-stack { display: flex; flex-direction: column; gap: 16px; }
.amen-stack-img { overflow: hidden; height: 340px; }
.amen-stack-img img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; transition: transform 0.65s; }
.amen-stack-img:hover img { transform: scale(1.05); }
@media (max-width: 1100px) { .amen-layout { grid-template-columns: 1fr; gap: 48px; } }
@media (max-width: 768px) { .amen-stack-img { height: 200px; } }

/* ─── HIDE DATE ON PAGES ─── */
.page-id .entry-date,
.page .entry-date,
.page .post-date,
.page time,
.dp-page-wrap time { display: none !important; }