:root {
    --navy-deepest: #02080F;
    --navy-deep: #060E1C;
    --navy: #0A1628;
    --navy-mid: #0E2040;
    --navy-light: #172B52;
    --navy-border: rgba(201,168,76,0.15);
    --gold: #C9A84C;
    --gold-bright: #E8C168;
    --gold-pale: #F5E8C0;
    --gold-dim: rgba(201,168,76,0.4);
    --cream: #FAF6EE;
    --white: #FFFFFF;
    --text-muted: rgba(250,246,238,0.55);
    --text-mid: rgba(250,246,238,0.78);
    --section-pad: 110px 0;
  }
  *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; font-size: 18px; }
  body {
    background: var(--navy-deep);
    color: var(--cream);
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    line-height: 1.7;
    overflow-x: hidden;
  }
  img { max-width: 100%; display: block; }
  a { color: inherit; text-decoration: none; }

  /* ── UTILITY ── */
  .gold { color: var(--gold); }
  .serif { font-family: 'Cormorant Garamond', Georgia, serif; }
  .container { max-width: 1240px; margin: 0 auto; padding: 0 48px; }
  .gold-rule { width: 60px; height: 1px; background: var(--gold); margin: 0 auto 32px; }
  .gold-rule.left { margin: 0 0 32px; }
  .label-tag {
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 18px;
  }
  .reveal { opacity: 0; transform: translateY(36px); transition: opacity 0.85s cubic-bezier(0.22,1,0.36,1), transform 0.85s cubic-bezier(0.22,1,0.36,1); }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .reveal-delay-1 { transition-delay: 0.12s; }
  .reveal-delay-2 { transition-delay: 0.24s; }
  .reveal-delay-3 { transition-delay: 0.36s; }
  .reveal-delay-4 { transition-delay: 0.48s; }

  /* ── NAVBAR ── */
  #navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 24px 48px;
    display: flex; align-items: center; justify-content: space-between;
    transition: background 0.5s, padding 0.4s, box-shadow 0.5s;
  }
  #navbar.scrolled {
    background: rgba(6,14,28,0.96);
    backdrop-filter: blur(20px);
    padding: 16px 48px;
    box-shadow: 0 1px 0 var(--navy-border);
  }
  .nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 0.04em;
    display: flex; align-items: center; gap: 14px;
  }
  .nav-logo-mark {
    width: 34px; height: 34px;
    border: 1px solid var(--gold);
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; font-weight: 700; color: var(--gold);
  }
  .nav-logo span { color: var(--gold); }
  .nav-links { display: flex; gap: 36px; align-items: center; }
  .nav-links a {
    font-size: 13px; font-weight: 500; letter-spacing: 0.15em;
    text-transform: uppercase; color: var(--text-mid);
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--gold); }
  .nav-cta {
    font-size: 13px; font-weight: 600; letter-spacing: 0.12em;
    text-transform: uppercase; padding: 10px 22px;
    border: 1px solid var(--gold); color: var(--gold) !important;
    transition: background 0.25s, color 0.25s !important;
  }
  .nav-cta:hover { background: var(--gold) !important; color: var(--navy-deep) !important; }

  /* ── HERO ── */
  #hero {
    position: relative; height: 100vh; min-height: 700px;
    display: flex; align-items: flex-end; justify-content: flex-start;
    overflow: hidden;
  }
  .hero-bg {
    position: absolute; inset: 0;
    background-image: url('https://images.unsplash.com/photo-1486325212027-8081e485255e?w=1800&q=80');
    background-size: cover; background-position: center 30%;
    transform: scale(1.06);
    transition: transform 8s ease-out;
    filter: brightness(0.45) saturate(0.8);
  }
  .hero-bg.loaded { transform: scale(1); }
  .hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(165deg, rgba(2,8,15,0.3) 0%, rgba(6,14,28,0.65) 60%, rgba(6,14,28,0.92) 100%);
  }
  .hero-gold-line {
    position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
    background: linear-gradient(to bottom, transparent 0%, var(--gold) 35%, var(--gold) 65%, transparent 100%);
    opacity: 0.7;
  }
  .hero-content {
    position: relative; z-index: 2;
    padding: 0 80px 90px;
    max-width: 920px;
  }
  .hero-eyebrow {
    font-size: 12px; font-weight: 600; letter-spacing: 0.35em;
    text-transform: uppercase; color: var(--gold);
    display: flex; align-items: center; gap: 16px;
    margin-bottom: 28px;
    opacity: 0; animation: fadeUp 1s 0.2s cubic-bezier(0.22,1,0.36,1) forwards;
  }
  .hero-eyebrow::before {
    content: ''; display: block; width: 40px; height: 1px; background: var(--gold);
  }
  .hero-headline {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(52px, 7vw, 88px);
    font-weight: 300;
    line-height: 1.05;
    letter-spacing: -0.01em;
    margin-bottom: 28px;
    opacity: 0; animation: fadeUp 1s 0.45s cubic-bezier(0.22,1,0.36,1) forwards;
  }
  .hero-headline em {
    font-style: italic; font-weight: 400; color: var(--gold);
  }
  .hero-sub {
    font-size: 17px; font-weight: 300; line-height: 1.75;
    color: var(--text-mid); max-width: 580px;
    margin-bottom: 48px;
    opacity: 0; animation: fadeUp 1s 0.65s cubic-bezier(0.22,1,0.36,1) forwards;
  }
  .hero-ctas {
    display: flex; gap: 16px; flex-wrap: wrap;
    opacity: 0; animation: fadeUp 1s 0.85s cubic-bezier(0.22,1,0.36,1) forwards;
  }
  .btn-primary {
    padding: 15px 34px; background: var(--gold); color: var(--navy-deep);
    font-size: 13px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
    cursor: pointer; border: none; transition: background 0.2s, transform 0.2s;
    display: inline-block;
  }
  .btn-primary:hover { background: var(--gold-bright); transform: translateY(-2px); }
  .btn-outline {
    padding: 14px 34px; background: transparent; color: var(--cream);
    font-size: 13px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase;
    cursor: pointer; border: 1px solid rgba(250,246,238,0.35); transition: border-color 0.2s, color 0.2s;
    display: inline-block;
  }
  .btn-outline:hover { border-color: var(--gold); color: var(--gold); }
  .hero-scroll-cue {
    position: absolute; bottom: 36px; right: 80px; z-index: 2;
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    opacity: 0; animation: fadeIn 1.2s 1.4s forwards;
  }
  .hero-scroll-cue span {
    font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted);
    writing-mode: vertical-rl; text-orientation: mixed;
  }
  .scroll-line {
    width: 1px; height: 56px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s 2s infinite;
  }
  @keyframes fadeUp { from { opacity:0; transform:translateY(28px); } to { opacity:1; transform:translateY(0); } }
  @keyframes fadeIn { from { opacity:0; } to { opacity:0.7; } }
  @keyframes scrollPulse {
    0%,100% { transform: scaleY(1); opacity: 1; }
    50% { transform: scaleY(0.5); opacity: 0.4; }
  }

  /* ── STATS BAND ── */
  #stats-band {
    background: var(--navy-mid);
    border-top: 1px solid var(--navy-border);
    border-bottom: 1px solid var(--navy-border);
    padding: 52px 0;
  }
  .stats-grid {
    display: grid; grid-template-columns: repeat(4,1fr);
    gap: 0;
  }
  .stat-item {
    text-align: center; padding: 0 20px;
    border-right: 1px solid var(--navy-border);
  }
  .stat-item:last-child { border-right: none; }
  .stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 58px; font-weight: 500; line-height: 1;
    color: var(--gold); margin-bottom: 8px;
    letter-spacing: -0.02em;
  }
  .stat-unit { font-size: 24px; font-weight: 300; }
  .stat-label {
    font-size: 12px; font-weight: 600; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--text-muted);
  }

  /* ── OVERVIEW ── */
  #overview { padding: var(--section-pad); }
  .overview-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
  }
  .section-headline {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(38px, 4.5vw, 58px);
    font-weight: 400; line-height: 1.1; letter-spacing: -0.01em;
    margin-bottom: 28px;
  }
  .section-headline em { font-style: italic; color: var(--gold); }
  .body-text {
    font-size: 17px; line-height: 1.85; color: var(--text-mid);
    margin-bottom: 20px;
  }
  .feature-list { list-style: none; margin-top: 36px; display: flex; flex-direction: column; gap: 18px; }
  .feature-list li {
    display: flex; gap: 16px; align-items: flex-start;
    padding-bottom: 18px; border-bottom: 1px solid var(--navy-border);
  }
  .feature-list li:last-child { border-bottom: none; }
  .feature-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px; font-weight: 500; color: var(--gold);
    line-height: 1; min-width: 44px;
  }
  .feature-text strong {
    display: block; font-size: 16px; font-weight: 600;
    letter-spacing: 0.05em; color: var(--cream); margin-bottom: 3px;
  }
  .feature-text span { font-size: 16px; color: var(--text-muted); }
  .overview-visual {
    position: relative; border-radius: 1px; overflow: hidden;
  }
  .overview-img {
    width: 100%; aspect-ratio: 3/4; object-fit: cover;
    filter: brightness(0.75) saturate(0.7);
  }
  .overview-img-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(6,14,28,0.6) 0%, transparent 50%);
  }
  .overview-img-badge {
    position: absolute; bottom: 28px; left: 28px;
    background: rgba(6,14,28,0.85); border: 1px solid var(--navy-border);
    backdrop-filter: blur(12px);
    padding: 16px 22px;
  }
  .overview-img-badge .badge-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px; font-weight: 500; color: var(--gold); line-height: 1;
  }
  .overview-img-badge .badge-text {
    font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--text-muted); margin-top: 4px;
  }

  /* ── WORKSPACES ── */
  #workspaces {
    padding: var(--section-pad);
    background: var(--navy-deepest);
    border-top: 1px solid var(--navy-border);
    border-bottom: 1px solid var(--navy-border);
  }
  .section-intro { text-align: center; max-width: 560px; margin: 0 auto 72px; }
  .workspace-cards {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
    background: var(--navy-border);
    border: 1px solid var(--navy-border);
  }
  .workspace-card {
    background: var(--navy-deep);
    padding: 44px 36px;
    position: relative; overflow: hidden;
    transition: background 0.3s;
    cursor: default;
  }
  .workspace-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: var(--gold); transform: scaleX(0); transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.22,1,0.36,1);
  }
  .workspace-card:hover::before { transform: scaleX(1); }
  .workspace-card:hover { background: var(--navy-mid); }
  .workspace-card.featured {
    background: var(--navy-mid);
  }
  .workspace-card.featured::before { transform: scaleX(1); }
  .ws-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 72px; font-weight: 300; color: rgba(201,168,76,0.1);
    line-height: 1; position: absolute; top: 24px; right: 24px;
    letter-spacing: -0.04em;
  }
  .ws-type {
    font-size: 12px; font-weight: 600; letter-spacing: 0.22em;
    text-transform: uppercase; color: var(--gold);
    margin-bottom: 14px; display: block;
  }
  .ws-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px; font-weight: 400; line-height: 1.1;
    margin-bottom: 10px;
  }
  .ws-area {
    font-size: 16px; color: var(--text-muted);
    margin-bottom: 28px; padding-bottom: 28px;
    border-bottom: 1px solid var(--navy-border);
  }
  .ws-area strong { color: var(--gold-bright); font-weight: 500; }
  .ws-features { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .ws-features li {
    font-size: 16px; color: var(--text-mid); display: flex; gap: 10px;
    align-items: flex-start;
  }
  .ws-features li::before {
    content: '—'; color: var(--gold-dim); flex-shrink: 0;
  }
  .enquire-btn {
    display: inline-block; margin-top: 32px;
    padding: 11px 26px; border: 1px solid var(--gold);
    font-size: 12px; font-weight: 600; letter-spacing: 0.18em;
    text-transform: uppercase; color: var(--gold);
    transition: background 0.2s, color 0.2s;
    cursor: pointer;
  }
  .enquire-btn:hover { background: var(--gold); color: var(--navy-deep); }

  /* ── CONNECTIVITY ── */
  #connectivity { padding: var(--section-pad); }
  .connectivity-layout {
    display: grid; grid-template-columns: 1fr 520px; gap: 100px; align-items: start;
  }
  .coastal-callout {
    border-left: 2px solid var(--gold);
    padding: 28px 32px;
    background: rgba(201,168,76,0.04);
    margin: 40px 0;
  }
  .coastal-callout h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px; font-weight: 400; margin-bottom: 12px;
  }
  .coastal-callout p { font-size: 16px; color: var(--text-mid); line-height: 1.8; }
  .transit-list { list-style: none; margin-top: 36px; display: flex; flex-direction: column; gap: 0; }
  .transit-item {
    display: flex; gap: 0; align-items: stretch;
    padding: 20px 0; border-bottom: 1px solid var(--navy-border);
  }
  .transit-item:first-child { border-top: 1px solid var(--navy-border); }
  .transit-icon {
    width: 44px; height: 44px; border: 1px solid var(--navy-border);
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; color: var(--gold); flex-shrink: 0;
    margin-right: 20px; align-self: center;
  }
  .transit-details strong {
    display: block; font-size: 16px; font-weight: 500; color: var(--cream);
    margin-bottom: 2px;
  }
  .transit-details span { font-size: 16px; color: var(--text-muted); }
  .connectivity-visual {
    position: sticky; top: 120px;
  }
  .conn-img {
    width: 100%; aspect-ratio: 4/5; object-fit: cover;
    filter: brightness(0.6) saturate(0.7);
  }
  .odc-badge {
    background: var(--navy-mid); border: 1px solid var(--navy-border);
    padding: 28px 30px; margin-top: -1px; border-top: 2px solid var(--gold);
  }
  .odc-badge h4 {
    font-size: 12px; font-weight: 600; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--gold); margin-bottom: 12px;
  }
  .odc-badge p { font-size: 16px; color: var(--text-mid); line-height: 1.8; }

  /* ── ARCHITECTURE ── */
  #architecture {
    padding: var(--section-pad);
    background: var(--navy-deepest);
    border-top: 1px solid var(--navy-border);
    border-bottom: 1px solid var(--navy-border);
  }
  .arch-grid {
    display: grid; grid-template-columns: 420px 1fr; gap: 80px; align-items: center;
  }
  .arch-visual { position: relative; }
  .arch-img {
    width: 100%; aspect-ratio: 3/4; object-fit: cover;
    filter: brightness(0.7) saturate(0.6);
  }
  .arch-quote {
    position: absolute; bottom: -24px; right: -32px;
    background: var(--navy-mid); border: 1px solid var(--navy-border);
    border-left: 3px solid var(--gold);
    padding: 24px 28px; max-width: 280px;
  }
  .arch-quote p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px; font-style: italic; color: var(--gold-pale);
    line-height: 1.5;
  }
  .arch-quote cite {
    display: block; margin-top: 10px;
    font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--text-muted); font-style: normal;
  }
  .arch-specs {
    display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
    background: var(--navy-border); border: 1px solid var(--navy-border);
    margin-top: 44px;
  }
  .arch-spec {
    background: var(--navy-deep);
    padding: 24px 22px;
  }
  .arch-spec-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px; font-weight: 500; color: var(--gold);
    line-height: 1; margin-bottom: 6px;
  }
  .arch-spec-label {
    font-size: 13px; font-weight: 500; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--text-muted);
  }

  /* ── LEGACY ── */
  #legacy { padding: var(--section-pad); text-align: center; }
  .legacy-inner { max-width: 780px; margin: 0 auto; }
  .legacy-headline {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(42px, 5vw, 64px); font-weight: 400;
    line-height: 1.1; margin-bottom: 28px; letter-spacing: -0.01em;
  }
  .legacy-headline em { font-style: italic; color: var(--gold); }
  .projects-row {
    display: flex; gap: 0; margin-top: 60px;
    border-top: 1px solid var(--navy-border);
    border-bottom: 1px solid var(--navy-border);
  }
  .project-pill {
    flex: 1; padding: 22px 16px; text-align: center;
    border-right: 1px solid var(--navy-border);
    font-size: 12px; font-weight: 600; letter-spacing: 0.18em;
    text-transform: uppercase; color: var(--text-muted);
    transition: color 0.2s;
  }
  .project-pill:last-child { border-right: none; }
  .project-pill:hover { color: var(--gold); }

  /* ── TESTIMONIALS ── */
  #testimonials {
    padding: 90px 0;
    background: var(--navy-mid);
    border-top: 1px solid var(--navy-border);
    border-bottom: 1px solid var(--navy-border);
  }
  .testimonial-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
  }
  .testimonial-card {
    background: var(--navy-deep);
    border: 1px solid var(--navy-border);
    border-top: 2px solid var(--gold);
    padding: 40px 36px;
  }
  .testimonial-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px; font-style: italic; font-weight: 400;
    line-height: 1.6; color: var(--gold-pale);
    margin-bottom: 28px;
  }
  .testimonial-quote::before {
    content: '\201C';
    font-size: 64px; line-height: 0.5; color: var(--gold-dim);
    display: block; margin-bottom: 16px;
  }
  .testimonial-author { font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); }
  .testimonial-author strong { display: block; color: var(--cream); font-weight: 500; margin-bottom: 3px; }

  /* ── GALLERY ── */
  #gallery { padding: var(--section-pad); background: var(--navy-deepest); }
  .gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 280px 280px;
    gap: 4px; margin-top: 52px;
  }
  .gallery-item {
    overflow: hidden; position: relative;
  }
  .gallery-item:first-child { grid-row: 1 / 3; }
  .gallery-img {
    width: 100%; height: 100%; object-fit: cover;
    filter: brightness(0.7) saturate(0.65);
    transition: transform 0.7s cubic-bezier(0.22,1,0.36,1), filter 0.5s;
  }
  .gallery-item:hover .gallery-img { transform: scale(1.06); filter: brightness(0.8) saturate(0.8); }
  .gallery-caption {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(6,14,28,0.85) 0%, transparent 100%);
    padding: 40px 20px 18px;
    font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--text-mid);
  }

  /* ── FAQ ── */
  #faq { padding: var(--section-pad); }
  .faq-layout {
    display: grid; grid-template-columns: 320px 1fr; gap: 80px; align-items: start;
  }
  .faq-sidebar { position: sticky; top: 120px; }
  .faq-list { margin-top: 0; }
  .faq-item {
    border-bottom: 1px solid var(--navy-border);
    overflow: hidden;
  }
  .faq-q {
    display: flex; justify-content: space-between; align-items: center;
    padding: 22px 0; cursor: pointer;
    font-size: 17px; font-weight: 400; color: var(--cream);
    transition: color 0.2s;
    user-select: none;
  }
  .faq-q:hover { color: var(--gold); }
  .faq-q .faq-icon {
    width: 24px; height: 24px; border: 1px solid var(--navy-border);
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; color: var(--gold); flex-shrink: 0;
    transition: transform 0.3s, border-color 0.3s;
  }
  .faq-item.open .faq-q .faq-icon { transform: rotate(45deg); border-color: var(--gold); }
  .faq-a {
    font-size: 16px; color: var(--text-mid); line-height: 1.8;
    max-height: 0; overflow: hidden;
    transition: max-height 0.45s cubic-bezier(0.22,1,0.36,1), padding 0.3s;
    padding-bottom: 0;
  }
  .faq-item.open .faq-a { max-height: 300px; padding-bottom: 22px; }

  /* ── CONTACT ── */
  #contact {
    padding: var(--section-pad);
    background: var(--navy-mid);
    border-top: 1px solid var(--navy-border);
  }
  .contact-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
  }
  .contact-info h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(38px, 4vw, 52px); font-weight: 400; line-height: 1.1;
    margin-bottom: 24px;
  }
  .contact-info h2 em { font-style: italic; color: var(--gold); }
  .contact-detail {
    display: flex; gap: 16px; padding: 20px 0;
    border-bottom: 1px solid var(--navy-border);
    align-items: flex-start;
  }
  .contact-detail-icon {
    font-size: 18px; color: var(--gold); margin-top: 2px; flex-shrink: 0;
  }
  .contact-detail strong { display: block; font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 4px; font-weight: 500; }
  .contact-detail span { font-size: 16px; color: var(--cream); }
  .enquiry-form { display: flex; flex-direction: column; gap: 16px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .form-group { display: flex; flex-direction: column; gap: 8px; }
  .form-group label {
    font-size: 12px; font-weight: 600; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--text-muted);
  }
  .form-group input, .form-group select, .form-group textarea {
    background: var(--navy-deep);
    border: 1px solid rgba(201,168,76,0.2);
    color: var(--cream);
    padding: 14px 18px;
    font-family: 'Outfit', sans-serif;
    font-size: 16px; font-weight: 300;
    outline: none; border-radius: 0;
    transition: border-color 0.2s;
    -webkit-appearance: none;
  }
  .form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-muted); }
  .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--gold);
  }
  .form-group select { cursor: pointer; }
  .form-group select option { background: var(--navy); }
  .form-group textarea { resize: vertical; min-height: 100px; font-size: 16px; }
  .form-submit {
    padding: 16px 40px; background: var(--gold);
    color: var(--navy-deepest); border: none;
    font-family: 'Outfit', sans-serif;
    font-size: 13px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
    cursor: pointer; transition: background 0.2s, transform 0.2s;
    align-self: flex-start; margin-top: 8px;
  }
  .form-submit:hover { background: var(--gold-bright); transform: translateY(-2px); }
  .form-note { font-size: 13px; color: var(--text-muted); margin-top: 4px; }

  /* ── FOOTER ── */
  footer {
    background: var(--navy-deepest);
    border-top: 1px solid var(--navy-border);
    padding: 52px 0 36px;
  }
  .footer-top {
    display: flex; justify-content: space-between; align-items: flex-start;
    padding-bottom: 40px; border-bottom: 1px solid var(--navy-border);
    margin-bottom: 36px;
  }
  .footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px; color: var(--gold); letter-spacing: 0.04em;
  }
  .footer-logo span { display: block; font-size: 16px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); margin-top: 8px; font-family: 'Outfit', sans-serif; }
  .footer-links { display: flex; gap: 40px; }
  .footer-links a { font-size: 16px; color: var(--text-muted); letter-spacing: 0.08em; text-transform: uppercase; transition: color 0.2s; }
  .footer-links a:hover { color: var(--gold); }
  .footer-bottom { display: flex; justify-content: space-between; align-items: center; }
  .footer-copy { font-size: 16px; color: var(--text-muted); }
  .footer-rera { font-size: 13px; color: var(--text-muted); letter-spacing: 0.05em; }
  .footer-rera strong { color: var(--gold); }

  /* ── DOWNLOADS ── */
  #downloads {
    padding: 80px 0;
    background: var(--navy-deepest);
    border-top: 1px solid var(--navy-border);
  }
  .downloads-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--navy-border); border: 1px solid var(--navy-border); margin-top: 52px; }
  .download-card {
    background: var(--navy-deep); padding: 36px 30px;
    display: flex; flex-direction: column; gap: 14px;
    transition: background 0.25s;
  }
  .download-card:hover { background: var(--navy-mid); }
  .download-icon { font-size: 28px; color: var(--gold-dim); }
  .download-title { font-size: 18px; font-weight: 500; color: var(--cream); }
  .download-desc { font-size: 16px; color: var(--text-muted); line-height: 1.7; flex: 1; }
  .download-link {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 12px; font-weight: 600; letter-spacing: 0.18em;
    text-transform: uppercase; color: var(--gold); margin-top: 8px;
    transition: gap 0.2s;
  }
  .download-link:hover { gap: 14px; }

  /* Responsive */
  @media (max-width: 1024px) {
    .container { padding: 0 32px; }
    .overview-grid, .connectivity-layout, .arch-grid, .faq-layout, .contact-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .stat-item { border-right: none; border-bottom: 1px solid var(--navy-border); padding: 24px 0; }
    .stat-item:nth-child(even) { border-right: none; }
    .workspace-cards { grid-template-columns: 1fr; }
    .testimonial-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
    .gallery-item:first-child { grid-row: auto; }
    .connectivity-visual { position: relative; top: auto; }
    .arch-quote { position: relative; bottom: auto; right: auto; max-width: 100%; margin-top: 24px; }
    .hero-content { padding: 0 40px 80px; }
    #navbar, #navbar.scrolled { padding: 16px 32px; }
    .downloads-grid { grid-template-columns: 1fr; }
    .footer-top { flex-direction: column; gap: 28px; }
    .footer-links { flex-wrap: wrap; }
    .form-row { grid-template-columns: 1fr; }
  }

  /* ── POPUP ── */
  .popup-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.75); z-index: 9999;
    display: none; align-items: center; justify-content: center;
  }
  .popup-overlay.active { display: flex; }
  .popup-form {
    background: var(--navy); border: 1px solid var(--navy-border);
    border-top: 3px solid var(--gold);
    padding: 44px 40px; border-radius: 2px;
    max-width: 420px; width: 90%; position: relative;
  }
  .popup-close {
    position: absolute; top: 14px; right: 18px;
    background: none; border: none; font-size: 22px;
    cursor: pointer; color: var(--text-muted); line-height: 1;
    transition: color 0.2s;
  }
  .popup-close:hover { color: var(--gold); }
  .popup-form h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px; font-weight: 400; color: var(--cream);
    margin-bottom: 6px;
  }
  .popup-form p {
    font-size: 16px; color: var(--text-muted); margin-bottom: 24px;
  }
  .popup-form input {
    width: 100%; padding: 13px 16px; margin-bottom: 14px;
    background: var(--navy-mid); border: 1px solid rgba(201,168,76,0.2);
    color: var(--cream); font-family: 'Outfit', sans-serif;
    font-size: 16px; outline: none; border-radius: 0;
    transition: border-color 0.2s;
  }
  .popup-form input::placeholder { color: var(--text-muted); }
  .popup-form input:focus { border-color: var(--gold); }
  .popup-submit {
    width: 100%; padding: 14px;
    background: var(--gold); color: var(--navy-deepest);
    border: none; font-family: 'Outfit', sans-serif;
    font-size: 13px; font-weight: 700; letter-spacing: 0.2em;
    text-transform: uppercase; cursor: pointer;
    transition: background 0.2s;
  }
  .popup-submit:hover { background: var(--gold-bright); }

  /* ── SUCCESS TOAST ── */
  .success-toast {
    position: fixed; top: 24px; right: 24px;
    background: var(--navy-mid); border: 1px solid var(--gold);
    border-left: 4px solid var(--gold);
    color: var(--cream); padding: 18px 28px;
    font-size: 16px; z-index: 10000;
    display: none; box-shadow: 0 8px 32px rgba(0,0,0,0.5);
    max-width: 340px;
    animation: none;
  }
  .success-toast.show {
    display: block;
    animation: toastSlide 0.35s cubic-bezier(0.22,1,0.36,1);
  }
  @keyframes toastSlide {
    from { opacity: 0; transform: translateX(60px); }
    to   { opacity: 1; transform: translateX(0); }
  }

  @media (max-width: 640px) {
    .nav-links { display: none; }
    .hero-content { padding: 0 24px 60px; }
    .container { padding: 0 24px; }
    .projects-row { flex-direction: column; }
    .project-pill { border-right: none; border-bottom: 1px solid var(--navy-border); }
  }