  /* ---------- HERO ---------- */
  .hero{
    position:relative; min-height:100vh;
    display:flex; align-items:flex-end;
    background:var(--charcoal);
    overflow:hidden;
  }
  
  /*Background Container */
  .hero-media{
      position:absolute;
      inset:0;
      overflow:hidden;
      z-index:0;
  }
  
  /* Background video*/
  .hero-video{
      position:absolute;
      inset:0;
      width:100%;
      height:100%;
      object-fit:cover;
      object-position:center;
      filter:brightness(.15);
      z-index:0;
  }
  
  /* Dark overlay */
  .hero-overlay{
      position:absolute;
      inset:0;
      background:linear-gradient(180deg, rgba(13,15,17,.55) 0%, rgba(13,15,17,.35) 40%, rgba(13,15,17,.92) 100%),
      radial-gradient(ellipse at 30% 20%, rgba(198,165,90,.08), transparent 60%); z-index:1;
  }
  .hero-tag{
    position:absolute; top:110px; right:48px;
    font-size:0.62rem; letter-spacing:0.14em; color:rgba(255,255,255,0.4);
    text-transform:uppercase; border:1px solid rgba(255,255,255,0.2);
    padding:5px 10px; z-index:2;
  }
  .hero-content{ position:relative; z-index:2; padding:70px 0 70px; width:100%; }
  @media(max-width:900px){ .hero-content{ padding:130px 0 70px; } }
  @media(max-width:560px){ .hero-content{ padding:115px 0 60px; } }
  .hero-content .eyebrow{ color:var(--gold); margin-bottom:26px; }
  .hero-content h1{
    font-size:clamp(2.3rem, 4.6vw, 4.1rem);
    color:var(--white);
    max-width:960px;
    line-height:1.12;
    margin-bottom:26px;
  }
  .hero-content p{
    color:rgba(255,255,255,0.78);
    max-width:640px;
    font-size:1.02rem;
    margin-bottom:14px;
    font-weight:300;
  }
  .hero-buttons{ display:flex; gap:18px; margin-top:38px; flex-wrap:wrap; }

.stat-strip{
    position:relative;
    z-index:2;
    margin-top:64px;

    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(210px, 1fr));
    gap:14px;
}

.stat{
    border:1px solid rgba(255,255,255,0.16);
    background:rgba(255,255,255,0.03);
    padding:24px 22px;
    cursor:pointer;
    transition:border-color .35s ease, background .35s ease, transform .35s ease;
    -webkit-tap-highlight-color:transparent;
}

.stat:hover,
.stat:focus-visible,
.stat.expanded{
    border-color:var(--gold);
    background:rgba(198,165,90,0.06);
    transform:translateY(-3px);
}

.stat:focus-visible{
    outline:none;
}

.stat-top{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:10px;
}

.stat .num{
    font-family:var(--serif);
    color:var(--gold);
    font-size:clamp(1.4rem,2vw,2.15rem);
    font-weight:400;
    letter-spacing:-0.01em;
    line-height:1.1;
}

.stat .label{
    color:rgba(255,255,255,0.62);
    font-size:0.76rem;
    margin-top:8px;
    letter-spacing:0.02em;
    line-height:1.4;
}

.stat-plus{
    width:22px;
    height:22px;
    flex-shrink:0;
    border-radius:50%;
    border:1px solid rgba(255,255,255,0.3);
    display:flex;
    align-items:center;
    justify-content:center;
    color:rgba(255,255,255,0.6);
    transition:all .35s ease;
    margin-top:2px;
}

.stat-plus svg{
    width:10px;
    height:10px;
    transition:transform .35s ease;
}

.stat:hover .stat-plus,
.stat.expanded .stat-plus{
    border-color:var(--gold);
    color:var(--gold);
}

.stat.expanded .stat-plus svg{
    transform:rotate(45deg);
}

.stat-detail{
    max-height:0;
    overflow:hidden;
    transition:max-height .45s ease, opacity .4s ease, margin-top .4s ease;
    opacity:0;
}

.stat.expanded .stat-detail{
    max-height:140px;
    opacity:1;
    margin-top:16px;
}

.stat-detail p{
    font-size:0.78rem;
    line-height:1.6;
    color:rgba(255,255,255,0.6);
    font-weight:300;
    padding-top:14px;
    border-top:1px solid rgba(255,255,255,0.12);
}

@media(max-width:900px){
    .stat-strip{
        grid-template-columns:repeat(2,1fr);
        gap:12px;
    }
}

@media(max-width:560px){
    .stat-strip{
        grid-template-columns:1fr;
    }

    .stat{
        padding:24px 22px;
    }
}

  .scroll-cue{
    position:absolute; bottom:28px; left:48px; z-index:2;
    display:flex; align-items:center; gap:10px;
    color:rgba(255,255,255,0.5); font-size:0.68rem; letter-spacing:0.14em; text-transform:uppercase;
  }
  .scroll-cue .line{ width:1px; height:34px; background:rgba(255,255,255,0.35); position:relative; overflow:hidden; }
  .scroll-cue .line::after{
    content:''; position:absolute; top:-100%; left:0; width:100%; height:100%; background:var(--gold);
    animation:scrolldrop 2.2s ease-in-out infinite;
  }
  @keyframes scrolldrop{ 0%{top:-100%;} 60%{top:100%;} 100%{top:100%;} }
  @media(max-width:900px){ .scroll-cue{ display:none; } }

  /* ---------- SECTION SHELL ---------- */
  section{ padding:130px 0; position:relative; }
  @media(max-width:900px){ section{ padding:84px 0; } }
  .section-light{ background:var(--off-white); color:var(--charcoal); }
  .section-navy{ background:var(--navy); color:var(--white); }
  .section-charcoal{ background:var(--charcoal); color:var(--white); }
  .section-navy .eyebrow, .section-charcoal .eyebrow{ color:var(--gold); }

  .section-head{
    max-width:680px; margin-bottom:64px;
  }
  .section-head h2{
    font-size:clamp(1.8rem,3vw,2.7rem);
    margin-top:20px;
    line-height:1.2;
  }
  .section-head p{
    margin-top:22px; font-size:1rem; font-weight:300;
    max-width:620px;
  }
  .section-light .section-head p{ color:#4b4f54; }
  .section-navy .section-head p, .section-charcoal .section-head p{ color:rgba(255,255,255,0.72); }

  .reveal{ opacity:0; transform:translateY(28px); transition:opacity .8s ease, transform .8s ease; }
  .reveal.in{ opacity:1; transform:translateY(0); }


/* ---------- PROJECT OVERVIEW ---------- */

.overview-layout{
    display:grid;
    grid-template-columns:48%  52%;
    gap:50px;
    align-items:center;
}

@media (max-width:960px){
    .overview-layout{
        grid-template-columns:1fr;
        gap:40px;
    }
}

.overview-copy p{
    color:rgba(255,255,255,.72);
    font-weight:300;
    margin-top:18px;
    max-width:none;
}

.overview-copy h2{
    margin-top:20px;
    font-size:clamp(1.7rem,2.8vw,2.4rem);
    line-height:1.22;
    color:var(--white);
}

.overview-link{
    margin-top:30px;
}

/* ---------- VIDEO ---------- */

.overview-media{
    width:100%;
    height:100%;
}

.video-frame{
    position:relative;
    width:100%;
    height:420px;
    aspect-ratio:16 / 9;
    overflow:hidden;
    border-radius:12px;
    background:#111;
    border:1px solid rgba(255,255,255,.08);
}

.overview-video{
    width:100%;
    height:100%;
    display:block;
    object-fit:cover;
}

.video-tag{
    position:absolute;
    top:18px;
    right:18px;
    z-index:2;
}

/* ===========================
   PROJECT OVERVIEW MOBILE
=========================== */

@media (max-width:768px){

    .overview-layout{
        display:flex;
        flex-direction:column;
        align-items:stretch;
        gap:30px;
    }

    .overview-copy,
    .overview-media{
        width:100%;
        max-width:100%;
    }

    .overview-copy{
        order:1;
    }

    .overview-media{
        order:2;
    }

    .overview-copy h2{
        font-size:2.2rem;
        line-height:1.2;
    }

    .overview-copy p{
        max-width:100%;
    }

    .video-frame{
        width:100%;
        aspect-ratio:16/9;
        height:auto;
    }

    .overview-video{
        width:100%;
        height:100%;
        display:block;
        object-fit:cover;
    }

}

/* ---------- SECTION 2 — WHY IT MATTERS ---------- */

.icon-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:1px;background:var(--line-dark);border:1px solid var(--line-dark)}

@media(max-width:1200px){.icon-grid{grid-template-columns:repeat(3,1fr)}}
@media(max-width:768px){.icon-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:560px){.icon-grid{grid-template-columns:1fr}}

.icon-card{background:var(--off-white);padding:40px 28px;position:relative;overflow:hidden;transition:background .35s ease,transform .35s ease,box-shadow .35s ease;cursor:default}
.icon-card::before{content:'';position:absolute;top:0;left:0;right:0;height:3px;background:var(--gold);transform:scaleX(0);transform-origin:left;transition:transform .4s ease}
.icon-card:hover{background:#fff;transform:translateY(-4px);box-shadow:0 18px 36px rgba(13,15,17,.08)}
.icon-card:hover::before{transform:scaleX(1)}
.icon-card .ic{width:34px;height:34px;margin-bottom:24px;color:var(--gold);transition:transform .4s ease}
.icon-card:hover .ic{transform:scale(1.12) translateY(-2px)}
.icon-card h3{font-size:1.05rem;line-height:1.4;margin-bottom:12px;color:var(--navy)}
.icon-card p{font-size:.88rem;line-height:1.7;color:#5a5f65;font-weight:300}
.icon-card-arrow{display:flex;align-items:center;justify-content:center;width:26px;height:26px;margin-top:20px;color:var(--gold);opacity:0;transform:translateX(-6px);transition:opacity .35s ease,transform .35s ease}
.icon-card-arrow svg{width:16px;height:16px}
.icon-card:hover .icon-card-arrow{opacity:1;transform:translateX(0)}

  /* ---------- SECTION 3 — INVESTMENT HIGHLIGHTS ---------- */
  .feature-grid{
    display:grid; grid-template-columns:repeat(3,1fr); gap:1px;
    background:rgba(255,255,255,0.1);
  }
  @media(max-width:900px){ .feature-grid{ grid-template-columns:1fr; } }
  .feature-card{
    background:var(--navy); padding:42px 38px;
    position:relative; overflow:hidden;
    transition:background .35s ease;
  }
  .feature-card::after{
    content:''; position:absolute; left:0; top:0; bottom:0; width:3px;
    background:var(--gold); transform:scaleY(0); transform-origin:bottom;
    transition:transform .45s ease;
  }
  .feature-card:hover{ background:var(--navy-light); }
  .feature-card:hover::after{ transform:scaleY(1); }
  .feature-card .fn{
    font-family:var(--serif); color:var(--gold); font-size:0.85rem; opacity:0.85; margin-bottom:22px; display:block;
    transition:transform .35s ease;
  }
  .feature-card:hover .fn{ transform:translateX(4px); }
  .feature-card h3{ font-size:1.2rem; color:var(--white); margin-bottom:12px; }
  .feature-card p{ font-size:0.88rem; color:rgba(255,255,255,0.66); font-weight:300; }

/* ---------- SECTION 4 — LOCATION ---------- */

.loc-layout{
  display:grid; grid-template-columns:1fr 1fr; gap:70px;
  align-items:center;
}
@media(max-width:960px){
  .loc-layout{grid-template-columns:1fr;gap:44px;}
}

.map-panel{
  position:relative; display:flex;
  justify-content:center; align-items:center;
}
.location-map{
  width:100%; max-width:700px;
  height:auto; display:block;
}

.marker{
  position:absolute; display:flex;
  align-items:center; gap:10px;
  z-index:100;
}
.marker span{
  width:12px; height:12px;
  border-radius:50%; flex-shrink:0;
}
.marker-label{
  display:inline-block; padding:4px 8px;
  border-radius:4px;
  background:rgba(0,0,0,.55);
  backdrop-filter:blur(2px);
  font-size:.72rem; font-weight:700;
  line-height:1.25; letter-spacing:.08em;
  text-transform:uppercase;
  white-space:nowrap;
  color:#fff;
  text-shadow:0 2px 10px rgba(0,0,0,.95);
}

.texas{
  top:48%; left:78%;
}
.texas span{
  background:var(--gold);
  box-shadow:0 0 0 0 rgba(198,165,90,.6);
  animation:pulse 2.4s infinite;
}
.texas .marker-label{
  color:var(--gold);
}

.brisbane{
  top:39%; left:86%;
}
.brisbane span{
  background:#2D8CFF;
}

.sydney{
  top:67%; left:87%;
}
.sydney span{
  background:#2D8CFF;
}

@keyframes pulse{
  0%{box-shadow:0 0 0 0 rgba(198,165,90,.5);}
  70%{box-shadow:0 0 0 14px rgba(198,165,90,0);}
  100%{box-shadow:0 0 0 0 rgba(198,165,90,0);}
}

.loc-stats{
  display:grid; grid-template-columns:1fr 1fr;
  gap:1px; margin-top:40px;
  background:var(--line-dark);
  border:1px solid var(--line-dark);
}
.loc-stats .ls{
  background:var(--off-white);
  padding:26px 24px;
  transition:background .3s ease,transform .3s ease;
}
.loc-stats .ls:hover{
  background:#fff;
  transform:translateY(-2px);
}
.loc-stats .num{
  font-family:var(--serif);
  font-size:1.5rem;
  color:var(--navy);
}
.loc-stats .label{
  margin-top:6px;
  font-size:.78rem;
  color:#6a6f75;
}

@media(max-width:768px){
  .loc-layout{gap:40px;}
  .location-map{max-width:100%;}
  .marker{gap:6px;}
  .marker span{width:10px;height:10px;}
  .marker-label{
    padding:3px 6px;
    font-size:.60rem;
    letter-spacing:.05em;
  }
  .loc-stats{grid-template-columns:1fr;}
  .loc-stats .ls{padding:20px;}
  .loc-stats .num{font-size:1.3rem;}
}

@media(max-width:480px){
  .marker span{width:8px;height:8px;}
  .marker-label{
    padding:2px 5px;
    font-size:.52rem;
  }
  .texas{top:48%;left:77%;}
  .brisbane{top:39%;left:85%;}
  .sydney{top:67%;left:86%;}
}

  /* ---------- SECTION 5 — STAGED RESTART TIMELINE (signature) ---------- */
  .timeline-section{ padding-bottom:80px; }
  .stage-line-wrap{ position:relative; margin-top:80px; }
  .stage-line{
    position:absolute; left:29px; top:10px; bottom:10px; width:1px;
    background:rgba(255,255,255,0.14);
  }
  .stage-line-fill{
    position:absolute; left:0; top:0; width:100%; height:0%;
    background:var(--gold); transition:height 1.4s cubic-bezier(.2,.7,.2,1);
  }
  .stage{
    position:relative; display:grid; grid-template-columns:60px 1fr; gap:36px;
    padding-bottom:66px;
  }
  .stage:last-child{ padding-bottom:0; }
  .stage-num{
    width:60px; height:60px; border-radius:50%;
    border:1px solid rgba(255,255,255,0.22);
    display:flex; align-items:center; justify-content:center;
    font-family:var(--serif); font-size:1.15rem; color:rgba(255,255,255,0.5);
    background:var(--charcoal); position:relative; z-index:1;
    transition:all .5s ease;
  }
  .stage.in .stage-num{ border-color:var(--gold); color:var(--gold); background:var(--charcoal-light); }
  .stage-body{ padding-top:8px; }
  .stage-body .stage-eyebrow{ font-size:0.72rem; letter-spacing:0.12em; text-transform:uppercase; color:var(--gold); margin-bottom:10px; }
  .stage-body h3{ font-size:1.5rem; color:var(--white); margin-bottom:12px; }
  .stage-body p{ color:rgba(255,255,255,0.65); font-weight:300; max-width:560px; font-size:0.95rem; }
  @media(max-width:700px){
    .stage-line{ left:23px; }
    .stage{ grid-template-columns:46px 1fr; gap:22px; }
    .stage-num{ width:46px; height:46px; font-size:0.95rem; }
  }

  /* ---------- SECTION 6 — LEGACY TIMELINE ---------- */
  .legacy-head-row{ display:flex; align-items:flex-end; justify-content:space-between; gap:24px; flex-wrap:wrap; }
  .legacy-nav{ display:flex; gap:10px; margin-bottom:8px; }
  .legacy-nav button{
    width:40px; height:40px; border-radius:50%; border:1px solid rgba(13,15,17,0.18);
    background:transparent; cursor:pointer; display:flex; align-items:center; justify-content:center;
    color:var(--navy); transition:all .3s ease;
  }
  .legacy-nav button:hover{ border-color:var(--gold); background:rgba(198,165,90,0.08); color:var(--gold); }
  .legacy-nav button svg{ width:16px; height:16px; }
  .legacy-track{
    display:flex; gap:0; overflow-x:auto; margin-top:60px; padding-bottom:24px;
    scrollbar-width:thin; scroll-behavior:smooth;
  }
  .legacy-track::-webkit-scrollbar{ height:5px; }
  .legacy-track::-webkit-scrollbar-thumb{ background:var(--steel); }
  .legacy-item{
    min-width:230px; flex:1 0 230px; padding:0 30px 0 0; position:relative;
    cursor:default; transition:transform .3s ease;
  }
  .legacy-item::before{
    content:''; position:absolute; top:9px; left:0; right:30px; height:1px; background:var(--line-dark);
  }
  .legacy-item:last-child::before{ display:none; }
  .legacy-dot{
    width:9px; height:9px; border-radius:50%; background:var(--gold); margin-bottom:22px; position:relative; z-index:1;
    transition:transform .3s ease, box-shadow .3s ease;
  }
  .legacy-item:hover{ transform:translateY(-4px); }
  .legacy-item:hover .legacy-dot{
    transform:scale(1.6);
    box-shadow:0 0 0 5px rgba(198,165,90,0.18);
  }
  .legacy-item .yr{ font-family:var(--serif); font-size:0.85rem; color:var(--navy); opacity:0.6; margin-bottom:6px; }
  .legacy-item h4{ font-family:var(--serif); font-weight:500; font-size:1.05rem; margin-bottom:8px; color:var(--charcoal); }
  .legacy-item p{ font-size:0.83rem; color:#63676c; font-weight:300; }

/* ======================================================
   SECTION 7 — DRIVE THROUGH VIDEO
====================================================== */

.video-frame{
    position:relative;
    height:500px;
    margin-top:0px;
    aspect-ratio:16 / 8;
    overflow:hidden;
    border-radius:16px;
    border:1px solid rgba(255,255,255,.10);
    background:#111;
    transition:box-shadow .4s ease;
}

.video-frame:hover{
    box-shadow:0 24px 50px rgba(0,0,0,.35);
}

/* Video */

.site-video{
    width:100%;
    height:100%;
    display:block;
    object-fit:cover;
}

/* Video Tag */

.video-tag{
    position:absolute;
    top:22px;
    right:22px;
    z-index:6;

    font-size:.62rem;
    letter-spacing:.10em;
    text-transform:uppercase;

    color:rgba(255,255,255,.65);

    border:1px solid rgba(255,255,255,.20);
    background:rgba(10,15,20,.30);
    backdrop-filter:blur(4px);

    padding:6px 12px;
    border-radius:4px;
}

  /* ---------- SECTION 8 — FINAL CTA ---------- */
  .cta-section{
    background:
      radial-gradient(ellipse at 20% 20%, rgba(198,165,90,0.08), transparent 55%),
      linear-gradient(160deg, #0f1113 0%, #17191c 55%, #0d0f11 100%);
    text-align:center;
  }
  .cta-section .eyebrow{ justify-content:center; }
  .cta-section h2{ font-size:clamp(1.9rem,3.4vw,3rem); max-width:820px; margin:24px auto; color:var(--white); }
  .cta-section p{ max-width:620px; margin:0 auto 44px; color:rgba(255,255,255,0.68); font-weight:300; }
  .cta-buttons{ display:flex; gap:18px; justify-content:center; flex-wrap:wrap; }