    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    :root {
      --primary: #00163a;
      --primary-container: #0b2a5b;
      --on-primary: #ffffff;
      --secondary: #775a1a;
      --secondary-fixed: #ffdea3;
      --secondary-fixed-dim: #e8c177;
      --heritage-gold: #C8A45D;
      --background: #faf8fe;
      --surface: #faf8fe;
      --surface-container: #efedf2;
      --surface-container-low: #f4f3f8;
      --on-surface: #1a1b1f;
      --on-surface-variant: #44474f;
      --outline: #747780;
      --outline-variant: #c4c6d0;
      --error: #ba1a1a;

      --ff: 'Montserrat', sans-serif;
      --section-gap: 120px;
      --margin-desktop: 80px;
      --margin-mobile: 24px;
      --gutter: 32px;
      --max-w: 1440px;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: var(--ff);
      background: var(--background);
      color: var(--on-surface);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }

    img {
      display: block;
      max-width: 100%;
    }

    a {
      text-decoration: none;
    }

    ul {
      list-style: none;
    }

    .container {
      max-width: var(--max-w);
      margin-inline: auto;
    }

    .section-pad {
      padding-block: var(--section-gap);
      padding-inline: var(--margin-desktop);
    }

    .gold-line {
      background: var(--heritage-gold);
    }

    .label-caps {
      font-size: 12px;
      font-weight: 600;
      letter-spacing: .2em;
      line-height: 1;
      text-transform: uppercase;
    }

    .display-lg {
      font-size: clamp(36px, 6vw, 64px);
      font-weight: 700;
      line-height: 1.1;
      letter-spacing: -.02em;
    }

    .display-md {
      font-size: clamp(28px, 4vw, 48px);
      font-weight: 700;
      line-height: 1.2;
      letter-spacing: -.01em;
    }

    .body-lg {
      font-size: 18px;
      line-height: 1.8;
    }

    .body-md {
      font-size: 16px;
      line-height: 1.6;
    }

    .heritage-border {
      border: 1px solid var(--heritage-gold);
    }

    /* Hide scrollbar on mobile only */



    .hero {
      position: relative;
      height: 100svh;
      min-height: 560px;
      display: flex;
      align-items: end;
      justify-content: center;
      overflow: hidden;
      background: var(--primary);
    }

    .hero-bg {
      position: absolute;
      inset: 0;
    }

    .hero-bg img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top;
      opacity: .6;
      /* filter: grayscale(1); */
    }

    .hero-bg-grad {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, var(--primary) 0%, rgba(0, 22, 58, .6) 50%, transparent 100%);
    }

    .hero-content {
      position: relative;
      z-index: 2;
      text-align: center;
      padding-inline: var(--margin-mobile);
      max-width: 900px;
      padding-bottom: 60px;
    }

    .hero-title {
      color: #fff;
      text-transform: uppercase;
      font-size: clamp(36px, 7vw, 48px);
      font-weight: 700;
      line-height: 1.08;
      letter-spacing: -.02em;
      margin-bottom: 24px;
    }

    .hero-title .gold {
      color: var(--heritage-gold);
    }

    .hero-sub {
      font-size: clamp(15px, 2vw, 16px);
      font-weight: 500;
      letter-spacing: .1em;
      color: rgba(255, 255, 255, .82);
      font-style: italic;
      max-width: 640px;
      margin-inline: auto;
    }

    .hero-dates {
      margin-top: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 20px;
    }

    .hero-dates .line {
      width: 80px;
      height: 1px;
      background: var(--heritage-gold);
    }

    .hero-dates span {
      font-size: 12px;
      font-weight: 600;
      letter-spacing: .3em;
      color: var(--heritage-gold);
    }

    .hero-scroll {
      position: absolute;
      bottom: 32px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 2;
      animation: bounce 2s infinite;
      color: rgba(255, 255, 255, .7);
      font-size: 36px;
      line-height: 1;
    }

    .hero-scroll svg {
      width: 36px;
      height: 36px;
      stroke: var(--heritage-gold);
      fill: none;
    }

    @keyframes bounce {

      0%,
      100% {
        transform: translateX(-50%) translateY(0);
      }

      50% {
        transform: translateX(-50%) translateY(8px);
      }
    }


    .years-section {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }

    @media screen and (min-width: 768px) {
      .years-section {
        height: 100vh;
      }
    }

    @media screen and (max-width: 768px) {
      .years-section {
        padding-block: var(--section-gap);
        padding-inline: var(--margin-desktop);
      }
    }

    .years-grid {
      max-width: var(--max-w);
      margin-inline: auto;
      display: grid;
      grid-template-columns: 5fr 6fr;
      gap: var(--gutter);
      align-items: center;
    }

    .years-img-wrap {
      position: relative;
    }

    .years-img-frame {
      border: 1px solid var(--heritage-gold);
      padding: 14px;
    }

    .years-img-frame img {
      width: 100%;
      aspect-ratio: 4/5;
      object-fit: cover;
      object-position: top;
      filter: grayscale(1);
      transition: filter .7s;
      height: calc(100vh - 20vh);
    }

    .years-img-frame img:hover {
      filter: grayscale(0);
    }

    .years-badge {
      position: absolute;
      bottom: -28px;
      right: -28px;
      background: var(--primary);
      padding: 28px 32px;
      box-shadow: 0 8px 32px rgba(0, 0, 0, .3);
    }

    .years-badge-year {
      font-size: 40px;
      font-weight: 700;
      color: var(--heritage-gold);
      line-height: 1;
    }

    .years-badge-label {
      font-size: 10px;
      font-weight: 600;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .7);
      margin-top: 6px;
      text-align: right;
    }

    .years-content {
      padding: 24px 0;
    }

    .years-heading {
      color: var(--primary);
      margin-bottom: 36px;
      border-left: 4px solid var(--heritage-gold);
      padding-left: 24px;
    }

    .years-heading span {
      display: block;
      font-size: clamp(16px, 1.8vw, 22px);
      font-weight: 400;
      color: var(--on-surface-variant);
      margin-top: 6px;
    }

    .years-body p {
      color: var(--on-surface-variant);
      margin-bottom: 16px;
      font-size: 17px;
      line-height: 1.8;
    }



    .timeline-section {
      padding-block: var(--section-gap);
      background: var(--primary);
      overflow: hidden;
    }

    .timeline-header {
      text-align: center;
      padding-inline: var(--margin-desktop);
      margin-bottom: 60px;
    }

    .timeline-header h2 {
      color: var(--heritage-gold);
    }

    .timeline-header .accent-line {
      width: 64px;
      height: 4px;
      background: var(--heritage-gold);
      margin: 20px auto 0;
    }

    .timeline-track-wrap {
      position: relative;
      margin-inline: var(--margin-desktop);
      overflow-x: auto;
      cursor: grab;
    }

    #timelineItems {
      padding-bottom: 0px;
    }

    /* @media screen and (min-width:1474px) {
      .timeline-track-wrap {
        max-width: max-content;
        justify-self: center;
      }
    } */

    @media screen and (min-width:6300px) {
      .timeline-track-wrap {
        max-width: max-content;
        justify-self: center;
      }
    }

    .timeline-track-wrap:active {
      cursor: grabbing;
    }

    .timeline-track-wrap::before {
      content: none;
      /* disabled — line is now on the track itself */
    }

    .timeline-track::before {
      content: '';
      position: absolute;
      top: 11px;
      /* vertically centers on the 22px dot */
      left: 0;
      right: 0;
      height: 1px;
      background: rgba(200, 164, 93, .3);
      pointer-events: none;
    }

    .timeline-track {
      display: flex;
      gap: 164px;
      padding-bottom: 30px;
      user-select: none;
      width: max-content;
      position: relative;
    }

    .timeline-item {
      flex-shrink: 0;
      width: 200px;
      text-align: center;
    }

    .timeline-dot {
      width: 22px;
      height: 22px;
      background: var(--heritage-gold);
      /* border: 4px solid var(--primary); */
      margin: 0 auto 32px;
      transition: transform .3s;
    }

    .timeline-item:hover .timeline-dot {
      transform: scale(1.5);
    }

    .timeline-year {
      font-size: 28px;
      font-weight: 700;
      color: rgba(200, 164, 93, .5);
      display: block;
      margin-bottom: 8px;
      transition: color .3s;
    }

    .timeline-item:hover .timeline-year {
      color: var(--heritage-gold);
    }

    .timeline-label {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: .15em;
      text-transform: uppercase;
      color: #fff;
    }


    .builder-section {
      padding-block: var(--section-gap);
      padding-inline: var(--margin-desktop);
      background: #fff;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }

    @media screen and (min-width: 768px) {
      .builder-section {
        height: 100vh;
      }
    }

    @media screen and (max-width: 768px) {
      .builder-section {
        padding-block: var(--section-gap);
      }
    }


    .builder-section h2 {
      text-align: center;
      color: var(--primary);
      margin-bottom: 40px;
    }

    .builder-grid {
      max-width: var(--max-w);
      margin-inline: auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4px;
    }

    .builder-card {
      position: relative;
      height: 500px;
      overflow: hidden;
      border: 1px solid var(--heritage-gold);
      background: var(--primary);
    }

    .builder-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: .5;
      transition: opacity .5s;
    }

    .builder-card:hover img {
      opacity: .3;
    }

    .builder-card-body {
      position: absolute;
      inset: 0;
      padding: 40px;
      display: flex;
      flex-direction: column;
      /* justify-content: flex-end; */
      margin-top: 55%;

      animation: slideUpFade 0.5s cubic-bezier(0.2, 0.9, 0.4, 1.1) forwards;
    }

    .builder-card-body .cat {
      font-size: 10px;
      font-weight: 800;
      letter-spacing: .3em;
      text-transform: uppercase;
      color: var(--heritage-gold);
      margin-bottom: 12px;
    }

    .builder-card-body h3 {
      font-size: clamp(20px, 2.5vw, 36px);
      font-weight: 700;
      color: #fff;
      margin-bottom: 16px;
    }

    .builder-card-body p {
      display: none;
      color: rgba(255, 255, 255, .8);
      font-size: 15px;
      line-height: 1.7;
      max-width: 400px;
    }

    .builder-card:hover .builder-card-body p {
      display: block;
      animation: slideUpFade 0.5s cubic-bezier(0.2, 0.9, 0.4, 1.1) forwards;
    }

    .builder-card:hover .builder-card-body {
      margin-top: 0% !important;
      justify-content: flex-end;
      animation: slideUpFade 0.5s cubic-bezier(0.2, 0.9, 0.4, 1.1) forwards;
      transform: translateY(0);
    }

    @keyframes slideUpFade {
      0% {
        opacity: 0;
        transform: translateY(20px);
      }

      100% {
        opacity: 1;
        transform: translateY(0);
      }
    }



    .platinum-section {
      padding-block: var(--section-gap);
      padding-inline: var(--margin-desktop);
      background: #fff;
      background-image: url("https://www.transparenttextures.com/patterns/felt.png");
    }

    .platinum-inner {
      max-width: 809px;
      margin-inline: auto;
      text-align: center;
    }

    .platinum-inner .eyebrow {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: .5em;
      text-transform: uppercase;
      color: var(--secondary);
      display: block;
      margin-bottom: 20px;
    }

    .platinum-inner h2 {
      color: var(--primary);
      margin-bottom: 24px;
    }

    .platinum-inner p {
      font-size: 18px;
      color: var(--on-surface-variant);
      font-style: italic;
      line-height: 1.8;
      margin-bottom: 32px;
    }

    .platinum-tag {
      display: inline-block;
      border: 1px solid var(--heritage-gold);
      /* border-bottom: none; */
      padding: 14px 32px;
      font-size: 13px;
      font-weight: 500;
      letter-spacing: .15em;
      text-transform: uppercase;
      color: var(--primary);
      font-style: italic;
    }



    .legacy-section {
      padding-bottom: var(--section-gap);
      padding-inline: var(--margin-desktop);
      background: #fff;
      background-image: url("https://www.transparenttextures.com/patterns/felt.png");
    }

    .legacy-grid {
      max-width: var(--max-w);
      margin-inline: auto;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: var(--gutter);
    }

    .legacy-col {
      display: flex;
      flex-direction: column;
      gap: 28px;
    }

    .legacy-col:nth-child(2) {
      margin-top: 60px;
    }

    .legacy-col img {
      width: 100%;
      aspect-ratio: 1;
      object-fit: cover;
      border: 1px solid var(--heritage-gold);
      filter: grayscale(1);
      transition: filter .7s;
    }

    .legacy-col img:hover {
      filter: grayscale(0);
    }

    .legacy-col h4 {
      font-size: 18px;
      font-weight: 700;
      color: var(--primary);
      margin-bottom: 12px;
    }

    .legacy-col li {
      color: var(--on-surface-variant);
      font-size: 14px;
      line-height: 1.9;
      padding-left: 12px;
      position: relative;
    }

    .legacy-col li::before {
      content: '•';
      position: absolute;
      left: 0;
      color: var(--heritage-gold);
    }



    .values-section {
      position: relative;
      min-height: 60vh;
      background: var(--primary);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      padding-block: var(--section-gap);
      padding-inline: var(--margin-desktop);
    }

    .values-watermark {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      pointer-events: none;
      user-select: none;
      overflow: hidden;
    }

    .values-watermark span {
      font-size: clamp(100px, 22vw, 300px);
      font-weight: 700;
      color: rgba(255, 255, 255, .03);
      text-transform: uppercase;
      transform: rotate(-12deg);
      white-space: nowrap;
    }

    .values-inner {
      position: relative;
      z-index: 2;
      max-width: 900px;
      text-align: center;
    }

    .values-line {
      width: 96px;
      height: 1px;
      background: var(--heritage-gold);
      margin: 0 auto 56px;
    }

    .values-q {
      font-size: clamp(20px, 3.5vw, 42px);
      font-weight: 700;
      color: #fff;
      font-style: italic;
      line-height: 1.4;
      margin-bottom: 48px;
    }

    .values-q2 {
      font-size: clamp(20px, 3.5vw, 42px);
      font-weight: 700;
      color: #fff;
      line-height: 1.4;
      margin-bottom: 24px;
    }

    .values-q2 .gold-ital {
      color: var(--heritage-gold);
      font-style: italic;
    }

    .values-attribution {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: .4em;
      text-transform: uppercase;
      color: var(--heritage-gold);
    }

    .values-line-bottom {
      width: 96px;
      height: 1px;
      background: var(--heritage-gold);
      margin: 48px auto 0;
    }



    .archive-section {
      padding-block: var(--section-gap);
      background: var(--background);
    }

    .archive-header {
      text-align: center;
      padding-inline: var(--margin-desktop);
      margin-bottom: 48px;
    }

    .archive-header .eyebrow {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: .5em;
      text-transform: uppercase;
      color: var(--secondary);
      display: block;
      margin-bottom: 14px;
    }

    .archive-header h2 {
      color: var(--primary);
      margin-bottom: 40px;
    }

    /* Search bar */
    .archive-search-wrap {
      max-width: 640px;
      margin-inline: auto;
      position: relative;
      margin-bottom: 40px;
    }

    .archive-search-wrap svg {
      position: absolute;
      left: 14px;
      top: 50%;
      transform: translateY(-50%);
      width: 20px;
      height: 20px;
      stroke: rgba(0, 22, 58, .4);
      fill: none;
      pointer-events: none;
      transition: stroke .3s;
    }

    .archive-search-wrap:focus-within svg {
      stroke: var(--heritage-gold);
    }

    .archive-search {
      width: 100%;
      padding: 18px 16px 18px 44px;
      border: 2px solid rgba(0, 22, 58, .12);
      outline: none;
      font-family: var(--ff);
      font-size: 15px;
      color: var(--on-surface);
      background: #fff;
      transition: border-color .3s;
    }

    .archive-search::placeholder {
      color: var(--outline);
    }

    .archive-search:focus {
      border-color: var(--heritage-gold);
    }

    /* Filter tabs */
    .filter-tabs {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 8px;
      margin-bottom: 56px;
      padding-inline: var(--margin-desktop);
    }

    .filter-tab {
      padding: 10px 18px;
      background: none;
      border: none;
      border-bottom: 2px solid transparent;
      cursor: pointer;
      font-family: var(--ff);
      font-size: 10px;
      font-weight: 600;
      letter-spacing: .15em;
      text-transform: uppercase;
      color: var(--on-surface-variant);
      transition: color .2s, border-color .2s;
    }

    .filter-tab:hover {
      color: var(--heritage-gold);
    }

    .filter-tab.active {
      background: var(--primary);
      color: var(--heritage-gold);
      border-bottom-color: var(--heritage-gold);
    }

    /* Masonry */
    .masonry-grid {
      column-count: 3;
      column-gap: 24px;
      padding-inline: var(--margin-desktop);
      max-width: var(--max-w);
      margin-inline: auto;
    }

    .masonry-item {
      break-inside: avoid;
      margin-bottom: 24px;
      cursor: pointer;
      position: relative;
      border: 1px solid var(--heritage-gold);
      overflow: hidden;
    }

    .masonry-item img {
      width: 100%;
      display: block;
      filter: grayscale(1);
      transition: transform .7s cubic-bezier(.165, .84, .44, 1), filter .7s;
    }

    .masonry-item:hover img {
      transform: scale(1.05);
      filter: grayscale(0);
    }

    .masonry-overlay {
      position: absolute;
      inset: 0;
      background: rgba(0, 22, 58, .82);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 24px;
      opacity: 0;
      transition: opacity .4s;
    }

    .masonry-item:hover .masonry-overlay {
      opacity: 1;
    }

    .masonry-overlay .cat {
      font-size: 10px;
      font-weight: 600;
      letter-spacing: .25em;
      text-transform: uppercase;
      color: var(--heritage-gold);
      margin-bottom: 10px;
    }

    .masonry-overlay h4 {
      color: #fff;
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 14px;
    }

    .masonry-overlay .view-btn {
      font-size: 9px;
      font-weight: 600;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .6);
      border: 1px solid rgba(255, 255, 255, .2);
      padding: 8px 18px;
    }

    .masonry-caption {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      background: linear-gradient(to top, rgba(0, 22, 58, .5), transparent);
      padding: 16px 14px 14px;
      font-size: 9px;
      font-weight: 600;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .9);
      transition: opacity .4s;
    }

    .masonry-item:hover .masonry-caption {
      opacity: 0;
    }


    .lightbox {
      position: fixed;
      inset: 0;
      z-index: 200;
      background: rgba(0, 22, 58, .96);
      display: none;
      flex-direction: row;
      backdrop-filter: blur(6px);
    }

    .lightbox.open {
      display: flex;
    }

    .lb-image-area {
      flex: 1;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 48px;
      background: rgba(0, 0, 0, .15);
      overflow: hidden;
    }

    .lb-close {
      position: absolute;
      top: 28px;
      left: 28px;
      z-index: 10;
      background: none;
      border: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 8px;
      color: rgba(255, 255, 255, .5);
      font-family: var(--ff);
      font-size: 10px;
      font-weight: 600;
      letter-spacing: .2em;
      text-transform: uppercase;
      transition: color .2s;
    }

    .lb-close:hover {
      color: var(--heritage-gold);
    }

    .lb-close svg {
      width: 20px;
      height: 20px;
      stroke: currentColor;
      fill: none;
    }

    .lb-counter {
      position: absolute;
      top: 28px;
      right: 28px;
      z-index: 10;
      font-size: 10px;
      font-weight: 600;
      letter-spacing: .2em;
      color: rgba(255, 255, 255, .5);
      font-family: var(--ff);
    }

    .lb-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 10;
      background: none;
      border: none;
      cursor: pointer;
      color: rgba(255, 255, 255, .35);
      transition: color .2s;
      padding: 12px;
    }

    .lb-nav:hover {
      color: var(--heritage-gold);
    }

    .lb-nav svg {
      width: 36px;
      height: 36px;
      stroke: currentColor;
      fill: none;
    }

    .lb-nav.prev {
      left: 8px;
    }

    .lb-nav.next {
      right: 8px;
    }

    .lb-main-img {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
      box-shadow: 0 24px 80px rgba(0, 0, 0, .5);
      transition: opacity .4s;
    }

    .lb-thumbs {
      position: absolute;
      bottom: 16px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 8px;
      padding: 10px 16px;
      background: rgba(0, 0, 0, .4);
      max-width: 90%;
      overflow-x: auto;
      border: 1px solid rgba(255, 255, 255, .05);
    }

    .lb-thumb {
      width: 56px;
      height: 40px;
      object-fit: cover;
      opacity: .5;
      cursor: pointer;
      flex-shrink: 0;
      border: 2px solid transparent;
      transition: opacity .2s, border-color .2s;
    }

    .lb-thumb.active {
      opacity: 1;
      border-color: var(--heritage-gold);
    }

    .lb-info {
      width: 380px;
      flex-shrink: 0;
      background: var(--primary);
      border-left: 1px solid rgba(200, 164, 93, .2);
      padding: 48px 40px;
      overflow-y: auto;
      display: flex;
      flex-direction: column;
    }

    .lb-info-top {
      flex: 1;
      align-content: center;
    }

    .lb-info-gold-line {
      width: 40px;
      height: 1px;
      background: var(--heritage-gold);
      margin-bottom: 40px;
    }

    .lb-cat-label {
      font-size: 10px;
      font-weight: 600;
      letter-spacing: .3em;
      text-transform: uppercase;
      color: var(--heritage-gold);
      margin-bottom: 14px;
      display: block;
    }

    .lb-title {
      font-size: 26px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 32px;
      line-height: 1.25;
    }

    .lb-meta {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      border-top: 1px solid rgba(255, 255, 255, .1);
      border-bottom: 1px solid rgba(255, 255, 255, .1);
      padding-block: 24px;
      margin-bottom: 32px;
    }

    .lb-meta-label {
      font-size: 9px;
      font-weight: 600;
      letter-spacing: .2em;
      color: rgba(255, 255, 255, .3);
      margin-bottom: 4px;
    }

    .lb-meta-value {
      color: #fff;
      font-size: 15px;
    }

    .lb-context-label {
      font-size: 9px;
      font-weight: 600;
      letter-spacing: .2em;
      color: rgba(255, 255, 255, .3);
      margin-bottom: 12px;
    }

    .lb-context {
      color: rgba(255, 255, 255, .7);
      font-size: 14px;
      line-height: 1.7;
      font-style: italic;
    }

    .lb-footer {
      margin-top: auto;
      padding-top: 40px;
      border-top: 1px solid rgba(255, 255, 255, .1);
    }

    .lb-footer p {
      font-size: 10px;
      font-weight: 600;
      letter-spacing: .1em;
      color: var(--heritage-gold);
    }

    .lb-footer small {
      font-size: 9px;
      color: rgba(255, 255, 255, .35);
      display: block;
      margin-top: 6px;
    }


    .tributes-section {
      padding-block: var(--section-gap);
      padding-inline: var(--margin-desktop);
      background: var(--surface-container);
    }

    .tributes-header {
      max-width: 720px;
      margin-inline: auto;
      text-align: center;
      margin-bottom: 56px;
    }

    .tributes-header h2 {
      color: var(--primary);
      margin-bottom: 16px;
    }

    .tributes-header p {
      color: var(--on-surface-variant);
      font-size: 17px;
      line-height: 1.8;
    }

    .tributes-grid {
      max-width: var(--max-w);
      margin-inline: auto;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: var(--gutter);
    }

    .tribute-card {
      background: #fff;
      padding: 40px;
      border: 1px solid var(--heritage-gold);
      box-shadow: 0 2px 8px rgba(0, 0, 0, .06);
      transition: box-shadow .3s;
    }

    .tribute-card:hover {
      box-shadow: 0 16px 48px rgba(0, 0, 0, .12);
    }

    .tribute-quote-icon {
      font-size: 40px;
      color: var(--heritage-gold);
      margin-bottom: 20px;
      line-height: 1;
    }

    .tribute-text {
      font-style: italic;
      color: var(--on-surface);
      font-size: 15px;
      line-height: 1.75;
      margin-bottom: 28px;
    }

    .tribute-author {
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .tribute-avatar {
      width: 44px;
      height: 44px;
      background: var(--primary-container);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-weight: 700;
      font-size: 14px;
      flex-shrink: 0;
    }

    .tribute-name {
      font-size: 14px;
      font-weight: 700;
      color: var(--primary);
    }

    .tribute-role {
      font-size: 10px;
      font-weight: 600;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--on-surface-variant);
    }

    .tributes-cta {
      text-align: center;
      margin-top: 40px;
    }

    .tributes-cta button {
      background: transparent;
      border: 1px solid var(--primary);
      color: var(--primary);
      padding: 16px 40px;
      font-family: var(--ff);
      font-size: 11px;
      font-weight: 600;
      letter-spacing: .15em;
      text-transform: uppercase;
      cursor: pointer;
      transition: background .25s, color .25s;
    }

    .tributes-cta button:hover {
      background: var(--primary);
      color: #fff;
    }

    .closing-section {
      position: relative;
      min-height: 90vh;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--primary);
      overflow: hidden;
      padding: var(--section-gap) var(--margin-desktop);
    }

    .closing-bg {
      position: absolute;
      inset: 0;
    }

    .closing-bg img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: .4;
    }

    .closing-bg-grad {
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, rgba(0, 22, 58, .8), transparent);
    }

    .closing-content {
      position: relative;
      z-index: 2;
      max-width: 900px;
      text-align: center;
    }

    .closing-content h2 {
      color: #fff;
      text-transform: uppercase;
      margin-bottom: 36px;
    }

    .closing-content h2 span {
      color: var(--heritage-gold);
    }

    .closing-body {
      color: rgba(255, 255, 255, .9);
      font-size: 16px;
      line-height: 1.8;
      margin-bottom: 24px;
    }

    .closing-tagline {
      font-size: 14px;
      font-weight: 600;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: var(--heritage-gold);
      margin-top: 32px;
    }

    .closing-footer {
      margin-top: 48px;
      padding-top: 32px;
    }

    .closing-footer .college-label {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: .5em;
      text-transform: uppercase;
      color: var(--heritage-gold);
      margin-bottom: 12px;
    }

    .closing-footer small {
      color: rgba(255, 255, 255, .5);
      font-size: 13px;
    }


    @media (max-width: 1024px) {
      :root {
        --margin-desktop: 40px;
        --section-gap: 80px;
      }

      .masonry-grid {
        column-count: 2;
      }

      .tributes-grid {
        grid-template-columns: 1fr 1fr;
      }

      .lb-info {
        width: 320px;
      }
    }

    @media (max-width: 768px) {
      :root {
        --margin-desktop: var(--margin-mobile);
        --section-gap: 60px;
      }


      .hero-title {
        font-size: clamp(30px, 8vw, 48px);
      }

      .years-grid {
        grid-template-columns: 1fr;
      }

      .years-badge {
        display: none;
      }

      .years-img-frame {
        padding: 8px;
      }

      .builder-grid {
        grid-template-columns: 1fr;
      }

      .builder-card {
        height: 380px;
      }

      .legacy-grid {
        grid-template-columns: 1fr;
      }

      .legacy-col:nth-child(2) {
        margin-top: 0;
      }

      .masonry-grid {
        column-count: 1;
      }

      .tributes-grid {
        grid-template-columns: 1fr;
      }

      .lightbox {
        flex-direction: column;
      }

      .lb-info {
        width: 100%;
        padding: 28px 24px;
        max-height: 40vh;
        overflow-y: auto;
        border-left: none;
        border-top: 1px solid rgba(200, 164, 93, .2);
      }

      .lb-image-area {
        flex: 1;
        padding: 56px 16px 80px;
      }

    }

    @media (max-width: 480px) {
      .builder-card {
        height: 320px;
      }

      .builder-card-body {
        padding: 24px;
      }

      .filter-tabs {
        gap: 4px;
      }

      .filter-tab {
        padding: 8px 12px;
        font-size: 9px;
      }
    }

    /* Timeline mobile nav arrows */
    .timeline-mobile-nav {
      /* hidden on desktop */
      align-items: center;
      justify-content: end;
      gap: 24px;
      padding-top: 0px;
    }

    .tl-nav-btn {
      width: 54px;
      height: 54px;
      background: transparent;
      border: 1px solid #ffffff00;
      color: var(--heritage-gold);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background .2s, color .2s;
      flex-shrink: 0;
    }

    .tl-nav-btn:hover {
      /* background: var(--heritage-gold); */
      color: var(--on-primary);
    }

    .tl-nav-btn svg {
      width: 54px;
      height: 54px;
    }

    .tl-nav-counter {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: .2em;
      color: rgba(200, 164, 93, .7);
    }

    /* Timeline active item highlight */


    .timeline-mobile-nav {
      display: flex;
    }

    @media screen and (min-width: 1025px) {
      .timeline-track-wrap {
        overflow-x: auto !important;
        scrollbar-width: thin;
        scrollbar-color: var(--heritage-gold) rgba(200, 164, 93, 0.1);
        /* For Firefox */

      }

      .timeline-track {
        margin-bottom: 40px;
      }

      /* Custom scrollbar styling for WebKit browsers (Chrome, Safari, Edge) */
      .timeline-track-wrap::-webkit-scrollbar {
        height: 8px;
        background: rgba(200, 164, 93, 0.1);
        border-radius: 4px;
      }

      .timeline-track-wrap::-webkit-scrollbar-track {
        background: rgba(200, 164, 93, 0.1);
        border-radius: 4px;
      }

      .timeline-track-wrap::-webkit-scrollbar-thumb {
        background: var(--heritage-gold);
        border-radius: 4px;
        transition: background 0.3s ease;
      }

      .timeline-track-wrap::-webkit-scrollbar-thumb:hover {
        background: #b8943f;
        /* Darker gold on hover */
      }
    }

    @media screen and (max-width: 1024px) {
      .no-scrollbar::-webkit-scrollbar {
        display: none;
      }

      .no-scrollbar {
        -ms-overflow-style: none;
        scrollbar-width: none;
      }
    }

    @media screen and (min-width: 1024px) {
      .timeline-mobile-nav {
        display: none;
        place-content: center;
      }

      .timeline-track {
        padding-bottom: 0px;
      }
    }

    .timeline-item.tl-active .timeline-dot {
      transform: scale(1.5);
    }

    .timeline-item.tl-active .timeline-year {
      color: var(--heritage-gold);
    }

    /* prefers-reduced-motion */
    @media (prefers-reduced-motion: reduce) {

      *,
      *::before,
      *::after {
        animation: none !important;
        transition: none !important;
      }
    }