:root {
  --bg: #f7f1e8;
  --bg-2: #fdf9f4;
  --text: #251a12;
  --muted: #66584d;
  --accent: #b7773f;
  --accent-2: #e7c59a;
  --deep: #2f2018;
  --card: rgba(255,255,255,0.82);
  --line: rgba(62,37,16,0.12);
  --shadow: 0 18px 45px rgba(61, 40, 22, 0.12);
  --radius: 26px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #f8f2ea, #fbf8f3);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
iframe { width: 100%; border: 0; }
.container { width: min(1200px, calc(100% - 32px)); margin: 0 auto; }
a { color: inherit; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(248,242,234,0.82);
  border-bottom: 1px solid var(--line);
}
.nav-wrap { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.brand strong { display: block; }
.brand small { display: block; color: var(--muted); font-size: 12px; margin-top: 2px; }
.brand-badge {
  width: 48px; height: 48px; border-radius: 16px;
  display: grid; place-items: center; color: #fff;
  background: linear-gradient(135deg, var(--accent), #915c2e);
  font-weight: 800;
}
.nav-links { display: flex; gap: 20px; }
.nav-links a { text-decoration: none; color: var(--muted); font-size: 14px; }
.nav-links a:hover { color: var(--text); }

.hero {
  position: relative;
  min-height: 96vh;
  background-image: var(--hero);
  background-size: cover;
  background-position: center;
  color: #fff;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(21,14,9,0.78), rgba(21,14,9,0.45) 45%, rgba(21,14,9,0.28));
}
.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.12fr 0.88fr; gap: 30px;
  align-items: end; min-height: 96vh; padding: 64px 0 60px;
}
.hero-copy { padding: 30px 0; }
.eyebrow, .section-tag, .card-tag {
  display: inline-flex; padding: 8px 14px; border-radius: 999px;
  background: rgba(255,255,255,0.14); border: 1px solid rgba(255,255,255,0.2);
  color: #fff; font-size: 13px; letter-spacing: .03em;
}
.section-tag { background: #fff4ea; color: var(--accent); border: 1px solid rgba(183,119,63,.15); }
.hero h1, h2, h3 { font-family: 'Cormorant Garamond', serif; line-height: 1.05; }
.hero h1 { font-size: clamp(3rem, 6vw, 5.8rem); margin: 18px 0 16px; max-width: 10ch; }
.hero h1 span { color: var(--accent-2); }
.hero p { font-size: 18px; max-width: 58ch; color: rgba(255,255,255,0.88); }
.hero-tags, .pill-row { display: flex; gap: 10px; flex-wrap: wrap; margin: 24px 0 30px; }
.hero-tags span, .pill-row span {
  padding: 10px 14px; border-radius: 999px;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.16);
  font-size: 14px;
}
.hero-actions, .cta-grid, .banner-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn {
  border: 0; border-radius: 16px; padding: 14px 18px; font-weight: 700;
  text-decoration: none; cursor: pointer; transition: .2s ease; display: inline-flex; align-items: center; justify-content: center;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: linear-gradient(135deg, var(--accent), #d4a170); color: #fff; box-shadow: 0 14px 30px rgba(183,119,63,.28); }
.btn-outline, .btn-glass { background: rgba(255,255,255,0.08); color: #fff; border: 1px solid rgba(255,255,255,0.24); }
.btn-dark { background: #fff; color: var(--deep); }
.btn-small { padding: 10px 14px; }
.span-2 { width: 100%; }
code { color: #fff4ca; }

.hero-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 32px;
}
.hero-stats > div {
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.18);
  border-radius: 20px; padding: 16px 18px; backdrop-filter: blur(8px);
}
.hero-stats strong { display: block; font-size: 20px; }
.hero-stats span { color: rgba(255,255,255,0.8); font-size: 13px; }

.lead-card {
  background: rgba(255,255,255,0.9); color: var(--text); border-radius: 28px; padding: 24px;
  box-shadow: var(--shadow); backdrop-filter: blur(10px);
}
.lead-card h2 { margin: 10px 0 8px; font-size: 2rem; }
.lead-card p, .lead-card small, .footer-copy, .section-head p { color: var(--muted); }
.lead-form { display: grid; gap: 12px; margin-top: 18px; }
.lead-form input, .lead-form select {
  width: 100%; padding: 14px 15px; border-radius: 14px; border: 1px solid var(--line);
  background: #fff; color: var(--text); outline: none;
}
.stats-bar { margin-top: -22px; position: relative; z-index: 2; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.stat-box {
  background: rgba(255,255,255,0.92); border: 1px solid var(--line);
  border-radius: 24px; padding: 22px; text-align: center; box-shadow: var(--shadow);
}
.stat-box strong { display: block; font-size: 1.3rem; color: var(--deep); }
.stat-box span { color: var(--muted); font-size: 14px; }

.section { padding: 88px 0; }
.muted { background: linear-gradient(180deg, #fffaf5, #f8f1e8); }
.dark { background: linear-gradient(180deg, #2f2018, #1f140f); color: #fff; }
.light-text p { color: rgba(255,255,255,0.78); }
.section-head { margin-bottom: 28px; }
.center { text-align: center; max-width: 760px; margin-inline: auto; }
.section h2 { font-size: clamp(2.2rem, 4vw, 3.5rem); margin: 14px 0; }
.split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: center; }
.highlight-panel {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
}
.highlight-panel img { width: 100%; height: 320px; object-fit: cover; }
.panel-copy { padding: 24px; }
.panel-copy ul { padding-left: 18px; margin: 10px 0 0; }
.panel-copy li { margin: 8px 0; }

.masonry-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; align-items: stretch;
}
.gallery-card {
  background: #fff; border-radius: 24px; overflow: hidden; box-shadow: var(--shadow); margin: 0;
}
.gallery-card img { width: 100%; height: 280px; object-fit: cover; }
.gallery-card.large img { height: 380px; }
.gallery-card figcaption { padding: 14px 16px; color: var(--muted); font-size: 14px; }

.amenity-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.amenity-card {
  background: #fff; border: 1px solid var(--line); border-radius: 24px; overflow: hidden; box-shadow: var(--shadow);
}
.amenity-card img { width: 100%; height: 220px; object-fit: cover; }
.amenity-card div { padding: 18px; }
.amenity-card h3 { margin: 0 0 8px; font-size: 1.9rem; }
.amenity-card p { margin: 0; color: var(--muted); }
.pill-row span {
  background: #fff; color: var(--text); border: 1px solid var(--line);
}

.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.video-card {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); border-radius: 24px; overflow: hidden;
  text-decoration: none; color: #fff; transition: transform .2s ease, box-shadow .2s ease;
}
.video-card:hover { transform: translateY(-3px); box-shadow: 0 18px 36px rgba(0,0,0,.18); }
.video-thumb { position: relative; aspect-ratio: 16 / 9; overflow: hidden; }
.video-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.play-badge {
  position: absolute; inset: 50% auto auto 50%; transform: translate(-50%, -50%);
  width: 64px; height: 64px; border-radius: 999px; display: grid; place-items: center;
  background: rgba(255,255,255,0.9); color: var(--deep); font-size: 24px; font-weight: 700;
  box-shadow: 0 10px 25px rgba(0,0,0,.22);
}
.video-copy { padding: 18px; }
.video-copy h3 { margin: 0 0 6px; font-size: 1.9rem; }
.video-copy p { margin: 0; color: rgba(255,255,255,0.78); }

.masterplan-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 28px; align-items: center; }
.info-cards { display: grid; gap: 14px; margin-top: 24px; }
.info-cards > div {
  background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 18px; box-shadow: var(--shadow);
}
.info-cards strong { display: block; }
.info-cards span { color: var(--muted); font-size: 14px; }
.masterplan-card {
  background: #fff; border-radius: 28px; overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line);
}
.masterplan-card img { width: 100%; height: 100%; object-fit: cover; }

.location-image-wrap img {
  width: 100%; height: 100%; min-height: 420px; object-fit: cover; border-radius: 28px; box-shadow: var(--shadow);
}
.location-list { display: grid; gap: 12px; margin: 22px 0 28px; }
.location-list > div {
  background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 16px 18px; box-shadow: var(--shadow);
}
.location-list strong { display: block; }
.location-list span { color: var(--muted); }

.final-cta { padding-top: 0; }
.cta-banner {
  background: linear-gradient(135deg, #fff0df, #f5e0c9); border: 1px solid rgba(183,119,63,.18);
  border-radius: 32px; padding: 34px; display: flex; justify-content: space-between; align-items: center; gap: 20px;
  box-shadow: var(--shadow);
}

.site-footer {
  padding: 40px 0 110px; background: #f3e9dc; border-top: 1px solid var(--line);
}
.footer-grid { display: grid; grid-template-columns: 1.4fr .8fr .8fr; gap: 28px; }
.footer-grid h4 { margin-top: 0; }
.footer-grid a { display: block; text-decoration: none; margin: 8px 0; color: var(--muted); }
.footer-grid a:hover { color: var(--text); }

.sticky-bar {
  position: fixed; left: 50%; transform: translateX(-50%); bottom: 16px; z-index: 60;
  width: min(640px, calc(100% - 20px));
  background: rgba(47,32,24,0.92); backdrop-filter: blur(12px); border-radius: 18px;
  display: grid; grid-template-columns: 1.1fr .95fr .95fr; gap: 10px; padding: 10px; box-shadow: 0 18px 40px rgba(0,0,0,.2);
}
.sticky-bar a, .sticky-bar button {
  border: 0; border-radius: 12px; text-align: center; padding: 14px 12px; font-weight: 700; cursor: pointer; text-decoration: none;
}
.sticky-bar a { background: linear-gradient(135deg, var(--accent), #d4a170); color: #fff; }
.sticky-bar button { background: rgba(255,255,255,0.1); color: #fff; }

@media (max-width: 1100px) {
  .hero-inner, .split-grid, .masterplan-grid, .amenity-grid, .video-grid, .stats-grid, .footer-grid, .masonry-grid {
    grid-template-columns: 1fr 1fr;
  }
  .amenity-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .nav-links { display: none; }
  .hero-inner, .split-grid, .masterplan-grid, .amenity-grid, .video-grid, .stats-grid, .footer-grid, .masonry-grid, .hero-stats, .cta-banner {
    grid-template-columns: 1fr; display: grid;
  }
  .hero { min-height: auto; }
  .hero-inner { min-height: auto; padding: 110px 0 40px; }
  .hero h1 { max-width: none; }
  .gallery-card img, .gallery-card.large img { height: 240px; }
  .location-image-wrap img { min-height: 280px; }
  .sticky-bar { grid-template-columns: 1fr 1fr 1fr; }
}
