/* =============================================================
   M3M × Jacob & Co Residences — Sector 97 Noida
   Haute horology palette extracted from jacobandco-noida.com
   Ink #050505 · Gold #D4AF37 · Playfair Display + Montserrat
   ============================================================= */

:root {
  --bg-ink: #050505;
  --bg-panel: #0D0D0F;
  --bg-surface: #141416;
  --bg-graphite: #1A1A1D;

  --text-ivory: #F9F9F9;
  --text-body: #C9C4B8;
  --text-muted: #8A8578;

  --gold: #D4AF37;
  --gold-hover: #F1C75C;
  --gold-deep: #8A6B2E;
  --burgundy: #5C1A1A;

  --line-gold: rgba(212, 175, 55, 0.3);
  --line-gold-soft: rgba(212, 175, 55, 0.15);
  --line-dark: #1F1F22;

  --font-serif: "Playfair Display", Georgia, serif;
  --font-sans: "Montserrat", -apple-system, BlinkMacSystemFont, sans-serif;

  --container: 1320px;
  --gutter: 32px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur: 500ms;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-ivory);
  background-color: var(--bg-ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
ul, ol { list-style: none; padding: 0; margin: 0; }
input, textarea, select { font: inherit; color: inherit; }
figure { margin: 0; }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: -0.005em;
  margin: 0 0 16px;
  line-height: 1.1;
  color: var(--text-ivory);
}
h1 { font-size: clamp(48px, 7vw, 96px); font-weight: 500; }
h2 { font-size: clamp(36px, 5vw, 64px); }
h3 { font-size: clamp(24px, 3vw, 36px); }
h4 { font-size: clamp(18px, 2vw, 24px); }
p { margin: 0 0 16px; color: var(--text-body); font-size: 16px; }
p.lead { font-size: 18px; line-height: 1.75; color: var(--text-body); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.label { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); font-weight: 500; }
.caption { font-size: 13px; color: var(--text-muted); }
.italic-gold { color: var(--gold); font-style: italic; font-family: var(--font-serif); }

/* ---------- Layout ---------- */
.hc-container, .container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
section { padding: 140px 0; position: relative; }
@media (max-width: 900px) { section { padding: 88px 0; } }
@media (max-width: 600px) { section { padding: 64px 0; } }

.section-head {
  max-width: 760px;
  margin: 0 auto 64px;
  text-align: center;
}
.section-head.left { margin-left: 0; text-align: left; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 40px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
  border-radius: 0;
  transition: all var(--dur) var(--ease);
}
.btn:hover, .btn:focus-visible {
  background: var(--gold);
  color: var(--bg-ink);
  outline: none;
  transform: translateY(-1px);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}
.btn--gold, .btn--filled {
  background: var(--gold);
  color: var(--bg-ink);
}
.btn--gold:hover, .btn--filled:hover {
  background: var(--gold-hover);
  border-color: var(--gold-hover);
  box-shadow: 0 0 24px rgba(212, 175, 55, 0.5);
}
.btn--block { width: 100%; }

/* ---------- Header / nav (hc- prefix used by header.php) ---------- */
.hc-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: 88px;
  background: rgba(5, 5, 5, 0.85);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line-gold-soft);
  z-index: 100;
}
.hc-header__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.hc-logo { display: flex; flex-direction: column; gap: 4px; }
.hc-logo__eyebrow {
  font-family: var(--font-sans);
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.hc-logo__name {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--text-ivory);
  letter-spacing: 0.01em;
}
.hc-nav { display: flex; gap: 32px; align-items: center; }
.hc-nav a {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-ivory);
  position: relative;
  padding: 6px 0;
  transition: color var(--dur) var(--ease);
}
.hc-nav a::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur) var(--ease);
}
.hc-nav a:hover { color: var(--gold); }
.hc-nav a:hover::after { transform: scaleX(1); }
.hc-header__cta { display: flex; align-items: center; gap: 16px; }
.hc-header__phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid var(--line-gold);
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 0.04em;
  transition: all var(--dur) var(--ease);
}
.hc-header__phone:hover { background: var(--gold); color: var(--bg-ink); }

.mobile-menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border: 1px solid var(--line-gold);
}
.mobile-menu-toggle span { display: block; width: 20px; height: 1px; background: var(--gold); }

@media (max-width: 1000px) {
  .hc-nav { display: none; }
  .mobile-menu-toggle { display: inline-flex; }
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--bg-ink);
  z-index: 200;
  padding: 88px 32px 32px;
  transform: translateX(100%);
  transition: transform var(--dur) var(--ease);
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow-y: auto;
}
.mobile-menu.is-open { transform: translateX(0); }
.mobile-menu nav { display: flex; flex-direction: column; gap: 18px; }
.mobile-menu nav a {
  padding: 14px 0;
  border-bottom: 1px solid var(--line-gold-soft);
  font-size: 15px;
  font-family: var(--font-sans);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-ivory);
}
.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 40px;
  height: 40px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 24px;
}
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 5, 5, 0.7);
  z-index: 150;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur) var(--ease);
}
.mobile-menu-overlay.is-open { opacity: 1; pointer-events: auto; }

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh;
  position: relative;
  padding: 168px 0 88px;
  background:
    radial-gradient(ellipse at 20% 25%, rgba(212, 175, 55, 0.12), transparent 55%),
    radial-gradient(ellipse at 78% 70%, rgba(92, 26, 26, 0.18), transparent 60%),
    var(--bg-ink);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 50%, var(--bg-ink) 100%);
  pointer-events: none;
}
.hero .hc-container { position: relative; z-index: 2; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.95fr;
  gap: 72px;
  align-items: center;
}
@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
}
.hero-copy h1 { margin-bottom: 28px; }
.hero-copy h1 .italic-gold { display: block; font-size: 0.72em; margin-top: 8px; }
.hero-copy .lead { max-width: 600px; color: var(--text-ivory); opacity: 0.88; margin-bottom: 32px; }
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 56px;
  padding: 32px 0;
  border-top: 1px solid var(--line-gold);
  border-bottom: 1px solid var(--line-gold);
  margin: 36px 0;
}
.hero-meta div small {
  display: block;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  font-weight: 500;
}
.hero-meta div strong {
  font-family: var(--font-serif);
  font-size: 28px;
  color: var(--text-ivory);
  font-weight: 500;
  line-height: 1.1;
}
.hero-cta-row { display: flex; gap: 18px; flex-wrap: wrap; }

/* ---------- Forms ---------- */
.lead-form {
  background: var(--bg-panel);
  border: 1px solid var(--line-gold);
  padding: 48px 40px;
  position: relative;
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, 0.8);
}
.lead-form::before {
  content: "";
  position: absolute;
  inset: -1px -1px auto -1px;
  height: 2px;
  background: var(--gold);
}
.lead-form h3 { font-size: 26px; margin-bottom: 6px; }
.lead-form .form-sub {
  display: block;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}
.form-field { margin-bottom: 20px; }
.form-field label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
  font-weight: 500;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 16px 18px;
  background: var(--bg-surface);
  border: 1px solid var(--line-dark);
  color: var(--text-ivory);
  border-radius: 0;
  font-size: 14px;
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.form-field input:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--bg-graphite);
}
.form-field select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--gold) 50%), linear-gradient(135deg, var(--gold) 50%, transparent 50%);
  background-position: calc(100% - 22px) 52%, calc(100% - 16px) 52%;
  background-size: 6px 6px;
  background-repeat: no-repeat;
  padding-right: 44px;
}
.form-msg {
  margin-top: 18px;
  padding: 14px 16px;
  font-size: 13px;
  display: none;
}
.form-msg.success { display: block; border-left: 2px solid #6ac27a; background: rgba(106, 194, 122, 0.08); color: #9ddcac; }
.form-msg.error { display: block; border-left: 2px solid #e4705b; background: rgba(228, 112, 91, 0.08); color: #f1a99a; }
.form-legal { margin-top: 16px; font-size: 11px; color: var(--text-muted); line-height: 1.7; padding-top: 14px; border-top: 1px solid var(--line-gold-soft); }

/* ---------- Trust strip ---------- */
.trust-strip {
  background: var(--bg-panel);
  border-top: 1px solid var(--line-gold);
  border-bottom: 1px solid var(--line-gold);
  padding: 40px 0;
}
.trust-strip .hc-container {
  display: flex;
  flex-wrap: wrap;
  gap: 32px 56px;
  justify-content: space-between;
  align-items: center;
}
.trust-item small { display: block; font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); font-weight: 500; margin-bottom: 4px; }
.trust-item strong { font-family: var(--font-serif); font-size: 22px; color: var(--text-ivory); font-weight: 500; }

/* ---------- Key facts grid ---------- */
.key-facts { background: var(--bg-ink); }
.key-facts .grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: var(--line-gold);
  border: 1px solid var(--line-gold);
}
.key-facts .cell {
  background: var(--bg-panel);
  padding: 48px 24px;
  text-align: center;
}
.key-facts .cell small { display: block; font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; font-weight: 500; }
.key-facts .cell strong { font-family: var(--font-serif); font-size: 32px; color: var(--text-ivory); font-weight: 500; line-height: 1.05; display: block; }
.key-facts .cell span { display: block; font-size: 12px; color: var(--text-muted); margin-top: 6px; }
@media (max-width: 1000px) { .key-facts .grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .key-facts .grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Two-col overview ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 1000px) { .two-col { grid-template-columns: 1fr; gap: 40px; } }

/* ---------- Residences ---------- */
.res-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 1000px) { .res-grid { grid-template-columns: 1fr; } }
.res-card {
  background: var(--bg-panel);
  border: 1px solid var(--line-gold);
  padding: 56px 40px;
  position: relative;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.res-card::before {
  content: "";
  position: absolute;
  inset: -1px -1px auto -1px;
  height: 2px;
  background: var(--gold);
}
.res-card:hover { transform: translateY(-4px); box-shadow: 0 40px 80px -30px rgba(0,0,0,0.8); }
.res-card .label { margin-bottom: 16px; }
.res-card h3 { font-size: 36px; margin-bottom: 8px; }
.res-card .sub { color: var(--gold); font-style: italic; font-family: var(--font-serif); font-size: 18px; margin-bottom: 24px; }
.res-card ul { display: grid; gap: 14px; margin: 28px 0; }
.res-card li {
  display: flex;
  justify-content: space-between;
  padding-bottom: 14px;
  border-bottom: 1px dashed var(--line-gold-soft);
  font-size: 13px;
  color: var(--text-muted);
}
.res-card li strong { color: var(--text-ivory); font-family: var(--font-serif); font-size: 18px; font-weight: 500; }
.res-card .price {
  font-family: var(--font-serif);
  font-size: 40px;
  color: var(--gold);
  font-weight: 500;
  margin-top: 24px;
  line-height: 1;
}
.res-card .price small { font-size: 13px; color: var(--text-muted); display: block; margin-top: 6px; letter-spacing: 0.06em; }

/* ---------- Floor plan tabs ---------- */
.tabs {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 48px;
  border-bottom: 1px solid var(--line-gold);
  gap: 0;
}
.tabs button {
  padding: 18px 28px;
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: all var(--dur) var(--ease);
  font-weight: 500;
}
.tabs button.is-active, .tabs button:hover { color: var(--gold); border-color: var(--gold); }
.tab-panel { display: none; }
.tab-panel.is-active {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 1000px) { .tab-panel.is-active { grid-template-columns: 1fr; } }
.tab-panel figure {
  background: var(--bg-panel);
  border: 1px solid var(--line-gold);
  padding: 24px;
  aspect-ratio: 4/3;
  display: grid;
  place-items: center;
}
.tab-panel figcaption {
  text-align: center;
  font-family: var(--font-serif);
  color: var(--gold);
  font-size: 22px;
}
.tab-panel figcaption small { display: block; color: var(--text-muted); font-size: 12px; font-family: var(--font-sans); margin-top: 8px; letter-spacing: 0.06em; }

/* ---------- Brand strip (Jacob & Co haute horology) ---------- */
.brand-strip {
  background:
    linear-gradient(135deg, rgba(92, 26, 26, 0.4) 0%, rgba(5, 5, 5, 0.85) 100%),
    var(--bg-ink);
  border-top: 1px solid var(--line-gold);
  border-bottom: 1px solid var(--line-gold);
  padding: 120px 0;
}
.brand-strip .hc-container { max-width: 920px; text-align: center; }
.brand-strip h2 { font-size: clamp(40px, 5vw, 64px); margin-bottom: 24px; }
.brand-strip p { font-size: 18px; line-height: 1.85; max-width: 780px; margin: 0 auto 16px; color: var(--text-ivory); opacity: 0.92; }

/* ---------- Amenities ---------- */
.amen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line-gold);
  border: 1px solid var(--line-gold);
}
@media (max-width: 1000px) { .amen-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .amen-grid { grid-template-columns: 1fr; } }
.amen-grid .tile {
  background: var(--bg-panel);
  padding: 56px 32px;
  text-align: center;
  transition: background var(--dur) var(--ease);
}
.amen-grid .tile:hover { background: var(--bg-graphite); }
.amen-grid .icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 24px;
  color: var(--gold);
}
.amen-grid strong {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--text-ivory);
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}
.amen-grid span { font-size: 13px; color: var(--text-muted); }

.amen-more {
  margin-top: 48px;
  padding: 40px;
  background: var(--bg-panel);
  border: 1px solid var(--line-gold);
}
.amen-more summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.amen-more summary::-webkit-details-marker { display: none; }
.amen-more summary::after { content: " +"; }
.amen-more[open] summary::after { content: " −"; }
.amen-more ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}
@media (max-width: 800px) { .amen-more ul { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .amen-more ul { grid-template-columns: 1fr; } }
.amen-more li {
  font-size: 13px;
  color: var(--text-body);
  padding-left: 22px;
  position: relative;
  line-height: 1.5;
}
.amen-more li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 12px;
  height: 1px;
  background: var(--gold);
}

/* ---------- Specs section ---------- */
.specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line-gold);
  border: 1px solid var(--line-gold);
}
@media (max-width: 800px) { .specs-grid { grid-template-columns: 1fr; } }
.specs-grid .row {
  background: var(--bg-panel);
  padding: 32px 36px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.specs-grid .row strong { font-family: var(--font-serif); color: var(--gold); font-weight: 500; font-size: 18px; }
.specs-grid .row span { color: var(--text-body); font-size: 14px; text-align: right; }

/* ---------- Location ---------- */
.loc-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 56px;
}
@media (max-width: 1000px) { .loc-grid { grid-template-columns: 1fr; } }
.loc-map {
  background: var(--bg-panel);
  border: 1px solid var(--line-gold);
  padding: 16px;
}
.loc-list h4 {
  margin-top: 32px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: var(--font-sans);
  font-weight: 500;
}
.loc-list h4:first-of-type { margin-top: 0; }
.loc-list dl {
  display: grid;
  grid-template-columns: 1fr auto;
  margin: 16px 0 0;
}
.loc-list dt, .loc-list dd {
  padding: 14px 0;
  border-top: 1px dashed var(--line-gold-soft);
  font-size: 14px;
}
.loc-list dt { color: var(--text-ivory); }
.loc-list dd { margin: 0; color: var(--gold); letter-spacing: 0.04em; text-align: right; }

/* ---------- Payment timeline ---------- */
.timeline {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 48px;
}
@media (max-width: 800px) { .timeline { grid-template-columns: 1fr; } }
.timeline .step {
  padding: 48px 40px;
  background: var(--bg-panel);
  border: 1px solid var(--line-gold);
  position: relative;
}
.timeline .step::before {
  content: "";
  position: absolute;
  inset: -1px -1px auto -1px;
  height: 2px;
  background: var(--gold);
}
.timeline .num {
  font-family: var(--font-serif);
  font-size: 72px;
  color: var(--gold);
  line-height: 1;
  opacity: 0.5;
  font-style: italic;
}
.timeline h4 { margin: 16px 0 12px; font-size: 26px; }
.timeline p { font-size: 14px; }

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 16px;
}
@media (max-width: 1000px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; } }
@media (max-width: 600px) { .gallery-grid { grid-template-columns: 1fr; } }
.gallery-grid figure {
  position: relative;
  overflow: hidden;
  background: var(--bg-panel);
  border: 1px solid var(--line-gold);
}
.gallery-grid figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent 55%);
}
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms var(--ease); }
.gallery-grid figure:hover img { transform: scale(1.05); }

/* ---------- About / partnership pillars ---------- */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}
@media (max-width: 800px) { .pillars { grid-template-columns: 1fr; } }
.pillars .pill {
  padding: 40px 32px;
  background: var(--bg-panel);
  border: 1px solid var(--line-gold);
  text-align: left;
  position: relative;
}
.pillars .pill::before {
  content: "";
  position: absolute;
  inset: -1px -1px auto -1px;
  height: 2px;
  background: var(--gold);
}
.pillars .pill strong {
  font-family: var(--font-serif);
  font-size: 48px;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
  line-height: 1;
  font-weight: 500;
}
.pillars .pill span { font-size: 13px; color: var(--text-body); line-height: 1.6; }

/* ---------- FAQ ---------- */
.faq-list {
  max-width: 920px;
  margin: 0 auto;
  border-top: 1px solid var(--line-gold);
}
.faq-list details {
  border-bottom: 1px solid var(--line-gold);
  padding: 32px 0;
}
.faq-list summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  font-family: var(--font-serif);
  font-size: 24px;
  color: var(--text-ivory);
  font-weight: 500;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  color: var(--gold);
  font-family: var(--font-sans);
  font-size: 28px;
  font-weight: 300;
  transition: transform var(--dur) var(--ease);
}
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list p { margin-top: 16px; font-size: 15px; line-height: 1.85; color: var(--text-body); }

/* ---------- SEO long-form ---------- */
.seo-long { max-width: 940px; margin: 0 auto; }
.seo-long details {
  border-top: 1px solid var(--line-gold);
  padding-top: 36px;
  margin-top: 36px;
}
.seo-long summary {
  cursor: pointer;
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  list-style: none;
  font-family: var(--font-sans);
  font-weight: 500;
}
.seo-long summary::-webkit-details-marker { display: none; }
.seo-long summary::after { content: " + Read the full overview"; }
.seo-long details[open] summary::after { content: " − Collapse"; }
.seo-long article { padding-top: 36px; }
.seo-long article h3 { margin-top: 36px; }
.seo-long article p { font-size: 15px; line-height: 1.9; color: var(--text-body); }

/* ---------- Key facts table ---------- */
.kf-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 48px;
  border: 1px solid var(--line-gold);
}
.kf-table th, .kf-table td {
  padding: 20px 26px;
  text-align: left;
  font-size: 14px;
  border-bottom: 1px solid var(--line-gold-soft);
  vertical-align: top;
}
.kf-table th {
  background: var(--bg-panel);
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
  width: 32%;
}
.kf-table td { color: var(--text-ivory); background: var(--bg-surface); }

/* ---------- Final CTA ---------- */
.final-cta {
  background: radial-gradient(circle at 30% 30%, rgba(212, 175, 55, 0.12), transparent 60%), var(--bg-ink);
  border-top: 1px solid var(--line-gold);
}
.final-cta .grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 72px;
  align-items: center;
}
@media (max-width: 1000px) { .final-cta .grid { grid-template-columns: 1fr; gap: 48px; } }
.contact-block { display: grid; gap: 18px; margin-top: 32px; }
.contact-block a {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 28px;
  border: 1px solid var(--line-gold);
  font-size: 15px;
  transition: all var(--dur) var(--ease);
}
.contact-block a:hover { background: var(--gold); color: var(--bg-ink); box-shadow: 0 0 24px rgba(212, 175, 55, 0.4); }
.contact-block a small { display: block; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); }
.contact-block a:hover small { color: var(--bg-ink); opacity: 0.7; }
.contact-block a strong { font-family: var(--font-serif); font-size: 24px; font-weight: 500; }

/* ---------- Footer (hc- prefix) ---------- */
.hc-footer {
  background: var(--bg-panel);
  border-top: 1px solid var(--line-gold);
  padding: 100px 0 40px;
}
.hc-footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.1fr 1.1fr;
  gap: 56px;
  margin-bottom: 56px;
}
@media (max-width: 1000px) { .hc-footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .hc-footer__grid { grid-template-columns: 1fr; } }
.hc-footer__brand h3 { font-size: 24px; margin-bottom: 18px; }
.hc-footer__blurb { font-size: 14px; color: var(--text-muted); line-height: 1.8; }
.hc-footer h4 {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
  font-weight: 500;
}
.hc-footer ul li { margin-bottom: 10px; font-size: 13px; }
.hc-footer ul li a { color: var(--text-body); transition: color var(--dur) var(--ease); }
.hc-footer ul li a:hover { color: var(--gold); }
.hc-footer__addr { color: var(--text-body); line-height: 1.6; font-size: 13px; }

.hc-footer__rera {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 28px;
  background: var(--bg-surface);
  border: 1px solid var(--line-gold);
  margin-bottom: 32px;
}
@media (max-width: 1000px) { .hc-footer__rera { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .hc-footer__rera { grid-template-columns: 1fr; } }
.hc-footer__rera-block { display: flex; flex-direction: column; gap: 4px; }
.hc-footer__rera-label {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.hc-footer__rera-block strong {
  font-family: var(--font-serif);
  font-size: 16px;
  color: var(--text-ivory);
  font-weight: 500;
}
.hc-footer__rera-portal { font-size: 11px; color: var(--text-muted); }

.hc-footer__legal { padding-top: 32px; border-top: 1px solid var(--line-gold-soft); }
.hc-footer__acp,
.hc-footer__disclaimer {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 18px;
}
.hc-footer__acp strong, .hc-footer__disclaimer strong { color: var(--gold); }
.hc-footer__copy {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 11px;
  color: var(--text-muted);
  padding-top: 24px;
  border-top: 1px solid var(--line-gold-soft);
}
.hc-footer__copy a { color: var(--text-body); }
.hc-footer__copy a:hover { color: var(--gold); }

/* ---------- Floating action buttons ---------- */
.float-btn {
  position: fixed;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--bg-ink);
  z-index: 90;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5), 0 0 24px rgba(212, 175, 55, 0.3);
  transition: transform var(--dur) var(--ease), background var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.float-btn:hover {
  transform: translateY(-3px);
  background: var(--gold-hover);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6), 0 0 32px rgba(212, 175, 55, 0.5);
}
.float-btn--wa { bottom: 96px; }
.float-btn--call { bottom: 24px; }

/* ---------- Toast ---------- */
.hc-toast {
  position: fixed;
  right: 24px;
  bottom: 168px;
  background: var(--bg-panel);
  border: 1px solid var(--gold);
  border-left-width: 3px;
  color: var(--text-ivory);
  padding: 18px 24px;
  z-index: 200;
  max-width: 360px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.8);
  display: none;
}
.hc-toast.is-visible { opacity: 1; transform: translateY(0); display: block; }
.hc-toast small { display: block; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; font-weight: 500; }

/* ---------- Honeypot ---------- */
.hp { position: absolute; left: -9999px; top: -9999px; visibility: hidden; }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 800ms var(--ease), transform 800ms var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Modal ---------- */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(5, 5, 5, 0.88);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal.is-open { display: flex; }
.modal-dialog {
  max-width: 520px;
  width: 100%;
  background: var(--bg-panel);
  border: 1px solid var(--line-gold);
  padding: 48px 40px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}
.modal-dialog::before { content: ""; position: absolute; inset: -1px -1px auto -1px; height: 2px; background: var(--gold); }
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  color: var(--gold);
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-gold);
  transition: all var(--dur) var(--ease);
}
.modal-close:hover { background: var(--gold); color: var(--bg-ink); }

/* ---------- Utilities ---------- */
.center { text-align: center; }
.mt-0 { margin-top: 0 !important; }
