:root {
  --accent: #d0b36c;
  --dark: #131619;
  --dark-2: #1d2228;
  --text: #2b2b2b;
  --muted: #666;
  --white: #ffffff;
  --soft: #f7f5f1;
  --line: rgba(255,255,255,0.12);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.7;
}
h1, h2, h3, h4 { font-family: 'Cormorant Garamond', serif; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 20px; }
.center { text-align: center; }

.m-glass-navbar {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1180px, calc(100% - 24px));
  z-index: 1000;
  background: rgba(19, 22, 25, 0.7);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.16);
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 14px 22px;
}
.brand-wrap { display: flex; align-items: center; gap: 12px; }
.m-logo {
  height: 54px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 6px 16px rgba(0,0,0,0.24));
}
.brand-copy { color: #fff; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; font-size: 0.9rem; }
.m-glass-nav { display: flex; gap: 26px; align-items: center; }
.m-glass-nav a { color: #fff; font-weight: 500; position: relative; }
.m-glass-nav a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px; background: var(--accent); transition: width 0.3s ease;
}
.m-glass-nav a:hover::after { width: 100%; }
.m-menu-toggle {
  display: none; background: transparent; border: 0; cursor: pointer;
}
.m-menu-toggle span {
  display: block; width: 24px; height: 2px; background: #fff; margin: 5px 0;
}

.m-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(115deg, rgba(19,22,25,0.92), rgba(19,22,25,0.74)), url('mall-wasl.jpg') center/cover no-repeat;
  color: #fff;
}
.hero-overlay { position: absolute; inset: 0; background: radial-gradient(circle at top right, rgba(208,179,108,0.16), transparent 35%); }
.hero-grid {
  position: relative; z-index: 1; width: 100%; padding-top: 130px; padding-bottom: 90px;
  display: grid; grid-template-columns: 1.3fr 0.8fr; gap: 40px; align-items: end;
}
.eyebrow, .section-kicker { text-transform: uppercase; letter-spacing: 0.16em; font-size: 0.76rem; font-weight: 700; color: var(--accent); margin-bottom: 14px; }
.section-kicker.center, .section-intro.center { text-align: center; }
.hero-copy h1 { font-size: clamp(2.8rem, 5vw, 5rem); line-height: 1.02; max-width: 720px; }
.hero-sub { max-width: 700px; color: #e8e8e8; font-size: 1.08rem; margin-top: 20px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.hero-stats { display: grid; gap: 16px; }
.stat-card {
  padding: 22px; border-radius: 22px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.08); backdrop-filter: blur(12px);
}
.stat-card strong { display: block; font-size: 1.4rem; color: #fff; margin-bottom: 4px; }
.stat-card span { color: #ddd; }

.m-section { padding: 88px 0; }
.alt-bg { background: var(--soft); }
.section-title { text-align: center; font-size: clamp(2rem, 4vw, 3rem); color: var(--dark); margin-bottom: 18px; }
.section-title.left { text-align: left; }
.section-intro { max-width: 760px; margin: 0 auto 34px; color: var(--muted); }
.lead { font-size: 1.08rem; color: #444; margin-bottom: 16px; }
.split-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 34px; align-items: start; }
.feature-stack { display: grid; gap: 18px; }
.feature-box {
  background: #fff; border: 1px solid #eee4cc; border-radius: 22px; padding: 24px; box-shadow: 0 14px 34px rgba(0,0,0,0.06);
}
.feature-box strong { display: block; color: var(--dark); margin-bottom: 8px; font-size: 1.05rem; }
.feature-box span { color: var(--muted); }

.grid { display: grid; gap: 28px; }
.grid.two-cols { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.mall-card {
  background: #fff; border-radius: 26px; overflow: hidden; box-shadow: 0 18px 44px rgba(0,0,0,0.08);
}
.mall-card img { width: 100%; height: 300px; object-fit: cover; }
.mall-card-body { padding: 28px; }
.pill {
  display: inline-block; padding: 7px 12px; border-radius: 999px; background: #f8f1dd; color: #8b6e2d; font-size: 0.82rem; font-weight: 700; margin-bottom: 14px;
}
.mall-card h3 { font-size: 2rem; margin-bottom: 12px; color: var(--dark); }
.mall-card p { color: var(--muted); margin-bottom: 16px; }
.mall-card ul { padding-left: 18px; color: #444; margin-bottom: 20px; }
.mall-card li { margin-bottom: 8px; }

.card-btn, .ghost-btn {
  display: inline-flex; align-items: center; justify-content: center; padding: 12px 22px; border-radius: 999px; font-weight: 700; transition: 0.28s ease;
}
.card-btn { background: var(--accent); color: var(--dark); }
.card-btn:hover { background: #bf9f57; }
.ghost-btn { border: 1px solid rgba(255,255,255,0.26); color: #fff; }
.ghost-btn:hover { background: rgba(255,255,255,0.08); }

.brand-grid { display: grid; gap: 18px; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.brand-logo {
  min-height: 116px; background: #fff; border: 1px dashed #d9c9a0; border-radius: 18px; display: grid; place-items: center; padding: 20px; box-shadow: 0 10px 24px rgba(0,0,0,0.05);
}
.brand-logo span { font-weight: 700; color: #6f6a5b; text-align: center; }

.leasing-strip {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 28px; align-items: center;
}
.leasing-points {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px;
}
.leasing-points div {
  background: #fff; border-radius: 18px; padding: 18px; font-weight: 600; color: var(--dark); box-shadow: 0 12px 30px rgba(0,0,0,0.05);
}

.m-footer { background: var(--dark); color: rgba(255,255,255,0.78); padding: 62px 0 24px; }
.footer-grid {
  display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 24px; padding-bottom: 26px;
}
.m-footer h3, .m-footer h4 { color: #fff; margin-bottom: 12px; }
.m-footer a { display: block; margin-bottom: 8px; color: rgba(255,255,255,0.78); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 18px; }

.whatsapp-float {
  position: fixed; bottom: 20px; left: 20px; z-index: 1200; width: 58px; height: 58px; border-radius: 50%;
  display: flex; justify-content: center; align-items: center; background: #25d366; box-shadow: 0 12px 24px rgba(0,0,0,0.24);
}
.whatsapp-float img { width: 28px; height: 28px; filter: brightness(0) invert(1); }

@media (max-width: 980px) {
  .hero-grid, .split-grid, .leasing-strip, .footer-grid, .grid.two-cols { grid-template-columns: 1fr; }
  .brand-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 820px) {
  .m-menu-toggle { display: block; }
  .m-glass-nav {
    display: none; position: absolute; top: calc(100% + 10px); right: 0; left: 0; margin: 0 8px; background: rgba(19,22,25,0.96); border-radius: 18px; padding: 16px; flex-direction: column; gap: 14px;
  }
  .m-glass-nav.active { display: flex; }
  .brand-copy { display: none; }
}

@media (max-width: 640px) {
  .m-logo { height: 48px; }
  .hero-copy h1 { font-size: 2.5rem; }
  .brand-grid, .leasing-points { grid-template-columns: 1fr; }
  .mall-card img { height: 240px; }
  .m-section { padding: 72px 0; }
}
