/* ── extracted from HTML by artifact-writer ── */
:root {
    --gold: #eebd43;
    --silver: #cbccce;
    --dark: #545556;
    --white: #ffffff;
    --dark-deep: #3d3e3f;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  html {
    scroll-behavior: smooth;
  }

  body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    color: var(--dark);
    background: var(--white);
    line-height: 1.6;
  }

  /* Lock body scroll when mobile menu is open (iOS requires position:fixed) */
  body.nav-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
  }

  img { max-width: 100%; display: block; }

  a { text-decoration: none; color: inherit; }

  .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 4vw, 3rem);
  }

  .eyebrow {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    display: inline-block;
    margin-bottom: 1.2rem;
  }

  h1, h2, h3, h4 {
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1.1;
  }

  h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    letter-spacing: -0.03em;
    line-height: 1.05;
  }

  h2 {
    font-size: clamp(1.8rem, 3.8vw, 3rem);
    margin-bottom: 1.5rem;
  }

  h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
  }

  p { color: inherit; }

  section { padding: clamp(4rem, 8vw, 7rem) 0; }

  /* ===== NAVIGATION ===== */
  #site-nav {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--dark);
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
  }

  #site-nav.scrolled {
    background: rgba(84, 85, 86, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  }

  .nav-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
  }

  .nav-logo img {
    height: 42px;
    width: auto;
  }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    flex: 1;
    justify-content: center;
  }

  .nav-links > li {
    position: relative;
  }

  .nav-links > li > a,
  .nav-links > li > .nav-trigger {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.6rem 1rem;
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    background: none;
    border: none;
    font-family: inherit;
    transition: color 0.2s;
  }

  .nav-links > li > a:hover,
  .nav-links > li > .nav-trigger:hover,
  .nav-links > li.active > a {
    color: var(--gold);
  }

  .nav-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 260px;
    background: var(--dark);
    border-top: 2px solid var(--gold);
    box-shadow: 0 12px 30px rgba(0,0,0,0.3);
    padding: 0.6rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.25s ease;
  }

  .nav-links > li:hover .nav-dropdown,
  .nav-links > li.open .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-dropdown a {
    display: block;
    padding: 0.7rem 1.4rem;
    color: var(--white);
    font-size: 0.85rem;
    transition: all 0.2s;
  }

  .nav-dropdown a:hover {
    color: var(--gold);
    background: rgba(238, 189, 67, 0.08);
  }

  .nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--gold);
    color: var(--dark);
    padding: 0.75rem 1.6rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.85rem;
    transition: all 0.25s ease;
    white-space: nowrap;
  }

  .nav-cta .arrow {
    max-width: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.25s ease;
    display: inline-flex;
  }

  .nav-cta:hover {
    background: #f5c955;
    box-shadow: 0 6px 20px rgba(238, 189, 67, 0.4);
  }

  .nav-cta:hover .arrow {
    max-width: 20px;
    opacity: 1;
    margin-left: 0.2rem;
  }

  .hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1100;
  }

  .hamburger i {
    font-size: 1.75rem;
    color: var(--white);
  }
.mobile-menu {display:none;}

 @media (max-width: 1024px) {
  .mobile-menu {
    display:block;
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--dark);
    background-color: rgba(45, 46, 50, 0.95);
    padding: 6rem 2rem 2rem;
    transition: right 0.4s ease;
    z-index: 1050;
    overflow-y: auto;
  }

  .mobile-menu.open { right: 0; }

  .mobile-logo {
    text-align: center;
    margin-bottom: 2rem;
  }

  .mobile-logo img {
    height: 120px;
    width: auto;
    margin: 0 auto;
  }

  .mobile-menu ul {
    list-style: none;
    max-width:420px;
    margin:0 auto;
  }

  .mobile-menu > ul > li {
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  .mobile-menu .m-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    color: var(--white);
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    font-family: inherit;
  }

  .m-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .mobile-menu li.open .m-submenu {
    max-height: 300px;
  }

  .m-submenu a {
    display: block;
    padding: 0.7rem 1rem;
    color: var(--silver);
    font-size: 0.85rem;
  }

  .m-submenu a:hover { color: var(--gold); }

  .m-caret-open { display: none; }
  .mobile-menu li.open .m-caret-closed { display: none; }
  .mobile-menu li.open .m-caret-open { display: inline-flex; }
}
  /* ===== HERO ===== */
  .hero {
    position: relative;
    overflow: hidden;
    min-height: 92vh;
    display: flex;
    align-items: center;
    padding-left: clamp(2rem, 6vw, 7rem);
    padding-right: clamp(2rem, 6vw, 7rem);
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
  
  .gold {
    color:#f5c955;
    font-weight:800;
  }

  .hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
  }

  .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.45) 60%, rgba(0,0,0,0.3) 100%);
    z-index: 1;
  }

  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0;
    text-align: left;
    color: var(--white);
  }

  .hero-content .eyebrow { color: var(--gold); }

  .hero-content h1 {
    color: var(--white);
    font-weight: 400;
    margin-bottom: 1.5rem;
  }

  .hero-content .tagline {
    font-size: clamp(1rem, 1.4vw, 1.15rem);
    color: var(--white);
    line-height: 1.7;
    max-width: 620px;
    margin-bottom: 2.5rem;
  }

  .hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.95rem 1.8rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.85rem;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.25s ease;
    border: 2px solid transparent;
    white-space: nowrap;
  }

  .btn-primary {
    background: var(--gold);
    color: var(--dark);
    border-color: var(--gold);
    box-shadow: 0 6px 20px rgba(238, 189, 67, 0.35);
  }

  .btn-primary:hover {
    background: #f5c955;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(238, 189, 67, 0.5);
  }

  .btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
  }

  .btn-secondary:hover {
    background: var(--white);
    color: var(--dark);
    transform: translateY(-2px);
  }

  .btn-dark {
    background: var(--dark);
    color: var(--white);
    border-color: var(--dark);
  }

  .btn-dark:hover {
    background: transparent;
    color: var(--dark);
  }

  .btn-outline-dark {
    background: transparent;
    color: var(--dark);
    border-color: var(--dark);
  }

  .btn-outline-dark:hover {
    background: var(--dark);
    color: var(--white);
  }

  /* ===== ABOUT SECTION ===== */
  .about {
    background: var(--white);
  }

  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
  }

  .about h2 {
    color: var(--dark);
  }

  .about p {
    color: var(--dark);
    margin-bottom: 1.2rem;
    line-height: 1.75;
  }

  .about-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
  }

  .about-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
  }

  /* ===== PROJECT SECTION ===== */
  .project {
    position: relative;
    background-image: url('../images/map.jpg');
    background-size: cover;
    background-position: center;
    padding: clamp(5rem, 10vw, 9rem) 0;
  }

  .project-mobile-img {
    display: none;
    width: 100%;
    height: auto;
  }

  .project-content {
    max-width: 560px;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(8px);
    padding: clamp(2rem, 4vw, 3rem);
    border-radius: 6px;
  }

  .project-content h2 { color: var(--dark); }
  .project-content p { color: var(--dark); margin-bottom: 1rem; line-height: 1.75; }

  .project-content .btn { margin-top: 1rem; }

  /* ===== ADVANTAGES (DARK) ===== */
  .advantages {
    background: var(--dark);
    color: var(--white);
    position: relative;
  }

  .advantages::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 40%, rgba(238,189,67,0.12) 0%, transparent 60%);
    pointer-events: none;
  }

  .advantages .container { position: relative; z-index: 1; }

  .advantages-header {
    max-width: 720px;
    margin-bottom: 3.5rem;
  }

  .advantages h2 { color: var(--white); }

  .cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }

  .card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    padding: 2rem 1.75rem;
    transition: all 0.3s ease;
  }

  .card:hover {
    transform: translateY(-4px);
    border-color: rgba(238,189,67,0.35);
    box-shadow: 0 12px 35px rgba(238,189,67,0.15);
  }

  .card-icon {
    width: 52px;
    height: 52px;
    border-radius: 999px;
    border: 2px solid var(--gold);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
  }

  .card-icon i { color: var(--white) !important; font-size: 1.3rem !important; }

  .card h3 { color: var(--white); font-size: 1.05rem; }
  .card p { color: var(--silver); font-size: 0.9rem; line-height: 1.65; }

  /* ===== NEWS ===== */
  .news {
    background: var(--white);
  }

  .news-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
  }

  .news-header h2 { color: var(--dark); margin-bottom: 0; }
  .news-header .eyebrow { margin-bottom: 0.8rem; }

  .news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  .news-card {
    border: 1px solid rgba(84,85,86,0.15);
    border-radius: 8px;
    padding: 2rem;
    transition: all 0.3s ease;
    background: var(--white);
  }

  .news-card:hover {
    transform: translateY(-4px);
    border-color: var(--gold);
    box-shadow: 0 12px 30px rgba(84,85,86,0.1);
  }

  .news-date {
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1rem;
  }

  .news-card h3 { color: var(--dark); font-size: 1.1rem; margin-bottom: 0.75rem; line-height: 1.35; }
  .news-card p { color: var(--dark); font-size: 0.9rem; margin-bottom: 1.25rem; }

  .news-link {
    color: var(--gold);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
  }

  /* ===== CTA BAND ===== */
  .cta-band {
    background: var(--dark);
    padding: clamp(4rem, 7vw, 6rem) 0;
    position: relative;
    overflow: hidden;
  }

  .cta-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(238,189,67,0.15) 0%, transparent 70%);
  }

  .cta-inner {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
  }

  .cta-inner h2 { color: var(--white); }
  .cta-inner p { color: var(--silver); margin-bottom: 2rem; font-size: 1.05rem; }

  .cta-form {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    width: 100%;
    max-width: 500px;
    justify-content: center;
  }

  .cta-form input {
    flex: 1;
    min-width: 240px;
    padding: 0.9rem 1.25rem;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.06);
    color: var(--white);
    font-family: inherit;
    font-size: 0.9rem;
  }

  .cta-form input::placeholder { color: rgba(255,255,255,0.5); }
  .cta-form input:focus { outline: none; border-color: var(--gold); }

  /* ===== FOOTER ===== */
  #site-footer {
    background: var(--dark);
    color: var(--silver);
    padding: 4rem 0 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.08);
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 3rem;
    margin-bottom: 3rem;
  }

  .footer-brand img {
    height: 48px;
    margin-bottom: 1.25rem;
  }

  .footer-brand p {
    color: var(--silver);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
  }

  .footer-tickers {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
  }

  .ticker {
    background: rgba(238,189,67,0.12);
    color: var(--gold);
    padding: 0.4rem 0.9rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
  }

  .footer-col h4 {
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
  }

  .footer-col ul { list-style: none; }
  .footer-col li { margin-bottom: 0.7rem; }
  .footer-col a {
    color: var(--silver);
    font-size: 0.88rem;
    transition: color 0.2s;
  }
  .footer-col a:hover { color: var(--gold); }

  .footer-col address {
    font-style: normal;
    color: var(--silver);
    font-size: 0.88rem;
    line-height: 1.75;
  }

  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
  }

  /* ===== FADE IN ===== */
  .fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .fade-in.visible { opacity: 1; transform: none; }
  .fade-in:nth-child(2) { transition-delay: 0.1s; }
  .fade-in:nth-child(3) { transition-delay: 0.2s; }
  .fade-in:nth-child(4) { transition-delay: 0.3s; }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 1024px) {
    /* Switch to fixed on mobile — sticky is broken by any overflow:hidden ancestor.
       Fixed always works. Offset body so content isn't hidden under the nav. */
    #site-nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      width: 100%;
    }
    body {
      padding-top: 68px; /* nav-inner: 42px logo + 2×1rem padding ≈ 68px */
    }
    .nav-links { display: none; }
    .nav-cta { display: none; }
    .hamburger { display: block; }
    .cards { grid-template-columns: repeat(2, 1fr); }
    .news-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  }

  @media (max-width: 768px) {
    .hero { min-height: 100vh; padding-top: 5rem; padding-bottom: 4rem; }
    .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }

    .project {
      background-image: none;
      padding: 0 0 4rem;
    }
    .project-mobile-img { display: block; margin-bottom: 2rem; }
    .project-content {
      background: transparent;
      backdrop-filter: none;
      padding: 0 1.5rem;
      max-width: 100%;
    }

    .cards { grid-template-columns: 1fr; gap: 1rem; }
    .news-grid { grid-template-columns: 1fr; }
    .news-header { flex-direction: column; align-items: flex-start; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .hero-ctas { flex-direction: column; align-items: stretch; }
    .btn { justify-content: center; }
  }

  @media (max-width: 480px) {
    .nav-inner { padding: 0.85rem 1.25rem; }
    .nav-logo img { height: 36px; }
    .hero-content h1 { font-size: 3rem; }
    body { padding-top: 58px; } /* 36px logo + 2×0.85rem padding ≈ 58px */
  }

/* ── extracted 2026-04-24T17:21:02.171Z ── */
/* ===== ABOUT PAGE HERO ===== */
  .about-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding-left: clamp(2rem, 6vw, 7rem);
    padding-right: clamp(2rem, 6vw, 7rem);
    padding-top: 7rem;
    padding-bottom: 5rem;
    overflow: hidden;
  }

  .about-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('../images/about-hero.jpg');
    background-size: cover;
    background-position: center;
    z-index: 0;
  }

  .about-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(0,0,0,0.70) 0%, rgba(0,0,0,0.50) 60%, rgba(0,0,0,0.35) 100%);
    z-index: 1;
  }

  .about-hero-content {
    position: relative;
    z-index: 2;
    max-width: 860px;
    text-align: left;
    color: var(--white);
  }

  .about-hero-content h1 {
    color: var(--white);
    font-weight: 400;
  }

  /* ===== STORY SECTION ===== */
  .story {
    background: var(--white);
    padding: clamp(4rem, 8vw, 7rem) 0;
  }

  .story-inner {
    max-width: 920px;
    margin: 0 auto;
  }

  .story h2 {
    color: var(--dark);
    margin-bottom: 2rem;
  }

  .story p {
    color: var(--dark);
    font-size: 1rem;
    line-height: 1.85;
    margin-bottom: 1.5rem;
  }

  .story-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2.5rem;
  }

  @media (max-width: 768px) {
    .about-hero { min-height: 60vh; padding-top: 6rem; padding-bottom: 4rem; }
    .about-hero-content h1 { font-size: 2.2rem; }
    .story-buttons { flex-direction: column; align-items: stretch; }
    .story-buttons .btn { justify-content: center; }
  }

/* ── extracted 2026-04-24T17:26:20.937Z ── */
/* ===== TEAM HERO ===== */
  .team-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding-left: clamp(2rem, 6vw, 7rem);
    padding-right: clamp(2rem, 6vw, 7rem);
    padding-top: 7rem;
    padding-bottom: 5rem;
    overflow: hidden;
  }
  .team-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('../images/team-hero.jpg');
    background-size: cover;
    background-position: center;
    z-index: 0;
  }
  .team-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.55) 60%, rgba(0,0,0,0.4) 100%);
    z-index: 1;
  }
  .team-hero-content {
    position: relative;
    z-index: 2;
    max-width: 860px;
    text-align: left;
    color: var(--white);
  }
  .team-hero-content h1 {
    color: var(--white);
    font-weight: 400;
  }

  /* ===== BIOS SECTION ===== */
  .bios {
    background: var(--dark);
    color: var(--white);
    padding: clamp(4rem, 8vw, 7rem) 0;
  }

  .bios-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 4vw, 4rem);
    margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
  }
  .bios-row:last-child { margin-bottom: 0; }

  .bio {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 1.5rem;
    align-items: start;
  }

  .bio-full {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-items: start;
  }


  .bio-photo {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 6px;
    background: rgba(255,255,255,0.04);
  }

  .bio-content h3 {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
  }

  .bio-role {
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 1rem;
  }

  .bio-content p {
    color: var(--silver);
    font-size: 0.9rem;
    line-height: 1.75;
  }

  /* ===== TEAM CTA ===== */
  .team-cta {
    background: var(--dark);
    padding: clamp(3.5rem, 6vw, 5rem) 0;
    text-align: center;
  }
  .team-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
  }

  @media (max-width: 1024px) {
    .bios-row { grid-template-columns: 1fr; gap: 2.5rem; }
      .bio-full {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: start;
  }
  }

  @media (max-width: 768px) {
    .team-hero { min-height: 50vh; padding-top: 6rem; padding-bottom: 3.5rem; }
    .team-hero-content h1 { font-size: 2.2rem; }
    .bio { grid-template-columns: 1fr; gap: 1.25rem; }
    .bio-photo { max-width: 240px; }
    .team-cta-buttons { flex-direction: column; align-items: stretch; }
    .team-cta-buttons .btn { justify-content: center; }
  }

/* ── extracted 2026-04-24T17:33:52.842Z ── */
/* ===== FRP HERO ===== */
  .frp-hero {
    position: relative;
    min-height: 72vh;
    display: flex;
    align-items: center;
    padding-left: clamp(2rem, 6vw, 7rem);
    padding-right: clamp(2rem, 6vw, 7rem);
    padding-top: 7rem;
    padding-bottom: 5rem;
    overflow: hidden;
  }
  .frp-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('../images/FRP-Highway-101-Gold-Project-hero.jpg');
    background-size: cover;
    background-position: center;
    z-index: 0;
  }
  .frp-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.50) 60%, rgba(0,0,0,0.35) 100%);
    z-index: 1;
  }
  .frp-hero-content {
    position: relative;
    z-index: 2;
    max-width: 960px;
    color: var(--white);
  }
  .frp-hero-content h1 {
    color: var(--white);
    font-weight: 400;
  }

  /* ===== DARK SPLIT SECTIONS ===== */
  .frp-split {
    background: var(--dark);
    color: var(--white);
    position: relative;
    overflow: hidden;
  }
  .frp-split::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 80% 30%, rgba(238,189,67,0.10) 0%, transparent 60%);
    pointer-events: none;
  }
  .frp-split .container { position: relative; z-index: 1; }

  .frp-split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
  }
  .frp-split-grid.reverse .frp-split-text { order: 2; }
  .frp-split-grid.reverse .frp-split-media { order: 1; }

  /* Grid items default to min-width:auto, allowing content to overflow the cell.
     min-width:0 forces them to respect their assigned grid column width. */
  .frp-split-text,
  .frp-split-media {
    min-width: 0;
  }

  .frp-split h2 {
    color: var(--white);
    margin-bottom: 1.5rem;
  }
  .frp-split p {
    color: var(--silver);
    line-height: 1.8;
    margin-bottom: 1.25rem;
  }
  .frp-split ul {
    list-style: none;
    margin: 1.5rem 0;
  }
  .frp-split ul li {
    color: var(--silver);
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.85rem;
    line-height: 1.7;
  }
  .frp-split ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.65em;
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
  }
  .frp-split ul li strong { color: var(--white); font-weight: 700; }

  .frp-split-media img {
    width: 100%;
    height: auto;
    border-radius: 6px;
  }

  /* ===== STAT CARDS ===== */
  .frp-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 2rem 0;
  }
  .frp-stat {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    padding: 1.75rem 1rem;
    text-align: center;
  }
  .frp-stat-num {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
  }
  .frp-stat-label {
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 400;
    line-height: 1.4;
  }

  /* ===== SLIDER ===== */
  .frp-slider {
    position: relative;
    width: 100%;
    border-radius: 6px;
    overflow: hidden;
  }
  .frp-slider-viewport {
    overflow: hidden;
    position: relative;
  }
  .frp-slider-track {
    display: flex;
    transition: transform 0.5s ease;
  }
  .frp-slide {
    flex: 0 0 100%;
    min-width: 0;
  }
  .frp-slide img {
    width: 100%;
    height: auto;
    display: block;
    background: #000;
  }
  .frp-slide-caption {
    background: rgba(0,0,0,0.4);
    padding: 1rem 1.25rem;
    text-align: center;
    font-size: 0.85rem;
    color: var(--silver);
    line-height: 1.6;
    min-height: 80px;
  }
  .frp-slider-btn {
    position: absolute;
    top: calc(50% - 50px);
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.3);
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.25s ease;
    z-index: 5;
  }
  .frp-slider:hover .frp-slider-btn { opacity: 1; }
  .frp-slider-btn:hover { background: var(--gold); color: var(--dark); border-color: var(--gold); }
  .frp-slider-btn.prev { left: 1rem; }
  .frp-slider-btn.next { right: 1rem; }
  .frp-slider-btn i { font-size: 1.25rem; }

  .frp-slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.25rem;
  }
  .frp-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    border: none;
    cursor: pointer;
    transition: all 0.25s;
    padding: 0;
  }
  .frp-dot.active {
    background: var(--gold);
    transform: scale(1.2);
  }

  /* ===== CALLOUT BOX ===== */
  .frp-callout {
    background: var(--dark-deep);
    border-left: 4px solid var(--gold);
    padding: 1.5rem 1.75rem;
    border-radius: 4px;
    margin-top: 2rem;
    color: var(--white);
    font-weight: 700;
    line-height: 1.6;
  }

  @media (max-width: 768px) {
    .frp-hero { min-height: 55vh; padding-top: 6rem; padding-bottom: 3.5rem; }
    .frp-hero-content h1 { font-size: 2.2rem; }
    .frp-split-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .frp-split-grid.reverse .frp-split-text { order: 1; }
    .frp-split-grid.reverse .frp-split-media { order: 2; }
    .frp-stats { grid-template-columns: 1fr; }
    .frp-slider-btn { opacity: 1; width: 38px; height: 38px; }
  }

/* ── extracted 2026-04-24T17:38:15.981Z ── */
/* ===== INVESTORS HERO ===== */
  .inv-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding-left: clamp(2rem, 6vw, 7rem);
    padding-right: clamp(2rem, 6vw, 7rem);
    padding-top: 7rem;
    padding-bottom: 5rem;
    overflow: hidden;
  }
  .inv-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('../images/investors-hero.jpg');
    background-size: cover;
    background-position: center;
    z-index: 0;
  }
  .inv-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.50) 60%, rgba(0,0,0,0.35) 100%);
    z-index: 1;
  }
  .inv-hero-content {
    position: relative;
    z-index: 2;
    max-width: 960px;
    color: var(--white);
    text-align: left;
  }
  .inv-hero-content h1 {
    color: var(--white);
    font-weight: 400;
  }

  /* ===== STOCK SPLIT ===== */
  .stock-split {
    background: var(--white);
  }
  .stock-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
  }
  .stock-left h2 { color: var(--dark); }
  .stock-left p { color: var(--dark); line-height: 1.75; margin-bottom: 1.25rem; }
  .stock-ticker {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--dark);
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    line-height: 1.1;
  }
  .stock-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 2rem;
  }
  .stock-chart {
    width: 100%;
    height: 480px;
    background: #0F0F0F;
    border-radius: 6px;
    overflow: hidden;
  }

  /* ===== SHARE STRUCTURE ===== */
  .share-structure {
    background: var(--dark);
    color: var(--white);
    position: relative;
    overflow: hidden;
  }
  .share-structure::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(238,189,67,0.10) 0%, transparent 60%);
    pointer-events: none;
  }
  .share-structure .container { position: relative; z-index: 1; }
  .share-structure h2 { color: var(--white); }
  .share-structure-header {
    max-width: 720px;
    margin-bottom: 3rem;
  }
  .share-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .share-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    padding: clamp(2rem, 4vw, 3rem);
    transition: all 0.3s ease;
  }
  .share-card:hover {
    border-color: rgba(238,189,67,0.35);
    box-shadow: 0 12px 35px rgba(238,189,67,0.12);
  }
  .share-num {
    font-size: clamp(2.2rem, 4.5vw, 3.2rem);
    font-weight: 700;
    color: var(--gold);
    letter-spacing: -0.02em;
    line-height: 1;
    margin-bottom: 0.75rem;
  }
  .share-label {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
  }
  .share-detail {
    color: var(--silver);
    font-size: 0.9rem;
    line-height: 1.7;
  }
  .share-detail span { display: block; }

  /* ===== NEWS & RESOURCES SPLIT ===== */
  .inv-resources {
    background: var(--white);
  }
  .inv-resources-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
  }
  .inv-resources h2 { color: var(--dark); margin-bottom: 2rem; }

  .inv-news-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
  }
  .inv-news-item {
    border: 1px solid rgba(84,85,86,0.15);
    border-radius: 8px;
    padding: 1.75rem;
    transition: all 0.3s ease;
    background: var(--white);
  }
  .inv-news-item:hover {
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(84,85,86,0.08);
  }
  .inv-news-item .news-date { margin-bottom: 0.6rem; }
  .inv-news-item h3 {
    color: var(--dark);
    font-size: 1.05rem;
    margin-bottom: 0.6rem;
  }
  .inv-news-item p {
    color: var(--dark);
    font-size: 0.9rem;
    line-height: 1.65;
    margin-bottom: 0;
  }

  .inv-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  .inv-panel {
    background: #fafafa;
    border: 1px solid rgba(84,85,86,0.12);
    border-radius: 8px;
    padding: 2rem;
  }
  .inv-panel h3 {
    color: var(--dark);
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
  }
  .inv-panel .eyebrow { margin-bottom: 0.5rem; }

  .pdf-list {
    list-style: none;
    margin-bottom: 1.5rem;
  }
  .pdf-list li { margin-bottom: 0.9rem; }
  .pdf-list a {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    color: var(--dark);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.6rem 0;
    transition: color 0.2s;
  }
  .pdf-list a:hover { color: var(--gold); }
  .pdf-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .panel-link {
    color: var(--gold);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
  }

  @media (max-width: 1024px) {
    .stock-grid { grid-template-columns: 1fr; }
    .inv-resources-grid { grid-template-columns: 1fr; }
    .stock-chart { height: 420px; }
  }

  @media (max-width: 768px) {
    .inv-hero { min-height: 50vh; padding-top: 6rem; padding-bottom: 3.5rem; }
    .inv-hero-content h1 { font-size: 2.2rem; }
    .share-cards { grid-template-columns: 1fr; }
    .stock-links { flex-direction: column; align-items: stretch; }
    .stock-links .btn { justify-content: center; }
    .stock-chart { height: 360px; }
  }

/* ── extracted 2026-04-24T17:41:14.796Z ── */
/* ===== REPORTS / TABS ===== */
  .reports {
    background: var(--white);
    padding: clamp(4rem, 8vw, 7rem) 0;
  }
  .reports-header {
    max-width: 720px;
    margin-bottom: 3rem;
  }
  .reports-header h2 { color: var(--dark); }

  .tabs-nav {
    display: flex;
    gap: 0.5rem;
    border-bottom: 1px solid rgba(84,85,86,0.15);
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
  }
  .tab-btn {
    background: none;
    border: none;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--dark);
    padding: 1rem 1.75rem;
    cursor: pointer;
    position: relative;
    transition: color 0.2s ease;
    opacity: 0.55;
  }
  .tab-btn:hover { opacity: 1; color: var(--gold); }
  .tab-btn.active {
    opacity: 1;
    color: var(--dark);
  }
  .tab-btn.active::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 3px;
    background: var(--gold);
  }

  .tab-panel {
    display: none;
    animation: fadeIn 0.4s ease;
  }
  .tab-panel.active { display: block; }

  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: none; }
  }

  .reports-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .report-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem 1.5rem;
    border: 1px solid rgba(84,85,86,0.15);
    border-radius: 8px;
    background: var(--white);
    transition: all 0.25s ease;
    color: var(--dark);
  }
  .report-item:hover {
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(84,85,86,0.08);
  }
  .report-item:hover .report-view { color: var(--gold); }
  .report-item:hover .report-icon { background: var(--gold); color: var(--dark); }

  .report-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 6px;
    background: rgba(238,189,67,0.12);
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
  }
  .report-icon i { font-size: 1.3rem; }

  .report-title {
    flex: 1;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--dark);
    line-height: 1.4;
  }

  .report-view {
    flex-shrink: 0;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--dark);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    transition: color 0.2s;
  }

  @media (max-width: 768px) {
    .reports-grid { grid-template-columns: 1fr; }
    .tab-btn { padding: 0.85rem 1.1rem; font-size: 0.85rem; }
    .report-item { padding: 1rem 1.1rem; gap: 0.9rem; }
    .report-title { font-size: 0.88rem; }
    .report-view span { display: none; }
  }

/* ── extracted 2026-04-24T17:44:45.237Z ── */
/* ===== NEWS PAGE HERO ===== */
  .news-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding-left: clamp(2rem, 6vw, 7rem);
    padding-right: clamp(2rem, 6vw, 7rem);
    padding-top: 7rem;
    padding-bottom: 5rem;
    overflow: hidden;
  }
  .news-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('../images/investors-hero.jpg');
    background-size: cover;
    background-position: center;
    z-index: 0;
  }
  .news-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.50) 60%, rgba(0,0,0,0.35) 100%);
    z-index: 1;
  }
  .news-hero-content {
    position: relative;
    z-index: 2;
    max-width: 960px;
    color: var(--white);
    text-align: left;
  }
  .news-hero-content h1 {
    color: var(--white);
    font-weight: 400;
  }

  /* ===== LATEST NEWS LIST ===== */
  .latest-news {
    background: var(--white);
    padding: clamp(4rem, 8vw, 7rem) 0;
  }
  .latest-news-header {
    max-width: 720px;
    margin-bottom: 3rem;
  }
  .latest-news-header h2 { color: var(--dark); }

  .news-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .news-list-item {
    border: 1px solid rgba(84,85,86,0.15);
    border-radius: 8px;
    padding: 2rem;
    transition: all 0.3s ease;
    background: var(--white);
    display: flex;
    flex-direction: column;
  }
  .news-list-item:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(84,85,86,0.1);
  }
  .news-list-item .news-date { margin-bottom: 0.75rem; }
  .news-list-item h3 {
    color: var(--dark);
    font-size: 1.1rem;
    line-height: 1.35;
    margin-bottom: 0.75rem;
  }
  .news-list-item p {
    color: var(--dark);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex: 1;
  }
  .news-list-item .news-link { align-self: flex-start; }

  @media (max-width: 768px) {
    .news-hero { min-height: 50vh; padding-top: 6rem; padding-bottom: 3.5rem; }
    .news-hero-content h1 { font-size: 2.2rem; }
    .news-list { grid-template-columns: 1fr; }
    .news-list-item { padding: 1.5rem; }
  }

/* ── extracted 2026-04-24T17:48:14.040Z ── */
/* ===== CONTACT HERO ===== */
  .contact-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding-left: clamp(2rem, 6vw, 7rem);
    padding-right: clamp(2rem, 6vw, 7rem);
    padding-top: 7rem;
    padding-bottom: 5rem;
    overflow: hidden;
  }
  .contact-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('../images/contact-hero.jpg');
    background-size: cover;
    background-position: center;
    z-index: 0;
  }
  .contact-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.52) 60%, rgba(0,0,0,0.38) 100%);
    z-index: 1;
  }
  .contact-hero-content {
    position: relative;
    z-index: 2;
    max-width: 960px;
    color: var(--white);
    text-align: left;
  }
  .contact-hero-content h1 {
    color: var(--white);
    font-weight: 400;
  }

  /* ===== CONTACT SPLIT ===== */
  .contact-split {
    background: var(--dark);
    color: var(--white);
    position: relative;
    overflow: hidden;
  }
  .contact-split::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 80% 30%, rgba(238,189,67,0.10) 0%, transparent 60%);
    pointer-events: none;
  }
  .contact-split .container { position: relative; z-index: 1; }

  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: clamp(2.5rem, 5vw, 5rem);
    align-items: start;
  }

  .contact-info h2 {
    color: var(--white);
    margin-bottom: 1.5rem;
  }
  .contact-info address {
    font-style: normal;
    color: var(--silver);
    font-size: 1rem;
    line-height: 1.85;
    margin-bottom: 2rem;
  }
  .contact-info address strong {
    color: var(--white);
    font-weight: 700;
    display: block;
    margin-bottom: 0.3rem;
  }

  .contact-meta {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    margin-top: 1.5rem;
  }
  .contact-meta a {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--white);
    font-size: 0.95rem;
    transition: color 0.2s;
  }
  .contact-meta a:hover { color: var(--gold); }
  .contact-meta .meta-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  /* ===== FORM ===== */
  .contact-form-wrap {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    padding: clamp(2rem, 4vw, 3rem);
  }
  .contact-form-wrap h2 {
    color: var(--white);
    margin-bottom: 0.5rem;
  }
  .contact-form-wrap > .eyebrow { margin-bottom: 1rem; }

  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 1.5rem;
  }
  .form-field { display: flex; flex-direction: column; gap: 0.5rem; }
  .form-field label {
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
  }
  .form-field input,
  .form-field textarea {
    width: 100%;
    padding: 0.9rem 1.1rem;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 6px;
    color: var(--white);
    font-family: inherit;
    font-size: 0.95rem;
    transition: border-color 0.2s, background 0.2s;
  }
  .form-field textarea {
    min-height: 150px;
    resize: vertical;
  }
  .form-field input::placeholder,
  .form-field textarea::placeholder { color: rgba(255,255,255,0.45); }
  .form-field input:focus,
  .form-field textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(255,255,255,0.08);
  }

  .contact-form .btn { align-self: flex-start; margin-top: 0.5rem; }
  .form-status {
    font-size: 0.85rem;
    color: var(--gold);
    min-height: 1.2em;
    margin-top: 0.25rem;
  }

  @media (max-width: 1024px) {
    .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  }
  @media (max-width: 768px) {
    .contact-hero { min-height: 50vh; padding-top: 6rem; padding-bottom: 3.5rem; }
    .contact-hero-content h1 { font-size: 2.2rem; }
    .contact-form .btn { align-self: stretch; justify-content: center; }
  }
