﻿:root {
    --red:#ED1C24;
    --red-dark:#C9131A;
    --navy:#003B73;
    --navy-dark:#00284F;
    --gold:#D99A00;
    --charcoal:#252A2E;
    --muted:#687078;
    --warm:#FAFAF8;
    --white:#FFFFFF;
    --border:#E8E9E7;

    --radius:22px;
    --shadow:0 20px 55px rgba(0,35,70,.10);
}

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

html {
    scroll-behavior:smooth;
}

body {
    font-family:Inter,Arial,sans-serif;
    color:var(--charcoal);
    background:var(--warm);
    line-height:1.65;
}

h1,h2,h3,
.brand-name,
.footer-brand {
    font-family:Montserrat,Arial,sans-serif;
}

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

.container {
    width:min(1160px,calc(100% - 48px));
    margin:auto;
}


/* HEADER */

.site-header {
    position:sticky;
    top:0;
    z-index:100;
    background:rgba(250,250,248,.94);
    backdrop-filter:blur(16px);
    border-bottom:1px solid rgba(0,0,0,.05);
}

.nav-wrap {
    min-height:76px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.brand {
    display:flex;
    align-items:center;
    gap:11px;
}

.brand-mark {
    width:42px;
    height:42px;
    border:3px solid var(--red);
    border-radius:50%;
    display:grid;
    place-items:center;
    color:var(--red);
    font-family:Montserrat;
    font-weight:800;
}

.brand-name {
    display:flex;
    flex-direction:column;
    line-height:1;
}

.brand-name strong {
    color:var(--red);
    font-size:20px;
    letter-spacing:.03em;
}

.brand-name span {
    color:var(--navy);
    font-size:9px;
    letter-spacing:.18em;
    margin-top:5px;
}

.main-nav {
    display:flex;
    align-items:center;
    gap:27px;
    font-size:13px;
    font-weight:600;
}

.main-nav a {
    transition:.2s ease;
}

.main-nav a:hover {
    color:var(--red);
}

.nav-donate {
    background:var(--red);
    color:white !important;
    padding:11px 20px;
    border-radius:999px;
}

.menu-button {
    display:none;
    border:0;
    background:none;
    cursor:pointer;
}

.menu-button span {
    display:block;
    width:25px;
    height:2px;
    background:var(--navy);
    margin:5px;
}


/* GENERAL */

.section {
    padding:95px 0;
}

.eyebrow {
    color:var(--red);
    font-family:Montserrat;
    font-weight:700;
    font-size:12px;
    letter-spacing:.18em;
    margin-bottom:16px;
}

.eyebrow.light {
    color:#FFD1D3;
}

h1 {
    font-size:clamp(45px,5vw,64px);
    line-height:1.06;
    letter-spacing:-.045em;
    color:var(--navy-dark);
}

h1 span {
    color:var(--red);
}

h2 {
    color:var(--navy-dark);
    font-size:clamp(32px,4vw,46px);
    line-height:1.13;
    letter-spacing:-.035em;
}

h3 {
    color:var(--navy-dark);
}

.button {
    display:inline-flex;
    justify-content:center;
    align-items:center;
    padding:14px 23px;
    border-radius:999px;
    font-weight:700;
    font-size:14px;
    transition:.25s ease;
}

.button:hover {
    transform:translateY(-2px);
}

.button-primary {
    background:var(--red);
    color:white;
    box-shadow:0 10px 30px rgba(237,28,36,.20);
}

.button-secondary {
    color:var(--navy);
    border:1px solid #CBD2D8;
    background:white;
}

.button-white {
    background:white;
    color:var(--red);
}


/* HERO */

.hero {
    min-height:620px;
    position:relative;
    overflow:hidden;
    display:flex;
    align-items:center;
    background:
        radial-gradient(circle at 90% 20%,rgba(237,28,36,.07),transparent 25%),
        linear-gradient(135deg,#fff 0%,#fafaf8 55%,#f5f8fb 100%);
}

.hero-grid {
    display:grid;
    grid-template-columns:1.05fr .95fr;
    gap:70px;
    align-items:center;
    padding-top:55px;
    padding-bottom:55px;
}

.hero-copy p {
    max-width:620px;
    margin:24px 0 28px;
    font-size:17px;
    color:#5F666D;
}

.hero-actions {
    display:flex;
    gap:12px;
}

.trust-row {
    display:flex;
    gap:34px;
    margin-top:43px;
}

.trust-row div {
    display:flex;
    flex-direction:column;
}

.trust-row strong {
    color:var(--navy);
    font-size:13px;
}

.trust-row span {
    color:#858B90;
    font-size:11px;
}

.hero-visual {
    position:relative;
}

.hero-image-placeholder {
    min-height:450px;
    border-radius:38px 38px 90px 38px;
    background:
        linear-gradient(145deg,rgba(0,59,115,.94),rgba(0,40,79,.98));
    box-shadow:var(--shadow);
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    color:white;
    position:relative;
    overflow:hidden;
}

.hero-image-placeholder:before {
    content:"";
    position:absolute;
    width:330px;
    height:330px;
    border-radius:50%;
    background:rgba(255,255,255,.05);
    top:-110px;
    right:-80px;
}

.hero-image-placeholder:after {
    content:"";
    position:absolute;
    width:250px;
    height:250px;
    border-radius:50%;
    border:1px solid rgba(255,255,255,.1);
    bottom:-100px;
    left:-60px;
}

.hands-symbol {
    display:flex;
    align-items:center;
    gap:14px;
    z-index:2;
}

.hand {
    width:100px;
    height:35px;
    background:white;
    border-radius:30px;
    opacity:.92;
}

.left-hand {
    transform:rotate(14deg);
}

.right-hand {
    transform:rotate(-14deg);
}

.heart {
    color:var(--red);
    font-size:52px;
}

.visual-message {
    z-index:2;
    text-align:center;
    display:flex;
    flex-direction:column;
    margin-top:28px;
}

.visual-message strong {
    font-family:Montserrat;
    font-size:22px;
}

.visual-message span {
    opacity:.7;
    font-size:13px;
}

.floating-card {
    position:absolute;
    left:-35px;
    bottom:30px;
    background:white;
    padding:16px 22px;
    border-radius:16px;
    box-shadow:0 18px 45px rgba(0,0,0,.14);
    display:flex;
    align-items:center;
    gap:13px;
}

.floating-icon {
    color:var(--red);
    font-size:24px;
}

.floating-card div {
    display:flex;
    flex-direction:column;
}

.floating-card strong {
    color:var(--navy);
    font-size:13px;
}

.floating-card small {
    color:#8A8F93;
}


/* ABOUT */

.about {
    background:white;
}

.about-grid {
    display:grid;
    grid-template-columns:.8fr 1.2fr;
    gap:100px;
}

.large-copy {
    font-size:21px;
    color:var(--navy-dark);
    font-weight:500;
    line-height:1.55;
}

.about-copy > p + p {
    margin-top:20px;
    color:var(--muted);
}

.text-link {
    display:inline-block;
    margin-top:25px;
    color:var(--red);
    font-weight:700;
}


/* PROGRAMS */

.programs {
    background:#F3F6F8;
}

.section-heading {
    display:flex;
    justify-content:space-between;
    align-items:end;
    gap:60px;
    margin-bottom:42px;
}

.section-heading > p {
    max-width:400px;
    color:var(--muted);
}

.program-grid {
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:16px;
}

.program-card {
    background:white;
    padding:30px 25px;
    min-height:330px;
    border-radius:var(--radius);
    border:1px solid #ECEEED;
    position:relative;
    transition:.3s ease;
}

.program-card:hover {
    transform:translateY(-7px);
    box-shadow:var(--shadow);
}

.program-number {
    position:absolute;
    top:22px;
    right:22px;
    font-size:11px;
    color:#A8ADB1;
}

.program-icon {
    width:48px;
    height:48px;
    border-radius:14px;
    background:#FFF0F1;
    color:var(--red);
    display:grid;
    place-items:center;
    font-size:24px;
    margin-bottom:45px;
}

.program-card h3 {
    font-size:19px;
    margin-bottom:13px;
}

.program-card p {
    font-size:14px;
    color:var(--muted);
}

.program-card a {
    display:inline-block;
    color:var(--red);
    font-weight:700;
    font-size:13px;
    margin-top:22px;
}


/* ASSISTANCE */

.assistance-section {
    background:var(--navy);
    color:white;
    overflow:hidden;
}

.assistance-grid {
    min-height:480px;
    display:grid;
    grid-template-columns:.8fr 1.2fr;
    align-items:center;
    gap:90px;
}

.assistance-copy h2 {
    color:white;
}

.assistance-copy p {
    max-width:600px;
    margin:22px 0 28px;
    color:#D4E1EC;
}

.assistance-visual {
    height:340px;
    position:relative;
    display:grid;
    place-items:center;
}

.assistance-symbol {
    width:170px;
    height:170px;
    border-radius:50%;
    background:white;
    display:grid;
    place-items:center;
    box-shadow:0 30px 70px rgba(0,0,0,.2);
}

.assistance-symbol span {
    color:var(--red);
    font-size:70px;
}

.circle-one,
.circle-two {
    position:absolute;
    border-radius:50%;
    border:1px solid rgba(255,255,255,.14);
}

.circle-one {
    width:260px;
    height:260px;
}

.circle-two {
    width:340px;
    height:340px;
}


/* IMPACT */

.impact {
    background:white;
}

.impact-header {
    display:grid;
    grid-template-columns:1fr .7fr;
    gap:80px;
    margin-bottom:45px;
}

.impact-header p {
    color:var(--muted);
}

.story-placeholder {
    display:grid;
    grid-template-columns:1fr 1fr;
    background:var(--warm);
    border-radius:28px;
    overflow:hidden;
    min-height:360px;
}

.story-image {
    background:
        radial-gradient(circle at 30% 30%,rgba(237,28,36,.25),transparent 35%),
        var(--navy-dark);
    display:grid;
    place-items:center;
}

.story-symbol {
    width:110px;
    height:110px;
    border:3px solid var(--red);
    border-radius:50%;
    display:grid;
    place-items:center;
    color:white;
    font-family:Montserrat;
    font-size:45px;
    font-weight:800;
}

.story-content {
    padding:60px;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.story-label {
    color:var(--red);
    font-size:11px;
    font-weight:800;
    letter-spacing:.14em;
}

.story-content h3 {
    font-size:28px;
    margin:13px 0;
}

.story-content p {
    color:var(--muted);
}


/* VOLUNTEER */

.volunteer-card {
    border:1px solid var(--border);
    border-radius:28px;
    padding:50px 55px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
    background:white;
    box-shadow:0 12px 40px rgba(0,0,0,.04);
}

.volunteer-card p {
    color:var(--muted);
    margin-top:14px;
    max-width:650px;
}


/* DONATE */

.donate-section {
    background:var(--red);
    padding:85px 0;
    text-align:center;
    color:white;
}

.donate-content {
    max-width:750px;
}

.donate-content h2 {
    color:white;
}

.donate-content p {
    margin:20px auto 28px;
    max-width:630px;
    color:#FFE5E6;
}

.mini-heart {
    display:block;
    font-size:28px;
    margin-bottom:10px;
}


/* CONTACT */

.contact {
    background:white;
}

.contact-grid {
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:100px;
}

.contact-heading p {
    color:var(--muted);
    margin-top:20px;
    max-width:500px;
}

.contact-options {
    border-top:1px solid var(--border);
}

.contact-item {
    padding:22px 0;
    border-bottom:1px solid var(--border);
    display:flex;
    justify-content:space-between;
    gap:30px;
}

.contact-item span {
    color:#8B9094;
    font-size:12px;
}

.contact-item strong {
    color:var(--navy);
    font-size:14px;
}


/* FOOTER */

footer {
    background:#071E32;
    color:white;
    padding:55px 0 25px;
}

.footer-grid {
    display:flex;
    justify-content:space-between;
    gap:50px;
}

.footer-brand {
    color:var(--red);
    font-size:22px;
    font-weight:800;
}

.footer-brand span {
    color:white;
}

.footer-grid p {
    color:#91A4B4;
    margin-top:5px;
    font-size:12px;
}

.footer-links {
    display:flex;
    gap:25px;
    flex-wrap:wrap;
    font-size:12px;
    color:#C5D0D8;
}

.footer-bottom {
    margin-top:45px;
    padding-top:20px;
    border-top:1px solid rgba(255,255,255,.1);
    display:flex;
    justify-content:space-between;
    color:#718696;
    font-size:11px;
}


/* REVEAL */

.reveal {
    opacity:0;
    transform:translateY(22px);
    transition:
        opacity .65s ease,
        transform .65s ease;
}

.reveal.visible {
    opacity:1;
    transform:none;
}


/* TABLET */

@media (max-width:1023px) {

    .main-nav {
        position:absolute;
        top:76px;
        left:0;
        right:0;
        background:white;
        padding:25px;
        flex-direction:column;
        align-items:flex-start;
        display:none;
        box-shadow:0 20px 40px rgba(0,0,0,.08);
    }

    .main-nav.open {
        display:flex;
    }

    .menu-button {
        display:block;
    }

    .hero-grid {
        grid-template-columns:1fr 1fr;
        gap:35px;
    }

    .hero-image-placeholder {
        min-height:390px;
    }

    .program-grid {
        grid-template-columns:1fr 1fr;
    }

    .assistance-grid {
        gap:40px;
    }

}


/* MOBILE */

@media (max-width:767px) {

    .container {
        width:min(100% - 32px,1160px);
    }

    .nav-wrap {
        min-height:68px;
    }

    .main-nav {
        top:68px;
    }

    .section {
        padding:68px 0;
    }

    .hero {
        min-height:auto;
    }

    .hero-grid {
        grid-template-columns:1fr;
        padding-top:55px;
        padding-bottom:70px;
    }

    h1 {
        font-size:40px;
    }

    h2 {
        font-size:32px;
    }

    .hero-copy p {
        font-size:15px;
    }

    .hero-actions {
        flex-direction:column;
        align-items:stretch;
    }

    .trust-row {
        gap:18px;
        justify-content:space-between;
    }

    .hero-image-placeholder {
        min-height:310px;
        border-radius:25px 25px 60px 25px;
    }

    .hand {
        width:70px;
        height:28px;
    }

    .heart {
        font-size:40px;
    }

    .floating-card {
        left:15px;
        bottom:-20px;
    }

    .about-grid,
    .assistance-grid,
    .impact-header,
    .story-placeholder,
    .contact-grid {
        grid-template-columns:1fr;
    }

    .about-grid {
        gap:30px;
    }

    .section-heading {
        flex-direction:column;
        align-items:flex-start;
        gap:20px;
    }

    .program-grid {
        grid-template-columns:1fr;
    }

    .program-card {
        min-height:auto;
    }

    .assistance-grid {
        padding:60px 0;
        gap:25px;
    }

    .assistance-visual {
        height:250px;
    }

    .assistance-symbol {
        width:120px;
        height:120px;
    }

    .circle-one {
        width:190px;
        height:190px;
    }

    .circle-two {
        width:240px;
        height:240px;
    }

    .story-image {
        min-height:260px;
    }

    .story-content {
        padding:35px 25px;
    }

    .volunteer-card {
        padding:35px 25px;
        flex-direction:column;
        align-items:flex-start;
        gap:25px;
    }

    .contact-grid {
        gap:40px;
    }

    .contact-item {
        flex-direction:column;
        gap:5px;
    }

    .footer-grid,
    .footer-bottom {
        flex-direction:column;
    }

    .footer-links {
        margin-top:15px;
    }

}


/* ACCESSIBILITY */

@media (prefers-reduced-motion:reduce) {

    html {
        scroll-behavior:auto;
    }

    *,
    *:before,
    *:after {
        animation:none !important;
        transition:none !important;
    }

    .reveal {
        opacity:1;
        transform:none;
    }

}

/* REAL ROTA FOUNDATION LOGO */
.site-logo {
    display:block;
    width:210px;
    height:auto;
    max-height:58px;
    object-fit:contain;
    object-position:left center;
}

@media (max-width:767px) {
    .site-logo {
        width:165px;
        max-height:48px;
    }
}

/* =========================================================
   APPROVED ROTA HERO
   ========================================================= */

.approved-hero {
    position:relative;
    min-height:650px;
    overflow:hidden;
    background:#071e32;
    display:flex;
    align-items:center;
    padding-bottom:110px;
}

.hero-photo {
    position:absolute;
    inset:0;
    background-image:url("../images/rota-hero-approved.png");
    background-size:cover;
    background-position:center center;
    transform:scale(1.025);
    animation:rotaCinematic 18s ease-in-out infinite alternate;
}

.hero-overlay {
    position:absolute;
    inset:0;
    background:
        linear-gradient(
            90deg,
            rgba(3,24,43,.94) 0%,
            rgba(3,24,43,.82) 27%,
            rgba(3,24,43,.40) 50%,
            rgba(3,24,43,.08) 72%,
            rgba(3,24,43,.10) 100%
        );
}

.hero-rings {
    position:absolute;
    width:520px;
    height:520px;
    left:-320px;
    bottom:-250px;
    border:1px solid rgba(237,28,36,.24);
    border-radius:50%;
    animation:rotaPulse 8s ease-in-out infinite;
}

.hero-rings:before,
.hero-rings:after {
    content:"";
    position:absolute;
    border-radius:50%;
    border:1px solid rgba(237,28,36,.13);
}

.hero-rings:before {
    inset:55px;
}

.hero-rings:after {
    inset:110px;
}

.approved-hero-content {
    position:relative;
    z-index:4;
    width:100%;
}

.approved-hero .hero-copy {
    max-width:610px;
}

.hero-eyebrow {
    color:#fff;
    letter-spacing:.30em;
    position:relative;
    display:inline-flex;
    align-items:center;
    gap:18px;
}

.hero-eyebrow:after {
    content:"";
    width:70px;
    height:2px;
    background:var(--red);
    display:block;
}

.approved-hero h1 {
    color:white;
    max-width:620px;
    font-size:clamp(48px,5vw,70px);
    text-shadow:0 3px 25px rgba(0,0,0,.22);
}

.approved-hero h1 span {
    color:var(--red);
}

.approved-hero .hero-copy > p {
    color:rgba(255,255,255,.90);
    max-width:570px;
    font-size:17px;
    text-shadow:0 2px 12px rgba(0,0,0,.25);
}

.hero-main-button {
    box-shadow:0 15px 40px rgba(237,28,36,.30);
}

.hero-outline-button {
    border:1px solid rgba(255,255,255,.70);
    color:white;
    background:rgba(255,255,255,.06);
    backdrop-filter:blur(6px);
}

.hero-outline-button:hover {
    background:white;
    color:var(--navy);
}

.hero-program-strip {
    position:absolute;
    z-index:5;
    left:50%;
    transform:translateX(-50%);
    bottom:28px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:14px;
}

.hero-program-card {
    min-height:105px;
    background:rgba(255,255,255,.96);
    border:1px solid rgba(255,255,255,.8);
    border-radius:18px;
    padding:20px;
    display:flex;
    align-items:center;
    gap:14px;
    box-shadow:0 16px 45px rgba(0,0,0,.14);
    backdrop-filter:blur(10px);
    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.hero-program-card:hover {
    transform:translateY(-7px);
    box-shadow:0 22px 55px rgba(0,0,0,.20);
}

.hero-program-icon {
    flex:0 0 43px;
    width:43px;
    height:43px;
    border-radius:13px;
    background:#fff0f1;
    display:grid;
    place-items:center;
    color:var(--red);
    font-size:22px;
}

.hero-program-card div {
    display:flex;
    flex-direction:column;
}

.hero-program-card strong {
    color:var(--navy-dark);
    font-family:Montserrat;
    font-size:13px;
    line-height:1.3;
}

.hero-program-card small {
    color:#7b8389;
    font-size:10px;
    line-height:1.4;
    margin-top:5px;
}

.hero-enter {
    animation:heroEnter .8s ease both;
}

.hero-program-card:nth-child(2) {
    animation-delay:.10s;
}

.hero-program-card:nth-child(3) {
    animation-delay:.20s;
}

.hero-program-card:nth-child(4) {
    animation-delay:.30s;
}

@keyframes heroEnter {
    from {
        opacity:0;
        transform:translateY(24px);
    }
    to {
        opacity:1;
        transform:translateY(0);
    }
}

@keyframes rotaCinematic {
    0% {
        transform:scale(1.025) translate3d(0,0,0);
    }
    100% {
        transform:scale(1.075) translate3d(-.7%,0,0);
    }
}

@keyframes rotaPulse {
    0%,100% {
        opacity:.55;
        transform:scale(1);
    }
    50% {
        opacity:1;
        transform:scale(1.05);
    }
}


/* TABLET */

@media(max-width:1023px) {

    .approved-hero {
        min-height:720px;
        padding-bottom:210px;
    }

    .hero-photo {
        background-position:58% center;
    }

    .hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(3,24,43,.93),
                rgba(3,24,43,.68) 60%,
                rgba(3,24,43,.20)
            );
    }

    .hero-program-strip {
        grid-template-columns:1fr 1fr;
    }

}


/* MOBILE */

@media(max-width:767px) {

    .approved-hero {
        min-height:720px;
        align-items:flex-end;
        padding-top:280px;
        padding-bottom:35px;
    }

    .hero-photo {
        background-position:64% top;
        animation:rotaMobileCinematic 20s ease-in-out infinite alternate;
    }

    .hero-overlay {
        background:
            linear-gradient(
                0deg,
                rgba(3,24,43,.98) 0%,
                rgba(3,24,43,.90) 45%,
                rgba(3,24,43,.20) 82%
            );
    }

    .approved-hero h1 {
        font-size:40px;
    }

    .approved-hero .hero-copy > p {
        font-size:14px;
    }

    .hero-eyebrow {
        font-size:10px;
    }

    .hero-program-strip {
        display:none;
    }

    .approved-hero .hero-actions {
        flex-direction:row;
        flex-wrap:wrap;
    }

    .approved-hero .button {
        padding:13px 17px;
        font-size:12px;
    }

}


/* PERFORMANCE / ACCESSIBILITY */

@keyframes rotaMobileCinematic {
    from {
        transform:scale(1.02);
    }
    to {
        transform:scale(1.045);
    }
}

@media(prefers-reduced-motion:reduce) {

    .hero-photo,
    .hero-rings,
    .hero-enter {
        animation:none !important;
    }

}

/* =========================================================
   ROTA RESPONSIVE FOUNDATION
   Desktop / Tablet / Mobile
   ========================================================= */

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    overflow-x: hidden;
}

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

.container {
    width: min(1180px, calc(100% - 48px));
    margin-inline: auto;
}


/* ---------- DESKTOP ---------- */

@media (min-width: 1024px) {

    .site-header .nav-wrap {
        min-height: 76px;
    }

    .site-logo {
        width: 210px;
    }

    .approved-hero {
        min-height: 650px;
    }

    .approved-hero .hero-copy {
        max-width: 610px;
    }

    .hero-program-strip {
        grid-template-columns: repeat(4, minmax(0,1fr));
    }

}


/* ---------- TABLET ---------- */

@media (min-width: 768px) and (max-width: 1023px) {

    .container {
        width: min(100% - 40px, 920px);
    }

    .site-logo {
        width: 180px;
    }

    .approved-hero {
        min-height: 760px;
        padding-top: 60px;
        padding-bottom: 225px;
    }

    .hero-photo {
        background-position: 62% center;
    }

    .approved-hero .hero-copy {
        max-width: 520px;
    }

    .approved-hero h1 {
        font-size: clamp(44px,6vw,58px);
    }

    .hero-program-strip {
        grid-template-columns: repeat(2,minmax(0,1fr));
        bottom: 25px;
    }

    .hero-program-card {
        min-height: 92px;
    }

}


/* ---------- MOBILE ---------- */

@media (max-width: 767px) {

    .container {
        width: calc(100% - 30px);
    }

    .site-header .nav-wrap {
        min-height: 64px;
    }

    .site-logo {
        width: 145px;
        max-height: 45px;
    }

    .menu-button {
        display: flex;
    }

    .main-nav {
        position: absolute;
        left: 15px;
        right: 15px;
        top: 68px;

        display: none;
        flex-direction: column;
        align-items: stretch;

        padding: 18px;

        background: rgba(255,255,255,.98);
        border-radius: 16px;

        box-shadow:
            0 18px 50px rgba(0,0,0,.15);

        z-index: 1000;
    }

    .main-nav.open {
        display: flex;
    }

    .main-nav a {
        padding: 12px 8px;
    }

    .nav-donate {
        text-align: center;
        margin-top: 5px;
    }


    /* MOBILE HERO */

    .approved-hero {
        min-height: auto;
        padding:
            330px
            0
            38px;

        display: block;
    }

    .hero-photo {
        background-size: auto 390px;
        background-repeat: no-repeat;
        background-position: 65% top;
        background-color: #061f34;
    }

    .hero-overlay {
        background:
            linear-gradient(
                to bottom,
                rgba(3,24,43,.05) 0%,
                rgba(3,24,43,.20) 35%,
                rgba(3,24,43,.94) 52%,
                #061f34 72%
            );
    }

    .approved-hero-content {
        position: relative;
    }

    .approved-hero .hero-copy {
        max-width: 100%;
    }

    .hero-eyebrow {
        font-size: 9px;
        letter-spacing: .22em;
    }

    .hero-eyebrow:after {
        width: 42px;
    }

    .approved-hero h1 {
        font-size: clamp(37px,11vw,48px);
        line-height: 1.02;
        margin-top: 14px;
    }

    .approved-hero .hero-copy > p {
        font-size: 14px;
        line-height: 1.65;
        max-width: 100%;
    }

    .approved-hero .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 22px;
    }

    .approved-hero .button {
        width: 100%;
        justify-content: center;
        text-align: center;
    }


    /* MOBILE PROGRAMMES */

    .hero-program-strip {
        position: relative;
        left: auto;
        bottom: auto;
        transform: none;

        margin-top: 30px;

        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .hero-program-card {
        min-height: 82px;
        padding: 14px 16px;
        border-radius: 15px;
    }

    .hero-program-card strong {
        font-size: 13px;
    }

    .hero-program-card small {
        font-size: 11px;
    }

}


/* ---------- SMALL PHONES ---------- */

@media (max-width: 390px) {

    .container {
        width: calc(100% - 24px);
    }

    .site-logo {
        width: 130px;
    }

    .approved-hero {
        padding-top: 300px;
    }

    .hero-photo {
        background-size: auto 350px;
        background-position: 66% top;
    }

    .approved-hero h1 {
        font-size: 35px;
    }

}


/* ---------- REDUCED MOTION ---------- */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }

}

/* =========================================================
   ROTA RESPONSIVE FOUNDATION
   Desktop / Tablet / Mobile
   ========================================================= */

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    overflow-x: hidden;
}

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

.container {
    width: min(1180px, calc(100% - 48px));
    margin-inline: auto;
}


/* ---------- DESKTOP ---------- */

@media (min-width: 1024px) {

    .site-header .nav-wrap {
        min-height: 76px;
    }

    .site-logo {
        width: 210px;
    }

    .approved-hero {
        min-height: 650px;
    }

    .approved-hero .hero-copy {
        max-width: 610px;
    }

    .hero-program-strip {
        grid-template-columns: repeat(4, minmax(0,1fr));
    }

}


/* ---------- TABLET ---------- */

@media (min-width: 768px) and (max-width: 1023px) {

    .container {
        width: min(100% - 40px, 920px);
    }

    .site-logo {
        width: 180px;
    }

    .approved-hero {
        min-height: 760px;
        padding-top: 60px;
        padding-bottom: 225px;
    }

    .hero-photo {
        background-position: 62% center;
    }

    .approved-hero .hero-copy {
        max-width: 520px;
    }

    .approved-hero h1 {
        font-size: clamp(44px,6vw,58px);
    }

    .hero-program-strip {
        grid-template-columns: repeat(2,minmax(0,1fr));
        bottom: 25px;
    }

    .hero-program-card {
        min-height: 92px;
    }

}


/* ---------- MOBILE ---------- */

@media (max-width: 767px) {

    .container {
        width: calc(100% - 30px);
    }

    .site-header .nav-wrap {
        min-height: 64px;
    }

    .site-logo {
        width: 145px;
        max-height: 45px;
    }

    .menu-button {
        display: flex;
    }

    .main-nav {
        position: absolute;
        left: 15px;
        right: 15px;
        top: 68px;

        display: none;
        flex-direction: column;
        align-items: stretch;

        padding: 18px;

        background: rgba(255,255,255,.98);
        border-radius: 16px;

        box-shadow:
            0 18px 50px rgba(0,0,0,.15);

        z-index: 1000;
    }

    .main-nav.open {
        display: flex;
    }

    .main-nav a {
        padding: 12px 8px;
    }

    .nav-donate {
        text-align: center;
        margin-top: 5px;
    }


    /* MOBILE HERO */

    .approved-hero {
        min-height: auto;
        padding:
            330px
            0
            38px;

        display: block;
    }

    .hero-photo {
        background-size: auto 390px;
        background-repeat: no-repeat;
        background-position: 65% top;
        background-color: #061f34;
    }

    .hero-overlay {
        background:
            linear-gradient(
                to bottom,
                rgba(3,24,43,.05) 0%,
                rgba(3,24,43,.20) 35%,
                rgba(3,24,43,.94) 52%,
                #061f34 72%
            );
    }

    .approved-hero-content {
        position: relative;
    }

    .approved-hero .hero-copy {
        max-width: 100%;
    }

    .hero-eyebrow {
        font-size: 9px;
        letter-spacing: .22em;
    }

    .hero-eyebrow:after {
        width: 42px;
    }

    .approved-hero h1 {
        font-size: clamp(37px,11vw,48px);
        line-height: 1.02;
        margin-top: 14px;
    }

    .approved-hero .hero-copy > p {
        font-size: 14px;
        line-height: 1.65;
        max-width: 100%;
    }

    .approved-hero .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 22px;
    }

    .approved-hero .button {
        width: 100%;
        justify-content: center;
        text-align: center;
    }


    /* MOBILE PROGRAMMES */

    .hero-program-strip {
        position: relative;
        left: auto;
        bottom: auto;
        transform: none;

        margin-top: 30px;

        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .hero-program-card {
        min-height: 82px;
        padding: 14px 16px;
        border-radius: 15px;
    }

    .hero-program-card strong {
        font-size: 13px;
    }

    .hero-program-card small {
        font-size: 11px;
    }

}


/* ---------- SMALL PHONES ---------- */

@media (max-width: 390px) {

    .container {
        width: calc(100% - 24px);
    }

    .site-logo {
        width: 130px;
    }

    .approved-hero {
        padding-top: 300px;
    }

    .hero-photo {
        background-size: auto 350px;
        background-position: 66% top;
    }

    .approved-hero h1 {
        font-size: 35px;
    }

}


/* ---------- REDUCED MOTION ---------- */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }

}

/* =========================================================
   ROTA FOUNDATION - OUR PURPOSE
   ========================================================= */

.rota-purpose {
    position:relative;
    padding:105px 0;
    background:
        radial-gradient(
            circle at 12% 50%,
            rgba(237,28,36,.045),
            transparent 30%
        ),
        #ffffff;

    overflow:hidden;
}

.purpose-grid {
    display:grid;
    grid-template-columns:.88fr 1.12fr;
    gap:105px;
    align-items:center;
}


/* VISUAL */

.purpose-visual {
    position:relative;
    min-height:430px;
    display:grid;
    place-items:center;
}

.purpose-circle {
    position:absolute;
    border-radius:50%;
}

.purpose-circle-one {
    width:390px;
    height:390px;

    border:
        1px solid
        rgba(237,28,36,.12);

    animation:
        purposeRotate
        24s
        linear
        infinite;
}

.purpose-circle-one:before {
    content:"";

    position:absolute;

    width:13px;
    height:13px;

    border-radius:50%;

    background:var(--gold);

    top:48px;
    right:50px;

    box-shadow:
        0 0 0 9px
        rgba(217,154,0,.08);
}

.purpose-circle-two {
    width:300px;
    height:300px;

    border:
        1px dashed
        rgba(0,59,115,.16);

    animation:
        purposeRotateReverse
        30s
        linear
        infinite;
}

.purpose-mark {
    position:relative;

    width:235px;
    height:235px;

    border-radius:50%;

    background:white;

    display:grid;
    place-items:center;

    padding:35px;

    box-shadow:
        0 30px 80px
        rgba(0,40,79,.12);

    z-index:2;
}

.purpose-mark img {
    width:100%;
    height:auto;
}

.purpose-message {
    position:absolute;

    right:-15px;
    bottom:45px;

    z-index:3;

    min-width:205px;

    padding:17px 21px;

    background:var(--navy);

    border-radius:15px;

    box-shadow:
        0 18px 45px
        rgba(0,40,79,.20);

    display:flex;
    flex-direction:column;
}

.purpose-message span {
    color:#B9CBDA;

    font-size:9px;

    font-weight:700;

    letter-spacing:.20em;
}

.purpose-message strong {
    color:white;

    font-family:Montserrat;

    font-size:16px;

    margin-top:3px;
}


/* COPY */

.purpose-content h2 {
    max-width:600px;
}

.purpose-content h2 span {
    color:var(--red);
}

.purpose-lead {
    max-width:640px;

    margin-top:25px;

    color:var(--navy-dark);

    font-size:20px;

    font-weight:500;

    line-height:1.55;
}

.purpose-content > p:not(.purpose-lead) {
    max-width:640px;

    margin-top:17px;

    color:var(--muted);

    font-size:15px;
}


/* VALUES */

.purpose-values {
    display:grid;

    grid-template-columns:
        repeat(3,1fr);

    gap:14px;

    margin-top:34px;
}

.purpose-values > div {
    position:relative;

    padding:20px 17px;

    border:
        1px solid
        var(--border);

    border-radius:15px;

    background:
        var(--warm);

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}

.purpose-values > div:hover {
    transform:
        translateY(-5px);

    border-color:
        rgba(237,28,36,.20);

    box-shadow:
        0 15px 35px
        rgba(0,40,79,.08);
}

.purpose-values span {
    display:block;

    color:var(--red);

    font-family:Montserrat;

    font-size:10px;

    font-weight:800;

    margin-bottom:12px;
}

.purpose-values strong {
    display:block;

    color:var(--navy-dark);

    font-family:Montserrat;

    font-size:14px;
}

.purpose-values small {
    display:block;

    color:#7C8389;

    font-size:11px;

    margin-top:5px;
}


/* LINK */

.purpose-link {
    display:inline-flex;

    align-items:center;

    gap:12px;

    margin-top:30px;

    color:var(--red);

    font-size:13px;

    font-weight:800;
}

.purpose-link span {
    transition:
        transform .2s ease;
}

.purpose-link:hover span {
    transform:
        translateX(5px);
}


/* MOTION */

@keyframes purposeRotate {

    to {
        transform:
            rotate(360deg);
    }

}

@keyframes purposeRotateReverse {

    to {
        transform:
            rotate(-360deg);
    }

}


/* TABLET */

@media (
    min-width:768px
)
and (
    max-width:1023px
) {

    .rota-purpose {
        padding:85px 0;
    }

    .purpose-grid {
        grid-template-columns:
            .85fr 1.15fr;

        gap:50px;
    }

    .purpose-visual {
        min-height:350px;
    }

    .purpose-circle-one {
        width:310px;
        height:310px;
    }

    .purpose-circle-two {
        width:240px;
        height:240px;
    }

    .purpose-mark {
        width:190px;
        height:190px;
    }

    .purpose-message {
        right:-10px;
        bottom:25px;
    }

    .purpose-values {
        grid-template-columns:1fr;
    }

}


/* MOBILE */

@media (
    max-width:767px
) {

    .rota-purpose {
        padding:70px 0;
    }

    .purpose-grid {
        grid-template-columns:1fr;
        gap:50px;
    }

    .purpose-content {
        order:1;
    }

    .purpose-visual {
        order:2;
        min-height:310px;
    }

    .purpose-lead {
        font-size:17px;
    }

    .purpose-values {
        grid-template-columns:1fr;
        gap:9px;
    }

    .purpose-values > div {
        display:grid;

        grid-template-columns:
            35px
            1fr;

        padding:15px;
    }

    .purpose-values span {
        grid-row:
            1 / 3;

        margin:0;

        align-self:center;
    }

    .purpose-values small {
        margin-top:2px;
    }

    .purpose-circle-one {
        width:275px;
        height:275px;
    }

    .purpose-circle-two {
        width:215px;
        height:215px;
    }

    .purpose-mark {
        width:165px;
        height:165px;
        padding:27px;
    }

    .purpose-message {
        right:0;
        bottom:15px;
        min-width:175px;
    }

}


/* REDUCED MOTION */

@media (
    prefers-reduced-motion:reduce
) {

    .purpose-circle {
        animation:none !important;
    }

}

/* =========================================================
   ROTA FOUNDATION - FINAL RESPONSIVE HERO
   ========================================================= */

.final-hero {
    position:relative;
    min-height:660px;
    overflow:hidden;
    background:#05263d;
    isolation:isolate;
}

.final-hero-photo {
    position:absolute;
    inset:0;
    z-index:-3;

    background-image:
        url("../images/rota-hero-locked.png");

    background-size:cover;
    background-position:center center;

    transform:scale(1.015);

    animation:
        rotaHeroMove 18s
        ease-in-out
        infinite alternate;
}

.final-hero-shade {
    position:absolute;
    inset:0;
    z-index:-2;

    background:
        linear-gradient(
            90deg,
            rgba(1,31,51,.96) 0%,
            rgba(1,31,51,.87) 24%,
            rgba(1,31,51,.48) 43%,
            rgba(1,31,51,.08) 66%,
            rgba(1,31,51,.02) 100%
        );
}

.final-hero-inner {
    min-height:660px;

    position:relative;

    padding-top:88px;
    padding-bottom:145px;
}

.final-hero-copy {
    width:min(610px,48vw);
    color:#fff;

    animation:
        rotaHeroCopy .8s
        ease-out both;
}

.final-hero-eyebrow {
    display:flex;
    align-items:center;
    gap:18px;

    margin-bottom:22px;

    font-family:Montserrat,sans-serif;
    font-size:11px;
    font-weight:700;
    letter-spacing:.28em;

    color:#fff;
}

.final-hero-eyebrow span {
    width:58px;
    height:2px;
    display:block;
    background:#ED1C24;
}

.final-hero h1 {
    margin:0;

    color:#fff;

    font-family:Montserrat,sans-serif;
    font-size:clamp(48px,4.5vw,72px);
    font-weight:700;
    line-height:1.04;
    letter-spacing:-.045em;
}

.final-hero h1 strong {
    color:#ED1C24;
    font-weight:800;
}

.final-hero-copy > p {
    max-width:590px;

    margin:25px 0 0;

    color:rgba(255,255,255,.92);

    font-size:17px;
    line-height:1.65;
}

.final-hero-actions {
    display:flex;
    flex-wrap:wrap;
    gap:15px;

    margin-top:28px;
}

.final-primary-btn,
.final-secondary-btn {
    min-height:54px;

    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;

    padding:0 25px;

    border-radius:999px;

    font-size:13px;
    font-weight:700;

    transition:
        transform .2s ease,
        box-shadow .2s ease,
        background .2s ease;
}

.final-primary-btn {
    color:#fff;
    background:#ED1C24;

    box-shadow:
        0 12px 30px
        rgba(237,28,36,.24);
}

.final-primary-btn span {
    font-size:18px;
}

.final-secondary-btn {
    color:#fff;

    border:
        1px solid
        rgba(255,255,255,.85);

    background:
        rgba(4,40,65,.22);

    backdrop-filter:
        blur(7px);
}

.final-primary-btn:hover,
.final-secondary-btn:hover {
    transform:translateY(-3px);
}


/* PROGRAMME CARDS */

.final-programmes {
    position:absolute;

    left:24px;
    right:24px;
    bottom:25px;

    display:grid;

    grid-template-columns:
        repeat(4,minmax(0,1fr));

    gap:12px;
}

.final-program-card {
    min-width:0;
    min-height:116px;

    display:grid;

    grid-template-columns:
        72px 1fr;

    align-items:center;
    gap:14px;

    padding:15px;

    color:#003B73;

    background:
        rgba(255,255,255,.97);

    border:
        1px solid
        rgba(255,255,255,.6);

    border-radius:16px;

    box-shadow:
        0 15px 40px
        rgba(0,25,50,.16);

    transition:
        transform .22s ease,
        box-shadow .22s ease;
}

.final-program-card:hover {
    transform:translateY(-5px);

    box-shadow:
        0 22px 50px
        rgba(0,25,50,.22);
}

.final-program-photo {
    width:70px;
    height:70px;

    border-radius:50%;

    display:grid;
    place-items:center;

    background:#FFF3F3;

    border:
        3px solid
        #ED1C24;

    font-size:24px;
    color:#ED1C24;
}

.final-program-card.housing
.final-program-photo {
    border-color:#1766B1;
    color:#1766B1;
}

.final-program-card.education
.final-program-photo {
    border-color:#149447;
    color:#149447;
}

.final-program-card.income
.final-program-photo {
    border-color:#E29400;
    color:#E29400;
}

.final-program-card strong {
    display:block;

    font-family:Montserrat,sans-serif;

    color:#003B73;

    font-size:13px;
    line-height:1.3;
}

.final-program-card p {
    margin:5px 0 6px;

    color:#718096;

    font-size:10px;
    line-height:1.4;
}

.final-program-card .learn {
    color:#003B73;

    font-size:10px;
    font-weight:800;
}


/* HERO MOTION */

@keyframes rotaHeroMove {

    from {
        transform:scale(1.015);
    }

    to {
        transform:
            scale(1.055)
            translateX(-.6%);
    }

}

@keyframes rotaHeroCopy {

    from {
        opacity:0;
        transform:translateY(18px);
    }

    to {
        opacity:1;
        transform:none;
    }

}


/* =========================================================
   TABLET
   ========================================================= */

@media
(min-width:768px)
and
(max-width:1023px) {

    .final-hero {
        min-height:780px;
    }

    .final-hero-photo {
        background-position:58% center;
    }

    .final-hero-inner {
        min-height:780px;

        padding-top:72px;
        padding-bottom:250px;
    }

    .final-hero-copy {
        width:58%;
    }

    .final-hero h1 {
        font-size:
            clamp(44px,6vw,60px);
    }

    .final-programmes {
        grid-template-columns:
            repeat(2,minmax(0,1fr));

        bottom:24px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media
(max-width:767px) {

    .final-hero {
        min-height:auto;
    }

    .final-hero-photo {
        background-size:auto 365px;
        background-repeat:no-repeat;
        background-position:62% top;

        animation:none;

        transform:none;
    }

    .final-hero-shade {
        background:
            linear-gradient(
                to bottom,
                rgba(2,31,51,.03) 0%,
                rgba(2,31,51,.10) 28%,
                rgba(2,31,51,.78) 43%,
                #05263d 57%,
                #05263d 100%
            );
    }

    .final-hero-inner {
        min-height:auto;

        padding-top:315px;
        padding-bottom:32px;
    }

    .final-hero-copy {
        width:100%;
    }

    .final-hero-eyebrow {
        margin-bottom:14px;
        font-size:9px;
    }

    .final-hero-eyebrow span {
        width:40px;
    }

    .final-hero h1 {
        font-size:
            clamp(38px,11vw,50px);
    }

    .final-hero-copy > p {
        margin-top:18px;

        font-size:14px;
        line-height:1.6;
    }

    .final-hero-actions {
        display:grid;
        grid-template-columns:1fr;

        margin-top:22px;
    }

    .final-primary-btn,
    .final-secondary-btn {
        width:100%;
        min-height:50px;
    }

    .final-programmes {
        position:relative;

        left:auto;
        right:auto;
        bottom:auto;

        margin-top:28px;

        grid-template-columns:1fr;

        gap:9px;
    }

    .final-program-card {
        min-height:88px;

        grid-template-columns:
            60px 1fr;

        padding:12px 14px;
    }

    .final-program-photo {
        width:56px;
        height:56px;

        font-size:19px;
    }

}


/* SMALL MOBILE */

@media
(max-width:390px) {

    .final-hero-photo {
        background-size:auto 330px;
        background-position:63% top;
    }

    .final-hero-inner {
        padding-top:285px;
    }

    .final-hero h1 {
        font-size:36px;
    }

}


/* ACCESSIBILITY */

@media
(prefers-reduced-motion:reduce) {

    .final-hero-photo,
    .final-hero-copy {
        animation:none !important;
    }

}


/* =========================================================
   ROTA HERO PROGRAMME PHOTOGRAPHS
   ========================================================= */

.final-program-photo {
    overflow:hidden;
    padding:0;
    background:#fff;
}

.final-program-photo img {
    display:block;
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:50%;
}

@media (min-width:1024px) {

    .final-program-card {
        min-height:126px;
        grid-template-columns:82px 1fr;
        padding:16px;
    }

    .final-program-photo {
        width:80px;
        height:80px;
    }

}

@media (max-width:767px) {

    .final-program-photo {
        width:60px;
        height:60px;
    }

}

/* =========================================================
   FINAL PROGRAMME PHOTO BORDER CONTROL
   Source photographs contain NO coloured borders
   ========================================================= */

.final-program-photo {
    box-sizing: border-box !important;
    overflow: hidden !important;
    border-radius: 50% !important;
    background: #fff !important;
    padding: 0 !important;
}

.final-program-photo img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 50% !important;
    border: 0 !important;
    outline: 0 !important;
}

.final-program-card.medical .final-program-photo {
    border: 3px solid #ED1C24 !important;
}

.final-program-card.housing .final-program-photo {
    border: 3px solid #1766B1 !important;
}

.final-program-card.education .final-program-photo {
    border: 3px solid #149447 !important;
}

.final-program-card.income .final-program-photo {
    border: 3px solid #E29400 !important;
}


/* =========================================================
   ROTA FOUNDATION - FOUR AREAS OF SUPPORT
   ========================================================= */

.rota-programs {
    position: relative;
    padding: 82px 0 92px;
    background:
        linear-gradient(
            180deg,
            #f7fafc 0%,
            #ffffff 100%
        );
}

.rota-programs-heading {
    display: grid;
    grid-template-columns: 1fr 340px;
    align-items: end;
    gap: 50px;
    margin-bottom: 42px;
}

.rota-section-eyebrow {
    display: flex;
    align-items: center;
    gap: 16px;

    margin-bottom: 14px;

    color: #ED1C24;

    font-family: Montserrat, sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .24em;
}

.rota-section-eyebrow span {
    width: 42px;
    height: 2px;
    display: block;
    background: #ED1C24;
}

.rota-programs h2 {
    margin: 0;

    color: #003B73;

    font-family: Montserrat, sans-serif;
    font-size: clamp(38px, 4vw, 56px);
    line-height: 1.08;
    letter-spacing: -.035em;
}

.rota-programs-intro {
    margin: 0 0 5px;

    color: #66788a;

    font-size: 16px;
    line-height: 1.65;
}


/* =========================================================
   CARDS
   ========================================================= */

.rota-program-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0,1fr));
    gap: 18px;
}

.rota-program-large-card {
    min-width: 0;

    display: flex;
    flex-direction: column;
    align-items: center;

    padding: 28px 22px 24px;

    text-align: center;

    background: #fff;

    border:
        1px solid
        rgba(0,59,115,.07);

    border-radius: 18px;

    box-shadow:
        0 16px 45px
        rgba(0,43,79,.08);

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.rota-program-large-card:hover {
    transform: translateY(-7px);

    box-shadow:
        0 24px 60px
        rgba(0,43,79,.14);
}


/* =========================================================
   ALL PROGRAMME PHOTOS = SAME ROTA RED BORDER
   ========================================================= */

.rota-program-large-photo {
    width: 132px;
    height: 132px;

    flex: 0 0 132px;

    overflow: hidden;

    margin-bottom: 20px;

    border:
        4px solid
        #ED1C24;

    border-radius: 50%;

    background: #fff;

    box-shadow:
        0 8px 25px
        rgba(237,28,36,.10);
}

.rota-program-large-photo img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    border: 0;
    border-radius: 50%;
}


/* HERO CARD CIRCLES ALSO ALL ROTA RED */

.final-program-card.medical .final-program-photo,
.final-program-card.housing .final-program-photo,
.final-program-card.education .final-program-photo,
.final-program-card.income .final-program-photo {
    border-color: #ED1C24 !important;
}


/* =========================================================
   CARD TYPOGRAPHY
   ========================================================= */

.rota-program-large-card h3 {
    margin: 0 0 10px;

    color: #003B73;

    font-family: Montserrat, sans-serif;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.3;
}

.rota-program-large-card > p {
    min-height: 68px;

    margin: 0 0 20px;

    color: #536575;

    font-size: 13px;
    line-height: 1.6;
}


/* =========================================================
   BUTTON
   ========================================================= */

.rota-program-button {
    min-width: 142px;
    min-height: 44px;

    margin-top: auto;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    padding: 0 20px;

    color: #fff;

    background: #ED1C24;

    border-radius: 999px;

    font-family: Montserrat, sans-serif;
    font-size: 12px;
    font-weight: 800;

    box-shadow:
        0 9px 24px
        rgba(237,28,36,.18);

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}

.rota-program-button:hover {
    transform: translateY(-2px);

    box-shadow:
        0 13px 30px
        rgba(237,28,36,.25);
}


/* =========================================================
   TABLET
   ========================================================= */

@media
(min-width: 768px)
and
(max-width: 1023px) {

    .rota-programs {
        padding: 68px 0 76px;
    }

    .rota-programs-heading {
        grid-template-columns: 1fr 280px;
        gap: 30px;
    }

    .rota-program-grid {
        grid-template-columns:
            repeat(2,minmax(0,1fr));

        gap: 18px;
    }

    .rota-program-large-card {
        padding: 28px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media
(max-width: 767px) {

    .rota-programs {
        padding: 54px 0 60px;
    }

    .rota-programs-heading {
        display: block;
        margin-bottom: 28px;
    }

    .rota-programs h2 {
        font-size:
            clamp(34px,10vw,44px);
    }

    .rota-programs-intro {
        margin-top: 15px;
        font-size: 14px;
    }

    .rota-program-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .rota-program-large-card {
        padding: 24px 20px;
    }

    .rota-program-large-photo {
        width: 118px;
        height: 118px;
        flex-basis: 118px;
    }

    .rota-program-large-card > p {
        min-height: auto;
        max-width: 340px;
    }

    .rota-program-button {
        width: 100%;
        max-width: 230px;
    }

}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .rota-program-large-card,
    .rota-program-button {
        transition: none !important;
    }

}


/* =========================================================
   ROTA FOUNDATION - PROGRAMME DETAIL PAGES
   ========================================================= */

.rota-inner-page {
    margin: 0;
    background: #fff;
    color: #252A2E;
}


/* HEADER */

.program-page-header {
    position: relative;
    z-index: 50;

    background: rgba(255,255,255,.97);

    border-bottom:
        1px solid rgba(0,59,115,.08);
}

.program-header-inner {
    width: min(1180px, calc(100% - 48px));
    min-height: 82px;

    margin: auto;

    display: flex;
    align-items: center;
    gap: 34px;
}

.program-logo-link {
    display: block;
    margin-right: auto;
}

.program-logo-link img {
    display: block;
    width: 92px;
    height: auto;
}

.program-nav {
    display: flex;
    align-items: center;
    gap: 25px;
}

.program-nav a {
    color: #003B73;

    font-size: 13px;
    font-weight: 700;

    text-decoration: none;
}

.program-nav a:hover {
    color: #ED1C24;
}

.program-donate {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 43px;

    padding: 0 23px;

    color: #fff;
    background: #ED1C24;

    border-radius: 999px;

    font-size: 13px;
    font-weight: 800;

    text-decoration: none;
}


/* HERO */

.program-detail-hero {
    position: relative;
    overflow: hidden;

    padding: 80px 0 90px;

    background:
        radial-gradient(
            circle at 83% 45%,
            rgba(237,28,36,.08),
            transparent 25%
        ),
        linear-gradient(
            135deg,
            #ffffff 0%,
            #f7fafc 100%
        );
}

.program-detail-container {
    width: min(1160px, calc(100% - 48px));
    margin: auto;

    display: grid;
    grid-template-columns: 1.1fr .9fr;
    align-items: center;

    gap: 70px;
}

.program-back-link {
    display: inline-block;

    margin-bottom: 32px;

    color: #5c7082;

    font-size: 13px;
    font-weight: 700;

    text-decoration: none;
}

.program-back-link:hover {
    color: #ED1C24;
}

.program-detail-eyebrow,
.program-section-label {
    color: #ED1C24;

    font-family: Montserrat, sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .22em;
}

.program-detail-eyebrow {
    display: flex;
    align-items: center;
    gap: 15px;

    margin-bottom: 16px;
}

.program-detail-eyebrow span {
    display: block;

    width: 42px;
    height: 2px;

    background: #ED1C24;
}

.program-detail-copy h1 {
    max-width: 650px;

    margin: 0 0 24px;

    color: #003B73;

    font-family: Montserrat, sans-serif;
    font-size: clamp(48px, 6vw, 78px);
    line-height: .98;
    letter-spacing: -.045em;
}

.program-detail-lead {
    max-width: 650px;

    margin: 0;

    color: #52697c;

    font-size: 18px;
    line-height: 1.7;
}

.program-detail-actions {
    display: flex;
    flex-wrap: wrap;

    gap: 12px;

    margin-top: 34px;
}

.program-primary-action,
.program-secondary-action,
.program-contact-action {
    min-height: 48px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0 25px;

    border-radius: 999px;

    font-size: 13px;
    font-weight: 800;

    text-decoration: none;
}

.program-primary-action {
    color: #fff;
    background: #ED1C24;

    box-shadow:
        0 12px 30px rgba(237,28,36,.20);
}

.program-secondary-action {
    color: #003B73;

    background: #fff;

    border:
        1px solid rgba(0,59,115,.18);
}

.program-detail-visual {
    position: relative;

    min-height: 430px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.program-detail-circle {
    position: relative;
    z-index: 3;

    width: min(390px, 90%);
    aspect-ratio: 1;

    overflow: hidden;

    border:
        8px solid #ED1C24;

    border-radius: 50%;

    box-shadow:
        0 30px 80px rgba(0,59,115,.18);
}

.program-detail-circle img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}

.program-detail-accent {
    position: absolute;

    border-radius: 50%;
}

.program-detail-accent.accent-one {
    width: 330px;
    height: 330px;

    border:
        1px solid rgba(237,28,36,.22);
}

.program-detail-accent.accent-two {
    width: 450px;
    height: 450px;

    border:
        1px solid rgba(0,59,115,.10);
}


/* PURPOSE */

.program-purpose-section {
    padding: 90px 24px;

    text-align: center;

    background: #fff;
}

.program-content-narrow {
    max-width: 820px;
    margin: auto;
}

.program-purpose-section h2,
.program-support-section h2,
.program-process-section h2,
.program-final-cta h2,
.program-other-section h2 {
    margin: 12px 0 20px;

    color: #003B73;

    font-family: Montserrat, sans-serif;
    font-size: clamp(34px,4vw,50px);
    line-height: 1.1;
    letter-spacing: -.035em;
}

.program-purpose-copy {
    margin: 0;

    color: #53697b;

    font-size: 18px;
    line-height: 1.8;
}


/* SUPPORT */

.program-support-section {
    padding: 88px 0 95px;

    background: #f7fafc;
}

.program-content-wide {
    width: min(1160px, calc(100% - 48px));
    margin: auto;
}

.program-section-heading {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;

    align-items: end;

    margin-bottom: 42px;
}

.program-section-heading p {
    margin: 0;

    color: #647789;

    line-height: 1.7;
}

.program-support-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);

    gap: 18px;
}

.program-support-card {
    padding: 30px;

    background: #fff;

    border-radius: 18px;

    border:
        1px solid rgba(0,59,115,.07);

    box-shadow:
        0 16px 45px rgba(0,43,79,.07);
}

.program-support-number {
    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 25px;

    color: #ED1C24;

    background: rgba(237,28,36,.08);

    border-radius: 50%;

    font-size: 12px;
    font-weight: 900;
}

.program-support-card h3 {
    margin: 0 0 12px;

    color: #003B73;

    font-family: Montserrat, sans-serif;
    font-size: 19px;
}

.program-support-card p {
    margin: 0;

    color: #5f7282;

    font-size: 14px;
    line-height: 1.7;
}


/* PROCESS */

.program-process-section {
    padding: 90px 0;

    color: #fff;

    background:
        linear-gradient(
            135deg,
            #003B73,
            #002b54
        );
}

.program-process-heading {
    max-width: 760px;

    margin-bottom: 45px;
}

.program-section-label.light {
    color: #fff;
    opacity: .72;
}

.program-process-section h2 {
    color: #fff;
}

.program-process-heading > p {
    color: rgba(255,255,255,.75);

    font-size: 16px;
    line-height: 1.7;
}

.program-process-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);

    gap: 22px;
}

.program-process-step {
    display: flex;

    gap: 18px;

    padding: 25px;

    border:
        1px solid rgba(255,255,255,.13);

    border-radius: 17px;

    background:
        rgba(255,255,255,.06);
}

.program-process-step > span {
    color: #fff;

    font-size: 12px;
    font-weight: 900;
}

.program-process-step h3 {
    margin: 0 0 9px;

    font-family: Montserrat, sans-serif;
    font-size: 17px;
}

.program-process-step p {
    margin: 0;

    color: rgba(255,255,255,.70);

    font-size: 13px;
    line-height: 1.65;
}

.program-process-note {
    margin: 28px 0 0;

    color: rgba(255,255,255,.58);

    font-size: 12px;
}


/* FINAL CTA */

.program-final-cta {
    padding: 75px 24px;

    background: #fff;
}

.program-final-inner {
    width: min(1080px,100%);
    margin: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 40px;

    padding: 45px;

    background: #f7fafc;

    border-radius: 24px;

    border:
        1px solid rgba(0,59,115,.07);
}

.program-final-inner h2 {
    margin-bottom: 10px;
}

.program-final-inner p {
    margin: 0;

    color: #647789;
}

.program-final-actions {
    display: flex;
    gap: 10px;

    flex-shrink: 0;
}

.program-contact-action {
    color: #003B73;

    border:
        1px solid rgba(0,59,115,.18);
}


/* OTHER PROGRAMMES */

.program-other-section {
    padding: 70px 0 85px;

    background: #f7fafc;
}

.program-other-links {
    display: grid;
    grid-template-columns: repeat(4,1fr);

    gap: 12px;

    margin-top: 30px;
}

.program-other-links a {
    min-height: 80px;

    display: flex;
    align-items: center;

    padding: 20px;

    color: #003B73;

    background: #fff;

    border-radius: 14px;

    border:
        1px solid rgba(0,59,115,.08);

    font-weight: 800;

    text-decoration: none;

    transition:
        transform .2s ease,
        border-color .2s ease;
}

.program-other-links a:hover {
    transform: translateY(-3px);

    border-color: #ED1C24;

    color: #ED1C24;
}


/* FOOTER */

.program-page-footer {
    padding: 35px 0;

    background: #002b54;

    color: #fff;
}

.program-footer-inner {
    width: min(1160px, calc(100% - 48px));
    margin: auto;

    display: flex;
    align-items: center;

    gap: 15px;
}

.program-footer-inner img {
    width: 68px;
    height: auto;

    background: #fff;

    border-radius: 50%;
}

.program-footer-inner strong {
    font-family: Montserrat, sans-serif;
}

.program-footer-inner p {
    margin: 3px 0 0;

    color: rgba(255,255,255,.65);

    font-size: 12px;
}

.program-footer-inner > a {
    margin-left: auto;

    color: #fff;

    font-size: 13px;
    font-weight: 700;

    text-decoration: none;
}


/* TABLET */

@media
(min-width:768px)
and
(max-width:1023px) {

    .program-nav {
        display: none;
    }

    .program-detail-container {
        gap: 35px;
    }

    .program-detail-visual {
        min-height: 350px;
    }

    .program-detail-circle {
        width: 310px;
    }

    .program-detail-accent.accent-one {
        width: 270px;
        height: 270px;
    }

    .program-detail-accent.accent-two {
        width: 350px;
        height: 350px;
    }

    .program-support-grid,
    .program-process-grid {
        grid-template-columns: repeat(3,1fr);
    }

    .program-other-links {
        grid-template-columns: repeat(2,1fr);
    }

}


/* MOBILE */

@media
(max-width:767px) {

    .program-header-inner {
        width: calc(100% - 30px);
        min-height: 72px;
    }

    .program-logo-link img {
        width: 72px;
    }

    .program-nav {
        display: none;
    }

    .program-donate {
        min-height: 39px;
        padding: 0 18px;
    }

    .program-detail-hero {
        padding: 45px 0 60px;
    }

    .program-detail-container {
        width: calc(100% - 34px);

        grid-template-columns: 1fr;

        gap: 35px;
    }

    .program-back-link {
        margin-bottom: 24px;
    }

    .program-detail-copy h1 {
        font-size: clamp(42px,13vw,60px);
    }

    .program-detail-lead {
        font-size: 16px;
    }

    .program-detail-actions {
        display: grid;
    }

    .program-detail-visual {
        min-height: 300px;

        order: -1;
    }

    .program-detail-circle {
        width: 270px;

        border-width: 6px;
    }

    .program-detail-accent.accent-one {
        width: 230px;
        height: 230px;
    }

    .program-detail-accent.accent-two {
        width: 300px;
        height: 300px;
    }

    .program-purpose-section {
        padding: 65px 20px;
    }

    .program-purpose-copy {
        font-size: 16px;
    }

    .program-content-wide {
        width: calc(100% - 34px);
    }

    .program-section-heading {
        display: block;
    }

    .program-section-heading > p {
        margin-top: 15px;
    }

    .program-support-grid,
    .program-process-grid {
        grid-template-columns: 1fr;
    }

    .program-final-inner {
        display: block;

        padding: 30px 22px;
    }

    .program-final-actions {
        display: grid;

        margin-top: 25px;
    }

    .program-other-links {
        grid-template-columns: 1fr;
    }

    .program-footer-inner {
        width: calc(100% - 34px);
    }

}


/* ACCESSIBILITY */

@media (prefers-reduced-motion: reduce) {

    .program-other-links a {
        transition: none !important;
    }

}



/* FINAL LOCKED HERO ASSET */
.final-hero-photo {
    background-image: url("../images/rota-hero-locked.png") !important;
}

.final-hero .final-program-grid {
    display: none !important;
}

.rota-programs {
    padding-top: 58px !important;
    padding-bottom: 68px !important;
}

.rota-programs-heading {
    margin-bottom: 28px !important;
}

.rota-programs h2 {
    font-size: clamp(34px,3.5vw,48px) !important;
}

.rota-program-large-card {
    padding: 23px 18px 21px !important;
}

.rota-program-large-photo {
    width: 112px !important;
    height: 112px !important;
    flex-basis: 112px !important;
    border: 4px solid #ED1C24 !important;
    margin-bottom: 16px !important;
}

.rota-program-large-card > p {
    min-height: 62px !important;
    margin-bottom: 15px !important;
}

.rota-program-button {
    min-height: 40px !important;
}

@media (max-width:767px) {
    .rota-programs {
        padding-top: 42px !important;
        padding-bottom: 48px !important;
    }

    .rota-program-large-photo {
        width: 100px !important;
        height: 100px !important;
        flex-basis: 100px !important;
    }
}


/* =========================================================
   HERO MUST REMAIN CLEAN
   Programme cards belong only in #programs
   ========================================================= */

#home .final-program-grid,
#home .final-program-card,
#home .hero-program-grid,
#home .hero-program-card,
#home .program-grid,
#home .program-card {
    display: none !important;
}


/* =========================================================
   ROTA PROGRAMME PAGES V2
   Approved full-width photographic hero
   ========================================================= */


/* ---------------------------------------------------------
   FULL WIDTH HERO
   --------------------------------------------------------- */

.program-wide-hero {
    position: relative;

    min-height: 430px;

    display: flex;
    align-items: stretch;

    overflow: hidden;

    background-image: var(--program-hero-image);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.program-wide-hero::before {
    content: "";

    position: absolute;
    inset: 0;

    background-image: var(--program-hero-image);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    transform: scale(1.015);

    z-index: 0;
}

.program-wide-overlay {
    position: absolute;
    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(0,28,53,.94) 0%,
            rgba(0,47,87,.82) 28%,
            rgba(0,47,87,.36) 53%,
            rgba(0,0,0,.05) 78%,
            rgba(0,0,0,.03) 100%
        );
}

.program-wide-inner {
    position: relative;
    z-index: 2;

    width: min(1180px, calc(100% - 48px));

    margin: auto;

    display: flex;
    align-items: center;
}

.program-wide-content {
    width: min(610px, 55%);

    padding: 62px 0;
}

.program-wide-eyebrow {
    display: flex;
    align-items: center;

    gap: 15px;

    margin-bottom: 18px;

    color: #fff;

    font-family: Montserrat, sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .22em;
}

.program-wide-eyebrow span {
    display: block;

    width: 42px;
    height: 2px;

    background: #ED1C24;
}

.program-wide-content h1 {
    margin: 0 0 18px;

    color: #fff;

    font-family: Montserrat, sans-serif;
    font-size: clamp(46px,5vw,68px);
    line-height: 1;
    letter-spacing: -.04em;

    text-shadow:
        0 4px 24px rgba(0,0,0,.15);
}

.program-wide-content > p {
    max-width: 570px;

    margin: 0;

    color: rgba(255,255,255,.92);

    font-size: 18px;
    line-height: 1.65;
}

.program-wide-actions {
    display: flex;
    flex-wrap: wrap;

    gap: 13px;

    margin-top: 30px;
}

.program-wide-primary,
.program-wide-secondary {
    min-height: 48px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0 25px;

    border-radius: 999px;

    font-size: 13px;
    font-weight: 800;

    text-decoration: none;

    transition:
        transform .2s ease,
        background .2s ease;
}

.program-wide-primary {
    color: #fff;

    background: #ED1C24;

    box-shadow:
        0 12px 30px rgba(237,28,36,.25);
}

.program-wide-secondary {
    color: #fff;

    border: 1px solid rgba(255,255,255,.75);

    background: rgba(0,37,70,.20);

    backdrop-filter: blur(5px);
}

.program-wide-primary:hover,
.program-wide-secondary:hover {
    transform: translateY(-2px);
}


/* ---------------------------------------------------------
   REMOVE OLD CIRCLE HERO SYSTEM
   --------------------------------------------------------- */

.program-detail-visual,
.program-detail-circle,
.program-detail-accent {
    display: none !important;
}


/* ---------------------------------------------------------
   MAKE CONTENT BELOW HERO MORE COMPACT
   --------------------------------------------------------- */

.program-purpose-section {
    padding: 58px 24px !important;
}

.program-purpose-section h2,
.program-support-section h2,
.program-process-section h2,
.program-final-cta h2,
.program-other-section h2 {
    font-size: clamp(30px,3vw,42px) !important;
}

.program-purpose-copy {
    font-size: 16px !important;
    line-height: 1.72 !important;
}


/* HOW WE HELP */

.program-support-section {
    padding-top: 58px !important;
    padding-bottom: 65px !important;
}

.program-section-heading {
    margin-bottom: 28px !important;
}

.program-support-card {
    padding: 25px !important;
}


/* ---------------------------------------------------------
   PROCESS - HORIZONTAL AND COMPACT
   --------------------------------------------------------- */

.program-process-section {
    padding-top: 58px !important;
    padding-bottom: 58px !important;
}

.program-process-heading {
    margin-bottom: 30px !important;
}

.program-process-grid {
    gap: 14px !important;
}

.program-process-step {
    min-height: 125px;

    padding: 22px !important;
}


/* ---------------------------------------------------------
   FINAL CTA
   --------------------------------------------------------- */

.program-final-cta {
    padding: 50px 24px !important;
}

.program-final-inner {
    padding: 32px 38px !important;
}


/* ---------------------------------------------------------
   OTHER PROGRAMMES
   --------------------------------------------------------- */

.program-other-section {
    padding-top: 50px !important;
    padding-bottom: 58px !important;
}

.program-other-links {
    margin-top: 22px !important;
}

.program-other-links a {
    min-height: 65px !important;
}


/* =========================================================
   TABLET
   ========================================================= */

@media
(min-width:768px)
and
(max-width:1023px) {

    .program-wide-hero {
        min-height: 410px;
    }

    .program-wide-content {
        width: 62%;
        padding: 52px 0;
    }

    .program-wide-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(0,28,53,.94) 0%,
                rgba(0,47,87,.76) 45%,
                rgba(0,47,87,.18) 100%
            );
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media
(max-width:767px) {

    .program-wide-hero {
        min-height: 520px;

        background-position: center;
    }

    .program-wide-hero::before {
        background-position: center;
    }

    .program-wide-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(0,26,49,.25) 0%,
                rgba(0,35,65,.55) 35%,
                rgba(0,30,57,.96) 100%
            );
    }

    .program-wide-inner {
        width: calc(100% - 34px);

        align-items: flex-end;
    }

    .program-wide-content {
        width: 100%;

        padding:
            170px 0
            42px;
    }

    .program-wide-content h1 {
        font-size:
            clamp(40px,12vw,54px);
    }

    .program-wide-content > p {
        font-size: 15px;
        line-height: 1.6;
    }

    .program-wide-actions {
        display: grid;
    }

    .program-wide-primary,
    .program-wide-secondary {
        width: 100%;
    }

    .program-purpose-section {
        padding:
            48px 20px !important;
    }

    .program-support-section,
    .program-process-section {
        padding-top: 48px !important;
        padding-bottom: 48px !important;
    }

    .program-process-step {
        min-height: auto;
    }

    .program-final-cta {
        padding:
            40px 17px !important;
    }

}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .program-wide-primary,
    .program-wide-secondary {
        transition: none !important;
    }

}


/* =========================================================
   ROTA - HOME GET ASSISTANCE
   ========================================================= */

.home-assistance {
    padding: 54px 24px;

    background:
        linear-gradient(
            135deg,
            #003B73 0%,
            #002b54 100%
        );

    color: #fff;
}

.home-assist-inner {
    width: min(1160px,100%);
    margin: auto;

    display: grid;

    grid-template-columns:
        minmax(300px,1.15fr)
        minmax(300px,.9fr)
        auto;

    align-items: center;

    gap: 42px;
}

.home-assist-eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;

    margin-bottom: 11px;

    color: #fff;

    font-size: 10px;
    font-weight: 800;
    letter-spacing: .22em;
}

.home-assist-eyebrow span {
    width: 38px;
    height: 2px;

    background: #ED1C24;
}

.home-assist-copy h2 {
    margin: 0 0 10px;

    color: #fff;

    font-family: Montserrat,sans-serif;
    font-size: clamp(30px,3vw,43px);
    line-height: 1.08;
}

.home-assist-copy p {
    max-width: 520px;

    margin: 0;

    color: rgba(255,255,255,.72);

    font-size: 14px;
    line-height: 1.65;
}

.home-assist-types {
    display: flex;
    flex-wrap: wrap;

    gap: 8px;
}

.home-assist-types span {
    padding: 8px 13px;

    color: rgba(255,255,255,.86);

    background:
        rgba(255,255,255,.08);

    border:
        1px solid rgba(255,255,255,.12);

    border-radius: 999px;

    font-size: 11px;
    font-weight: 700;
}

.home-assist-button {
    min-height: 48px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0 22px;

    white-space: nowrap;

    color: #fff;
    background: #ED1C24;

    border-radius: 999px;

    font-size: 12px;
    font-weight: 800;

    text-decoration: none;

    box-shadow:
        0 12px 30px rgba(237,28,36,.20);
}


/* =========================================================
   GET ASSISTANCE PAGE
   ========================================================= */

.assist-page-hero {
    padding: 75px 24px 72px;

    text-align: center;

    background:
        radial-gradient(
            circle at 50% 0,
            rgba(237,28,36,.07),
            transparent 32%
        ),
        linear-gradient(
            180deg,
            #f7fafc,
            #fff
        );
}

.assist-hero-inner {
    max-width: 820px;
    margin: auto;
}

.assist-eyebrow {
    display: flex;
    justify-content: center;
    align-items: center;

    gap: 14px;

    margin-bottom: 16px;

    color: #ED1C24;

    font-size: 11px;
    font-weight: 800;
    letter-spacing: .22em;
}

.assist-eyebrow span {
    width: 40px;
    height: 2px;

    background: #ED1C24;
}

.assist-page-hero h1 {
    margin: 0 0 18px;

    color: #003B73;

    font-family: Montserrat,sans-serif;
    font-size: clamp(45px,6vw,70px);
    line-height: 1;
    letter-spacing: -.045em;
}

.assist-page-hero p {
    max-width: 720px;

    margin: 0 auto;

    color: #5b7082;

    font-size: 17px;
    line-height: 1.7;
}

.assist-start-button {
    min-height: 48px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-top: 27px;
    padding: 0 24px;

    color: #fff;
    background: #ED1C24;

    border-radius: 999px;

    font-size: 13px;
    font-weight: 800;

    text-decoration: none;
}


/* CHOOSE */

.assist-choose-section {
    padding: 65px 0;

    background: #fff;
}

.assist-container {
    width: min(1160px,calc(100% - 48px));

    margin: auto;
}

.assist-section-heading {
    display: grid;

    grid-template-columns: 1fr 380px;

    align-items: end;

    gap: 50px;

    margin-bottom: 30px;
}

.assist-label {
    color: #ED1C24;

    font-size: 10px;
    font-weight: 800;
    letter-spacing: .20em;
}

.assist-section-heading h2,
.assist-form-intro h2 {
    margin: 10px 0 0;

    color: #003B73;

    font-family: Montserrat,sans-serif;
    font-size: clamp(32px,3.5vw,46px);
    line-height: 1.08;
    letter-spacing: -.035em;
}

.assist-section-heading > p {
    margin: 0;

    color: #647789;

    font-size: 14px;
    line-height: 1.65;
}

.assist-type-grid {
    display: grid;

    grid-template-columns:
        repeat(4,minmax(0,1fr));

    gap: 14px;
}

.assist-type-card {
    min-width: 0;

    display: flex;
    flex-direction: column;
    align-items: center;

    padding: 23px 18px;

    appearance: none;

    color: inherit;
    background: #fff;

    border:
        1px solid rgba(0,59,115,.10);

    border-radius: 17px;

    font: inherit;
    text-align: center;

    cursor: pointer;

    box-shadow:
        0 12px 35px rgba(0,43,79,.06);

    transition:
        transform .2s ease,
        border-color .2s ease,
        box-shadow .2s ease;
}

.assist-type-card:hover,
.assist-type-card.selected {
    transform: translateY(-4px);

    border-color: #ED1C24;

    box-shadow:
        0 18px 40px rgba(0,43,79,.11);
}

.assist-type-card img {
    width: 86px;
    height: 86px;

    margin-bottom: 15px;

    object-fit: cover;

    border:
        3px solid #ED1C24;

    border-radius: 50%;
}

.assist-type-card h3 {
    margin: 0 0 7px;

    color: #003B73;

    font-family: Montserrat,sans-serif;
    font-size: 16px;
}

.assist-type-card p {
    margin: 0;

    color: #65788a;

    font-size: 12px;
    line-height: 1.55;
}


/* FORM */

.assist-form-section {
    padding: 70px 24px 80px;

    background: #f5f8fa;
}

.assist-form-wrap {
    width: min(1080px,100%);

    margin: auto;

    display: grid;

    grid-template-columns:
        340px minmax(0,1fr);

    gap: 55px;

    align-items: start;
}

.assist-form-intro {
    position: sticky;
    top: 30px;
}

.assist-form-intro > p {
    color: #647789;

    line-height: 1.7;
}

.assist-process-mini {
    margin-top: 30px;
}

.assist-process-mini > div {
    display: flex;
    align-items: center;

    gap: 12px;

    padding: 13px 0;

    border-bottom:
        1px solid rgba(0,59,115,.08);
}

.assist-process-mini span {
    width: 34px;
    height: 34px;

    flex: 0 0 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;
    background: #ED1C24;

    border-radius: 50%;

    font-size: 10px;
    font-weight: 900;
}

.assist-process-mini p {
    margin: 0;

    color: #003B73;

    font-size: 13px;
    font-weight: 700;
}


/* FORM CARD */

.assist-form {
    padding: 34px;

    background: #fff;

    border:
        1px solid rgba(0,59,115,.08);

    border-radius: 20px;

    box-shadow:
        0 20px 55px rgba(0,43,79,.07);
}

.assist-form-grid {
    display: grid;

    grid-template-columns:
        repeat(2,minmax(0,1fr));

    gap: 18px;
}

.assist-field {
    margin-bottom: 18px;
}

.assist-field.full {
    width: 100%;
}

.assist-field label {
    display: block;

    margin-bottom: 7px;

    color: #003B73;

    font-size: 12px;
    font-weight: 800;
}

.assist-field input,
.assist-field select,
.assist-field textarea {
    width: 100%;

    box-sizing: border-box;

    padding: 12px 13px;

    color: #252A2E;
    background: #fff;

    border:
        1px solid #d9e1e7;

    border-radius: 9px;

    font: inherit;

    outline: none;
}

.assist-field input,
.assist-field select {
    min-height: 45px;
}

.assist-field textarea {
    resize: vertical;
}

.assist-field input:focus,
.assist-field select:focus,
.assist-field textarea:focus {
    border-color: #003B73;

    box-shadow:
        0 0 0 3px rgba(0,59,115,.07);
}

.assist-field-note {
    margin-top: 7px;

    color: #82909c;

    font-size: 11px;
    line-height: 1.5;
}

.assist-consent {
    display: flex;

    gap: 10px;

    margin: 6px 0 22px;

    color: #526779;

    font-size: 12px;
    line-height: 1.6;
}

.assist-consent input {
    margin-top: 3px;
}

.assist-submit {
    min-height: 48px;

    padding: 0 25px;

    color: #fff;
    background: #ED1C24;

    border: 0;
    border-radius: 999px;

    font: inherit;
    font-size: 13px;
    font-weight: 800;

    cursor: pointer;
}

.assist-privacy-note {
    margin: 15px 0 0;

    color: #87949e;

    font-size: 10px;
    line-height: 1.55;
}

.assist-form-status {
    display: none;
}

.assist-form-status.visible {
    display: flex;
    flex-direction: column;

    gap: 4px;

    margin-bottom: 22px;
    padding: 14px 16px;

    color: #003B73;

    background: #eef7f1;

    border:
        1px solid #cfe7d7;

    border-radius: 10px;

    font-size: 12px;
    line-height: 1.5;
}


/* TABLET */

@media
(min-width:768px)
and
(max-width:1023px) {

    .home-assist-inner {
        grid-template-columns: 1fr 1fr;
    }

    .home-assist-button {
        width: max-content;
    }

    .assist-type-grid {
        grid-template-columns:
            repeat(2,minmax(0,1fr));
    }

    .assist-form-wrap {
        grid-template-columns:
            280px minmax(0,1fr);

        gap: 35px;
    }

}


/* MOBILE */

@media
(max-width:767px) {

    .home-assistance {
        padding:
            44px 18px;
    }

    .home-assist-inner {
        display: block;
    }

    .home-assist-types {
        margin: 20px 0;
    }

    .home-assist-button {
        width: 100%;

        box-sizing: border-box;
    }

    .assist-page-hero {
        padding:
            55px 18px;
    }

    .assist-page-hero h1 {
        font-size:
            clamp(40px,12vw,55px);
    }

    .assist-container {
        width:
            calc(100% - 34px);
    }

    .assist-section-heading {
        display: block;
    }

    .assist-section-heading > p {
        margin-top: 13px;
    }

    .assist-type-grid {
        grid-template-columns: 1fr;
    }

    .assist-type-card {
        flex-direction: row;

        text-align: left;

        gap: 17px;
    }

    .assist-type-card img {
        width: 70px;
        height: 70px;

        flex: 0 0 70px;

        margin: 0;
    }

    .assist-form-section {
        padding:
            55px 17px;
    }

    .assist-form-wrap {
        display: block;
    }

    .assist-form-intro {
        position: static;

        margin-bottom: 30px;
    }

    .assist-form {
        padding:
            24px 18px;
    }

    .assist-form-grid {
        grid-template-columns: 1fr;

        gap: 0;
    }

    .assist-submit {
        width: 100%;
    }

}


/* REDUCED MOTION */

@media (prefers-reduced-motion: reduce) {

    .assist-type-card {
        transition: none !important;
    }

    html {
        scroll-behavior: auto !important;
    }

}


/* =========================================================
   GET ASSISTANCE - APPROVED COMPACT DESIGN
   ========================================================= */

.assist-page-hero {
    position: relative;
    min-height: 350px;

    display: flex;
    align-items: center;

    padding: 35px 24px;

    text-align: left;

    background:
        linear-gradient(
            90deg,
            rgba(0,38,72,.97) 0%,
            rgba(0,49,91,.87) 34%,
            rgba(0,45,82,.38) 58%,
            rgba(0,0,0,.04) 100%
        ),
        url("../images/get-assistance-hero.png");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.assist-hero-inner {
    width: min(1160px,100%);
    max-width: none;
    margin: auto;
}

.assist-eyebrow {
    justify-content: flex-start;

    margin-bottom: 13px;

    color: #fff;
}

.assist-page-hero h1 {
    max-width: 650px;

    margin: 0 0 13px;

    color: #fff;

    font-size: clamp(42px,4.7vw,64px);

    text-shadow:
        0 3px 18px rgba(0,0,0,.15);
}

.assist-page-hero p {
    max-width: 610px;

    margin: 0;

    color: rgba(255,255,255,.92);

    font-size: 16px;
    line-height: 1.6;
}

.assist-start-button {
    margin-top: 20px;
}

.assist-hero-points {
    display: flex;
    flex-wrap: wrap;

    gap: 0;

    margin-top: 20px;

    color: rgba(255,255,255,.92);

    font-size: 12px;
    font-weight: 700;
}

.assist-hero-points span {
    display: flex;
    align-items: center;
}

.assist-hero-points span::before {
    content: "✓";

    margin-right: 7px;

    color: #fff;

    font-weight: 900;
}

.assist-hero-points span:not(:last-child)::after {
    content: "";

    width: 1px;
    height: 16px;

    margin: 0 15px;

    background:
        rgba(255,255,255,.35);
}


/* SUPPORT SELECTION - COMPACT */

.assist-choose-section {
    padding: 30px 0 34px;
}

.assist-section-heading {
    grid-template-columns:
        1fr 330px;

    gap: 35px;

    margin-bottom: 18px;
}

.assist-section-heading h2 {
    margin-top: 6px;

    font-size:
        clamp(29px,3vw,40px);
}

.assist-type-grid {
    gap: 10px;
}

.assist-type-card {
    min-height: 120px;

    flex-direction: row;
    align-items: center;

    gap: 15px;

    padding: 15px;

    text-align: left;

    border-radius: 13px;
}

.assist-type-card img {
    width: 82px;
    height: 82px;

    flex: 0 0 82px;

    margin: 0;
}

.assist-type-card h3 {
    font-size: 14px;
}

.assist-type-card p {
    font-size: 11px;
    line-height: 1.45;
}


/* FORM MOVED VISUALLY CLOSER */

.assist-form-section {
    padding: 42px 24px 60px;
}

.assist-form-wrap {
    gap: 42px;
}

.assist-form-intro h2 {
    margin-top: 7px;

    font-size:
        clamp(30px,3vw,40px);
}

.assist-process-mini {
    margin-top: 20px;
}

.assist-form {
    padding: 28px;
}


/* TABLET */

@media
(min-width:768px)
and
(max-width:1023px) {

    .assist-page-hero {
        min-height: 330px;

        background-position: 62% center;
    }

    .assist-type-grid {
        grid-template-columns:
            repeat(2,minmax(0,1fr));
    }

}


/* MOBILE */

@media
(max-width:767px) {

    .assist-page-hero {
        min-height: 470px;

        align-items: flex-end;

        padding: 35px 18px;

        background:
            linear-gradient(
                180deg,
                rgba(0,34,63,.10) 0%,
                rgba(0,37,70,.52) 45%,
                rgba(0,32,61,.97) 100%
            ),
            url("../images/get-assistance-hero.png");

        background-size: cover;
        background-position: 65% center;
    }

    .assist-page-hero h1 {
        font-size:
            clamp(38px,11vw,52px);
    }

    .assist-page-hero p {
        font-size: 14px;
    }

    .assist-hero-points {
        gap: 8px 14px;
    }

    .assist-hero-points span:not(:last-child)::after {
        display: none;
    }

    .assist-choose-section {
        padding:
            30px 0;
    }

    .assist-section-heading {
        margin-bottom: 18px;
    }

    .assist-type-card {
        min-height: auto;
    }

    .assist-form-section {
        padding:
            38px 17px 50px;
    }

}


/* ROTA Assistance live submission status */

.assist-form-status:empty {
    display: none;
}

.assist-form-status {
    grid-column: 1 / -1;
    margin-bottom: 18px;
    padding: 17px 19px;
    border-radius: 10px;
    line-height: 1.55;
}

.assist-form-success {
    display: flex;
    flex-direction: column;
    gap: 5px;

    background: #f1f8f3;
    border: 1px solid #b8dbc1;
    color: #174d29;
}

.assist-form-error {
    background: #fff3f3;
    border: 1px solid #efb7b7;
    color: #8b1e23;
}

.assist-reference {
    display: block;
    margin: 4px 0;

    font-size: 20px;
    letter-spacing: .4px;

    color: #003B73;
}

.assist-submit:disabled {
    opacity: .65;
    cursor: wait;
}

