 *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  :root {
    --black: #000000;
    --white: #ffffff;
    --gray-100: #ECF0F3;
    --gray-400: #A6A6A6;
    --gray-600: #a7a7a7;
    --gray-900: #0d0d0d;
  }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'Inter', sans-serif;
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
  }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 20px 60px;
    background: rgba(0,0,0,1);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .nav-logo img { height: 64px; width: auto; display: block; }
  .nav-links { display: flex; gap: 40px; list-style: none; }
  .nav-links a {
    color: var(--gray-600); text-decoration: none; font-size: 11px;
    font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--white); }

  /* HERO */
  .hero {
    position: relative; height: 100vh; min-height: 720px;
    display: flex; flex-direction: column; justify-content: flex-end; overflow: hidden;
  }
  .hero-bg {
    position: absolute; inset: 0;
    background-image: url('./images/banner.jpg');
    background-size: cover; background-position: center 40%;
  }
  .hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.25) 55%, rgba(0,0,0,0) 100%);
  }
  .hero-content { position: relative; z-index: 2; padding: 0 60px 90px; }
  .hero-eyebrow {
    font-size: 11px; font-weight: 600; letter-spacing: 0.22em;
    text-transform: uppercase; color: var(--gray-100); margin-bottom: 28px;
    display: flex; align-items: center; gap: 14px;
  }
  .hero-eyebrow::before { content: ''; width: 36px; height: 1px; background: var(--gray-100); display: block; }
  .hero-headline {
    font-size: clamp(60px, 9vw, 120px); font-weight: 900;
    line-height: 0.92; letter-spacing: -0.055em;
    text-transform: uppercase; margin-bottom: 36px; max-width: 860px;
  }
  .hero-headline em { font-style: normal; color: rgba(255,255,255,0.45); }
  .hero-bottom { display: flex; align-items: flex-end; justify-content: space-between; }
  .hero-sub { font-size: 15px; color: rgba(255,255,255,0.65); line-height: 1.75; max-width: 440px; }
  .hero-scroll { display: flex; flex-direction: column; align-items: center; gap: 10px; color: var(--gray-600); font-size: 10px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; }
  .hero-scroll-line { width: 1px; height: 48px; background: linear-gradient(to bottom, var(--gray-600), transparent); }

  /* TICKER */
  .ticker-bar { background: var(--gray-900); padding: 14px 0; overflow: hidden; border-top: 1px solid rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.05); }
  .ticker-track { display: flex; gap: 80px; white-space: nowrap; animation: ticker 38s linear infinite; width: max-content; }
  .ticker-item { font-size: 10px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gray-600); flex-shrink: 0; }
  .ticker-item strong { color: var(--gray-400); }
  @keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

  /* STATS */
  .stats { display: grid; grid-template-columns: repeat(4, 1fr); border-bottom: 1px solid rgba(255,255,255,0.05); }
  .stat-cell { padding: 60px 52px; border-right: 1px solid rgba(255,255,255,0.05); }
  .stat-cell:last-child { border-right: none; }
  .stat-number { font-size: 39px; font-weight: 900; letter-spacing: -0.055em; line-height: 1; margin-bottom: 10px; }
  .stat-label { font-size: 11px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gray-600); }

  /* ABOUT */
  .about { display: grid; grid-template-columns: 1fr 1fr; min-height: 620px; }
  .about-image { position: relative; overflow: hidden; }
  .about-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .about-content { padding: 84px 68px; display: flex; flex-direction: column; justify-content: center; background: var(--black); }
  .section-label { font-size: 10px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gray-600); margin-bottom: 20px; }
  .about-headline { font-size: clamp(34px, 3.5vw, 52px); font-weight: 900; letter-spacing: -0.045em; line-height: 1.02; text-transform: uppercase; margin-bottom: 28px; }
  .about-headline em { font-style: normal; color: var(--gray-600); }
  .about-body { font-size: 14px; color: var(--gray-400); line-height: 1.85; margin-bottom: 16px; }
  .about-divider { border: none; border-top: 1px solid rgba(255,255,255,0.07); margin: 32px 0; }
  .about-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 32px; }
  .meta-label { font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gray-600); font-weight: 600; margin-bottom: 5px; }
  .meta-value { font-size: 13px; color: var(--white); font-weight: 500; }

  /* GRANDE INTRO */
  .grande-intro { position: relative; height: 92vh; min-height: 640px; overflow: hidden; display: flex; align-items: flex-end; }
  .grande-intro-bg { position: absolute; inset: 0; }
  .grande-intro-bg img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .grande-intro-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.2) 55%, rgba(0,0,0,0) 100%); }
  .grande-intro-content { position: relative; z-index: 2; width: 100%; padding: 0 60px 88px; display: flex; align-items: flex-end; justify-content: space-between; gap: 60px; }
  .grande-project-tag { display: inline-flex; align-items: center; gap: 10px; font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gray-400); margin-bottom: 24px; }
  .grande-project-tag::before { content: ''; width: 24px; height: 1px; background: var(--gray-400); }
  .grande-intro-title { font-size: clamp(72px, 11vw, 148px); font-weight: 900; letter-spacing: -0.06em; line-height: 0.88; text-transform: uppercase; }
  .grande-intro-right { max-width: 380px; flex-shrink: 0; padding-bottom: 8px; }
  .grande-location { font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gray-400); margin-bottom: 20px; }
  .grande-intro-desc { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.8; }

  /* GRANDE STORY */
  .grande-story { background: var(--black); padding: 100px 60px; }
  .grande-story-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 80px; align-items: start; }
  .grande-story-title { font-size: 44px; font-weight: 900; letter-spacing: -0.045em; text-transform: uppercase; line-height: 1.02; margin-bottom: 40px; }
  .grande-story-title em { font-style: normal; color: var(--gray-600); }
  .grande-stats-stack { display: flex; flex-direction: column; }
  .grande-stat-row { padding: 22px 0; border-top: 1px solid rgba(255,255,255,0.06); }
  .grande-stat-row:last-child { border-bottom: 1px solid rgba(255,255,255,0.06); }
  .grande-stat-num { font-size: 36px; font-weight: 900; letter-spacing: -0.05em; line-height: 1; margin-bottom: 4px; }
  .grande-stat-desc { font-size: 11px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gray-600); }
  .grande-chapter { margin-bottom: 48px; }
  .grande-chapter:last-child { margin-bottom: 0; }
  .chapter-eyebrow { font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gray-600); margin-bottom: 12px; display: flex; align-items: center; gap: 12px; }
  .chapter-eyebrow::before { content: ''; width: 20px; height: 1px; background: var(--gray-600); }
  .chapter-heading { font-size: 20px; font-weight: 800; letter-spacing: -0.03em; text-transform: uppercase; margin-bottom: 14px; color: var(--white); }
  .chapter-body { font-size: 14px; color: var(--gray-400); line-height: 1.85; }
  .chapter-body + .chapter-body { margin-top: 12px; }

  /* OC CALLOUT */
  .oc-callout { margin-top: 48px; border: 1px solid rgba(255,255,255,0.1); padding: 36px 40px; display: grid; grid-template-columns: auto 1fr; gap: 32px; align-items: center; }
  .oc-marker { font-size: 10px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gray-600); writing-mode: vertical-rl; text-orientation: mixed; transform: rotate(180deg); }
  .oc-title { font-size: 17px; font-weight: 900; letter-spacing: -0.03em; text-transform: uppercase; color: var(--white); margin-bottom: 8px; }
  .oc-body { font-size: 13px; color: var(--gray-600); line-height: 1.7; }

  /* GRANDE DETAILS — from brochure */
  .grande-details { background: var(--gray-900); padding: 100px 60px; border-top: 1px solid rgba(255,255,255,0.04); }
  .grande-details-header { margin-bottom: 64px; }
  .grande-details-intro { font-size: 15px; color: var(--gray-400); line-height: 1.85; max-width: 760px; margin-top: 20px; }

  /* BHK CONFIG */
  .bhk-strip { display: flex; gap: 2px; margin-bottom: 64px; }
  .bhk-card { flex: 1; background: var(--black); padding: 40px 36px; position: relative; overflow: hidden; }
  .bhk-card::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--white); transform: scaleX(0); transform-origin: left; transition: transform 0.4s; }
  .bhk-card:hover::after { transform: scaleX(1); }
  .bhk-num { font-size: 64px; font-weight: 900; letter-spacing: -0.06em; line-height: 1; color: var(--white); margin-bottom: 4px; }
  .bhk-label { font-size: 11px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gray-600); margin-bottom: 12px; }
  .bhk-desc { font-size: 13px; color: var(--gray-600); line-height: 1.6; }

  /* AMENITIES GRID */
  .amenities-label { font-size: 10px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gray-600); margin-bottom: 32px; display: flex; align-items: center; gap: 12px; }
  .amenities-label::before { content: ''; width: 32px; height: 1px; background: var(--gray-600); }
  .amenities-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 2px; }
  .amenity-card {
    background: var(--black); padding: 28px 20px;
    display: flex; flex-direction: column; align-items: center; gap: 10px;
    text-align: center; transition: background 0.2s;
  }
  .amenity-card:hover { background: #111; }
  .amenity-icon { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; }
  .amenity-name { font-size: 11px; font-weight: 500; letter-spacing: 0.06em; color: var(--gray-600); line-height: 1.3; text-align: center; }

  /* LOCATION */
  .location-strip { margin-top: 64px; padding-top: 48px; border-top: 1px solid rgba(255,255,255,0.06); display: flex; align-items: center; gap: 16px; }
  .location-pin { font-size: 20px; }
  .location-text { font-size: 15px; color: var(--gray-400); font-weight: 500; }
  .location-text strong { color: var(--white); }
  .location-site { margin-left: auto; font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray-600); text-decoration: none; border-bottom: 1px solid var(--gray-600); padding-bottom: 2px; transition: color 0.2s; }
  .location-site:hover { color: var(--white); }

  /* IMAGE STRIP */
  .image-strip { display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; height: 520px; gap: 2px; }
  .strip-cell { position: relative; overflow: hidden; }
  .strip-cell img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.7s; }
  .strip-cell:hover img { transform: scale(1.04); }
  .strip-label { position: absolute; bottom: 20px; left: 20px; font-size: 10px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: rgb(255, 255, 255); text-shadow: 0 1px 4px rgba(0,0,0,0.6); }

  /* AERIAL */
  .aerial { position: relative; height: 65vh; min-height: 460px; overflow: hidden; }
  .aerial img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .aerial-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.75) 100%); }
  .aerial-caption { position: absolute; bottom: 52px; left: 60px; right: 60px; display: flex; justify-content: space-between; align-items: flex-end; }
  .aerial-caption-left { font-size: clamp(28px, 4vw, 52px); font-weight: 900; letter-spacing: -0.04em; text-transform: uppercase; line-height: 1.02; }
  .aerial-caption-left em { font-style: normal; color: rgba(255,255,255,0.4); }
  .aerial-caption-right { font-size: 13px; color: rgba(255,255,255,0.5); text-align: right; line-height: 1.7; max-width: 300px; }

  /* NEWS */
  .news-section { background: var(--black); padding: 100px 60px; border-top: 1px solid rgba(255,255,255,0.04); }
  .news-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 56px; }
  .news-headline { font-size: clamp(32px, 4vw, 48px); font-weight: 900; letter-spacing: -0.04em; text-transform: uppercase; line-height: 1.02; }
  .news-sub { max-width: 320px; font-size: 13px; color: var(--gray-600); line-height: 1.7; }
  .news-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
  .news-card { background: var(--gray-900); padding: 48px 44px; display: flex; flex-direction: column; gap: 20px; position: relative; overflow: hidden; text-decoration: none; color: inherit; transition: background 0.25s; }
  .news-card::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--white); transform: scaleX(0); transform-origin: left; transition: transform 0.4s; }
  .news-card:hover::after { transform: scaleX(1); }
  .news-pub-logo { margin-bottom: 4px; }
  .pub-logo-text { font-size: 13px; font-weight: 800; letter-spacing: 0.05em; color: var(--white); text-transform: uppercase; }
  .pub-logo-sub { font-size: 9px; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gray-600); margin-top: 1px; }
  .news-source-row { display: flex; align-items: center; justify-content: space-between; padding-bottom: 16px; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .news-date { font-size: 10px; color: var(--gray-600); letter-spacing: 0.08em; }
  .news-title { font-size: 20px; font-weight: 800; letter-spacing: -0.03em; line-height: 1.2; color: var(--white); }
  .news-excerpt { font-size: 13px; color: var(--gray-600); line-height: 1.75; flex-grow: 1; }
  .news-tags { display: flex; flex-wrap: wrap; gap: 8px; }
  .news-tag { font-size: 9px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gray-600); border: 1px solid rgba(255,255,255,0.08); padding: 4px 10px; }
  .news-arrow { font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gray-600); display: flex; align-items: center; gap: 8px; transition: color 0.2s; }
  .news-card:hover .news-arrow { color: var(--white); }

  /* PILLARS */
  .pillars { padding: 100px 60px; background: var(--gray-900); border-top: 1px solid rgba(255,255,255,0.04); }
  .pillars-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 60px; }
  .pillars-headline { font-size: clamp(34px, 4vw, 50px); font-weight: 900; letter-spacing: -0.04em; text-transform: uppercase; line-height: 1.02; }
  .pillars-sub { max-width: 340px; font-size: 13px; color: var(--gray-600); line-height: 1.75; }
  .pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
  .pillar-card { background: var(--black); padding: 52px 44px; position: relative; overflow: hidden; }
  .pillar-card::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--white); transform: scaleX(0); transform-origin: left; transition: transform 0.4s; }
  .pillar-card:hover::after { transform: scaleX(1); }
  .pillar-ghost { font-size: 80px; font-weight: 900; letter-spacing: -0.06em; color: rgba(255,255,255,0.03); position: absolute; bottom: 12px; right: 24px; line-height: 1; user-select: none; }
  .pillar-bar { width: 36px; height: 2px; background: var(--gray-600); margin-bottom: 36px; }
  .pillar-title { font-size: 17px; font-weight: 800; letter-spacing: -0.03em; text-transform: uppercase; margin-bottom: 12px; }
  .pillar-body { font-size: 13px; color: var(--gray-600); line-height: 1.8; }

  /* FOOTER */
  footer { border-top: 1px solid rgba(255,255,255,0.05); padding: 52px 60px; display: flex; justify-content: space-between; align-items: center; background: var(--black); }
  .footer-logo img { height: 56px; width: auto; }
  .footer-links { display: flex; gap: 32px; list-style: none; }
  .footer-links a { color: var(--gray-600); text-decoration: none; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 500; transition: color 0.2s; }
  .footer-links a:hover { color: var(--white); }
  .footer-copy { font-size: 11px; color: var(--gray-600); letter-spacing: 0.04em; }

  @media (max-width: 900px) {
    nav { padding: 16px 24px; }
    .nav-links { display: none; }
    .hero-content { padding: 0 24px 56px; }
    .hero-bottom { flex-direction: column; align-items: flex-start; gap: 20px; }
    .stats { grid-template-columns: 1fr 1fr; }
    .stat-cell { padding: 36px 24px; }
    .about { grid-template-columns: 1fr; }
    .about-image { height: 280px; }
    .about-content { padding: 48px 24px; }
    .grande-intro-content { flex-direction: column;  }
    .grande-intro-right { max-width: 100%; }
    .grande-story { padding: 60px 24px; }
    .grande-story-grid { grid-template-columns: 1fr; gap: 48px; }
    .grande-details { padding: 60px 24px; }
    .bhk-strip { flex-direction: column; }
    .amenities-grid { grid-template-columns: repeat(3, 1fr); }
    .image-strip { grid-template-columns: 1fr 1fr; height: auto; }
    .strip-cell { height: 240px; }
    .aerial-caption { flex-direction: column; align-items: flex-start; gap: 16px; left: 24px; right: 24px; bottom: 32px; }
    .news-section { padding: 60px 24px; }
    .news-header { flex-direction: column; align-items: flex-start; gap: 16px; }
    .news-grid { grid-template-columns: 1fr; }
    .pillars { padding: 60px 24px; }
    .pillars-header { flex-direction: column; align-items: flex-start; gap: 16px; }
    .pillars-grid { grid-template-columns: 1fr; }
    footer { flex-direction: column; gap: 24px; padding: 36px 24px; text-align: center; }
    .footer-links { flex-wrap: wrap; justify-content: center; }
    .oc-callout { grid-template-columns: 1fr; gap: 16px; padding: 28px 24px; }
    .oc-marker { writing-mode: horizontal-tb; transform: none; }
    .location-strip { flex-wrap: wrap; }
    .location-site { margin-left: 0; }
    .grande-intro-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgb(0 0 0 / 79%) 0%, rgb(0 0 0 / 70%) 55%, rgba(0, 0, 0, 0) 100%);
}
.aerial-caption-right {
    font-size: 13px;
    color: rgb(255 255 255);
    text-align: right;
    line-height: 1.7;
    max-width: 300px;
}
.hero-sub {
    font-size: 15px;
    color: rgb(255 255 255);
    line-height: 1.75;
    max-width: 440px;
}
.hero-eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 14px;
}
.hero-eyebrow::before {
    content: '';
    width: 36px;
    height: 1px;
    background: #ffffff;
    display: block;
}
.grande-intro-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 0 49px 80px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 60px;
}
  }