/* ═══════════════════════════════════════════
   Elysium Properties — Brightstone-inspired redesign
   Design language: warm editorial, ivory + charcoal + tan
   ═══════════════════════════════════════════ */

:root {
  --bg: #f6f3ec;            /* warm ivory */
  --bg-2: #efeadf;          /* slightly deeper ivory */
  --surface: #ffffff;
  --ink: #33302b;           /* warm charcoal */
  --ink-soft: #4d4943;
  --muted: #8b857a;
  --line: #e3ddcf;
  --accent: #b96a3a;        /* terracotta */
  --accent-soft: #e9d5b8;   /* warm tan */
  --display: "Archivo", "Degular", sans-serif;
  --sans: "Archivo", -apple-system, sans-serif;
  --nav-h: 80px;
  --shadow: 0 18px 50px -22px rgba(51, 48, 43, 0.25);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.container { width: min(1240px, 92%); margin: 0 auto; }

.section { padding: 110px 0; }

/* ── Type ─────────────────────────────────── */
.kicker {
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
  font-weight: 600;
}

.section-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(34px, 4.8vw, 60px);
  line-height: 1.04;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 24px;
}

.section-lead {
  color: var(--muted);
  max-width: 720px;
  font-size: 16.5px;
  font-weight: 400;
  margin-bottom: 52px;
}

.grad-text { color: var(--accent); }

/* ── Buttons ─────────────────────────────── */
.btn {
  display: inline-block;
  padding: 16px 38px;
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid var(--ink);
  color: var(--ink);
  background: transparent;
  transition: all 0.3s ease;
}
.btn:hover { background: var(--ink); color: #fff; }

.btn-gold {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.btn-gold:hover { background: #a35a2e; border-color: #a35a2e; }

.btn-sm { padding: 11px 24px; font-size: 11px; }

/* ── Navigation ──────────────────────────── */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(246, 243, 236, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
.nav.scrolled { background: rgba(246, 243, 236, 0.97); box-shadow: 0 6px 30px -18px rgba(51,48,43,0.25); }

.nav-inner {
  width: min(1360px, 94%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-chip { display: inline-flex; align-items: center; }
.brand-logo { height: 36px; width: auto; display: block; }

.nav-links { display: flex; gap: 40px; }
.nav-links a {
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.8;
  padding: 6px 0;
  position: relative;
  transition: opacity 0.3s ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width 0.35s ease;
}
.nav-links a:hover { opacity: 1; }
.nav-links a:hover::after { width: 100%; }

.nav-toggle {
  display: none;
  background: none; border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
}
.nav-toggle span { width: 28px; height: 2px; background: var(--ink); transition: all 0.3s ease; }
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ── Hero ────────────────────────────────── */
.hero {
  position: relative;
  height: 92vh;
  min-height: 620px;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.4s ease, visibility 1.4s;
}
.hero-slide.active { opacity: 1; visibility: visible; }

.hero-slide > img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  transition: transform 9s ease;
}
.hero-slide.active > img { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(51,48,43,0.42) 0%, rgba(51,48,43,0.08) 45%, rgba(246,243,236,0.94) 100%);
}

.hero-content {
  position: absolute;
  left: 6vw; right: 6vw; bottom: 12%;
  text-align: left;
}

.hero-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(44px, 7.5vw, 96px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: #fff;
  text-shadow: 0 4px 40px rgba(51, 48, 43, 0.35);
  margin-bottom: 14px;
}

.hero-sub {
  font-family: var(--display);
  font-size: clamp(14px, 1.7vw, 19px);
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 2px 18px rgba(51, 48, 43, 0.4);
  margin-bottom: 36px;
}

.hero-controls {
  position: absolute;
  right: 6vw;
  bottom: 13%;
  display: flex;
  gap: 10px;
  z-index: 5;
}
.hero-dot {
  width: 40px; height: 3px;
  border: none;
  background: rgba(51, 48, 43, 0.22);
  cursor: pointer;
  transition: background 0.3s ease;
}
.hero-dot.active { background: var(--accent); }

.hero-scroll {
  position: absolute;
  left: 50%; bottom: 5%;
  transform: translateX(-50%);
  z-index: 5;
}
.hero-scroll span {
  display: block;
  width: 1px; height: 44px;
  background: rgba(51, 48, 43, 0.35);
  position: relative;
  overflow: hidden;
}
.hero-scroll span::after {
  content: "";
  position: absolute;
  top: -100%; left: 0;
  width: 100%; height: 100%;
  background: var(--accent);
  animation: scrollLine 2.2s ease infinite;
}

@keyframes scrollLine { 0% { top: -100%; } 60%, 100% { top: 100%; } }

/* ── Stats ───────────────────────────────── */
.stats { border-bottom: 1px solid var(--line); padding: 80px 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat { padding: 0 20px; position: relative; }
.stat + .stat::before {
  content: "";
  position: absolute;
  left: 0; top: 12%; bottom: 12%;
  width: 1px;
  background: var(--line);
}
.stat-num {
  font-family: var(--display);
  font-size: clamp(26px, 3.6vw, 46px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 8px;
}
.stat-label { font-size: 11.5px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--muted); }

/* ── Projects ────────────────────────────── */
.projects { background: var(--bg); }
.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.project-card {
  position: relative;
  display: block;
  background: var(--surface);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}
.project-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }

.project-img {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.project-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.9s ease;
}
.project-card:hover .project-img img { transform: scale(1.05); }

.project-tag {
  position: absolute;
  top: 18px; left: 18px;
  font-family: var(--display);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  background: var(--ink);
  color: #fff;
  padding: 8px 15px;
  font-weight: 600;
}
.project-tag-new { background: var(--accent); color: #fff; }

.project-body { padding: 26px 28px 30px; }
.project-body h3 {
  font-family: var(--display);
  font-size: clamp(21px, 2.2vw, 28px);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
  color: var(--ink);
}
.project-body p { color: var(--muted); font-size: 13.5px; }
.project-tagline { color: var(--accent) !important; margin-top: 9px; font-family: var(--display); font-size: 11.5px !important; text-transform: uppercase; letter-spacing: 0.18em !important; }

/* ── Address / numbered features ─────────── */
.address { background: var(--bg-2); }

.address-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-bottom: 60px;
}
.address-item {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 36px 30px;
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.address-item:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.address-icon {
  display: block;
  font-family: var(--display);
  font-size: 42px;
  font-weight: 700;
  color: var(--accent-soft);
  line-height: 1;
  margin-bottom: 18px;
}
.address-item h4 {
  font-family: var(--display);
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
  color: var(--ink);
}
.address-item p { color: var(--muted); font-size: 13.5px; }

.address-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.address-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}
.address-gallery img:hover { transform: scale(1.015); box-shadow: var(--shadow); }

/* ── Celeste ─────────────────────────────── */
.celeste { background: var(--bg); }
.celeste-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.celeste-media { overflow: hidden; box-shadow: var(--shadow); }
.celeste-media img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.celeste-tagline {
  font-family: var(--display);
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 24px;
}
.celeste-body > p:not(.kicker):not(.celeste-tagline) { color: var(--muted); margin-bottom: 30px; max-width: 500px; }
.celeste-units { display: flex; gap: 18px; margin-bottom: 36px; }
.unit {
  flex: 1;
  max-width: 210px;
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 22px 24px;
  text-align: center;
  transition: border-color 0.3s ease;
}
.unit:hover { border-color: var(--accent); }
.unit-name { font-family: var(--display); font-size: 26px; font-weight: 700; color: var(--ink); }
.unit-size { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin-top: 4px; }

/* ── Categories ──────────────────────────── */
.categories { background: var(--bg-2); }
.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.category-card {
  position: relative;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  aspect-ratio: 4 / 5;
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}
.category-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.category-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.9s ease;
}
.category-card:hover img { transform: scale(1.05); }
.category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(51,48,43,0.88) 100%);
}
.category-card h3 {
  position: absolute;
  left: 24px; bottom: 20px;
  z-index: 2;
  font-family: var(--display);
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 700;
  color: #fff;
}
.category-card p {
  position: absolute;
  left: 24px; bottom: -34px;
  z-index: 2;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  max-width: 280px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.45s ease;
}
.category-card:hover p { opacity: 1; bottom: 62px; transform: none; }

/* ── About ───────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-media { overflow: hidden; box-shadow: var(--shadow); }
.about-media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.about-body p { color: var(--muted); margin-bottom: 22px; max-width: 540px; }
.about-body strong { color: var(--ink); font-weight: 600; }
.about-body .btn { margin-top: 14px; }

/* ── Contact ─────────────────────────────── */
.contact { background: var(--bg-2); }
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.office {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 40px 34px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.office:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.office-city {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 16px;
}
.office-city span { color: var(--muted); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; }
.office-addr { color: var(--muted); font-size: 14px; margin-bottom: 20px; }
.office-links a { color: var(--ink); font-size: 15px; font-weight: 500; transition: color 0.3s ease; }
.office-links a:hover { color: var(--accent); }
.office-label { display: block; color: var(--muted); font-size: 10px; letter-spacing: 0.26em; text-transform: uppercase; margin-bottom: 5px; }
.contact-cta {
  background: linear-gradient(155deg, var(--accent) 0%, #c98a5e 100%);
  border: 1px solid transparent;
  padding: 40px 34px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  color: #fff;
}
.contact-cta p { color: rgba(255, 255, 255, 0.9); font-size: 15px; }
.contact-cta .btn { border-color: #fff; color: #fff; }
.contact-cta .btn:hover { background: #fff; color: var(--accent); }

/* ── Footer (dark contrast) ──────────────── */
.footer {
  background: var(--ink);
  color: #e9e4d9;
  padding: 76px 0 34px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 54px;
}
.footer-logo { height: 30px; width: auto; margin-bottom: 20px; display: block;  }
.footer-tag { color: #b5aea0; font-size: 14px; max-width: 320px; }
.footer h5 {
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin-bottom: 20px;
}
.footer a {
  display: block;
  color: #b5aea0;
  font-size: 14px;
  margin-bottom: 13px;
  transition: color 0.3s ease;
}
.footer a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-bottom p { color: #b5aea0; font-size: 12.5px; }
.disclaimer { opacity: 0.7; max-width: 780px; line-height: 1.6; }

/* ── Promo bar ───────────────────────────── */
.promo {
  position: fixed;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%) translateY(150%);
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 24px;
  background: var(--ink);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 16px 18px 16px 28px;
  max-width: min(680px, 92vw);
  box-shadow: var(--shadow);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.promo.show { transform: translateX(-50%) translateY(0); }
.promo p { font-size: 13.5px; }
.promo strong { color: var(--accent-soft); font-family: var(--display); text-transform: uppercase; letter-spacing: 0.08em; }
.promo-actions { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.promo .btn { border-color: var(--accent-soft); color: var(--accent-soft); }
.promo .btn:hover { background: var(--accent-soft); color: var(--ink); }
.promo-close { background: none; border: none; color: #b5aea0; font-size: 26px; cursor: pointer; line-height: 1; transition: color 0.3s ease; }
.promo-close:hover { color: #fff; }

/* ── Page hero (subpages) ────────────────── */
.page-hero {
  position: relative;
  height: 64vh;
  min-height: 440px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.page-hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(51,48,43,0.4) 0%, rgba(51,48,43,0.12) 48%, rgba(246,243,236,0.95) 100%);
}
.page-hero-content { position: relative; z-index: 2; padding: 0 6vw 66px; width: 100%; }
.page-hero-content h1 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(40px, 6.5vw, 88px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: #fff;
  text-shadow: 0 4px 34px rgba(51,48,43,0.35);
  margin-bottom: 12px;
}
.page-hero-content .hero-sub { margin: 10px 0 0; }

/* ── Project detail ──────────────────────── */
.detail-head { display: grid; grid-template-columns: 1.6fr 1fr; gap: 56px; align-items: start; margin-bottom: 60px; }
.detail-meta { background: var(--surface); border: 1px solid var(--line); padding: 30px 32px; }
.meta-row { display: flex; justify-content: space-between; gap: 16px; font-size: 14px; color: var(--muted); border-bottom: 1px solid var(--line); padding: 13px 0; }
.meta-row span { color: var(--ink); text-transform: uppercase; letter-spacing: 0.2em; font-size: 11px; font-family: var(--display); }
.status-chip {
  display: inline-block;
  font-family: var(--display);
  font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
  background: var(--accent); color: #fff;
  padding: 9px 16px; margin-bottom: 18px;
  font-weight: 600;
}
.rera { color: var(--accent); font-size: 13px; letter-spacing: 0.1em; margin-bottom: 16px; font-family: var(--display); }

.spec-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 44px 0; }
.spec-block { background: var(--surface); border: 1px solid var(--line); padding: 30px 32px; }
.spec-block h4 { font-family: var(--display); font-size: 15px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--accent); margin-bottom: 16px; }
.spec-block ul { list-style: none; }
.spec-block li { color: var(--muted); font-size: 13.5px; padding: 6px 0 6px 18px; position: relative; }
.spec-block li::before { content: "—"; position: absolute; left: 0; color: var(--accent); }

.detail-cta { display: flex; gap: 18px; margin: 52px 0 0; flex-wrap: wrap; }
.center-cta { text-align: center; margin-top: 52px; }
.center-cta .btn { margin: 0 8px; }

/* ── Payment table ───────────────────────── */
.pay-table { max-width: 680px; margin: 0 auto; background: var(--surface); border: 1px solid var(--line); }
.pay-table table { width: 100%; border-collapse: collapse; }
.pay-table td { border-bottom: 1px solid var(--line); padding: 14px 22px; font-size: 14px; color: var(--muted); }
.pay-table tr:last-child td { border-bottom: none; }
.pay-table .pay-pct { color: var(--accent); text-align: right; font-weight: 700; }

/* ── Blog ────────────────────────────────── */
.post-date { color: var(--accent); font-size: 12px; letter-spacing: 0.26em; text-transform: uppercase; margin-bottom: 10px; font-family: var(--display); }

/* ── Contact form ────────────────────────── */
.enquiry-form { max-width: 800px; margin: 0 auto; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.enquiry-form input, .enquiry-form select, .enquiry-form textarea {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 14px;
  padding: 16px 18px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.enquiry-form input:focus, .enquiry-form select:focus, .enquiry-form textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(185, 106, 58, 0.12); }
.enquiry-form textarea { margin-bottom: 22px; resize: vertical; }
.enquiry-form select option { background: var(--surface); }
.form-note { color: var(--muted); font-size: 13px; margin-top: 16px; }
.form-note a { color: var(--accent); }
.office-label { display: block; color: var(--muted); font-size: 10px; letter-spacing: 0.26em; text-transform: uppercase; margin-bottom: 5px; }

.celeste-units.wide { max-width: 680px; margin: 0 auto; }
.celeste-units .unit { max-width: 280px; }

/* ── Responsive ──────────────────────────── */
@media (max-width: 960px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 44px; }
  .stat + .stat::before { display: none; }
  .address-grid { grid-template-columns: repeat(2, 1fr); }
  .celeste-grid, .about-grid { grid-template-columns: 1fr; gap: 44px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .detail-head { grid-template-columns: 1fr; gap: 32px; }
  .spec-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .section { padding: 80px 0; }

  .nav-links {
    position: fixed;
    inset: var(--nav-h) 0 auto 0;
    flex-direction: column;
    gap: 0;
    background: rgba(246, 243, 236, 0.98);
    border-bottom: 1px solid var(--line);
    padding: 12px 28px 24px;
    transform: translateY(-120%);
    transition: transform 0.45s ease;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding: 15px 0; border-bottom: 1px solid var(--line); }
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }

  .projects-grid { grid-template-columns: 1fr; }
  .address-grid { grid-template-columns: 1fr; }
  .address-gallery { grid-template-columns: 1fr; }
  .categories-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .promo { flex-direction: column; align-items: flex-start; gap: 14px; padding: 18px 20px; }
  .hero { height: 88vh; }
  .hero-content { bottom: 18%; }
}

.footer-chip { background: #f6f3ec; display: inline-block; padding: 8px 14px; margin-bottom: 20px; }
.footer-chip .footer-logo { margin-bottom: 0; }

/* ── Hero video ──────────────────────────── */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 720px) {
  .hero-video { object-fit: cover; }
}

/* ── Typographic hero (no imagery) ───────── */
.hero-text {
  height: 84vh;
  min-height: 560px;
  display: flex;
  align-items: center;
  background:
    radial-gradient(1200px 600px at 85% 15%, rgba(185, 106, 58, 0.10), transparent 60%),
    radial-gradient(900px 500px at 10% 90%, rgba(233, 213, 184, 0.35), transparent 55%),
    var(--bg);
}
.hero-text-content { position: relative; z-index: 2; padding-top: 40px; }
.hero-text .kicker { margin-bottom: 26px; }
.hero-text .hero-title {
  color: var(--ink);
  text-shadow: none;
  font-size: clamp(46px, 8vw, 108px);
  max-width: 16ch;
  margin-bottom: 22px;
}
.hero-text .hero-sub {
  color: var(--muted);
  text-shadow: none;
  font-size: clamp(13px, 1.6vw, 17px);
  margin-bottom: 42px;
}
.hero-text .hero-scroll { bottom: 6%; }

/* ── Binghatti-style image hero ──────────── */
.hero-image { height: 96vh; min-height: 640px; background: #0a0a0a; }
.hero-image > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay-dark {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.12) 38%, rgba(10,10,10,0.88) 100%);
}
.hero-image .hero-content { bottom: 13%; z-index: 3; }
.hero-image .hero-title {
  color: #fff;
  text-shadow: 0 4px 60px rgba(0, 0, 0, 0.75);
  font-size: clamp(46px, 8vw, 112px);
  max-width: 15ch;
}
.hero-image .hero-sub { color: #fff; text-shadow: 0 2px 18px rgba(0,0,0,0.8); }
.hero-image .kicker { color: var(--accent-2); }
.hero-image .btn { border-color: #fff; color: #fff; }
.hero-image .btn:hover { background: #fff; color: #0a0a0a; }

/* ═══════════════════════════════════════════
   GLOSSY UI — big logo + glassmorphism
   ═══════════════════════════════════════════ */

:root { --nav-h: 92px; }

/* ── Logo: bigger ── */
.brand-logo { height: 56px; }
.footer-logo { height: 38px; }

/* ── Glass navigation ── */
.nav {
  background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,255,255,0.62));
  backdrop-filter: blur(22px) saturate(1.5);
  -webkit-backdrop-filter: blur(22px) saturate(1.5);
  border-bottom: 1px solid rgba(255,255,255,0.95);
  box-shadow: inset 0 1px 0 rgba(255,255,255,1), 0 14px 34px -22px rgba(51,48,43,0.25);
}
.nav.scrolled { background: linear-gradient(180deg, rgba(255,255,255,0.97), rgba(255,255,255,0.85)); }

/* ── Glass cards ── */
.project-card, .address-item, .spec-block, .office, .unit, .detail-meta, .pay-table {
  background: linear-gradient(180deg, rgba(255,255,255,0.94), rgba(255,255,255,0.55));
  backdrop-filter: blur(16px) saturate(1.35);
  -webkit-backdrop-filter: blur(16px) saturate(1.35);
  border: 1px solid rgba(255,255,255,0.9);
  box-shadow: inset 0 1px 0 rgba(255,255,255,1), 0 18px 44px -26px rgba(51,48,43,0.25);
}

/* ── Glossy buttons with shine sweep ── */
.btn {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(255,255,255,0.45));
  border: 1px solid rgba(51,48,43,0.28);
  box-shadow: inset 0 1px 0 rgba(255,255,255,1), 0 10px 26px -14px rgba(51,48,43,0.4);
}
.btn-gold {
  background: linear-gradient(180deg, #d68b5b 0%, #b96a3a 55%, #a35a2e 100%);
  border-color: rgba(122, 60, 25, 0.45);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.5), 0 12px 30px -14px rgba(185, 106, 58, 0.65);
}
.btn::after {
  content: "";
  position: absolute;
  top: 0; left: -90%;
  width: 55%; height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,0.6), transparent);
  transform: skewX(-20deg);
  transition: left 0.65s ease;
  pointer-events: none;
}
.btn:hover::after { left: 140%; }

/* ── Glossy form fields ── */
.enquiry-form input, .enquiry-form select, .enquiry-form textarea {
  background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,255,255,0.5));
  backdrop-filter: blur(12px) saturate(1.3);
  -webkit-backdrop-filter: blur(12px) saturate(1.3);
  border-color: rgba(255,255,255,0.95);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.95);
}

/* ── Glass promo bar ── */
.promo {
  background: linear-gradient(180deg, rgba(51,48,43,0.97), rgba(51,48,43,0.85));
  backdrop-filter: blur(20px) saturate(1.35);
  -webkit-backdrop-filter: blur(20px) saturate(1.35);
  border: 1px solid rgba(255,255,255,0.24);
}

/* ── Soft color wash behind sections so glass reads ── */
.projects, .celeste, .about { position: relative; }
.projects::before, .celeste::before, .about::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(900px 500px at 90% 8%, rgba(233, 213, 184, 0.5), transparent 60%),
    radial-gradient(700px 420px at 6% 92%, rgba(185, 106, 58, 0.08), transparent 55%);
}
.projects > *, .celeste > *, .about > * { position: relative; }

/* ═══════════════════════════════════════════
   GLOSS V2 — cranked up + bigger logo
   ═══════════════════════════════════════════ */

:root { --nav-h: 108px; }

/* ── Logo: even bigger ── */
.brand-logo { height: 74px; }
.footer-logo { height: 46px; }

/* ── Nav: full glass ── */
.nav {
  background: linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(255,255,255,0.55) 100%);
  backdrop-filter: blur(32px) saturate(1.9);
  -webkit-backdrop-filter: blur(32px) saturate(1.9);
  border-bottom: 1px solid rgba(255,255,255,1);
  box-shadow: inset 0 2px 0 rgba(255,255,255,1), 0 18px 40px -24px rgba(51,48,43,0.3);
}
.nav.scrolled { background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(255,255,255,0.9)); }

/* ── Cards: heavy glass ── */
.project-card, .address-item, .spec-block, .office, .unit, .detail-meta, .pay-table {
  background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.42) 100%);
  backdrop-filter: blur(30px) saturate(1.8);
  -webkit-backdrop-filter: blur(30px) saturate(1.8);
  border: 1px solid rgba(255,255,255,1);
  box-shadow:
    inset 0 2px 0 rgba(255,255,255,1),
    inset 0 -1px 0 rgba(255,255,255,0.7),
    0 22px 50px -28px rgba(51,48,43,0.28);
}

/* ── Buttons: deeper gloss + stronger sweep ── */
.btn {
  background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0.55) 60%, rgba(255,255,255,0.35) 100%);
  border: 1px solid rgba(51,48,43,0.25);
  box-shadow: inset 0 2px 0 rgba(255,255,255,1), inset 0 -1px 0 rgba(255,255,255,0.6), 0 12px 30px -16px rgba(51,48,43,0.45);
}
.btn-gold {
  background: linear-gradient(180deg, #e09a68 0%, #c67642 45%, #a35a2e 100%);
  border-color: rgba(122, 60, 25, 0.4);
  box-shadow: inset 0 2px 0 rgba(255,255,255,0.65), inset 0 -2px 4px rgba(90, 40, 15, 0.35), 0 14px 34px -14px rgba(185, 106, 58, 0.7);
}
.btn::after {
  width: 65%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,0.75), transparent);
}

/* ── Form fields: glassier ── */
.enquiry-form input, .enquiry-form select, .enquiry-form textarea {
  background: linear-gradient(180deg, rgba(255,255,255,0.97), rgba(255,255,255,0.45));
  backdrop-filter: blur(20px) saturate(1.7);
  -webkit-backdrop-filter: blur(20px) saturate(1.7);
  border-color: rgba(255,255,255,1);
  box-shadow: inset 0 2px 0 rgba(255,255,255,0.98), inset 0 -1px 0 rgba(255,255,255,0.6);
}

/* ── Promo: deep glass ── */
.promo {
  background: linear-gradient(180deg, rgba(51,48,43,0.98), rgba(51,48,43,0.82));
  backdrop-filter: blur(28px) saturate(1.6);
  -webkit-backdrop-filter: blur(28px) saturate(1.6);
  border: 1px solid rgba(255,255,255,0.32);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.25), 0 24px 60px -20px rgba(0,0,0,0.55);
}

/* ── Canva campaign banner ───────────────── */
.campaign-banner { padding: 0; background: var(--bg); }
.campaign-banner a { display: block; }
.campaign-banner img { width: 100%; height: auto; display: block; }

/* ═══════════════════════════════════════════
   INSPO PASS — applied per archive guidance
   (inspo-mcp: Specimen macrostructure; 24-site evidence)
   ═══════════════════════════════════════════ */

:root {
  /* ONE vertical rhythm for every section seam (archive median 96px, range 80-160) */
  --space-section: clamp(72px, 10vw, 140px);
  /* warm-tan anchor from the archive's accent evidence */
  --accent-tan: #d69c63;
  --accent-deep: #8c4c1c;
}

/* 1. Section rhythm — single token, no mobile exceptions */
.section { padding: var(--space-section) 0; }
@media (max-width: 720px) { .section { padding: var(--space-section) 0; } }

/* 2. Container — max-width column with an explicit inline padding floor (24px min)
      padding-inline only, so it can never zero a section's block rhythm */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding-inline: max(24px, 4vw);
}

/* 3. Hero — complete above the fold (nav + kicker + headline + sub + CTA) */
.hero-image { height: 100svh; min-height: 620px; }
.hero-image .hero-content { bottom: 11%; }
.hero-image .hero-title {
  font-size: clamp(38px, 6vw, 76px);   /* 2-3 balanced lines, hero-safe */
  max-width: 22ch;
  letter-spacing: -0.015em;
}
.hero-image .hero-sub { margin-bottom: 34px; }
.hero-image .kicker { color: var(--accent-tan); }

/* 4. Warm-tan tertiary accents (archive: warm hue = 38% consensus) */
.address-icon, .post-date, .rera { color: var(--accent-tan); }
.spec-block h4 { color: var(--accent-deep); }
