/* ========================================
       CSS CUSTOM PROPERTIES
       ======================================== */
    :root {
      --ato-azure: #487FC0;
      --ato-gold: #FFAE3B;
      --ato-dark-blue: #2F6BA4;
      --ato-dark-gold: #D08735;
      --ato-night: #2D2C2C;
      --ato-grey: #D2D4D9;
      --ato-evergreen: #34543D;
      --ato-white: #FFFFFF;
      --ato-off-white: #FAF9F6;
      --ato-warm-white: #F8F7F4;

      --font-display: 'Cormorant Garamond', Georgia, serif;
      --font-body: 'DM Sans', system-ui, sans-serif;

      --section-padding: clamp(4rem, 8vw, 8rem);
      --container-max: 1200px;
      --transition-base: 0.3s ease;
    }

    /* ========================================
       RESET & BASE
       ======================================== */
    *, *::before, *::after {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    body {
      font-family: var(--font-body);
      color: var(--ato-night);
      background: var(--ato-off-white);
      line-height: 1.7;
      font-size: 16px;
      overflow-x: hidden;
    }

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

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

    h1, h2, h3, h4, h5 {
      font-family: var(--font-display);
      font-weight: 600;
      line-height: 1.2;
    }

    .container {
      max-width: var(--container-max);
      margin: 0 auto;
      padding: 0 clamp(1.25rem, 4vw, 2.5rem);
    }

    /* ========================================
       NAVIGATION
       ======================================== */
    .nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      padding: 1.5rem 0;
      transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .nav.scrolled {
      background: rgba(45, 44, 44, 0.95);
      padding: 0.6rem 0;
      box-shadow: 0 4px 30px rgba(0,0,0,0.25);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-bottom-color: rgba(255,255,255,0.05);
    }

    .nav-inner {
      max-width: 1320px;
      margin: 0 auto;
      padding: 0 clamp(1.25rem, 4vw, 2.5rem);
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }

    .nav-logo img {
      height: 32px;
      width: auto;
      transition: height 0.4s ease;
    }

    .nav.scrolled .nav-logo img {
      height: 28px;
    }

    .nav-logo-text {
      font-family: var(--font-display);
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--ato-white);
      letter-spacing: 0.04em;
    }

    .nav-divider {
      width: 1px;
      height: 20px;
      background: rgba(255,255,255,0.2);
      margin: 0 0.75rem;
    }

    .nav-chapter {
      font-family: var(--font-body);
      font-size: 0.65rem;
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.5);
      white-space: nowrap;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 0.1rem;
      list-style: none;
    }

    .nav-links a {
      color: rgba(255,255,255,0.75);
      font-size: 0.72rem;
      font-weight: 500;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 0.45rem 0.75rem;
      border-radius: 3px;
      transition: color var(--transition-base), background var(--transition-base);
      white-space: nowrap;
      position: relative;
    }

    .nav-links a:hover {
      color: var(--ato-white);
      background: rgba(255,255,255,0.08);
    }

    .nav-links a.active {
      color: var(--ato-white);
    }

    .nav-links a.active::after {
      content: '';
      position: absolute;
      bottom: 2px;
      left: 50%;
      transform: translateX(-50%);
      width: 14px;
      height: 2px;
      background: var(--ato-gold);
      border-radius: 1px;
    }

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 4px;
      z-index: 1001;
    }

    .hamburger span {
      display: block;
      width: 26px;
      height: 2px;
      background: var(--ato-white);
      transition: transform var(--transition-base), opacity var(--transition-base);
    }

    .hamburger.open span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }
    .hamburger.open span:nth-child(2) {
      opacity: 0;
    }
    .hamburger.open span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

    .mobile-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(47, 107, 164, 0.98);
      z-index: 999;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
    }

    .mobile-overlay.open {
      display: flex;
    }

    .mobile-overlay a {
      color: var(--ato-white);
      font-family: var(--font-display);
      font-size: 1.75rem;
      font-weight: 500;
      padding: 0.6rem 1.5rem;
      transition: color var(--transition-base);
    }

    .mobile-overlay a:hover {
      color: var(--ato-gold);
    }

    @media (max-width: 1023px) {
      .nav-links { display: none; }
      .hamburger { display: flex; }
    }

    /* ========================================
       HERO SECTION
       ======================================== */
    .hero {
      position: relative;
      height: 100vh;
      min-height: 640px;
      max-height: 1100px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      text-align: center;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      z-index: 0;
    }

    .hero-bg img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 35%;
      animation: hero-zoom 20s ease-out forwards;
    }

    @keyframes hero-zoom {
      from { transform: scale(1.08); }
      to { transform: scale(1); }
    }

    @media (max-width: 767px) {
      .hero {
        height: 85vh;
        min-height: 560px;
        max-height: 750px;
      }
      .hero-bg img {
        object-position: center center;
      }
      .hero-crest {
        width: 65px;
      }
      .hero h1 {
        font-size: 2.5rem;
      }
      .hero h1 em {
        font-size: 0.5em;
      }
      .hero-badge {
        font-size: 0.55rem;
        padding: 0.35rem 1rem;
      }
      .hero-sub {
        font-size: 0.9rem;
        padding: 0 0.5rem;
      }
      .hero-motto {
        font-size: 1rem;
        margin-top: 1.5rem;
      }
    }

    @media (max-width: 400px) {
      .hero {
        height: 80vh;
        min-height: 500px;
      }
      .hero h1 {
        font-size: 2rem;
      }
    }

    .hero-bg::after {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse at center 55%, rgba(45, 44, 44, 0.2) 0%, rgba(45, 44, 44, 0.5) 100%),
        linear-gradient(to top, rgba(45, 44, 44, 0.6) 0%, transparent 45%, rgba(45, 44, 44, 0.25) 100%);
    }

    .hero-content {
      position: relative;
      z-index: 1;
      padding: 0 clamp(1.5rem, 5vw, 4rem);
      max-width: 900px;
    }

    .hero-crest {
      width: 90px;
      height: auto;
      margin: 0 auto 1.5rem;
      display: block;
      filter: drop-shadow(0 2px 10px rgba(0,0,0,0.35));
    }

    .hero-badge {
      display: inline-block;
      font-family: var(--font-body);
      font-size: 0.65rem;
      font-weight: 600;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--ato-gold);
      border: 1px solid rgba(255, 174, 59, 0.5);
      padding: 0.45rem 1.5rem;
      margin-bottom: 1.75rem;
      background: rgba(0,0,0,0.2);
      text-shadow: 0 1px 4px rgba(0,0,0,0.4);
    }

    .hero h1 {
      font-size: clamp(3rem, 7vw, 5.5rem);
      color: var(--ato-white);
      font-weight: 700;
      line-height: 1.05;
      margin-bottom: 1.25rem;
      text-shadow: 0 2px 20px rgba(0,0,0,0.5), 0 1px 4px rgba(0,0,0,0.4);
    }

    .hero h1 em {
      font-style: italic;
      color: var(--ato-gold);
      font-weight: 500;
      display: block;
      font-size: 0.55em;
      margin-top: 0.15em;
      text-shadow: 0 2px 12px rgba(0,0,0,0.5);
    }

    .hero-rule {
      width: 48px;
      height: 2px;
      background: var(--ato-gold);
      margin: 0 auto 1.5rem;
      opacity: 0.6;
    }

    .hero-sub {
      font-size: clamp(1rem, 1.8vw, 1.15rem);
      color: rgba(255,255,255,0.85);
      font-weight: 400;
      max-width: 540px;
      margin: 0 auto;
      line-height: 1.7;
      text-shadow: 0 1px 8px rgba(0,0,0,0.4);
    }

    .hero-motto {
      margin-top: 2.5rem;
      font-family: var(--font-display);
      font-size: 1.25rem;
      font-style: italic;
      color: var(--ato-gold);
      letter-spacing: 0.06em;
      text-shadow: 0 1px 10px rgba(0,0,0,0.5);
    }

    .scroll-indicator {
      position: absolute;
      bottom: 2rem;
      left: 50%;
      transform: translateX(-50%);
      z-index: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
      color: rgba(255,255,255,0.5);
      font-size: 0.65rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      font-family: var(--font-body);
      animation: pulse-down 2s ease-in-out infinite;
    }

    .scroll-indicator svg {
      width: 20px;
      height: 20px;
      stroke: rgba(255,255,255,0.5);
    }

    @keyframes pulse-down {
      0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.5; }
      50% { transform: translateX(-50%) translateY(6px); opacity: 1; }
    }

    /* ========================================
       SECTION STYLES
       ======================================== */
    .section {
      padding: var(--section-padding) 0;
    }

    .section-label {
      font-family: var(--font-body);
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--ato-azure);
      margin-bottom: 0.75rem;
    }

    .section-heading {
      font-size: clamp(2rem, 4vw, 3.25rem);
      color: var(--ato-night);
      margin-bottom: 1.5rem;
      max-width: 700px;
    }

    .section-heading em {
      font-style: italic;
      color: var(--ato-dark-blue);
    }

    .section-body {
      font-size: 1.05rem;
      color: #555;
      max-width: 680px;
      line-height: 1.8;
    }

    .section-body p + p {
      margin-top: 1.25rem;
    }

    .bg-white { background: var(--ato-white); }
    .bg-off-white { background: var(--ato-off-white); }
    .bg-warm-white { background: var(--ato-warm-white); }
    .bg-dark { background: var(--ato-night); }
    .bg-blue { background: var(--ato-dark-blue); }

    /* ========================================
       ABOUT / STATS SECTION
       ======================================== */
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: clamp(2rem, 5vw, 4rem);
      align-items: start;
      margin-top: 3rem;
    }

    .about-img {
      border-radius: 4px;
      overflow: hidden;
      position: relative;
    }

    .about-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      aspect-ratio: 4/5;
    }

    .about-img::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 40%;
      background: linear-gradient(to top, rgba(47, 107, 164, 0.08), transparent);
      pointer-events: none;
    }

    .stats-strip {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
      gap: 1px;
      background: var(--ato-grey);
      margin-top: 3.5rem;
      border: 1px solid var(--ato-grey);
    }

    .stat-item {
      background: var(--ato-white);
      padding: 2rem 1.5rem;
      text-align: center;
    }

    .stat-number {
      font-family: var(--font-display);
      font-size: 2.25rem;
      font-weight: 700;
      color: var(--ato-dark-blue);
      line-height: 1;
      margin-bottom: 0.35rem;
    }

    .stat-label {
      font-size: 0.75rem;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: #888;
    }

    @media (max-width: 767px) {
      .about-grid {
        grid-template-columns: 1fr;
      }
      .about-img img {
        aspect-ratio: 16/10;
      }
    }

    /* ========================================
       PHOTO GALLERY (Brotherhood / Social)
       ======================================== */
    .gallery-intro {
      text-align: center;
      max-width: 640px;
      margin: 0 auto 3rem;
    }

    .gallery-intro .section-label,
    .gallery-intro .section-heading {
      text-align: center;
      margin-left: auto;
      margin-right: auto;
    }

    .photo-grid {
      display: grid;
      gap: 6px;
    }

    .photo-grid.brotherhood-grid {
      grid-template-columns: 2fr 1fr 1fr;
      grid-template-rows: 240px 240px;
      gap: 8px;
    }

    .photo-grid.brotherhood-grid .photo-item:nth-child(1) {
      grid-row: 1 / 3;
    }

    .photo-grid.social-grid {
      grid-template-columns: 1fr 1fr;
      grid-auto-rows: 350px;
      gap: 8px;
    }

    .photo-grid.social-grid .photo-item img {
      object-position: center center;
    }

    .photo-item {
      overflow: hidden;
      position: relative;
      border-radius: 2px;
    }

    .photo-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s ease;
    }

    .photo-item:hover img {
      transform: scale(1.04);
    }

    @media (max-width: 767px) {
      .photo-grid.brotherhood-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
        grid-auto-rows: 180px;
      }
      .photo-grid.brotherhood-grid .photo-item:nth-child(1) {
        grid-column: 1 / -1;
        grid-row: auto;
      }
      .photo-grid.social-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
        grid-auto-rows: 200px;
      }
    }

    /* ========================================
       PHILANTHROPY SECTION
       ======================================== */
    .philanthropy-section {
      background: var(--ato-off-white);
    }

    .philanthropy-section .section-label {
      color: var(--ato-evergreen);
    }

    .philanthropy-section .section-heading em {
      color: var(--ato-evergreen);
    }

    .philanthropy-hero {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: clamp(2rem, 5vw, 4rem);
      align-items: center;
      margin-top: 2.5rem;
    }

    .philanthropy-featured {
      border-radius: 4px;
      overflow: hidden;
      box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    }

    .philanthropy-featured img {
      width: 100%;
      aspect-ratio: 4/5;
      object-fit: cover;
    }

    .philanthropy-stats {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.5rem;
      margin-top: 2rem;
    }

    .philanthropy-stat {
      padding: 1.5rem;
      background: var(--ato-white);
      border-left: 3px solid var(--ato-evergreen);
    }

    .philanthropy-stat .stat-number {
      color: var(--ato-evergreen);
      font-size: 1.75rem;
    }

    .philanthropy-photos {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 6px;
      margin-top: 3rem;
    }

    .philanthropy-photos .photo-item {
      aspect-ratio: 4/3;
    }

    @media (max-width: 767px) {
      .philanthropy-hero {
        grid-template-columns: 1fr;
      }
      .philanthropy-stats {
        grid-template-columns: 1fr;
      }
      .philanthropy-photos {
        grid-template-columns: 1fr 1fr;
      }
    }

    /* ========================================
       CAREER SECTION
       ======================================== */
    .career-top {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: clamp(2rem, 5vw, 4rem);
      align-items: center;
      margin-top: 2.5rem;
    }

    .career-internship-img {
      border-radius: 4px;
      overflow: hidden;
      box-shadow: 0 6px 24px rgba(0,0,0,0.1);
    }

    .career-internship-img img {
      width: 100%;
      aspect-ratio: 1;
      object-fit: cover;
    }

    .career-portraits {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 8px;
      margin-top: 2.5rem;
    }

    .career-portraits .photo-item {
      aspect-ratio: 1;
      border-radius: 3px;
      overflow: hidden;
    }

    .career-portraits .photo-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s ease;
    }

    .career-portraits .photo-item:hover img {
      transform: scale(1.04);
    }

    @media (max-width: 767px) {
      .career-top {
        grid-template-columns: 1fr;
      }
      .career-portraits {
        grid-template-columns: 1fr 1fr;
      }
    }

    /* ========================================
       MEMBER INFO SECTION
       ======================================== */
    .member-cards {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
      margin-top: 2.5rem;
    }

    .member-card {
      padding: 2.25rem 2rem;
      min-height: 200px;
      display: flex;
      flex-direction: column;
    }

    .member-card h4 {
      font-size: 1.5rem;
      margin-bottom: 0.6rem;
    }

    .member-card p {
      flex: 1;
      font-size: 0.95rem;
    }

    @media (max-width: 600px) {
      .member-cards {
        grid-template-columns: 1fr;
      }
    }

    .member-card {
      background: var(--ato-white);
      border: 1px solid var(--ato-grey);
      border-top: 3px solid var(--ato-azure);
      padding: 2rem;
      transition: box-shadow var(--transition-base), transform var(--transition-base);
    }

    .member-card:hover {
      box-shadow: 0 4px 20px rgba(72, 127, 192, 0.1);
      transform: translateY(-2px);
    }

    .member-card-icon {
      width: 40px;
      height: 40px;
      background: rgba(72, 127, 192, 0.08);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.25rem;
      color: var(--ato-azure);
    }

    .member-card h4 {
      font-family: var(--font-display);
      font-size: 1.35rem;
      font-weight: 600;
      margin-bottom: 0.5rem;
      color: var(--ato-night);
    }

    .member-card p {
      font-size: 0.9rem;
      color: #777;
      line-height: 1.6;
    }

    .member-card a.card-link {
      display: inline-block;
      margin-top: 1rem;
      font-size: 0.8rem;
      font-weight: 600;
      color: var(--ato-azure);
      letter-spacing: 0.05em;
      text-transform: uppercase;
      border-bottom: 1px solid transparent;
      transition: border-color var(--transition-base);
    }

    .member-card a.card-link:hover {
      border-color: var(--ato-azure);
    }

    /* ========================================
       ALUMNI SECTION
       ======================================== */
    .alumni-section {
      background: var(--ato-warm-white);
    }

    /* Tab Switcher */
    .alumni-tabs {
      display: flex;
      justify-content: center;
      gap: 0;
      margin: 2.5rem 0 3rem;
      border-bottom: 1px solid var(--ato-grey);
      flex-wrap: wrap;
    }

    .alumni-tab {
      background: none;
      border: none;
      font-family: var(--font-body);
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: #999;
      padding: 1rem 2rem;
      cursor: pointer;
      position: relative;
      transition: color var(--transition-base);
      margin-bottom: -1px;
    }

    .alumni-tab:hover {
      color: var(--ato-dark-blue);
    }

    .alumni-tab.active {
      color: var(--ato-dark-blue);
    }

    .alumni-tab.active::after {
      content: '';
      position: absolute;
      bottom: -1px;
      left: 20%;
      right: 20%;
      height: 3px;
      background: var(--ato-gold);
    }

    .alumni-panel {
      display: none;
    }

    .alumni-panel.active {
      display: block;
      animation: panel-fade 0.5s ease;
    }

    @keyframes panel-fade {
      from { opacity: 0; transform: translateY(10px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /* Legends - Featured Editorial Layout */
    .legends-featured {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.25rem;
      margin-bottom: 1.25rem;
    }

    .legend-card {
      position: relative;
      overflow: hidden;
      cursor: pointer;
      background: var(--ato-night);
      transition: transform var(--transition-base);
    }

    .legend-card:hover {
      transform: translateY(-4px);
    }

    .legend-card.hero-legend {
      grid-column: 1 / -1;
      aspect-ratio: 21/9;
    }

    .legend-card:not(.hero-legend) {
      aspect-ratio: 4/5;
    }

    .legend-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.8s ease;
    }

    .legend-card:hover img {
      transform: scale(1.05);
    }

    .legend-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
      padding: 2rem;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      color: white;
    }

    .legend-card.hero-legend .legend-overlay {
      padding: 3rem;
    }

    .legend-badge {
      display: inline-block;
      font-family: var(--font-body);
      font-size: 0.6rem;
      font-weight: 600;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--ato-gold);
      margin-bottom: 0.75rem;
      align-self: flex-start;
      border-left: 2px solid var(--ato-gold);
      padding-left: 0.75rem;
    }

    .legend-name {
      font-family: var(--font-display);
      font-size: clamp(1.5rem, 3vw, 2.5rem);
      font-weight: 700;
      line-height: 1.1;
      margin-bottom: 0.5rem;
    }

    .legend-card.hero-legend .legend-name {
      font-size: clamp(2rem, 4.5vw, 3.75rem);
    }

    .legend-title {
      font-size: 0.85rem;
      font-weight: 500;
      color: rgba(255,255,255,0.85);
      line-height: 1.5;
      max-width: 500px;
    }

    .legend-bio {
      display: none;
      font-size: 0.85rem;
      color: rgba(255,255,255,0.9);
      margin-top: 0.75rem;
      line-height: 1.7;
      max-width: 600px;
    }

    .legend-card:hover .legend-bio,
    .legend-card.expanded .legend-bio {
      display: block;
    }

    .legends-row {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.25rem;
    }

    .legends-row .legend-card {
      aspect-ratio: 3/4;
    }

    @media (max-width: 900px) {
      .legends-featured {
        grid-template-columns: 1fr;
      }
      .legend-card.hero-legend {
        aspect-ratio: 16/10;
      }
      .legends-row {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 500px) {
      .legends-row {
        grid-template-columns: 1fr;
      }
    }

    /* Prominent Alumni - Original grid */
    .alumni-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
      gap: 1.5rem;
    }

    .alumni-card {
      background: var(--ato-white);
      border-top: 3px solid var(--ato-azure);
      overflow: hidden;
      transition: box-shadow var(--transition-base), transform var(--transition-base);
    }

    .alumni-card:hover {
      box-shadow: 0 6px 24px rgba(0,0,0,0.08);
      transform: translateY(-3px);
    }

    .alumni-photo {
      width: 100%;
      aspect-ratio: 4/3;
      background: linear-gradient(135deg, var(--ato-dark-blue), var(--ato-azure));
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .alumni-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 20%;
    }

    .alumni-info {
      padding: 1.75rem;
    }

    .alumni-info h4 {
      font-family: var(--font-display);
      font-size: 1.35rem;
      font-weight: 700;
      color: var(--ato-night);
      margin-bottom: 0.15rem;
    }

    .alumni-title {
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      color: var(--ato-dark-gold);
      margin-bottom: 0.75rem;
    }

    .alumni-info p {
      font-size: 0.9rem;
      color: #666;
      line-height: 1.7;
    }

    @media (max-width: 767px) {
      .alumni-grid {
        grid-template-columns: 1fr;
      }
      .alumni-tab {
        padding: 0.85rem 1.25rem;
        font-size: 0.72rem;
      }
    }

    /* ========================================
       RESOURCE MODAL
       ======================================== */
    .resource-modal {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(45, 44, 44, 0.85);
      z-index: 2000;
      align-items: center;
      justify-content: center;
      padding: 2rem 1.25rem;
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px);
      animation: modal-fade 0.3s ease;
    }

    .resource-modal.open {
      display: flex;
    }

    body.modal-open {
      overflow: hidden;
      position: fixed;
      width: 100%;
    }

    @keyframes modal-fade {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    .resource-modal-inner {
      background: var(--ato-white);
      width: 100%;
      max-width: 720px;
      max-height: 90vh;
      overflow-y: auto;
      border-radius: 4px;
      position: relative;
      box-shadow: 0 40px 80px rgba(0,0,0,0.35);
      animation: modal-scale 0.35s cubic-bezier(0.2, 0.9, 0.3, 1.2);
    }

    @keyframes modal-scale {
      from { transform: scale(0.95); opacity: 0; }
      to { transform: scale(1); opacity: 1; }
    }

    .resource-modal-header {
      background: linear-gradient(135deg, var(--ato-dark-blue) 0%, var(--ato-azure) 100%);
      padding: 2.5rem 2.5rem 2rem;
      color: white;
      position: relative;
    }

    .resource-modal-label {
      display: inline-block;
      font-family: var(--font-body);
      font-size: 0.65rem;
      font-weight: 600;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--ato-gold);
      margin-bottom: 0.75rem;
    }

    .resource-modal-header h3 {
      font-family: var(--font-display);
      font-size: 2rem;
      font-weight: 700;
      color: white;
      margin-bottom: 0.75rem;
      line-height: 1.15;
    }

    .resource-modal-header p {
      font-size: 0.95rem;
      color: rgba(255,255,255,0.85);
      line-height: 1.6;
      max-width: 520px;
    }

    .resource-modal-close {
      position: absolute;
      top: 1rem;
      right: 1rem;
      width: 36px;
      height: 36px;
      border: none;
      background: rgba(255,255,255,0.12);
      color: white;
      font-size: 1.25rem;
      cursor: pointer;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background var(--transition-base);
      z-index: 1;
    }

    .resource-modal-close:hover {
      background: rgba(255,255,255,0.25);
    }

    .resource-modal-body {
      padding: 2.5rem;
    }

    .resource-links {
      display: grid;
      gap: 0.85rem;
    }

    .resource-link {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      padding: 1.25rem;
      border: 1px solid var(--ato-grey);
      border-left: 3px solid var(--ato-azure);
      background: var(--ato-off-white);
      text-decoration: none;
      color: inherit;
      transition: background var(--transition-base), transform var(--transition-base), border-left-color var(--transition-base);
    }

    .resource-link:hover {
      background: var(--ato-white);
      border-left-color: var(--ato-gold);
      transform: translateX(3px);
    }

    .resource-link-icon {
      flex-shrink: 0;
      width: 40px;
      height: 40px;
      background: rgba(72, 127, 192, 0.1);
      border-radius: 6px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--ato-azure);
    }

    .resource-link-content {
      flex: 1;
    }

    .resource-link-content h5 {
      font-family: var(--font-display);
      font-size: 1.1rem;
      font-weight: 600;
      color: var(--ato-night);
      margin-bottom: 0.2rem;
    }

    .resource-link-content p {
      font-size: 0.85rem;
      color: #666;
      line-height: 1.5;
      margin: 0;
    }

    .resource-link-arrow {
      color: var(--ato-azure);
      flex-shrink: 0;
      align-self: center;
      transition: transform var(--transition-base);
    }

    .resource-link:hover .resource-link-arrow {
      transform: translateX(4px);
      color: var(--ato-gold);
    }

    .member-card[data-modal] {
      cursor: pointer;
    }

    /* ========================================
       CAMPUS LEGACY TAB
       ======================================== */
    .legacy-intro {
      text-align: center;
      max-width: 640px;
      margin: 0 auto 3rem;
    }

    .legacy-intro p {
      font-size: 1rem;
      color: #666;
      line-height: 1.7;
    }

    .legacy-featured {
      position: relative;
      overflow: hidden;
      border-radius: 4px;
      aspect-ratio: 21/9;
      margin-bottom: 1.5rem;
      cursor: pointer;
    }

    .legacy-featured img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.8s ease;
    }

    .legacy-featured:hover img {
      transform: scale(1.03);
    }

    .legacy-featured-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 3rem;
      color: white;
    }

    .legacy-featured-overlay .legacy-tag {
      display: inline-block;
      font-family: var(--font-body);
      font-size: 0.6rem;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--ato-gold);
      border-left: 2px solid var(--ato-gold);
      padding-left: 0.75rem;
      margin-bottom: 0.75rem;
      align-self: flex-start;
    }

    .legacy-featured-overlay h3 {
      font-family: var(--font-display);
      font-size: clamp(1.75rem, 3.5vw, 2.75rem);
      font-weight: 700;
      color: white;
      line-height: 1.1;
      margin-bottom: 0.5rem;
    }

    .legacy-featured-overlay p {
      font-size: 0.95rem;
      color: rgba(255,255,255,0.8);
      max-width: 600px;
      line-height: 1.6;
    }

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

    .legacy-card {
      position: relative;
      overflow: hidden;
      border-radius: 3px;
      cursor: pointer;
      background: var(--ato-night);
      aspect-ratio: 4/3;
    }

    .legacy-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.7s ease, opacity 0.4s ease;
      opacity: 0.85;
    }

    .legacy-card:hover img {
      transform: scale(1.05);
      opacity: 1;
    }

    .legacy-card-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 1.25rem;
      color: white;
    }

    .legacy-card-overlay .legacy-tag {
      font-family: var(--font-body);
      font-size: 0.55rem;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--ato-gold);
      margin-bottom: 0.3rem;
    }

    .legacy-card-overlay h4 {
      font-family: var(--font-display);
      font-size: 1.2rem;
      font-weight: 700;
      color: white;
      line-height: 1.15;
      margin-bottom: 0.3rem;
    }

    .legacy-card-overlay p {
      font-size: 0.8rem;
      color: rgba(255,255,255,0.7);
      line-height: 1.5;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .legacy-card:hover .legacy-card-overlay p {
      -webkit-line-clamp: unset;
    }

    .legacy-card-detail {
      display: none;
      font-size: 0.78rem;
      color: rgba(255,255,255,0.6);
      margin-top: 0.35rem;
      line-height: 1.5;
    }

    .legacy-card:hover .legacy-card-detail {
      display: block;
    }

    @media (max-width: 900px) {
      .legacy-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .legacy-featured {
        aspect-ratio: 16/9;
      }
    }

    @media (max-width: 500px) {
      .legacy-grid {
        grid-template-columns: 1fr;
      }
      .legacy-featured-overlay {
        padding: 1.5rem;
      }
    }

    /* Alumni Network / BOT Modal */
    .resource-modal.bot-modal .resource-modal-inner {
      max-width: 920px;
    }

    .bot-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 0.85rem;
      padding: 2rem 2.5rem 2.5rem;
    }

    .bot-card {
      display: flex;
      gap: 0.85rem;
      align-items: flex-start;
      padding: 1rem;
      border: 1px solid var(--ato-grey);
      border-left: 3px solid var(--ato-azure);
      background: var(--ato-white);
      transition: border-left-color var(--transition-base), box-shadow var(--transition-base);
    }

    .bot-card:hover {
      border-left-color: var(--ato-gold);
      box-shadow: 0 3px 12px rgba(0,0,0,0.06);
    }

    .bot-card.chairman {
      grid-column: 1 / -1;
      border-left-color: var(--ato-gold);
      background: linear-gradient(135deg, rgba(72, 127, 192, 0.04), rgba(255, 174, 59, 0.04));
      padding: 1.25rem;
    }

    .bot-photo {
      flex-shrink: 0;
      width: 56px;
      height: 56px;
      border-radius: 50%;
      overflow: hidden;
      background: linear-gradient(135deg, var(--ato-dark-blue), var(--ato-azure));
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255,255,255,0.35);
      font-family: var(--font-display);
      font-size: 1.1rem;
      font-weight: 700;
    }

    .bot-card.chairman .bot-photo {
      width: 72px;
      height: 72px;
      font-size: 1.4rem;
    }

    .bot-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .bot-info {
      flex: 1;
      min-width: 0;
    }

    .bot-role {
      font-family: var(--font-body);
      font-size: 0.6rem;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--ato-dark-gold);
      margin-bottom: 0.15rem;
    }

    .bot-name {
      font-family: var(--font-display);
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--ato-night);
      line-height: 1.2;
    }

    .bot-card.chairman .bot-name {
      font-size: 1.35rem;
    }

    .bot-meta {
      font-size: 0.78rem;
      color: #888;
      margin-top: 0.2rem;
      line-height: 1.4;
    }

    .bot-contact {
      display: flex;
      gap: 0.75rem;
      margin-top: 0.5rem;
      flex-wrap: wrap;
    }

    .bot-contact a {
      font-size: 0.78rem;
      color: var(--ato-azure);
      display: inline-flex;
      align-items: center;
      gap: 0.25rem;
      transition: color var(--transition-base);
    }

    .bot-contact a:hover {
      color: var(--ato-dark-gold);
    }

    .bot-contact svg {
      width: 12px;
      height: 12px;
      flex-shrink: 0;
    }

    @media (max-width: 700px) {
      .bot-grid {
        grid-template-columns: 1fr;
        padding: 1.25rem;
      }
      .bot-card.chairman { grid-column: auto; }
    }

    /* Leadership Modal */
    .resource-modal.leadership-modal .resource-modal-inner {
      max-width: 880px;
    }

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

    .leader-card {
      background: var(--ato-white);
      border: 1px solid var(--ato-grey);
      border-left: 3px solid var(--ato-azure);
      padding: 1.25rem;
      display: flex;
      gap: 1rem;
      align-items: flex-start;
      transition: border-left-color var(--transition-base), box-shadow var(--transition-base);
    }

    .leader-card:hover {
      border-left-color: var(--ato-gold);
      box-shadow: 0 4px 14px rgba(0,0,0,0.06);
    }

    .leader-card.featured {
      grid-column: 1 / -1;
      border-left-color: var(--ato-gold);
      background: linear-gradient(135deg, rgba(72, 127, 192, 0.04), rgba(255, 174, 59, 0.04));
    }

    .leader-photo {
      flex-shrink: 0;
      width: 72px;
      height: 72px;
      border-radius: 50%;
      overflow: hidden;
      background: linear-gradient(135deg, var(--ato-dark-blue), var(--ato-azure));
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255,255,255,0.4);
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 1.5rem;
      letter-spacing: 0.05em;
      border: 2px solid var(--ato-white);
      box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    }

    .leader-card.featured .leader-photo {
      width: 88px;
      height: 88px;
      font-size: 1.75rem;
    }

    .leader-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .leader-info {
      flex: 1;
      min-width: 0;
    }

    .leader-role {
      font-family: var(--font-body);
      font-size: 0.62rem;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--ato-dark-gold);
      margin-bottom: 0.25rem;
    }

    .leader-card.featured .leader-role {
      color: var(--ato-dark-gold);
    }

    .leader-name {
      font-family: var(--font-display);
      font-size: 1.2rem;
      font-weight: 700;
      color: var(--ato-night);
      margin-bottom: 0.6rem;
      line-height: 1.15;
    }

    .leader-card.featured .leader-name {
      font-size: 1.5rem;
    }

    .leader-contact {
      display: flex;
      flex-direction: column;
      gap: 0.3rem;
    }

    .leader-contact a {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      font-size: 0.82rem;
      color: #555;
      transition: color var(--transition-base);
      word-break: break-word;
    }

    .leader-contact a:hover {
      color: var(--ato-dark-blue);
    }

    .leader-contact svg {
      flex-shrink: 0;
      width: 13px;
      height: 13px;
      opacity: 0.7;
      color: var(--ato-azure);
    }

    @media (max-width: 700px) {
      .leadership-grid {
        grid-template-columns: 1fr;
        padding: 1.5rem 1.25rem;
      }
      .leader-card.featured {
        grid-column: auto;
      }
    }

    /* Bylaws Modal - larger, document-style */
    .resource-modal.bylaws-modal .resource-modal-inner {
      max-width: 960px;
    }

    .bylaws-layout {
      display: grid;
      grid-template-columns: 240px 1fr;
      min-height: 500px;
    }

    .bylaws-toc {
      background: var(--ato-warm-white);
      border-right: 1px solid var(--ato-grey);
      padding: 1.75rem 1.25rem;
      position: sticky;
      top: 0;
      max-height: calc(90vh - 200px);
      overflow-y: auto;
    }

    .bylaws-toc-label {
      font-family: var(--font-body);
      font-size: 0.65rem;
      font-weight: 600;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--ato-azure);
      margin-bottom: 1rem;
      display: block;
    }

    .bylaws-toc ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .bylaws-toc a {
      display: block;
      padding: 0.5rem 0.75rem;
      font-family: var(--font-body);
      font-size: 0.82rem;
      color: #666;
      border-left: 2px solid transparent;
      transition: color var(--transition-base), border-color var(--transition-base), background var(--transition-base);
      line-height: 1.4;
    }

    .bylaws-toc a:hover,
    .bylaws-toc a.active {
      color: var(--ato-dark-blue);
      border-left-color: var(--ato-gold);
      background: rgba(72, 127, 192, 0.05);
    }

    .bylaws-content {
      padding: 2.5rem 2.75rem;
      overflow-y: auto;
      max-height: calc(90vh - 200px);
    }

    .bylaws-preamble {
      padding: 1.75rem;
      background: linear-gradient(135deg, rgba(72, 127, 192, 0.05), rgba(255, 174, 59, 0.05));
      border-left: 3px solid var(--ato-gold);
      margin-bottom: 2.5rem;
      font-family: var(--font-display);
      font-style: italic;
      color: #555;
      line-height: 1.75;
      font-size: 0.95rem;
    }

    .bylaws-preamble strong {
      color: var(--ato-dark-blue);
      font-style: normal;
      font-weight: 600;
    }

    .bylaws-revised {
      text-align: center;
      font-family: var(--font-body);
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--ato-dark-gold);
      margin-bottom: 2rem;
    }

    .bylaws-article {
      margin-bottom: 3rem;
      scroll-margin-top: 20px;
    }

    .bylaws-article-header {
      border-bottom: 2px solid var(--ato-gold);
      padding-bottom: 0.75rem;
      margin-bottom: 1.5rem;
    }

    .bylaws-article-number {
      font-family: var(--font-body);
      font-size: 0.65rem;
      font-weight: 700;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--ato-dark-gold);
      display: block;
      margin-bottom: 0.25rem;
    }

    .bylaws-article h3 {
      font-family: var(--font-display);
      font-size: 1.85rem;
      font-weight: 700;
      color: var(--ato-dark-blue);
      line-height: 1.15;
    }

    .bylaws-section {
      margin-bottom: 1.5rem;
    }

    .bylaws-section h4 {
      font-family: var(--font-display);
      font-size: 1rem;
      font-weight: 700;
      color: var(--ato-night);
      margin-bottom: 0.5rem;
      letter-spacing: 0.02em;
    }

    .bylaws-section h4 .bylaws-section-num {
      display: inline-block;
      font-family: var(--font-body);
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--ato-azure);
      background: rgba(72, 127, 192, 0.08);
      padding: 0.15rem 0.55rem;
      border-radius: 2px;
      margin-right: 0.6rem;
      vertical-align: middle;
    }

    .bylaws-section p {
      font-size: 0.92rem;
      color: #555;
      line-height: 1.7;
      margin-bottom: 0.6rem;
    }

    .bylaws-section ol,
    .bylaws-section ul {
      margin: 0.6rem 0 0.6rem 1.5rem;
    }

    .bylaws-section li {
      font-size: 0.92rem;
      color: #555;
      line-height: 1.7;
      margin-bottom: 0.35rem;
    }

    .bylaws-officer-list {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.5rem 1rem;
      margin: 0.75rem 0 0.75rem 0;
      padding: 1rem 1.25rem;
      background: var(--ato-off-white);
      border-radius: 2px;
    }

    .bylaws-officer-list span {
      font-size: 0.88rem;
      color: #444;
      padding: 0.15rem 0;
    }

    .bylaws-officer-list .num {
      color: var(--ato-dark-gold);
      font-weight: 700;
      font-family: var(--font-display);
      margin-right: 0.35rem;
    }

    /* Custom scrollbar for bylaws */
    .bylaws-content::-webkit-scrollbar,
    .bylaws-toc::-webkit-scrollbar {
      width: 6px;
    }

    .bylaws-content::-webkit-scrollbar-track,
    .bylaws-toc::-webkit-scrollbar-track {
      background: transparent;
    }

    .bylaws-content::-webkit-scrollbar-thumb,
    .bylaws-toc::-webkit-scrollbar-thumb {
      background: var(--ato-grey);
      border-radius: 3px;
    }

    .bylaws-content::-webkit-scrollbar-thumb:hover,
    .bylaws-toc::-webkit-scrollbar-thumb:hover {
      background: var(--ato-azure);
    }

    @media (max-width: 767px) {
      .bylaws-layout {
        grid-template-columns: 1fr;
      }
      .bylaws-toc {
        border-right: none;
        border-bottom: 1px solid var(--ato-grey);
        position: static;
        max-height: 200px;
      }
      .bylaws-content {
        padding: 1.5rem 1.25rem;
      }
      .bylaws-officer-list {
        grid-template-columns: 1fr;
      }
    }

    /* ========================================
       ATO FOR LIFE SECTION
       ======================================== */
    .forlife-section {
      background: var(--ato-night);
      color: rgba(255,255,255,0.85);
      position: relative;
      overflow: hidden;
    }

    .forlife-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at top right, rgba(72, 127, 192, 0.15) 0%, transparent 60%);
      pointer-events: none;
    }

    .forlife-header {
      text-align: center;
      max-width: 720px;
      margin: 0 auto 4rem;
      position: relative;
      z-index: 1;
    }

    .forlife-header .section-label {
      color: var(--ato-gold);
    }

    .forlife-header h2 {
      font-family: var(--font-display);
      font-size: clamp(2.25rem, 4.5vw, 3.5rem);
      color: var(--ato-white);
      margin-bottom: 1.25rem;
      line-height: 1.1;
    }

    .forlife-header h2 em {
      font-style: italic;
      color: var(--ato-gold);
    }

    .forlife-header .section-divider {
      margin: 1rem auto 1.5rem;
    }

    .forlife-header p {
      font-size: 1.05rem;
      color: rgba(255,255,255,0.65);
      line-height: 1.75;
      max-width: 620px;
      margin: 0 auto;
    }

    .forlife-grid {
      display: grid;
      grid-template-columns: 1.05fr 1fr;
      gap: clamp(2rem, 4vw, 4rem);
      align-items: center;
      position: relative;
      z-index: 1;
      margin-bottom: 4rem;
    }

    .forlife-carousel {
      position: relative;
      border-radius: 4px;
      overflow: hidden;
      box-shadow: 0 20px 60px rgba(0,0,0,0.4);
      aspect-ratio: 4/3;
      background: var(--ato-night);
    }

    .carousel-track {
      position: relative;
      width: 100%;
      height: 100%;
    }

    .carousel-slide {
      position: absolute;
      inset: 0;
      opacity: 0;
      transition: opacity 0.7s ease;
      pointer-events: none;
    }

    .carousel-slide.active {
      opacity: 1;
      pointer-events: auto;
    }

    .carousel-slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .carousel-caption {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
      padding: 2.5rem 1.75rem 1.5rem;
      color: white;
    }

    .carousel-caption .caption-year {
      font-family: var(--font-body);
      font-size: 0.65rem;
      font-weight: 600;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--ato-gold);
      margin-bottom: 0.4rem;
    }

    .carousel-caption .caption-title {
      font-family: var(--font-display);
      font-size: 1.4rem;
      font-weight: 600;
      color: white;
      margin-bottom: 0.3rem;
      line-height: 1.2;
    }

    .carousel-caption .caption-desc {
      font-size: 0.85rem;
      color: rgba(255,255,255,0.75);
      line-height: 1.5;
      max-width: 520px;
    }

    .carousel-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: rgba(255,255,255,0.12);
      border: 1px solid rgba(255,255,255,0.25);
      backdrop-filter: blur(8px);
      color: white;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 3;
      transition: background var(--transition-base), transform var(--transition-base);
    }

    .carousel-arrow:hover {
      background: rgba(255, 174, 59, 0.9);
      transform: translateY(-50%) scale(1.05);
    }

    .carousel-arrow.prev {
      left: 1rem;
    }

    .carousel-arrow.next {
      right: 1rem;
    }

    .carousel-dots {
      position: absolute;
      top: 1rem;
      right: 1rem;
      display: flex;
      gap: 0.5rem;
      z-index: 3;
    }

    .carousel-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: rgba(255,255,255,0.35);
      border: none;
      cursor: pointer;
      padding: 0;
      transition: background var(--transition-base), width var(--transition-base);
    }

    .carousel-dot.active {
      background: var(--ato-gold);
      width: 24px;
      border-radius: 4px;
    }

    .carousel-counter {
      position: absolute;
      bottom: 1rem;
      right: 1rem;
      font-family: var(--font-body);
      font-size: 0.7rem;
      font-weight: 500;
      letter-spacing: 0.15em;
      color: rgba(255,255,255,0.7);
      z-index: 3;
      background: rgba(0,0,0,0.35);
      padding: 0.35rem 0.65rem;
      border-radius: 2px;
      backdrop-filter: blur(6px);
    }

    .forlife-text h3 {
      font-family: var(--font-display);
      font-size: 1.75rem;
      color: var(--ato-white);
      margin-bottom: 1.25rem;
      line-height: 1.2;
    }

    .forlife-text h3 em {
      font-style: italic;
      color: var(--ato-gold);
    }

    .forlife-text p {
      font-size: 0.98rem;
      line-height: 1.8;
      color: rgba(255,255,255,0.7);
    }

    .forlife-text p + p {
      margin-top: 1rem;
    }

    .forlife-benefits {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.5rem;
      position: relative;
      z-index: 1;
    }

    .benefit-card {
      padding: 2rem 1.5rem;
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.08);
      border-top: 2px solid var(--ato-gold);
      transition: background var(--transition-base), transform var(--transition-base);
    }

    .benefit-card:hover {
      background: rgba(255,255,255,0.06);
      transform: translateY(-3px);
    }

    .benefit-number {
      font-family: var(--font-display);
      font-size: 2rem;
      font-weight: 700;
      color: var(--ato-gold);
      line-height: 1;
      margin-bottom: 0.75rem;
      display: block;
    }

    .benefit-card h4 {
      font-family: var(--font-display);
      font-size: 1.2rem;
      font-weight: 600;
      color: var(--ato-white);
      margin-bottom: 0.6rem;
    }

    .benefit-card p {
      font-size: 0.88rem;
      color: rgba(255,255,255,0.6);
      line-height: 1.65;
    }

    @media (max-width: 900px) {
      .forlife-grid {
        grid-template-columns: 1fr;
      }
      .forlife-benefits {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 500px) {
      .forlife-benefits {
        grid-template-columns: 1fr;
      }
    }

    /* ========================================
       FOOTER
       ======================================== */
    .footer {
      background: var(--ato-night);
      color: rgba(255,255,255,0.7);
      padding: clamp(3rem, 6vw, 5rem) 0 2rem;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: clamp(2rem, 4vw, 3rem);
      margin-bottom: 3rem;
    }

    .footer-brand .nav-logo-text {
      font-size: 1.75rem;
      margin-bottom: 0.5rem;
      display: block;
    }

    .footer-tagline {
      font-family: var(--font-display);
      font-size: 1.1rem;
      font-style: italic;
      color: var(--ato-gold);
      margin-bottom: 1rem;
    }

    .footer-brand p {
      font-size: 0.9rem;
      line-height: 1.6;
      max-width: 320px;
    }

    .footer h5 {
      font-family: var(--font-body);
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--ato-white);
      margin-bottom: 1.25rem;
    }

    .footer ul {
      list-style: none;
    }

    .footer ul li + li {
      margin-top: 0.6rem;
    }

    .footer ul a {
      font-size: 0.9rem;
      transition: color var(--transition-base);
    }

    .footer ul a:hover {
      color: var(--ato-gold);
    }

    .footer-social {
      display: flex;
      gap: 1rem;
      margin-top: 1rem;
    }

    .footer-social a {
      width: 36px;
      height: 36px;
      border: 1px solid rgba(255,255,255,0.2);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: border-color var(--transition-base), background var(--transition-base);
    }

    .footer-social a:hover {
      border-color: var(--ato-gold);
      background: rgba(255, 174, 59, 0.1);
    }

    .footer-social svg {
      width: 16px;
      height: 16px;
      fill: rgba(255,255,255,0.7);
    }

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

    @media (max-width: 767px) {
      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }
      .footer-brand {
        grid-column: 1 / -1;
      }
    }

    @media (max-width: 480px) {
      .footer-grid {
        grid-template-columns: 1fr;
      }
    }

    /* ========================================
       SECTION DIVIDER
       ======================================== */
    .section-divider {
      width: 48px;
      height: 2px;
      background: var(--ato-gold);
      margin: 1rem 0 1.5rem;
    }

    /* ========================================
       LIGHTBOX
       ======================================== */
    .lightbox {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(45, 44, 44, 0.95);
      z-index: 2000;
      align-items: center;
      justify-content: center;
      cursor: zoom-out;
      padding: 2rem;
    }

    .lightbox.open {
      display: flex;
    }

    .lightbox img {
      max-width: 90vw;
      max-height: 90vh;
      object-fit: contain;
      border-radius: 2px;
    }

    .lightbox-close {
      position: absolute;
      top: 1.5rem;
      right: 1.5rem;
      width: 40px;
      height: 40px;
      border: none;
      background: rgba(255,255,255,0.1);
      color: white;
      font-size: 1.5rem;
      cursor: pointer;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background var(--transition-base);
    }

    .lightbox-close:hover {
      background: rgba(255,255,255,0.2);
    }

    /* ========================================
       ANIMATIONS
       ======================================== */
    .fade-in {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }

    .fade-in.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ========================================
       BACK TO TOP
       ======================================== */
    .back-to-top {
      position: fixed;
      bottom: 2rem;
      right: 2rem;
      width: 44px;
      height: 44px;
      background: var(--ato-azure);
      color: white;
      border: none;
      border-radius: 50%;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      transition: opacity var(--transition-base), background var(--transition-base);
      z-index: 500;
      box-shadow: 0 2px 12px rgba(72, 127, 192, 0.3);
    }

    .back-to-top.visible {
      opacity: 1;
      pointer-events: auto;
    }

    .back-to-top:hover {
      background: var(--ato-dark-blue);
    }
  </style>
