html, body {
    height: 100%;
}
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
main {
    flex: 1 0 auto;
}
.ar-footer {
    flex-shrink: 0;
}

:root{
    --navy:#1E2859;
    --blue:#4097B4;
    --muted:#6b7280;
    --card:#f3f4f6;
    --radius:18px;
    --max:1100px;
    --pink:#EC008C;
}

.ar-hero{
    background:#fff;
    overflow:hidden;
}
.ar-hero__container{
    max-width: var(--max);
}

/* top logo */
.ar-hero__logo{
    height: 36px;
    width:auto;
}

/* big 2025 + annual report */
.ar-hero__year-wrap{
    display:flex;
    align-items:flex-end;
    justify-content:center;
    gap:16px;
    margin-top: 126px;
}
.ar-hero__year{
    font-weight:500;
    letter-spacing: normal;
    font-size: 400px;
    line-height: 62px;;
    color: transparent;
    -webkit-text-stroke: 3px var(--blue);
    text-stroke: 3px var(--blue);
    font-family: 'Anton', sans-serif;
    text-transform: uppercase;
}

.ar-hero__sub{
    font-weight:bolder;
    color: var(--blue);
    font-size: 70px;
    line-height: 60px;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-family: 'Barlow Condensed', sans-serif;
}

/* bus stage */
.ar-hero__bus-stage{
    position: relative;
    height: clamp(120px, 18vw, 210px);
    margin-top: 6px;
}
.ar-hero__bus{
    position:absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: min(92vw, 820px);
    height: auto;

    /* start off-screen left-ish */
    translate: -120vw 0;
    will-change: translate;
}

/* card */
.ar-hero__card{
    max-width: 760px;
    background: rgba(243,244,246,.9);
    border-radius: var(--radius);
}
.ar-hero__tagline{
    color: var(--blue);
    font-weight: 800;
}
.ar-hero__desc{
    color: #333;
    font-size: 14px;
}

/* arrow button */
.ar-hero__arrow{
    display:inline-flex;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    /*background: var(--navy);*/
    color: #fff;
    align-items:center;
    justify-content:center;
    text-decoration:none;
}
.ar-hero__arrow-icon{
    font-size: 22px;
    line-height: 1;
}

/* =====================
   INNER PAGE HERO
   (shared across all inner pages via partials/inner-hero.php)
   ===================== */

/* Logo bar — sits on white page above the image, matching home page */
.ar-inner-hero__logo-bar {
    padding: 1rem 0;
    text-align: center;
}
.ar-inner-hero__logo {
    height: 36px;
    width: auto;
}

/* Arrow sits over the hero photo — white bg fills the transparent arrow cutout */
.ar-inner-hero__arrow-wrap .ar-hero__arrow {
    background: #fff;
}

/* HR that sits between the intro paragraph and the first content section */
.ar-page-rule {
    border: none;
    border-top: 1px solid #7C7C7C;
    margin-top: 36px;
    margin-bottom: 0;
}

/* ERG participation stat */
.ar-erg__stat-number {
    font-family: 'Montserrat', sans-serif;
    font-style: italic;
    font-size: 100px;
    font-weight: 700;
    color: #4097B4;
    line-height: 1;
}

/* ERG hover cards */
.ar-erg-row {
    display: grid;
    gap: 24px;
}
.ar-erg-row--3 {
    grid-template-columns: repeat(3, 1fr);
}
.ar-erg-row--2 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 66.666%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 36px;
}
.ar-erg-card {
    position: relative;
    cursor: pointer;
}
.ar-erg-card__default,
.ar-erg-card__hover {
    width: 100%;
    height: auto;
    display: block;
}
.ar-erg-card__hover {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity .3s ease;
}
.ar-erg-card:hover .ar-erg-card__hover {
    opacity: 1;
}
.ar-erg-card__tap-icon {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    pointer-events: none;
    z-index: 1;
    transition: opacity .3s ease;
}
.ar-erg-card__tap-icon--white {
    opacity: 0;
}
.ar-erg-card:hover .ar-erg-card__tap-icon--blue {
    opacity: 0;
}
.ar-erg-card:hover .ar-erg-card__tap-icon--white {
    opacity: 1;
}

/* Stats row */
.ar-stats__row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
}
.ar-stats__col--middle {
    border-left: 3px solid #C5D740;
    border-right: 3px solid #C5D740;
}
.ar-stats__number {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 200px;
    line-height: 1;
    text-transform: uppercase;
    color: var(--navy);
}
.ar-stats__caption {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    line-height: 28px;
    color: #000;
}
.ar-stats__label {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    line-height: 35px;
    text-transform: uppercase;
    color: var(--blue);
    margin-top: 1.5rem;
}

/* Section title — Barlow Condensed, used for ERG heading and similar section heads */
.ar-section-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 60px;
    line-height: 54px;
    text-transform: uppercase;
    color: var(--navy);
}
.ar-section-blue-box-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: bold;
    font-size: 200px;
    line-height: 65px;
    text-transform: uppercase;
    color: #FFFFFF;
}
.ar-section-blue-box-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 30px;
    line-height: 35px;
    max-width: 368px;
    color: #FFFFFF;
}

/* Standard body paragraph under section titles */
.ar-section-body {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    line-height: 28px;
    color: #000;
}
.ar-section-body--narrow {
    max-width: 876px;
    margin-left: auto;
    margin-right: auto;
}

/* Intro text block */
.ar-page-intro__inner {
    max-width: 840px;
}
.ar-page-intro__title {
    font-family: 'Montserrat', sans-serif;
    color: var(--blue);
    font-size: 24px;
    line-height: 22px;
    font-weight: 700;
    margin-bottom: 0.25rem;
}
.ar-page-intro__text {
    font-family: 'Montserrat', sans-serif;
    color: #000;
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 0;
}

/* Full-bleed hero image */
.ar-inner-hero {
    position: relative;
    width: calc(100% - 28px);
    margin: 0 14px 22px;
}
.ar-inner-hero__img {
    width: 100%;
    height: clamp(280px, 42vw, 560px);
    object-fit: cover;
    display: block;
    border-radius: var(--radius);
}

/* Arrow — centred, half hanging off the bottom edge */
.ar-inner-hero__arrow-wrap {
    position: absolute;
    bottom: -22px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    z-index: 3;
}

/* video placeholder */
.ar-video{
}
.ar-video__frame{
    border-radius: 14px;
    overflow:hidden;
}
.ar-video__placeholder{
    background:#bfbfbf;
    color:#fff;
    font-weight:700;
}
.ar-video__play{
    font-size: 54px;
    line-height:1;
}
.ar-video__label{
    font-size: 12px;
    opacity:.9;
    text-transform: lowercase;
}

/* transformation section */
.ar-eyebrow{
    font-weight: 500;
    color: var(--navy);
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    line-height: 50px;
    font-size: 40px;
    font-style: italic;
}
.ar-sig__photo{
    object-fit: cover;
    border-radius: 16px;
    flex-shrink: 0;
}
.ar-sig__name{
    font-weight: 700;
    color: var(--navy);
    font-size: 18px;
    font-family: 'Montserrat', sans-serif;
    line-height: 28px;
    white-space: nowrap;
}
.ar-sig__title{
    color: var(--muted);
    font-size: 18px;
    line-height: 28px;
}

.ar-dive-title{
    color: var(--blue);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 60px;
    font-family: 'Barlow Condensed', sans-serif;
}

/* tiles */
.ar-tile{
    display:block;
    position:relative;
    border-radius: 18px;
    overflow:hidden;
    aspect-ratio: 16/10;
    text-decoration:none;
}
.ar-tile--tall{
    aspect-ratio: 9/16;
}
.ar-tile__overlay{
    position:absolute;
    inset:0;
    display:flex;
    align-items:flex-end;
    padding: 16px;
    background: linear-gradient(to top, rgba(0,0,0,.55), rgba(0,0,0,0) 55%);
}
.ar-tile__label{
    color:#fff;
    font-weight: 900;
    letter-spacing:.04em;
    text-transform: uppercase;
}
.ar-tile__dot{
    display:inline-block;
    margin-left: 6px;
    opacity:.9;
}
.ar-transform p{
    font-family: 'Montserrat','Oswald', sans-serif;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: unset;
}
.pink-text {
    color: var(--pink);
}

/* Dive Deeper – full-bleed CSS grid */
.ar-tiles-grid {
    margin-top: 36px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr 1fr;
    gap: 8px;
    height: clamp(400px, 52vw, 660px);
    margin-bottom: clamp(10rem, 20vw, 50rem);
}
.ar-tiles-grid .ar-tile {
    aspect-ratio: unset;
    height: 100%;
    border-radius: 0;
    overflow: visible;
    background: transparent;
}
.ar-tiles-grid .ar-tile img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}
/* Tile hover image swap */
.ar-tile__hover-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    transition: opacity 0.2s ease;
}
.ar-tile--next .ar-tile__hover-img {
    opacity: 1;
}

.ar-tile--our-team   { grid-column: 1; grid-row: 1; }
.ar-tile--beyond     { grid-column: 1; grid-row: 2; }
.ar-tile--innovation { grid-column: 2; grid-row: 1 / 3; }
.ar-tile--impact     { grid-column: 3; grid-row: 1; }
.ar-tile--future     { grid-column: 3; grid-row: 2; }
.ar-tiles-grid .ar-tile--future {
    overflow: hidden;
}
.ar-tiles-grid .ar-tile--future img {
    transform: translateX(20px);
}


@media (max-width: 767px) {
    .ar-tiles-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        height: auto;
    }
    .ar-tiles-grid .ar-tile {
        aspect-ratio: unset;
        height: auto;
        border-radius: 0;
    }
    .ar-tiles-grid .ar-tile img {
        height: auto;
    }
    .ar-tile--our-team   { grid-column: 1; grid-row: 1; }
    .ar-tile--beyond     { grid-column: 1; grid-row: 2; }
    .ar-tile--innovation { grid-column: 1; grid-row: 3; aspect-ratio: unset; }
    .ar-tile--impact     { grid-column: 1; grid-row: 4; }
    .ar-tile--future     { grid-column: 1; grid-row: 5; }

    /* Cancel the desktop right-shift on the future tile */
    .ar-tiles-grid .ar-tile--future img {
        transform: none;
    }
}

/* Investing in Growth */
.ar-investing__box {
    background: #F5F5F5;
    border-radius: var(--radius);
    padding: 36px;
}
.ar-investing-blue__box {
    background: #4097B4;
    border-radius: var(--radius);
    padding: 72px 36px;
}
.ar-investing__placeholder {
    background: #C4C4C4;
    border-radius: 14px;
    width: 100%;
    max-height: 394px;
    aspect-ratio: 4/3;
}
.ar-investing__stat {
    display: flex;
    align-items: center;
    gap: 20px;
}
.ar-investing__number {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 170px;
    line-height: 200px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke: 3px var(--blue);
    text-stroke: 3px var(--blue);
    flex-shrink: 0;
}
.ar-investing__label {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    line-height: 35px;
    text-transform: uppercase;
    color: var(--blue);
    max-width: 270px;
    font-weight: 700;
}
.ar-investing__stat-col--left {
    border-right: 3px solid #C5D740;
}
.ar-investing__stat-col--right {
    padding-left: 32px;
}

/* Recognition and Leadership */
.ar-recognition {
    padding-top: 36px;
}
.ar-recognition__placeholder {
    height: 300px;
}
.ar-page-rule--no-top-margin {
    margin-top: 0;
}
.ar-recognition__after-rule {
    height: 36px;
}

/* Looking Ahead */
.ar-looking-ahead__text {
    max-width: 494px;
}
.ar-looking-ahead__img {
    width: 100%;
    height: auto;
    display: block;
}
.ar-artist-credit {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-style: italic;
    color: #000;
    margin-top: 6px;
    margin-bottom: 0;
}

/* 404 page */
.ar-404__number {
    font-family: 'Anton', sans-serif;
    font-size: 240px;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 3px var(--blue);
    text-stroke: 3px var(--blue);
}
.ar-404__text {
    max-width: 560px;
}
.ar-404__home-link {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: var(--blue);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .05em;
    transition: color .2s;
}
.ar-404__home-link:hover {
    color: var(--navy);
}

.ar-spacer-36 {
    height: 36px;
}
.ar-nav-intro {
    max-width: 930px;
}

/* =====================
   IMPACT
   ===================== */
.ar-ridership__subhead.ar-month-heading {
    font-family: 'Montserrat', sans-serif;
}
.ar-ridership__subhead {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 48px;
    font-weight: 800;
    font-style: italic;
    text-transform: uppercase;
    color: var(--navy);
    line-height: 1.1;
}
.ar-ridership__number {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 400px;
    line-height: 1;
    letter-spacing: 0.03em;
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke: 3px var(--blue);
    text-stroke: 3px var(--blue);
}
.ar-ridership__label {
    font-family: 'Montserrat', sans-serif;
    font-size: 30px;
    line-height: 1.1;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--navy);
}
.ar-ridership__pct {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 30px;
    font-weight: 800;
    color: #4097B4;
}
.ar-ridership__bus-img {
    position: relative;
    z-index: 2;
    margin-left: -200px;
}
.ar-fleet__img {
    width: 526px;
    height: auto;
    display: block;
}
.ar-fleet__number {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 200px;
    font-weight: 700;
    color: var(--navy);
    line-height: 65px;
    text-transform: uppercase;
}

.ar-chart__legend {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.ar-chart__legend-item {
    display: flex;
    align-items: center;
    gap: 14px;
}
.ar-chart__swatch {
    width: 22px;
    height: 22px;
    border-radius: 4px;
    flex-shrink: 0;
}
.ar-chart__swatch--1 { background: #1E2859; }
.ar-chart__swatch--2 { background: #4097B4; }
.ar-chart__swatch--3 { background: #CFF3FF; border: 1px solid #ddd; }
.ar-chart__swatch--4 { background: #C5D740; }
.ar-chart__swatch--5 { background: #33B881; }
.ar-chart__swatch--people-1 { background: #4097B4; }
.ar-chart__swatch--people-2 { background: #1E2859; }
.ar-chart__swatch--people-3 { background: #CFF3FF; border: 1px solid #ddd; }
.ar-chart__swatch--people-4 { background: #FEC844; }
.ar-chart__swatch--people-5 { background: #33B881; }
.ar-chart__swatch--people-6 { background: #712B63; }
.ar-chart__swatch--people-7 { background: #BB175C; }
.ar-chart__swatch--people-8 { background: #6D6E71; }
.ar-chart__swatch--gender-1 { background: #FEC844; }
.ar-chart__swatch--gender-2 { background: #33B881; }
.ar-chart__swatch--gender-3 { background: #C5D740; }
.ar-chart__amount {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 30px;
    color: var(--navy);
    margin-right: 8px;
}
.ar-chart__item-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    color: #000000;
}

.ar-fleet__section-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 60px;
    text-transform: uppercase;
    color: #FFFFFF;
}
.ar-fleet__stat-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 30px;
    line-height: 1.1;
    font-weight: 500;
    text-transform: uppercase;
    color: #FFFFFF;
}
.ar-fleet__col--border {
    border-right: 3px solid #FFFFFF;
}
#our-routes .ar-section-blue-box-title {
    margin-bottom: 76px;
}

.ar-data-notice {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: #000;
}

.ar-improvement__stat-card {
    margin-left: 70px;
    margin-right: 70px;
}
.ar-improvement__stat-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: var(--navy);
    text-transform: uppercase;
    line-height: 1.1;
}
.ar-improvement__stat-sublabel {
    font-size: 16px;
    color: #7D7D7D;
    margin-top: 6px;
}

/* =====================
   INNOVATION
   ===================== */

/* Responsive YouTube embed */
.ar-yt__ratio {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: var(--radius);
}
.ar-yt__iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}
#weather-stat-box .ar-section-blue-box-text {
    max-width: 400px;
}

/* =====================
   OUR TEAM
   ===================== */

/* Stats scroll animation — applied to any section with js-stats-animate */
.js-stats-animate .ar-stats__col {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.js-stats-animate.ar-stats--visible .ar-stats__col:nth-child(1) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0s;
}
.js-stats-animate.ar-stats--visible .ar-stats__col:nth-child(2) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.15s;
}
.js-stats-animate.ar-stats--visible .ar-stats__col:nth-child(3) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
}
.ar-investing__box .ar-stats__label {
    margin-top: 16px;
    line-height: 22px;
}
.ar-investing__box .ar-stats__col:last-child {
    padding-left: 40px;
}
.ar-award__title {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    color: #4097B4;
    line-height: 1.2;
}
.ar-award__name {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
}
.ar-award__role {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #000000;
}
.ar-award__item {
    margin-bottom: 28px;
}

/* =====================
   BEYOND THE BUS
   ===================== */
#pe-stats .ar-investing__label {
    max-width: 160px !important;
}

/* =====================
   BUTTONS
   ===================== */
.ar-btn {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    color: #FFFFFF;
    background-color: var(--navy);
    border: none;
    border-radius: var(--radius);
    padding: 14px 32px;
    text-decoration: none;
    cursor: pointer;
}
.ar-btn:hover {
    color: #FFFFFF;
    opacity: 0.88;
}
.ar-list--spaced li + li {
    margin-top: 12px;
}

/* =====================
   FOOTER
   ===================== */
.ar-footer {
    background: var(--navy);
    color: #fff;
    position: relative;
    z-index: 10;
}
.ar-footer__blue-bar {
    height: 16px;
    background: var(--blue);
}
.ar-footer__container {
    padding-top: 48px;
    padding-bottom: 48px;
}

/* Top row: brand + 2 nav columns */
.ar-footer__top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,.15);
}

/* Brand column */
.ar-footer__logo-link svg {
    color: #fff;
    display: block;
    margin-bottom: 20px;
}
.ar-footer address {
    font-style: normal;
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255,255,255,.75);
    margin-bottom: 24px;
}
.ar-footer address a {
    color: rgba(255,255,255,.75);
    text-decoration: none;
}
.ar-footer address a:hover {
    color: #fff;
}

/* Social icons */
.ar-footer__social h2 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #fff;
    margin-bottom: 12px;
}
.ar-footer__social ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 12px;
}
.ar-footer__social ul li a img {
    height: 32px;
    width: auto;
    display: block;
    opacity: .85;
    transition: opacity .2s;
}
.ar-footer__social ul li a:hover img {
    opacity: 1;
}

/* Nav columns */
.ar-footer__nav h2 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #fff;
    margin-bottom: 16px;
}
.ar-footer__nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.ar-footer__nav ul li {
    margin-bottom: 10px;
}
.ar-footer__nav ul li a {
    color: rgba(255,255,255,.75);
    text-decoration: none;
    font-size: 15px;
    line-height: 1.5;
    transition: color .2s;
}
.ar-footer__nav ul li a:hover {
    color: #fff;
}

/* Bottom row: copyright + translate */
.ar-footer__bottom {
    display: flex;
    gap: 48px;
    align-items: flex-start;
    padding-top: 32px;
}
.ar-footer__copyright {
    flex: 1;
}
.ar-footer__copyright p {
    font-size: 12px;
    line-height: 1.65;
    color: rgba(255,255,255,.55);
    margin-bottom: 10px;
}
.ar-footer__translate {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Google Translate overrides */
.goog-te-gadget {
    font-family: inherit !important;
    font-size: 13px !important;
    color: rgba(255,255,255,.75) !important;
}
.goog-te-gadget .goog-te-combo {
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.25);
    color: #fff;
    border-radius: 6px;
    padding: 6px 10px;
    font-size: 13px;
}

/* Footer responsive */
@media (max-width: 991px) {
    .ar-footer__top {
        grid-template-columns: 1fr 1fr;
    }
    .ar-footer__brand {
        grid-column: 1 / -1;
    }
}
@media (max-width: 575px) {
    .ar-footer__top {
        grid-template-columns: 1fr;
    }
    .ar-footer__brand {
        grid-column: auto;
    }
    .ar-footer__bottom {
        flex-direction: column;
        gap: 24px;
    }
}

/* Animations */
@keyframes busDriveIn{
    0%   { translate: 120vw 0; }
    100% { translate: 0 0; }
}
@keyframes arrowBounce{
    0%,100% { transform: translateY(0); }
    50%     { transform: translateY(7px); }
}

/* helper classes toggled by JS */
.ar-anim-bus-in{
    animation: busDriveIn 1.35s cubic-bezier(.2,.9,.2,1) forwards;
}
.ar-anim-arrow-bounce{
    animation: arrowBounce 1.0s ease-in-out infinite;
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce){
    .ar-anim-bus-in,
    .ar-anim-arrow-bounce{
        animation: none !important;
    }
    .ar-hero__bus{
        translate: 0 0;
    }
}

/* =====================
   RESPONSIVE — TABLET (≤ 991px)
   ===================== */
@media (max-width: 991px) {
    /* Scale down the ridership big number */
    .ar-ridership__number {
        font-size: 220px;
    }
    /* Undo the negative left-pull on the bus photo */
    .ar-ridership__bus-img {
        margin-left: 0;
    }
    /* Fleet image: still fixed on tablet but smaller */
    .ar-fleet__img {
        width: min(90%, 420px);
    }
    /* Reduce grey card side margins */
    .ar-improvement__stat-card {
        margin-left: 20px;
        margin-right: 20px;
    }
    /* Stat divider column — remove right border when stacked */
    .ar-investing__stat-col--left {
        border-right: none;
    }
    .ar-investing__stat-col--right {
        padding-left: 0;
    }
}

/* =====================
   RESPONSIVE — MOBILE (≤ 767px)
   ===================== */
@media (max-width: 767px) {

    /* HOME HERO — scale down the huge outlined "2025" */
    .ar-hero__year-wrap {
        margin-top: 32px;
        gap: 10px;
    }
    .ar-hero__year {
        font-size: 140px;
        line-height: 28px;
    }
    .ar-hero__sub {
        font-size: 30px;
        line-height: 28px;
        margin-bottom: 4px;
    }

    /* SHARED HEADINGS */
    .ar-section-title {
        font-size: 38px;
        line-height: 1.1;
    }
    .ar-dive-title {
        font-size: 38px;
    }
    .ar-eyebrow {
        font-size: 26px;
        line-height: 1.2;
    }

    /* STATS ROWS — single column, horizontal borders replace vertical */
    .ar-stats__row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .ar-stats__col--middle {
        border-left: none;
        border-right: none;
        border-top: 3px solid #C5D740;
        border-bottom: 3px solid #C5D740;
        padding-top: 24px;
        padding-bottom: 24px;
        margin: 8px 0;
    }
    .ar-stats__number {
        font-size: 80px;
    }

    /* OUTLINED BIG NUMBERS */
    .ar-investing__number {
        font-size: 80px;
        line-height: 1;
    }
    .ar-section-blue-box-title {
        font-size: 80px;
        line-height: 1;
    }
    #our-routes .ar-section-blue-box-title {
        margin-bottom: 12px;
    }

    /* INVESTING BOXES — tighter padding on small screens */
    .ar-investing__box {
        padding: 20px;
    }
    .ar-investing-blue__box {
        padding: 32px 20px;
    }

    /* STAT DIVIDER COLUMNS (beyond-the-bus pe-stats) */
    .ar-investing__stat-col--left {
        border-right: none;
        border-bottom: 3px solid #C5D740;
        padding-bottom: 20px;
        margin-bottom: 10px;
    }
    .ar-investing__stat-col--right {
        padding-left: 0;
    }

    /* RIDERSHIP */
    .ar-ridership__number {
        font-size: 120px;
        line-height: 1;
    }
    .ar-ridership__bus-img {
        margin-left: 0;
    }
    .ar-ridership__subhead {
        font-size: 32px;
    }

    /* FLEET IMAGE — responsive width, wraps naturally below number+label */
    .ar-fleet__img {
        width: min(90vw, 526px);
        max-width: 100%;
    }
    .ar-fleet__number {
        font-size: 100px;
        line-height: 1;
    }
    /* Replace right border with bottom border when fleet columns stack */
    .ar-fleet__col--border {
        border-right: none;
        border-bottom: 3px solid #fff;
        padding-bottom: 24px;
        margin-bottom: 8px;
    }

    /* SERVICE IMPROVEMENT STAT CARDS */
    .ar-improvement__stat-card {
        margin-left: 0;
        margin-right: 0;
    }
    .ar-improvement__stat-label {
        font-size: 22px;
    }

    /* OUR TEAM — ERG grid: single column */
    .ar-erg-row--3 {
        grid-template-columns: 1fr;
    }
    .ar-erg-row--2 {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
    .ar-erg__stat-number {
        font-size: 60px;
    }
    /* Remove negative label spacing in mobile stacked layout */
    .ar-investing__box .ar-stats__label {
        margin-top: 0;
    }

    /* CHARTS */
    .ar-chart__amount {
        font-size: 20px;
    }
    .ar-chart__item-label {
        font-size: 14px;
    }

    /* LOOKING AHEAD text — remove max-width so it fills the column */
    .ar-looking-ahead__text {
        max-width: 100%;
    }

    /* SIGNATURES — allow names to wrap, constrain photo size */
    .ar-sig__name {
        white-space: normal;
    }
    .ar-sig__photo {
        width: 100px;
        height: 100px;
    }

    /* AWARDS — slightly smaller title on mobile */
    .ar-award__title {
        font-size: 18px;
    }

    /* 404 */
    .ar-404__number {
        font-size: 120px;
    }
}

/* =====================
   RESPONSIVE — SMALL PHONES (≤ 575px)
   ===================== */
@media (max-width: 575px) {
    .ar-hero__year {
        font-size: 100px;
        line-height: 20px;
    }
    .ar-hero__sub {
        font-size: 22px;
        line-height: 22px;
    }
    .ar-ridership__number {
        font-size: 90px;
    }
    .ar-investing__number {
        font-size: 64px;
    }
    .ar-section-blue-box-title {
        font-size: 64px;
    }
    .ar-fleet__number {
        font-size: 80px;
    }
}