/* ============ 7 Dimensions Realty® — light, luxury editorial ============ */
:root {
  --ink: #33313a;
  --ink-soft: #6d6a76;
  --paper: #ffffff;
  --paper-warm: #faf8fb;
  --pink: #ec008c;
  --pink-soft: #fdeef7;
  --line: #eae6ee;
  --r1: #ec008c; --r2: #e1071b; --r3: #f7941d; --r4: #ffd400; --r5: #8dc63f; --r6: #00aeef; --r7: #662d91;
  --serif: "Fraunces", Georgia, serif;
  --sans: "Outfit", "Segoe UI", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  overflow-x: hidden;
}
::selection { background: var(--pink); color: #fff; }

h1, h2 { font-family: var(--serif); font-weight: 500; line-height: 1.08; letter-spacing: -0.01em; }
h1 em, h2 em { font-style: italic; color: var(--pink); }
a { color: inherit; }

.eyebrow {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--pink); margin-bottom: 1.1rem;
}

/* ============ NAV: centred logo masthead, menu beneath ============ */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
  padding: 0.9rem clamp(1.2rem, 4vw, 3.5rem) 0.75rem;
  background: rgba(255,255,255,0.9); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-logo img { height: 72px; display: block; }
.nav-links { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: clamp(1rem, 2.4vw, 2.2rem); }
.nav-links a {
  text-decoration: none; font-size: 0.92rem; font-weight: 400; color: var(--ink-soft);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--pink); }
.nav-cta {
  background: var(--pink); color: #fff !important; font-weight: 500 !important;
  padding: 0.55rem 1.3rem; border-radius: 100px;
  transition: transform 0.2s, box-shadow 0.2s !important;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(236,0,140,0.32); }
.nav-burger { display: none; }

/* ============ HERO ============ */
.hero {
  position: relative;
  display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  padding: clamp(3.5rem, 8vh, 6.5rem) clamp(1.2rem, 4vw, 3.5rem) clamp(3rem, 7vh, 5rem);
  max-width: 1280px; margin: 0 auto;
}
.hero-mesh {
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(38rem 26rem at 82% 8%, rgba(236,0,140,0.07), transparent 60%),
    radial-gradient(30rem 22rem at 8% 90%, rgba(0,174,239,0.06), transparent 60%),
    radial-gradient(24rem 18rem at 40% 110%, rgba(141,198,63,0.05), transparent 60%);
}
.hero h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); margin-bottom: 1.4rem; }
.hero-sub { font-size: clamp(1rem, 1.4vw, 1.16rem); color: var(--ink-soft); max-width: 34rem; margin-bottom: 2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-bottom: 2.2rem; }
.btn-primary {
  background: var(--pink); color: #fff; text-decoration: none; font-weight: 500;
  padding: 0.85rem 1.9rem; border-radius: 100px; font-size: 0.98rem;
  box-shadow: 0 10px 30px rgba(236,0,140,0.25);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(236,0,140,0.35); }
.btn-ghost {
  border: 1px solid var(--line); color: var(--ink-soft); text-decoration: none;
  padding: 0.85rem 1.7rem; border-radius: 100px; font-size: 0.98rem; font-weight: 400;
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost:hover { border-color: var(--pink); color: var(--pink); }
.hero-rera { font-size: 0.78rem; letter-spacing: 0.08em; color: #a9a5b2; }

.hero-figure { position: relative; }
.figure-placeholder {
  aspect-ratio: 4 / 3; border-radius: 22px; overflow: hidden; position: relative;
  background: linear-gradient(150deg, #fdf3fa, #f2f6fd 55%, #f4fbf1);
  border: 1px dashed #e3cfe0;
  display: flex; align-items: center; justify-content: center; text-align: center;
}
.figure-placeholder svg { position: absolute; inset: auto 0 0 0; width: 100%; opacity: 0.5; }
.skyline rect { fill: none; stroke: var(--pink); stroke-width: 1.4; opacity: 0.5; }
.skyline rect:nth-child(2n) { stroke: var(--r6); }
.skyline rect:nth-child(3n) { stroke: var(--r3); }
.figure-placeholder span { position: relative; font-size: 0.95rem; color: #b48fae; font-weight: 400; line-height: 1.5; }
.figure-placeholder small { font-size: 0.78rem; color: #c9aec6; }
.hero-figure img { width: 100%; height: 100%; object-fit: cover; border-radius: 22px; display: block; }
.hero-figure video { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 22px; display: block; background: var(--pink-soft); }

/* ============ TICKER ============ */
.ticker {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  overflow: hidden; padding: 0.85rem 0; background: var(--paper-warm);
}
.ticker-track { display: flex; gap: 3rem; width: max-content; animation: tick 36s linear infinite; }
.ticker span {
  display: inline-flex; align-items: center; gap: 0.7rem; white-space: nowrap;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.24em; color: var(--ink-soft);
}
.ticker i { width: 9px; height: 9px; border-radius: 50%; display: inline-block; }
@keyframes tick { to { transform: translateX(-50%); } }

/* ============ SECTIONS SHARED ============ */
section { padding: clamp(4rem, 10vh, 7rem) clamp(1.2rem, 4vw, 3.5rem); max-width: 1280px; margin: 0 auto; }
.section-head { max-width: 44rem; margin-bottom: clamp(2.5rem, 5vh, 4rem); }
.section-head h2 { font-size: clamp(2rem, 4.6vw, 3.4rem); margin-bottom: 1rem; }
.section-sub { color: var(--ink-soft); font-size: 1.05rem; max-width: 36rem; }

/* ============ DIMENSIONS ============ */
.dim-list { list-style: none; counter-reset: dim; border-top: 1px solid var(--line); }
.dim-row {
  display: grid; grid-template-columns: 5rem minmax(14rem, 20rem) 1fr;
  gap: 1.5rem; align-items: baseline;
  padding: 1.6rem 0.6rem; border-bottom: 1px solid var(--line);
  position: relative; transition: background 0.25s, padding-left 0.25s;
}
.dim-row::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--dim); transform: scaleY(0); transition: transform 0.28s ease;
  transform-origin: top;
}
.dim-row:hover { background: var(--paper-warm); padding-left: 1.3rem; }
.dim-row:hover::before { transform: scaleY(1); }
.dim-num { font-family: var(--serif); font-size: 1.5rem; font-style: italic; color: var(--dim); }
.dim-row h3 { font-size: 1.25rem; font-weight: 600; }
.dim-row p { color: var(--ink-soft); font-size: 0.98rem; max-width: 40rem; }
.dim-note { margin-top: 1.6rem; font-size: 0.95rem; font-style: italic; color: var(--ink-soft); }

/* ============ DISCRETION ============ */
.discretion { background: transparent; }
.stat-band {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
  margin-bottom: clamp(2.5rem, 5vh, 3.6rem);
}
.stat {
  background: var(--paper-warm); border: 1px solid var(--line); border-radius: 18px;
  padding: 1.6rem 1.4rem;
}
.stat-n { display: block; font-family: var(--serif); font-size: clamp(2.2rem, 4vw, 3.2rem); font-weight: 600; color: var(--pink); line-height: 1; margin-bottom: 0.5rem; }
.stat-l { font-size: 0.88rem; color: var(--ink-soft); }
.stat-zero { background: var(--pink-soft); border-color: #f6c3e2; }
.stat-zero .stat-n { color: var(--pink); }

.redacted-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.red-card {
  border: 1px solid var(--line); border-radius: 18px; padding: 1.4rem 1.3rem 1.5rem;
  background: #fff; transition: transform 0.22s, box-shadow 0.22s, border-color 0.22s;
}
.red-card:hover { transform: translateY(-4px); box-shadow: 0 18px 44px rgba(51,49,58,0.09); border-color: #f0c9e4; }
.red-cat { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.26em; text-transform: uppercase; color: var(--pink); }
.red-bar {
  display: block; height: 1.55rem; margin: 0.9rem 0 0.8rem; border-radius: 6px; position: relative; overflow: hidden;
  background: repeating-linear-gradient(-45deg, #efeaf2 0 10px, #e6e0ea 10px 20px);
}
.red-bar::after {
  content: attr(data-hint);
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--pink); background: var(--pink-soft);
  opacity: 0; transition: opacity 0.25s;
}
.red-card:hover .red-bar::after { opacity: 1; }
.red-card figcaption { font-size: 0.92rem; color: var(--ink-soft); line-height: 1.45; }
.discretion-close { margin-top: 2.4rem; text-align: center; font-size: 1.05rem; color: var(--ink-soft); }
.discretion-close a { color: var(--pink); font-weight: 500; text-decoration: none; border-bottom: 1px solid currentColor; }

/* ============ LEADERSHIP ============ */
.leadership { background: var(--paper-warm); border-radius: 34px; max-width: 1216px; }
.leader-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 3vw, 3rem); }
.leader-card {
  background: #fff; border: 1px solid var(--line); border-radius: 22px;
  padding: clamp(1.5rem, 3vw, 2.4rem);
  display: grid; grid-template-columns: minmax(7rem, 9rem) 1fr; gap: 1.4rem 1.6rem;
  align-items: start;
}
.leader-photo { grid-row: span 4; border-radius: 14px; overflow: hidden; aspect-ratio: 3/4; background: var(--pink-soft); }
.leader-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.leader-card blockquote { font-family: var(--serif); font-style: italic; font-size: 1.02rem; line-height: 1.55; color: var(--ink); }
.leader-card h3 { font-size: 1.3rem; font-weight: 600; margin-top: 0.4rem; }
.leader-role { color: var(--pink); font-size: 0.9rem; font-weight: 500; }
.leader-rera { color: #a9a5b2; font-size: 0.8rem; letter-spacing: 0.06em; }
.leader-note { margin-top: 2rem; text-align: center; color: var(--ink-soft); font-size: 0.98rem; max-width: 46rem; margin-inline: auto; }

/* ============ PROCESS ============ */
.steps { list-style: none; counter-reset: step; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.steps li {
  counter-increment: step; position: relative;
  border: 1px solid var(--line); border-radius: 18px; padding: 2.6rem 1.5rem 1.6rem;
  transition: border-color 0.2s, transform 0.2s;
}
.steps li:hover { border-color: var(--pink); transform: translateY(-3px); }
.steps li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute; top: 1.1rem; right: 1.3rem;
  font-family: var(--serif); font-style: italic; font-size: 1.35rem; color: var(--pink);
}
.steps h3 { font-size: 1.08rem; font-weight: 600; margin-bottom: 0.5rem; }
.steps p { font-size: 0.92rem; color: var(--ink-soft); }

/* ============ FAQ ============ */
.faq-list { max-width: 52rem; }
.faq-list details {
  border: 1px solid var(--line); border-radius: 14px; margin-bottom: 0.7rem;
  background: #fff; overflow: hidden; transition: border-color 0.2s;
}
.faq-list details[open] { border-color: var(--pink); background: var(--paper-warm); }
.faq-list summary {
  cursor: pointer; padding: 1.05rem 1.3rem; font-weight: 500; font-size: 1.02rem;
  list-style: none; position: relative; padding-right: 3rem;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+"; position: absolute; right: 1.3rem; top: 50%; transform: translateY(-50%);
  font-size: 1.4rem; color: var(--pink); font-weight: 300; transition: transform 0.2s;
}
.faq-list details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-list details p { padding: 0 1.3rem 1.2rem; color: var(--ink-soft); font-size: 0.97rem; }

/* ============ VISION ============ */
.vision { text-align: center; }
.vision h2 { font-size: clamp(2.2rem, 5.4vw, 4rem); margin-bottom: 1.4rem; }
.vision p { max-width: 46rem; margin: 0 auto; color: var(--ink-soft); font-size: 1.06rem; }

/* ============ CONTACT ============ */
.contact-layout { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: 1.4rem; align-items: stretch; }
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 1.2rem; align-content: start; }
.contact-card {
  border: 1px solid var(--line); border-radius: 20px; padding: 1.8rem 1.6rem;
  background: var(--paper-warm);
  display: flex; flex-direction: column; gap: 0.4rem; align-items: flex-start;
}
.contact-card h3 { font-size: 1.25rem; font-weight: 600; }
.contact-role { color: var(--pink); font-size: 0.86rem; font-weight: 500; margin-bottom: 0.7rem; }
.contact-phone { font-size: 1.25rem; font-weight: 600; text-decoration: none; color: var(--ink); }
.contact-phone:hover, .contact-mail:hover, .contact-map:hover { color: var(--pink); }
.contact-mail, .contact-map { text-decoration: none; color: var(--ink-soft); font-size: 0.98rem; }
.contact-office address { font-style: normal; color: var(--ink-soft); font-size: 0.95rem; line-height: 1.55; }
.contact-map { margin-top: 0.5rem; font-weight: 500; color: var(--pink) !important; }
/* enquiry form */
.enquiry {
  background: var(--paper-warm); border: 1px solid var(--line);
  border-radius: 22px; padding: clamp(1.8rem, 3.2vw, 3rem);
  display: flex; flex-direction: column; justify-content: center;
}
.enquiry h3 { font-family: var(--serif); font-size: clamp(1.8rem, 2.6vw, 2.3rem); font-weight: 500; margin-bottom: 0.5rem; }
.enquiry-sub { color: var(--ink-soft); font-size: 0.98rem; margin-bottom: 1.4rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; margin-bottom: 0.8rem; }
.enquiry input, .enquiry textarea {
  width: 100%; padding: 0.85rem 1.05rem; border: 1px solid var(--line); border-radius: 12px;
  font-family: var(--sans); font-size: 0.98rem; color: var(--ink); background: #fff; outline: none;
  transition: border-color 0.2s;
}
.enquiry input:focus, .enquiry textarea:focus { border-color: var(--pink); }
.enquiry textarea { resize: vertical; margin-bottom: 1rem; }
.enquiry .btn-primary { border: none; cursor: pointer; font-family: var(--sans); font-size: 0.98rem; }
.captcha-row { display: flex; align-items: center; gap: 0.9rem; margin-bottom: 1.1rem; flex-wrap: wrap; }
.captcha-row label { font-size: 0.95rem; color: var(--ink-soft); }
.captcha-row label span { font-weight: 600; color: var(--ink); }
.captcha-row input { max-width: 7.5rem; }
.enquiry .btn-primary[disabled] { opacity: 0.6; cursor: wait; }
.hp-field { position: absolute !important; left: -5000px !important; height: 1px; opacity: 0; }
.form-status { margin-top: 0.9rem; font-size: 0.95rem; color: var(--ink-soft); min-height: 1.3em; }
.form-status.ok { color: #3c8a2e; }
.form-status.err { color: #c22743; }
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }

/* ============ FOOTER ============ */
.footer { text-align: center; padding: 3rem 1.2rem 0; background: var(--paper-warm); border-top: 1px solid var(--line); }
.footer-logo { height: 58px; margin-bottom: 1.1rem; }
.footer-social { display: flex; gap: 0.9rem; justify-content: center; margin-bottom: 1rem; font-size: 0.98rem; color: var(--ink-soft); }
.footer-social a { text-decoration: none; font-weight: 500; color: var(--ink); transition: color 0.2s; }
.footer-social a:hover { color: var(--pink); }
.footer p { font-size: 0.82rem; color: #a9a5b2; }
.footer-strip { margin: 0.8rem auto 1.6rem; font-size: 0.66rem; font-weight: 600; letter-spacing: 0.22em; color: #b9b5c2; max-width: 60rem; }
.rainbow-baseline { display: flex; height: 5px; }
.rainbow-baseline i { flex: 1; }
.rainbow-baseline i:nth-child(1){background:var(--r1)}
.rainbow-baseline i:nth-child(2){background:var(--r2)}
.rainbow-baseline i:nth-child(3){background:var(--r3)}
.rainbow-baseline i:nth-child(4){background:var(--r4)}
.rainbow-baseline i:nth-child(5){background:var(--r5)}
.rainbow-baseline i:nth-child(6){background:var(--r6)}
.rainbow-baseline i:nth-child(7){background:var(--r7)}

/* ============ FLOATING WHATSAPP ============ */
.wa-float {
  position: fixed; right: 1.4rem; bottom: 1.4rem; z-index: 60;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 28px rgba(37,211,102,0.45);
  transition: transform 0.2s, box-shadow 0.2s;
}
.wa-float:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 16px 36px rgba(37,211,102,0.55); }

/* ============ REVEALS ============ */
.reveal { opacity: 0; transform: translateY(22px); animation: rise 0.8s cubic-bezier(0.2, 0.7, 0.2, 1) forwards; }
.d1 { animation-delay: 0.12s; } .d2 { animation-delay: 0.24s; } .d3 { animation-delay: 0.36s; } .d4 { animation-delay: 0.48s; }
@keyframes rise { to { opacity: 1; transform: none; } }
.scroll-reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
.scroll-reveal.in { opacity: 1; transform: none; }

/* ============ RESPONSIVE ============ */
@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; }
  .hero-figure { order: -1; max-width: 30rem; }
  .stat-band, .redacted-grid { grid-template-columns: repeat(2, 1fr); }
  .leader-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { grid-template-columns: 1fr; }
  .dim-row { grid-template-columns: 3.4rem 1fr; }
  .dim-row p { grid-column: 2; }
}
.nav-burger span { display: block; width: 22px; height: 2px; background: var(--ink); margin: 5px 0; border-radius: 2px; transition: transform 0.25s, opacity 0.25s; }
body.nav-open .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .nav-burger span:nth-child(2) { opacity: 0; }
body.nav-open .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 640px) {
  .nav-logo img { height: 56px; }
  .nav-burger { display: block; background: none; border: none; cursor: pointer; padding: 0.4rem; position: absolute; right: 1rem; top: 1.55rem; }
  .nav-links {
    position: fixed; top: 80px; left: 0; right: 0; z-index: 49;
    flex-direction: column; align-items: flex-start; gap: 0;
    background: #fff; border-bottom: 1px solid var(--line);
    max-height: 0; overflow: hidden; transition: max-height 0.3s ease;
  }
  body.nav-open .nav-links { max-height: 22rem; }
  .nav-links a { width: 100%; padding: 0.9rem 1.4rem; border-top: 1px solid var(--line); font-size: 1rem; }
  .nav-cta { border-radius: 0; text-align: center; }
  .steps { grid-template-columns: 1fr; }
  .stat-band, .redacted-grid { grid-template-columns: 1fr 1fr; }
  .leader-card { grid-template-columns: 1fr; }
  .leader-photo { grid-row: auto; max-width: 12rem; }
}
