:root {
      --navy:        #102A43;
      --navy-dark:   #081B2E;
      --gray:        #52606D;
      --light-gray:  #64748B;
      --accent:      #C0C0C0;
      --accent-soft: #D9D9D9;
      --lightblue:   #F5F7FA;
      --white:       #FFFFFF;
      --border:      #E2E8F0;

      --font-display: 'Bebas Neue', sans-serif;
      --font-heading: 'Barlow Condensed', sans-serif;
      --font-body:    'Barlow', sans-serif;

      --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
      --tr:  all 0.3s var(--ease-out);
      --tr-slow: all 0.5s var(--ease-out);
    }

    /* ========================
       RESET & BASE
    ======================== */
    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: auto; }
    body { font-family: var(--font-body); color: var(--navy); background: var(--white); overflow-x: hidden; }
    img { max-width: 100%; display: block; }
    a { text-decoration: none; }

    /* ========================
       CONTAINER
    ======================== */
    .container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }

    /* ========================
       SCROLL REVEAL
    ======================== */
    .reveal {
      opacity: 0;
      transform: translateY(36px);
      transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }
    .reveal.d1 { transition-delay: 0.10s; }
    .reveal.d2 { transition-delay: 0.20s; }
    .reveal.d3 { transition-delay: 0.30s; }
    .reveal.d4 { transition-delay: 0.40s; }

    /* ========================
       KEYFRAMES
    ======================== */
    @keyframes fadeInUp   { from { opacity:0; transform:translateY(30px); } to { opacity:1; transform:translateY(0); } }
    @keyframes fadeInDown { from { opacity:0; transform:translateY(-20px); } to { opacity:1; transform:translateY(0); } }
    @keyframes shimmer    { 0%{left:-100%} 100%{left:100%} }
    @keyframes scrollPulse{ 0%,100%{opacity:1;transform:scaleY(1);} 50%{opacity:0;transform:scaleY(0);} }

    /* ========================
       COMMON SECTION ATOMS
    ======================== */
    section { padding: 80px 0; }

    .section-label {
      display: block;
      font-family: var(--font-heading);
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: var(--light-gray);
      margin-bottom: 10px;
    }
    .section-label-light { color: rgba(192,192,192,0.7); }

    .section-title {
      font-family: var(--font-display);
      font-size: clamp(30px, 4vw, 52px);
      line-height: 1.05;
      letter-spacing: 1px;
      color: var(--navy);
    }
    .section-title-white { color: var(--white); }

    .section-line {
      width: 48px; height: 3px;
      background: linear-gradient(90deg, var(--accent), transparent);
      margin: 14px 0 20px;
    }
    .section-line-center { margin-left: auto; margin-right: auto; }

    /* BUTTONS */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: var(--font-heading);
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 13px 28px;
      border-radius: 2px;
      border: 2px solid transparent;
      cursor: pointer;
      position: relative;
      overflow: hidden;
      transition: var(--tr);
    }
    .btn i { transition: transform 0.3s var(--ease-out); }
    .btn:hover i { transform: translateX(4px); }

    .btn-dark {
      background: var(--navy);
      border-color: var(--navy);
      color: var(--white);
    }
    .btn-dark:hover {
      background: var(--navy-dark);
      border-color: var(--navy-dark);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(16,42,67,0.25);
    }

    .btn-outline-dark {
      background: transparent;
      border-color: rgba(16,42,67,0.4);
      color: var(--navy);
    }
    .btn-outline-dark:hover {
      background: var(--navy);
      color: var(--white);
      border-color: var(--navy);
      transform: translateY(-2px);
    }

    .btn-silver {
      background: var(--accent);
      border-color: var(--accent);
      color: var(--navy-dark);
    }
    .btn-silver::before {
      content: '';
      position: absolute;
      top: 0; left: -100%; width: 60%; height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
      transition: left 0.5s ease;
    }
    .btn-silver:hover::before { left: 150%; }
    .btn-silver:hover {
      background: var(--white);
      border-color: var(--white);
      transform: translateY(-2px);
      box-shadow: 0 8px 28px rgba(0,0,0,0.25);
    }

    .btn-ghost-white {
      background: transparent;
      border-color: rgba(255,255,255,0.4);
      color: var(--white);
    }
    .btn-ghost-white:hover {
      background: rgba(255,255,255,0.1);
      border-color: rgba(255,255,255,0.8);
      transform: translateY(-2px);
    }

    .btn-outline-silver {
      background: transparent;
      border-color: rgba(192,192,192,0.35);
      color: var(--white);
    }
    .btn-outline-silver:hover {
      background: rgba(192,192,192,0.08);
      border-color: var(--accent);
      color: var(--accent);
      transform: translateY(-2px);
    }

    /* ========================
       NAVBAR
    ======================== */
    .navbar {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 900;
      height: 72px;
      padding: 0 60px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: transparent;
      transition: background 0.4s ease, box-shadow 0.4s ease, height 0.4s ease;
    }
    .navbar.scrolled {
      background: rgba(8,27,46,0.96);
      backdrop-filter: blur(12px);
      box-shadow: 0 2px 24px rgba(0,0,0,0.35);
      height: 62px;
    }

    /* Logo */
    .nav-logo {
      display: flex;
      align-items: center;
      gap: 12px;
      flex-shrink: 0;
    }
    .nav-logo-box {
      width: 42px; height: 42px;
      border-radius: 3px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }
    .nav-logo-box img { width: 100%; height: 100%; object-fit: cover; }
    .nav-logo-box-placeholder {
      font-family: var(--font-display);
      font-size: 14px;
      letter-spacing: 1px;
      color: var(--navy-dark);
    }
    .nav-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
    .nav-logo-main {
      font-family: var(--font-display);
      font-size: 18px;
      letter-spacing: 1.5px;
      color: var(--white);
    }
    .nav-logo-sub {
      font-family: var(--font-heading);
      font-size: 9px;
      font-weight: 400;
      letter-spacing: 3.5px;
      text-transform: uppercase;
      color: var(--accent);
    }

    /* Desktop nav links */
    .nav-links {
      list-style: none;
      display: flex;
      align-items: center;
      gap: 4px;
    }
    .nav-links li a {
      font-family: var(--font-heading);
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: rgba(255,255,255,0.8);
      padding: 8px 13px;
      position: relative;
      display: block;
      transition: color 0.25s ease;
    }
    .nav-links li a::after {
      content: '';
      position: absolute;
      bottom: 2px; left: 13px; right: 13px;
      height: 1.5px;
      background: var(--accent);
      transform: scaleX(0);
      transform-origin: left center;
      transition: transform 0.35s var(--ease-out);
    }
    .nav-links li a:hover { color: var(--white); }
    .nav-links li a:hover::after { transform: scaleX(1); }

    /* Desktop nav right */
    .nav-right {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .btn-nav {
      font-family: var(--font-heading);
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      padding: 8px 18px;
      border-radius: 2px;
      border: 1.5px solid transparent;
      cursor: pointer;
      transition: var(--tr);
    }
    .btn-nav-contact {
      color: var(--white);
      border-color: rgba(192,192,192,0.45);
      background: transparent;
    }
    .btn-nav-contact:hover {
      background: var(--accent);
      color: var(--navy-dark);
      border-color: var(--accent);
    }
    .btn-nav-login {
      background: var(--accent);
      color: var(--navy-dark);
      border-color: var(--accent);
    }
    .btn-nav-login:hover {
      background: var(--white);
      border-color: var(--white);
    }

    /* Hamburger */
    .nav-toggle {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      background: none;
      border: none;
      padding: 8px;
      z-index: 901;
    }
    .nav-toggle span {
      display: block;
      width: 24px; height: 2px;
      background: var(--white);
      border-radius: 2px;
      transition: var(--tr);
    }
    .nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* ========================
       SIDEBAR
    ======================== */
    .sidebar-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.6);
      z-index: 902;
      opacity: 0;
      transition: opacity 0.35s ease;
      pointer-events:none;

    }
    .sidebar-overlay.open { opacity: 1; 
    pointer-events:auto;}

    .sidebar {
      position: fixed;
      top: 0; right: 0; bottom: 0;
      width: min(310px, 88vw);
      background: var(--navy-dark);
      z-index: 903;
      transform: translateX(110%);
      transition: transform 0.45s var(--ease-out);
      overflow-y: auto;
      display: flex;
      flex-direction: column;
    }
    .sidebar.open { transform: translateX(0); }

    .sidebar-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 18px 22px;
      border-bottom: 1px solid rgba(255,255,255,0.07);
      flex-shrink: 0;
    }
    .sidebar-logo { display: flex; align-items: center; gap: 10px; }
    .sidebar-logo-box {
      width: 34px; height: 34px;
      border-radius: 3px;
      display: flex; align-items: center; justify-content: center;
      overflow: hidden;
    }
    .sidebar-logo-box img { width: 100%; height: 100%; object-fit: cover; }
    .sidebar-logo-box-placeholder {
      font-family: var(--font-display);
      font-size: 12px;
      color: var(--navy-dark);
    }
    .sidebar-logo-main {
      font-family: var(--font-display);
      font-size: 15px;
      letter-spacing: 1px;
      color: var(--white);
    }
    .sidebar-close {
      background: none; border: none;
      color: rgba(255,255,255,0.5);
      font-size: 18px;
      cursor: pointer;
      padding: 6px;
      border-radius: 3px;
      transition: color 0.25s ease, background 0.25s ease;
      line-height: 1;
    }
    .sidebar-close:hover { color: var(--white); background: rgba(255,255,255,0.07); }

    .sidebar-nav {
      padding: 10px 0;
      border-bottom: 1px solid rgba(255,255,255,0.07);
    }
    .sidebar-nav a {
      display: block;
      font-family: var(--font-heading);
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: rgba(255,255,255,0.65);
      padding: 13px 22px;
      transition: color 0.25s ease, background 0.25s ease, padding-left 0.25s ease;
    }
    .sidebar-nav a:hover {
      color: var(--accent);
      background: rgba(255,255,255,0.04);
      padding-left: 30px;
    }

    .sidebar-divider {
      border: none;
      border-top: 1px solid rgba(255,255,255,0.07);
      margin: 0;
    }

    .sidebar-section {
      padding: 18px 22px;
    }
    .sidebar-section h4 {
      font-family: var(--font-heading);
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 14px;
    }
    .sidebar-btn-group { display: flex; flex-direction: column; gap: 8px; }
    .sidebar-btn {
      display: block;
      font-family: var(--font-heading);
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      text-align: center;
      padding: 10px 16px;
      border-radius: 2px;
      border: 1.5px solid transparent;
      transition: var(--tr);
    }
    .sidebar-btn-outline {
      color: var(--white);
      border-color: rgba(192,192,192,0.35);
    }
    .sidebar-btn-outline:hover { background: rgba(192,192,192,0.1); border-color: var(--accent); }
    .sidebar-btn-solid {
      background: var(--accent);
      color: var(--navy-dark);
      border-color: var(--accent);
    }
    .sidebar-btn-solid:hover { background: var(--white); }

    .sidebar-info p {
      font-size: 13px;
      color: rgba(255,255,255,0.55);
      line-height: 1.6;
      margin-bottom: 8px;
      display: flex;
      align-items: flex-start;
      gap: 10px;
    }
    .sidebar-info p i { color: var(--accent); font-size: 13px; margin-top: 2px; flex-shrink: 0; }

    .sidebar-social {
      display: flex;
      gap: 14px;
      margin-top: 4px;
    }
    .sidebar-social a {
      color: rgba(255,255,255,0.45);
      font-size: 17px;
      transition: color 0.25s ease, transform 0.25s ease;
    }
    .sidebar-social a:hover { color: var(--accent); transform: translateY(-2px); }

    /* ========================
       HERO
    ======================== */
    .hero {
      position: relative;
      height: 100vh;
      min-height: 560px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    /* Slider */
    .hero-slider { position: absolute; inset: 0; }
    .hero-slide {
      position: absolute; inset: 0;
      opacity: 0;
      transition: opacity 1.2s ease;
    }
    .hero-slide.active { opacity: 1; }
    .hero-slide img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    }

    /* Metallic grain overlay */
    .hero-grain {
      position: absolute; inset: 0; z-index: 1; opacity: 0.12;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
      background-size: 180px;
    }

    /* Diagonal metallic lines */
    .hero-lines {
      position: absolute; inset: 0; z-index: 2; overflow: hidden; pointer-events: none;
    }
    .hero-lines::before {
      content: '';
      position: absolute;
      top: 15%; left: -15%; width: 70%; height: 1px;
      background: linear-gradient(90deg, transparent 0%, rgba(192,192,192,0.25) 40%, rgba(192,192,192,0.1) 70%, transparent 100%);
      transform: rotate(-6deg);
    }
    .hero-lines::after {
      content: '';
      position: absolute;
      bottom: 25%; right: -10%; width: 55%; height: 1px;
      background: linear-gradient(90deg, transparent, rgba(192,192,192,0.15), transparent);
      transform: rotate(-6deg);
    }

    /* Dark vignette */
    .hero-overlay {
      position: absolute; inset: 0; z-index: 2;
      background: radial-gradient(ellipse at center, rgba(8,27,46,0.2) 0%, rgba(8,27,46,0.55) 100%);
    }

    .hero-content {
      position: relative; z-index: 3;
      text-align: center;
      padding: 0 20px;
      max-width: 900px;
    }
    .hero-eyebrow {
      font-family: var(--font-heading);
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 5px;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 20px;
      animation: fadeInDown 0.8s var(--ease-out) 0.2s both;
    }
    .hero-headline {
      font-family: var(--font-display);
      font-size: clamp(42px, 9vw, 104px);
      line-height: 0.95;
      letter-spacing: 2px;
      color: var(--white);
      margin-bottom: 22px;
      animation: fadeInUp 0.8s var(--ease-out) 0.4s both;
    }
    .hero-headline em {
      font-style: normal;
      background: linear-gradient(135deg, var(--accent-soft) 0%, var(--white) 45%, var(--accent) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .hero-subhead {
      font-family: var(--font-heading);
      font-size: clamp(16px, 4vw, 20px);
      font-weight: 300;
      color: rgba(255,255,255,0.68);
      max-width: 560px;
      margin: 0 auto 36px;
      line-height: 1.7;
      animation: fadeInUp 0.8s var(--ease-out) 0.6s both;
    }
    .hero-btns {
      display: flex;
      gap: 14px;
      justify-content: center;
      flex-wrap: wrap;
      animation: fadeInUp 0.8s var(--ease-out) 0.8s both;
    }

    /* Indicators */
    .hero-indicators {
      position: absolute;
      bottom: 30px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 4;
      display: flex;
      gap: 8px;
      align-items: center;
    }
    .indicator {
      height: 2px;
      width: 28px;
      border: none;
      background: rgba(255,255,255,0.25);
      cursor: pointer;
      transition: var(--tr);
      border-radius: 2px;
      padding: 0;
    }
    .indicator.active {
      background: var(--accent);
      width: 46px;
    }

    /* Scroll cue */
    .hero-scroll-cue {
      position: absolute;
      right: 40px; bottom: 32px; z-index: 4;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
    }
    .hero-scroll-cue span {
      font-family: var(--font-heading);
      font-size: 9px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: rgba(255,255,255,0.4);
      writing-mode: vertical-rl;
    }
    .scroll-bar {
      width: 1px; height: 44px;
      background: linear-gradient(180deg, rgba(192,192,192,0.6), transparent);
      animation: scrollPulse 2s ease infinite;
    }

    /* ========================
       SECTION 2: OVERVIEW
    ======================== */
    .overview { background: var(--lightblue); }
    .overview-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
    }
    .overview-desc {
      font-size: 16px;
      line-height: 1.8;
      color: var(--gray);
      margin-bottom: 30px;
    }

    .stats-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }
    .stat-card {
      background: var(--white);
      padding: 26px 22px;
      border: 1px solid var(--border);
      border-bottom: 3px solid var(--accent);
      border-radius: 2px;
      transition: var(--tr);
    }
    .stat-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 14px 36px rgba(16,42,67,0.1);
    }
    .stat-num {
      font-family: var(--font-display);
      font-size: 42px;
      color: var(--navy);
      line-height: 1;
      letter-spacing: 1px;
    }
    .stat-num sup {
      font-size: 22px;
      color: var(--accent);
    }
    .stat-lbl {
      font-family: var(--font-heading);
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--light-gray);
      margin-top: 6px;
    }

    /* ========================
       SECTION 3: DIVISIONS
    ======================== */
    .divisions { background: var(--navy-dark); }
    .divisions-head { text-align: center; margin-bottom: 56px; }
    .divisions-head .section-line { margin: 14px auto 0; }

    .divisions-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    .div-card {
      background: rgba(255,255,255,0.035);
      border: 1px solid rgba(255,255,255,0.07);
      padding: 38px 30px;
      border-radius: 2px;
      position: relative;
      overflow: hidden;
      transition: var(--tr);
      cursor: pointer;
    }
    .div-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0; height: 2px;
      background: linear-gradient(90deg, var(--accent), rgba(192,192,192,0.3));
      transform: scaleX(0);
      transform-origin: left center;
      transition: transform 0.4s var(--ease-out);
    }
    .div-card::after {
      content: '';
      position: absolute;
      bottom: 0; right: 0;
      width: 80px; height: 80px;
      border: 1px solid rgba(192,192,192,0.06);
      border-radius: 50%;
      transform: translate(30px, 30px);
      transition: var(--tr-slow);
    }
    .div-card:hover {
      background: rgba(255,255,255,0.06);
      transform: translateY(-5px);
      border-color: rgba(192,192,192,0.15);
      box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    }
    .div-card:hover::before { transform: scaleX(1); }
    .div-card:hover::after { transform: translate(20px, 20px); border-color: rgba(192,192,192,0.12); }

    .div-icon {
      width: 50px; height: 50px;
      background: rgba(192,192,192,0.08);
      border: 1px solid rgba(192,192,192,0.15);
      border-radius: 2px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 22px;
      font-size: 20px;
      color: var(--accent);
      transition: var(--tr);
    }
    .div-card:hover .div-icon { background: rgba(192,192,192,0.14); }
    .div-name {
      font-family: var(--font-display);
      font-size: 21px;
      color: var(--white);
      letter-spacing: 1px;
      margin-bottom: 18px;
    }
    .div-list { list-style: none; }
    .div-list li {
      font-size: 13.5px;
      color: rgba(255,255,255,0.55);
      padding: 7px 0;
      border-bottom: 1px solid rgba(255,255,255,0.05);
      display: flex;
      align-items: center;
      gap: 10px;
      transition: color 0.25s ease;
    }
    .div-list li:last-child { border-bottom: none; }
    .div-list li::before {
      content: '';
      width: 4px; height: 4px;
      background: var(--accent);
      border-radius: 50%;
      flex-shrink: 0;
      opacity: 0.7;
    }
    .div-card:hover .div-list li { color: rgba(255,255,255,0.75); }

    .divisions-footer { text-align: center; margin-top: 48px; }

    /* ========================
       SECTION 4: EVENTS
    ======================== */
    .events { background: var(--white); }
    .events-header {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 20px;
      margin-bottom: 40px;
    }
    .event-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 7px;
      margin-bottom: 10px;
    }
    .etag {
      font-family: var(--font-heading);
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--light-gray);
      padding: 4px 10px;
      border: 1px solid var(--border);
      border-radius: 1px;
      transition: var(--tr);
    }
    .etag:hover { border-color: var(--accent); color: var(--navy); }

    .events-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
    }
    .event-card {
      border: 1px solid var(--border);
      border-radius: 2px;
      overflow: hidden;
      transition: var(--tr);
    }
    .event-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 18px 44px rgba(16,42,67,0.1);
      border-color: var(--accent-soft);
    }
    .event-thumb {
      width: 100%; height: 198px;
      position: relative;
      overflow: hidden;
    }
    .event-thumb img {
      width: 100%; height: 100%;
      object-fit: cover;
      transition: transform 0.6s var(--ease-out);
    }
    .event-card:hover .event-thumb img { transform: scale(1.06); }
    .event-thumb-placeholder {
      width: 100%; height: 100%;
      background: linear-gradient(135deg, var(--lightblue) 0%, var(--accent-soft) 100%);
      display: flex; align-items: center; justify-content: center;
    }
    .event-thumb-placeholder i { font-size: 36px; color: rgba(192,192,192,0.6); }
    .event-badge {
      position: absolute;
      top: 14px; left: 14px;
      font-family: var(--font-heading);
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--white);
      background: var(--navy);
      padding: 4px 10px;
      border-radius: 1px;
    }
    .event-body { padding: 22px; }
    .event-meta {
      font-family: var(--font-heading);
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--light-gray);
      margin-bottom: 8px;
    }
    .event-name {
      font-family: var(--font-heading);
      font-size: 16px;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 8px;
      line-height: 1.4;
    }
    .event-desc {
      font-size: 13px;
      color: var(--gray);
      line-height: 1.6;
    }
    .events-footer { text-align: center; margin-top: 48px; }

    /* ========================
       SECTION 5: WHY CHOOSE US
    ======================== */
    .why { background: var(--lightblue); }
    .why-head { text-align: center; margin-bottom: 52px; }
    .why-head .section-line { margin: 14px auto 0; }
    .why-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }
    .why-card {
      background: var(--white);
      padding: 34px 26px;
      border: 1px solid var(--border);
      border-radius: 2px;
      text-align: center;
      position: relative;
      overflow: hidden;
      transition: var(--tr);
    }
    .why-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0; height: 2px;
      background: var(--accent);
      transform: scaleX(0);
      transform-origin: center;
      transition: transform 0.35s var(--ease-out);
    }
    .why-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 18px 44px rgba(16,42,67,0.11);
    }
    .why-card:hover::before { transform: scaleX(1); }
    .why-icon {
      width: 60px; height: 60px;
      background: var(--lightblue);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 18px;
      font-size: 24px;
      color: var(--navy);
      transition: var(--tr);
    }
    .why-card:hover .why-icon { background: var(--navy); color: var(--accent); }
    .why-title {
      font-family: var(--font-heading);
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      color: var(--navy);
      margin-bottom: 10px;
    }
    .why-desc {
      font-size: 13px;
      color: var(--gray);
      line-height: 1.65;
    }

    /* ========================
       SECTION 6: ACTIVITIES
    ======================== */
    .activities { background: var(--white); }
    .activities-header {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 20px;
      margin-bottom: 40px;
    }
    .activities-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }
    .act-card {
      position: relative;
      border-radius: 2px;
      overflow: hidden;
      cursor: pointer;
    }
    .act-img {
      width: 100%; height: 265px;
      position: relative;
      overflow: hidden;
    }
    .act-img img {
      width: 100%; height: 100%;
      object-fit: cover;
      transition: transform 0.6s var(--ease-out);
    }
    .act-card:hover .act-img img { transform: scale(1.07); }
    .act-placeholder {
      width: 100%; height: 100%;
      display: flex; align-items: center; justify-content: center;
      background: linear-gradient(135deg, var(--navy-dark), #1a3a5a);
    }
    .act-placeholder i { font-size: 40px; color: rgba(192,192,192,0.2); }
    .act-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(0deg, rgba(8,27,46,0.94) 0%, rgba(8,27,46,0.3) 55%, transparent 100%);
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 24px;
    }
    .act-cat {
      font-family: var(--font-heading);
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 5px;
      transform: translateY(10px);
      opacity: 0;
      transition: transform 0.4s var(--ease-out), opacity 0.4s var(--ease-out);
    }
    .act-name {
      font-family: var(--font-heading);
      font-size: 17px;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 4px;
      transform: translateY(8px);
      transition: transform 0.4s var(--ease-out) 0.05s;
    }
    .act-client {
      font-size: 12px;
      color: rgba(255,255,255,0.55);
      margin-bottom: 0;
      transform: translateY(8px);
      transition: transform 0.4s var(--ease-out) 0.08s;
    }
    .act-desc {
      font-size: 12px;
      color: rgba(255,255,255,0.45);
      line-height: 1.5;
      margin-top: 8px;
      max-height: 0;
      overflow: hidden;
      opacity: 0;
      transition: max-height 0.5s var(--ease-out), opacity 0.4s ease 0.1s;
    }
    .act-card:hover .act-cat { opacity: 1; transform: translateY(0); }
    .act-card:hover .act-name { transform: translateY(0); }
    .act-card:hover .act-client { transform: translateY(0); }
    .act-card:hover .act-desc { max-height: 80px; opacity: 1; }

    .activities-footer { text-align: center; margin-top: 46px; }

    /* ========================
       SECTION 7: TESTIMONIALS
    ======================== */
    .testimonials { background: var(--navy); }
    .testimonials-head { text-align: center; margin-bottom: 52px; }
    .testimonials-head .section-line { margin: 14px auto 0; }

    .testi-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
    }
    .testi-card {
      background: rgba(255,255,255,0.045);
      border: 1px solid rgba(255,255,255,0.07);
      padding: 34px 30px;
      border-radius: 2px;
      position: relative;
      transition: var(--tr);
    }
    .testi-card::before {
      content: '';
      position: absolute;
      inset: 0;
      border: 1px solid rgba(192,192,192,0);
      border-radius: 2px;
      transition: border-color 0.35s ease;
    }
    .testi-card:hover { background: rgba(255,255,255,0.07); transform: translateY(-4px); }
    .testi-card:hover::before { border-color: rgba(192,192,192,0.15); }
    .testi-quote {
      font-family: var(--font-display);
      font-size: 56px;
      color: var(--accent);
      opacity: 0.2;
      line-height: 1;
      margin-bottom: -4px;
    }
    .testi-text {
      font-size: 14.5px;
      color: rgba(255,255,255,0.75);
      line-height: 1.75;
      font-style: italic;
      margin-bottom: 22px;
    }
    .testi-rule { width: 30px; height: 1px; background: var(--accent); margin-bottom: 14px; }
    .testi-author {
      font-family: var(--font-heading);
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.5px;
      color: var(--white);
    }
    .testi-role {
      font-family: var(--font-heading);
      font-size: 11px;
      letter-spacing: 1px;
      color: var(--accent);
      margin-top: 4px;
    }

    /* ========================
       SECTION 8: CTA
    ======================== */
    .cta-section {
      background: var(--navy-dark);
      position: relative;
      overflow: hidden;
    }
    .cta-bg-ring {
      position: absolute;
      border-radius: 50%;
      border: 1px solid rgba(192,192,192,0.06);
      pointer-events: none;
    }
    .cta-bg-ring:nth-child(1) { width: 600px; height: 600px; top: -200px; left: -150px; }
    .cta-bg-ring:nth-child(2) { width: 400px; height: 400px; bottom: -150px; right: -100px; }
    .cta-bg-ring:nth-child(3) { width: 200px; height: 200px; top: 50%; left: 50%; transform: translate(-50%,-50%); }

    .cta-inner {
      position: relative; z-index: 2;
      text-align: center;
    }
    .cta-inner .section-label-light { color: rgba(192,192,192,0.65); }
    .cta-headline {
      font-family: var(--font-display);
      font-size: clamp(30px, 5vw, 60px);
      color: var(--white);
      letter-spacing: 1px;
      line-height: 1.05;
      margin-bottom: 14px;
    }
    .cta-sub {
      font-family: var(--font-heading);
      font-size: 16px;
      font-weight: 300;
      color: rgba(255,255,255,0.55);
      max-width: 480px;
      margin: 0 auto 38px;
      line-height: 1.65;
    }
    .cta-btns {
      display: flex;
      gap: 14px;
      justify-content: center;
      flex-wrap: wrap;
    }

    /* ========================
       FOOTER
    ======================== */
    .footer { background: var(--navy-dark); padding: 64px 0 0; }
    .footer-grid {
      display: grid;
      grid-template-columns: 1.6fr 1fr 1.4fr;
      gap: 48px;
      margin-bottom: 48px;
    }

    .footer-brand-name {
      font-family: var(--font-display);
      font-size: 22px;
      letter-spacing: 1.5px;
      color: var(--white);
      display: block;
      margin-bottom: 4px;
    }
    .footer-brand-tagline {
      font-family: var(--font-heading);
      font-size: 9px;
      font-weight: 400;
      letter-spacing: 3.5px;
      text-transform: uppercase;
      color: var(--accent);
      display: block;
      margin-bottom: 16px;
    }
    .footer-desc {
      font-size: 13px;
      color: rgba(255,255,255,0.45);
      line-height: 1.75;
      margin-bottom: 22px;
      max-width: 290px;
    }
    .footer-social { display: flex; gap: 10px; }
    .footer-social a {
      width: 36px; height: 36px;
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 2px;
      display: flex; align-items: center; justify-content: center;
      color: rgba(255,255,255,0.45);
      font-size: 14px;
      transition: var(--tr);
    }
    .footer-social a:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }

    .footer-col h4 {
      font-family: var(--font-heading);
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 18px;
    }
    .footer-links { list-style: none; }
    .footer-links li { margin-bottom: 9px; }
    .footer-links a {
      font-size: 13px;
      color: rgba(255,255,255,0.45);
      display: flex;
      align-items: center;
      gap: 0;
      transition: color 0.25s ease, gap 0.25s ease, padding-left 0.25s ease;
    }
    .footer-links a::before {
      content: '';
      display: inline-block;
      width: 0; height: 1px;
      background: var(--accent);
      transition: width 0.25s ease;
      margin-right: 0;
      flex-shrink: 0;
    }
    .footer-links a:hover { color: var(--accent); padding-left: 6px; }
    .footer-links a:hover::before { width: 12px; margin-right: 6px; }

    .footer-contact-row {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      margin-bottom: 13px;
    }
    .footer-contact-row i { color: var(--accent); font-size: 13px; margin-top: 2px; flex-shrink: 0; }
    .footer-contact-row span { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.55; }

    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.06);
      padding: 22px 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 10px;
    }
    .footer-copy {
      font-family: var(--font-heading);
      font-size: 11px;
      letter-spacing: 0.5px;
      color: rgba(255,255,255,0.28);
    }
    .footer-legal {
      display: flex;
      gap: 20px;
    }
    .footer-legal a {
      font-family: var(--font-heading);
      font-size: 11px;
      letter-spacing: 0.5px;
      color: rgba(255,255,255,0.28);
      transition: color 0.25s;
    }
    .footer-legal a:hover { color: var(--accent); }


    /* ========================
       RESPONSIVE BREAKPOINTS
    ======================== */

    /* ── Mobile Small 320px ─────────────────── */
    @media (min-width: 320px) {
      .container { padding: 0 16px; }
      section { padding: 56px 0; }

      /* navbar */
      .navbar { padding: 0 16px; height: 58px; }
      .nav-links, .nav-right { display: none; }
      .nav-toggle { display: flex; }
      .sidebar-overlay { display: block; }

      /* hero */
      .hero-headline { font-size: 40px; }
      .hero-subhead { font-size: clamp(16px, 4vw, 20px);}
      .hero-btns { flex-direction: column; align-items: center; }
      .hero-btns .btn { width: 100%; max-width: 280px; justify-content: center; }
      .hero-scroll-cue { display: none; }

      /* overview */
      .overview-grid { grid-template-columns: 1fr; gap: 36px; }
      .stats-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
      .stat-card { padding: 18px 14px; }
      .stat-num { font-size: 34px; }

      /* divisions */
      .divisions-grid { grid-template-columns: 1fr; gap: 14px; }

      /* events */
      .events-header { flex-direction: column; align-items: flex-start; }
      .events-grid { grid-template-columns: 1fr; gap: 16px; }

      /* why */
      .why-grid { grid-template-columns: 1fr; gap: 14px; }

      /* activities */
      .activities-header { flex-direction: column; align-items: flex-start; }
      .activities-grid { grid-template-columns: 1fr; gap: 14px; }

      /* testimonials */
      .testi-grid { grid-template-columns: 1fr; gap: 14px; }

      /* cta */
      .cta-btns { flex-direction: column; align-items: center; }
      .cta-btns .btn { width: 100%; max-width: 280px; justify-content: center; }

      /* footer */
      .footer-grid { grid-template-columns: 1fr; gap: 28px; }
      .footer-bottom { flex-direction: column; align-items: flex-start; }
    }

    /* ── Mobile Large 480px ─────────────────── */
    @media (min-width: 480px) {
      .container { padding: 0 24px; }

      .hero-headline { font-size: 54px; }
      .hero-btns { flex-direction: row; }
      .hero-btns .btn { width: auto; }

      .why-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
      .testi-grid { grid-template-columns: 1fr; }

      .cta-btns { flex-direction: row; }
      .cta-btns .btn { width: auto; }
    }

    /* ── Tablet 768px ───────────────────────── */
    @media (min-width: 768px) {
      .container { padding: 0 32px; }
      section { padding: 72px 0; }

      .navbar { padding: 0 32px; height: 66px; }
      .hero-headline { font-size: 70px; }

      .events-header { flex-direction: row; align-items: flex-end; }
      .events-grid { grid-template-columns: 1fr 1fr; }

      .activities-header { flex-direction: row; align-items: flex-end; }
      .activities-grid { grid-template-columns: 1fr 1fr; }

      .testi-grid { grid-template-columns: 1fr 1fr; }

      .footer-grid { grid-template-columns: 1fr 1fr; }
      .footer-grid > *:last-child { grid-column: span 2; }
    }

    /* ── Desktop 1024px ─────────────────────── */
    @media (min-width: 1024px) {
      .navbar { height: 72px; padding: 0 48px; }
      .nav-links, .nav-right { display: flex; }
      .nav-toggle { display: none; }

      .hero-headline { font-size: 88px; }
      .hero-scroll-cue { display: flex; }

      .overview-grid { grid-template-columns: 1fr 1fr; gap: 60px; }

      .divisions-grid { grid-template-columns: repeat(3, 1fr); }

      .events-grid { grid-template-columns: repeat(3, 1fr); }

      .why-grid { grid-template-columns: repeat(4, 1fr); }

      .activities-grid { grid-template-columns: repeat(3, 1fr); }

      .testi-grid { grid-template-columns: repeat(3, 1fr); }

      .footer-grid { grid-template-columns: 1.6fr 1fr 1.4fr; }
      .footer-grid > *:last-child { grid-column: unset; }
    }

    /* ── Desktop Large 1200px ───────────────── */
    @media (min-width: 1200px) {
      .container { padding: 0 40px; }
      .navbar { padding: 0 60px; }
      section { padding: 100px 0; }
      .hero-headline { font-size: 104px; }
    }