* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --font-body: "DM Sans", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    --font-display: "Space Grotesk", "Trebuchet MS", "Segoe UI", sans-serif;
    --red-950: #5f1100;
    --red-900: #7a1703;
    --red-850: #8d1e05;
    --red-800: #a3270a;
    --red-700: #ba3511;
    --red-600: #d24a22;
    --white: #ffffff;
    --white-92: rgba(255, 255, 255, 0.92);
    --white-78: rgba(255, 255, 255, 0.78);
    --white-18: rgba(255, 255, 255, 0.18);
    --white-10: rgba(255, 255, 255, 0.1);
    --red-15: rgba(163, 39, 10, 0.15);
    --red-08: rgba(163, 39, 10, 0.08);
    --shadow: 0 18px 50px rgba(95, 17, 0, 0.18);
    --shadow-soft: 0 12px 30px rgba(95, 17, 0, 0.12);
    --radius-xl: 30px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-sm: 12px;
    --max: 1180px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--white);
    color: #1a1a1a;
    min-height: 100vh;
    min-height: 100svh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.45s ease, transform 0.45s ease;
    line-height: 1.65;
}

/* Footer no longer fixed — no extra bottom padding needed */
main.page {
    flex: 1 0 auto;
    padding-bottom: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
.brand,
.nav-links a,
.button,
.eyebrow,
.card-badge,
.stat-number,
.timeline-year,
.hero-chip,
.leader-name,
.leader-role {
    font-family: var(--font-display);
}

body.is-ready {
    opacity: 1;
    transform: translateY(0);
}

body::before,
body::after {
    content: "";
    position: fixed;
    inset: auto;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.08;
}

body::before {
    width: 320px;
    height: 320px;
    left: -110px;
    top: 180px;
    background: radial-gradient(circle, rgba(163, 39, 10, 0.15), transparent 68%);
}

body::after {
    width: 380px;
    height: 380px;
    right: -120px;
    bottom: -60px;
    background: radial-gradient(circle, rgba(163, 39, 10, 0.12), transparent 70%);
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea {
    font: inherit;
}

.skip-link {
    position: absolute;
    left: -999px;
    top: 12px;
    background: var(--white);
    color: var(--red-900);
    padding: 12px 18px;
    border-radius: 999px;
    z-index: 10000;
}

.skip-link:focus {
    left: 12px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(122, 23, 3, 0.14);
}

.nav-wrap {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 20px;
    min-height: 84px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 18px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--red-900);
    font-weight: 800;
    letter-spacing: 0.04em;
    margin-left: auto;
}

.brand-logo {
    display: block;
    width: auto;
    height: 56px;
    max-width: min(300px, 60vw);
    object-fit: contain;
    filter: drop-shadow(0 10px 18px rgba(122, 23, 3, 0.08));
}

/* Icon styling and small UI animations */
.nav-icon {
    margin-right: 8px;
    font-size: 1.05rem;
    vertical-align: -2px;
    transition: transform 0.18s ease, color 0.18s ease;
}

.nav-links a:hover .nav-icon,
.nav-links a.is-active .nav-icon {
    transform: translateY(-3px) rotate(-6deg) scale(1.02);
}

.bi {
    display: inline-block;
    line-height: 1;
}

@keyframes floaty {
    0% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
    100% { transform: translateY(0); }
}

.landing-logo {
    animation: floaty 6s ease-in-out infinite;
}

@keyframes popIn {
    0% { opacity: 0; transform: scale(0.88) translateY(6px); }
    60% { opacity: 1; transform: scale(1.02) translateY(-2px); }
    100% { transform: scale(1) translateY(0); }
}

.reveal.is-visible {
    animation: popIn 560ms cubic-bezier(.2,.9,.2,1);
}

.feature-card .bi,
.impact-card .bi,
.goal-card .bi,
.contact-card .bi {
    font-size: 1.6rem;
    margin-bottom: 10px;
    color: var(--red-900);
    display: inline-block;
}

.stat-card .bi {
    font-size: 1.4rem;
    color: var(--red-900);
    margin-bottom: 8px;
}

.cta-band .button-primary {
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255,255,255,0.06); }
    70% { box-shadow: 0 0 0 12px rgba(255,255,255,0); }
    100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}

/* Small responsive tweaks to ensure icons and buttons stack nicely on mobile */
@media (max-width: 780px) {
    .nav-icon { font-size: 1rem; margin-right: 10px; }
    .hero-actions .button { width: 100%; }
}

.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(122, 23, 3, 0.2);
    border-radius: 14px;
    background: var(--white);
    color: var(--red-900);
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.nav-toggle span {
    width: 18px;
    height: 2px;
    background: currentColor;
    position: relative;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle span::before,
.nav-toggle span::after {
    content: "";
    position: absolute;
    left: 0;
    width: 18px;
    height: 2px;
    background: currentColor;
    transition: transform 0.25s ease, top 0.25s ease;
}

.nav-toggle span::before {
    top: -6px;
}

.nav-toggle span::after {
    top: 6px;
}

.nav-toggle.is-open span {
    opacity: 0;
}

.nav-toggle.is-open span::before {
    top: 0;
    transform: rotate(45deg);
}

.nav-toggle.is-open span::after {
    top: 0;
    transform: rotate(-45deg);
}

.nav-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    list-style: none;
}

.nav-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 12px;
    color: var(--red-900);
    font-size: 14px;
    font-weight: 600;
    position: relative;
    transition: transform 0.22s ease, background 0.22s ease, color 0.22s ease, box-shadow 0.22s ease;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 8px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.24s ease;
    opacity: 0.65;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a.is-active {
    background: var(--red-900);
    color: var(--white);
    box-shadow: var(--shadow-soft);
    transform: translateY(-1px);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.nav-links a.is-active::after {
    transform: scaleX(1);
}

.page {
    position: relative;
    z-index: 1;
}

.section-shell {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 20px;
}

.hero {
    padding: 88px 0 56px;
}

.hero-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
    background: var(--white);
    border: 1px solid rgba(163, 39, 10, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: clamp(28px, 5vw, 56px);
}

.hero-card.is-logo-landing {
    padding: clamp(30px, 6vw, 68px);
}

.hero-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: none;
    pointer-events: none;
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
    gap: 28px;
    align-items: center;
}

.hero-grid.is-logo-led {
    grid-template-columns: minmax(0, 0.95fr) minmax(260px, 1.05fr);
}

.landing-logo-wrap {
    display: grid;
    place-items: center;
    padding: 18px;
}

.landing-logo {
    width: min(100%, 640px);
    height: auto;
    filter: drop-shadow(0 24px 50px rgba(0, 0, 0, 0.15));
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(163, 39, 10, 0.08);
    border: 1px solid rgba(163, 39, 10, 0.15);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 11px;
    margin-bottom: 18px;
    color: var(--red-900);
}

.hero h1 {
    font-size: clamp(2.7rem, 7vw, 5.2rem);
    line-height: 0.96;
    letter-spacing: -0.04em;
    margin-bottom: 18px;
    color: var(--red-900);
}

.hero p {
    max-width: 54ch;
    color: #4a4a4a;
    font-size: clamp(1.02rem, 2vw, 1.22rem);
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.scroll-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 22px;
    color: var(--red-900);
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    opacity: 0.88;
    width: fit-content;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.scroll-arrow i {
    font-size: 1.65rem;
    line-height: 1;
    animation: bounceDown 1.2s ease-in-out infinite;
}

.scroll-arrow:hover,
.scroll-arrow:focus-visible {
    opacity: 1;
    transform: translateY(2px);
}

@keyframes bounceDown {
    0%,
    100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

.hero-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.hero-chip {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(163, 39, 10, 0.08);
    border: 1px solid rgba(163, 39, 10, 0.15);
    color: var(--red-900);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 22px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 700;
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, color 0.22s ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

.button-primary {
    background: var(--red-900);
    color: var(--white);
    border-color: var(--red-900);
}

.button-primary:hover,
.button-primary:focus-visible {
    background: var(--red-800);
    color: var(--white);
    border-color: var(--red-800);
}

.button-secondary {
    background: transparent;
    color: var(--red-900);
    border-color: var(--red-900);
}

.button-secondary:hover,
.button-secondary:focus-visible {
    background: var(--red-900);
    color: var(--white);
    border-color: var(--red-900);
}

.hero-aside {
    display: grid;
    gap: 14px;
}

.hero-spot {
    background: rgba(163, 39, 10, 0.04);
    border: 1px solid rgba(163, 39, 10, 0.12);
    border-radius: var(--radius-lg);
    padding: 18px 20px;
    backdrop-filter: none;
}

.hero-spot strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 8px;
    color: var(--red-900);
}

.hero-spot p {
    color: #4a4a4a;
    font-size: 0.98rem;
    line-height: 1.7;
}

.page-section {
    padding: 24px 0 64px;
}

.section-title {
    margin-bottom: 24px;
}

.section-title h2 {
    font-size: clamp(2rem, 4.4vw, 3.4rem);
    line-height: 0.98;
    letter-spacing: -0.04em;
    margin-bottom: 10px;
    color: var(--red-900);
}

.section-title p {
    max-width: 58ch;
    color: #4a4a4a;
    line-height: 1.75;
    font-size: 1rem;
}

.section-title.is-inverse h2,
.section-title.is-inverse p {
    color: var(--red-900);
}

.split-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 22px;
    align-items: start;
}

.panel,
.card,
.timeline-card,
.contact-card,
.gallery-tile,
.goal-card,
.leader-card {
    background: var(--white);
    color: var(--red-900);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(122, 23, 3, 0.16);
    box-shadow: var(--shadow-soft);
}

.panel {
    padding: 28px;
}

.panel h3,
.card h3,
.timeline-card h3,
.contact-card h3,
.goal-card h3,
.leader-card h3,
.gallery-tile h3 {
    letter-spacing: -0.02em;
}

.mini-list {
    display: grid;
    gap: 14px;
    list-style: none;
    margin-top: 22px;
}

.mini-list li {
    position: relative;
    padding-left: 22px;
    line-height: 1.7;
    color: var(--red-900);
}

.mini-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.72em;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--red-900);
}

.card-grid {
    display: grid;
    gap: 18px;
}

.card {
    padding: 24px;
}

.card-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(122, 23, 3, 0.08);
    color: var(--red-900);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.card p,
.panel p,
.goal-card p,
.timeline-card p,
.leader-card p,
.contact-card p,
.gallery-tile p {
    line-height: 1.75;
    color: var(--red-900);
}

.callout {
    padding: 28px;
    border-radius: var(--radius-lg);
    background: rgba(163, 39, 10, 0.06);
    border: 1px solid rgba(163, 39, 10, 0.12);
    color: var(--red-900);
}

.callout h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--red-900);
}

.timeline {
    position: relative;
    display: grid;
    gap: 18px;
    padding-left: 28px;
    border-left: 2px solid rgba(163, 39, 10, 0.2);
}

.timeline-card {
    position: relative;
    padding: 24px 24px 24px 28px;
}

.timeline-card::before {
    content: "";
    position: absolute;
    left: -37px;
    top: 28px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--white);
    border: 4px solid var(--red-900);
    box-shadow: 0 0 0 6px rgba(163, 39, 10, 0.08);
}

.timeline-year {
    display: inline-flex;
    margin-bottom: 8px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(122, 23, 3, 0.08);
    color: var(--red-900);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.timeline-card h3 {
    margin-bottom: 8px;
    font-size: 1.35rem;
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.impact-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.impact-card,
.feature-card,
.cta-band {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.impact-card {
    padding: 24px;
    background: rgba(163, 39, 10, 0.06);
    border: 1px solid rgba(163, 39, 10, 0.12);
    backdrop-filter: none;
}

.impact-card .stat-number {
    color: var(--red-900);
}

.impact-card p {
    color: #4a4a4a;
    line-height: 1.7;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.feature-card {
    padding: 26px;
    background: var(--white);
    color: var(--red-900);
    border: 1px solid rgba(122, 23, 3, 0.16);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.feature-card,
.impact-card,
.goal-card,
.leader-card,
.gallery-tile,
.contact-card,
.timeline-card,
.panel,
.card,
.cta-band,
.stat-card {
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.feature-card:hover,
.impact-card:hover,
.goal-card:hover,
.leader-card:hover,
.gallery-tile:hover,
.contact-card:hover,
.timeline-card:hover,
.panel:hover,
.card:hover,
.cta-band:hover,
.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.feature-card h3 {
    margin-bottom: 10px;
    font-size: 1.35rem;
}

.feature-card p {
    line-height: 1.75;
    color: var(--red-900);
}

.cta-band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 28px;
    background: var(--white);
    border: 1px solid rgba(163, 39, 10, 0.15);
}

.cta-band h2 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    line-height: 1;
    margin-bottom: 10px;
    color: var(--red-900);
}

.cta-band p {
    color: #4a4a4a;
    line-height: 1.7;
}

.stat-card {
    padding: 24px;
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, var(--red-900), var(--red-800));
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: var(--white);
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
    cursor: pointer;
}

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

.stat-number {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--white);
}

.stat-label {
    color: rgba(255, 255, 255, 0.92);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 11px;
    line-height: 1.5;
}

.goal-stack {
    display: grid;
    gap: 18px;
}

.goal-card {
    padding: 24px;
    display: grid;
    gap: 10px;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.goal-card:hover,
.leader-card:hover,
.gallery-tile:hover,
.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.goal-icon,
.leader-icon,
.gallery-icon {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: linear-gradient(180deg, var(--red-900), var(--red-800));
    color: var(--white);
    font-weight: 800;
    letter-spacing: 0.06em;
}

.leader-grid,
.gallery-grid,
.contact-grid {
    display: grid;
    gap: 18px;
}

.leader-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.leader-card {
    padding: 24px;
    text-align: center;
}

.leader-name {
    margin-top: 18px;
    font-size: 1.2rem;
    font-weight: 800;
}

.leader-role {
    margin: 8px 0 14px;
    color: var(--red-800);
    font-size: 0.84rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.gallery-tile {
    min-height: 280px;
    padding: 0;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(122, 23, 3, 0.92), rgba(163, 39, 10, 0.88));
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: var(--white);
}

.gallery-tile:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.gallery-overlay p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
}

.contact-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
    align-items: start;
}

.contact-form {
    display: grid;
    gap: 16px;
}

.field {
    display: grid;
    gap: 8px;
}

.field label {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--red-900);
}

.field input,
.field textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid rgba(122, 23, 3, 0.18);
    background: var(--white);
    color: var(--red-900);
    outline: none;
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.field textarea {
    min-height: 140px;
    resize: vertical;
}

.field input:focus,
.field textarea:focus {
    border-color: var(--red-800);
    box-shadow: 0 0 0 4px rgba(163, 39, 10, 0.1);
}

.form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 4px;
}

/* ─── FOOTER ─────────────────────────────────────────────────── */
.footer {
    background: var(--red-950);
    color: var(--white-78);
    margin-top: 0;
}

.footer-body {
    padding: 56px 0 40px;
    border-bottom: 1px solid var(--white-10);
}

.footer-inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.8fr 1fr 1.4fr;
    gap: 48px;
    align-items: start;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--white);
}

.footer-logo {
    height: 44px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
}

.footer-brand-name {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
}

.footer-desc {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--white-78);
    max-width: 300px;
    margin: 0;
}

.footer-social {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 4px;
}

.footer-social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white-10);
    color: var(--white);
    font-size: 1rem;
    transition: background 0.2s, color 0.2s, transform 0.2s;
    text-decoration: none;
    border: 1px solid var(--white-18);
}

.footer-social-btn:hover,
.footer-social-btn:focus-visible {
    background: var(--red-600);
    color: var(--white);
    transform: translateY(-2px);
    border-color: transparent;
}

.footer-social-btn:focus-visible {
    outline: 2px solid var(--white);
    outline-offset: 2px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-heading {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--white);
    margin: 0;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: var(--white-78);
    text-decoration: none;
    font-size: 0.92rem;
    transition: color 0.2s, padding-left 0.2s;
    display: inline-block;
}

.footer-links a:hover,
.footer-links a:focus-visible {
    color: var(--white);
    padding-left: 4px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.92rem;
    color: var(--white-78);
    line-height: 1.5;
}

.footer-contact li i {
    font-size: 0.85rem;
    color: var(--red-600);
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-contact a {
    color: var(--white-78);
    text-decoration: none;
    transition: color 0.2s;
    word-break: break-all;
}

.footer-contact a:hover,
.footer-contact a:focus-visible {
    color: var(--white);
    text-decoration: underline;
}

.footer-bottom {
    padding: 20px 0;
    background: rgba(0, 0, 0, 0.2);
}

.footer-bottom-inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-bottom-inner p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.footer-mission {
    text-align: right;
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1080px) {
    .hero-grid,
    .split-layout,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-grid.is-logo-led {
        grid-template-columns: 1fr;
    }

    .leader-grid,
    .stat-grid,
    .impact-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .feature-grid,
    .cta-band {
        grid-template-columns: 1fr;
    }

    .cta-band {
        display: grid;
    }
}

/* Footer tablet layout — 2 columns */
@media (max-width: 860px) {
    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 780px) {
    .nav-wrap {
        min-height: 72px;
        padding: 0 16px;
        gap: 12px;
    }

    .brand-logo {
        height: 48px;
        max-width: 240px;
    }

    .nav-toggle {
        display: inline-flex;
        width: 44px;
        height: 44px;
    }

    .nav-links {
        position: fixed;
        top: 72px;
        left: 16px;
        right: 16px;
        padding: 14px;
        border-radius: 20px;
        background: rgba(255, 255, 255, 0.98);
        border: 1px solid rgba(122, 23, 3, 0.14);
        box-shadow: var(--shadow);
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        transform: translateY(-12px);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.22s ease, transform 0.22s ease;
        z-index: 999;
    }

    .nav-links li {
        width: 100%;
        opacity: 0;
        transform: translateY(10px);
        transition: opacity 0.22s ease, transform 0.22s ease;
    }

    .nav-links.is-open {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    .nav-links.is-open li {
        opacity: 1;
        transform: translateY(0);
    }

    .nav-links.is-open li:nth-child(1) { transition-delay: 0.02s; }
    .nav-links.is-open li:nth-child(2) { transition-delay: 0.05s; }
    .nav-links.is-open li:nth-child(3) { transition-delay: 0.08s; }
    .nav-links.is-open li:nth-child(4) { transition-delay: 0.11s; }
    .nav-links.is-open li:nth-child(5) { transition-delay: 0.14s; }
    .nav-links.is-open li:nth-child(6) { transition-delay: 0.17s; }
    .nav-links.is-open li:nth-child(7) { transition-delay: 0.2s; }

    .nav-links a {
        width: 100%;
        justify-content: flex-start;
        min-height: 48px;
    }

    .hero-actions {
        width: 100%;
    }

    .hero-actions .button {
        width: 100%;
    }

    .hero {
        padding: 52px 0 42px;
    }

    .hero h1 {
        line-height: 1;
    }

    .hero-grid.is-logo-led {
        gap: 20px;
    }

    .scroll-arrow {
        margin-top: 18px;
    }

    .stat-grid,
    .leader-grid,
    .gallery-grid,
    .impact-strip,
    .feature-grid {
        grid-template-columns: 1fr;
    }

    .page-section {
        padding: 20px 0 46px;
    }

    .cta-band {
        padding: 24px;
    }

    /* Improve button touch targets */
    .button {
        min-height: 48px;
    }

    /* Better spacing for hero cards on tablets */
    .hero-card {
        padding: clamp(20px, 5vw, 40px);
    }

    /* Optimize card spacing */
    .card,
    .panel {
        padding: 20px;
    }
}

@media (max-width: 520px) {
    .section-shell,
    .nav-wrap,
    .footer-inner {
        padding-left: 14px;
        padding-right: 14px;
    }

    .hero-card,
    .panel,
    .card,
    .timeline-card,
    .contact-card,
    .gallery-tile,
    .goal-card,
    .leader-card,
    .impact-card,
    .feature-card,
    .cta-band {
        padding: 20px;
    }

    .hero h1,
    .section-title h2,
    .cta-band h2 {
        letter-spacing: -0.03em;
    }

    .button {
        width: 100%;
        min-height: 48px;
    }

    .hero-chip {
        min-height: 34px;
    }

    .hero-card,
    .panel,
    .card,
    .timeline-card,
    .goal-card,
    .leader-card,
    .gallery-tile,
    .contact-card {
        border-radius: 22px;
    }

    .hero-actions,
    .form-actions {
        flex-direction: column;
    }

    .button {
        width: 100%;
    }

    .scroll-arrow {
        width: 100%;
        justify-content: center;
    }

    .timeline {
        padding-left: 20px;
    }

    .timeline-card::before {
        left: -29px;
    }

    /* Footer optimization for mobile */
    .footer-body {
        padding: 40px 0 28px;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 0 14px;
    }

    .footer-bottom-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
        padding: 0 14px;
    }

    .footer-mission {
        text-align: left;
    }

    main.page {
        padding-bottom: 0;
    }

    /* Improve form field spacing on mobile */
    .field input,
    .field textarea {
        padding: 14px 16px;
        font-size: 16px;
    }

    .field label {
        font-size: 0.9rem;
    }

    /* Better touch targets for interactive elements */
    .nav-links a {
        min-height: 48px;
    }

    .hero-spot {
        padding: 16px;
    }

    .card-grid {
        gap: 16px;
    }
}

/* Ultra-small device optimization (360px - 380px) */
@media (max-width: 380px) {
    .section-shell,
    .nav-wrap,
    .footer-inner {
        padding-left: 12px;
        padding-right: 12px;
    }

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

    .brand-logo {
        height: 44px;
        max-width: 180px;
    }

    .hero-card {
        padding: clamp(16px, 4vw, 28px);
    }

    .hero h1 {
        font-size: clamp(1.8rem, 5vw, 2.4rem);
        margin-bottom: 12px;
    }

    .hero p {
        font-size: clamp(0.9rem, 1.8vw, 1rem);
    }

    .eyebrow {
        font-size: 10px;
        padding: 6px 10px;
        margin-bottom: 12px;
    }

    .hero-actions {
        gap: 10px;
        margin-top: 16px;
    }

    .button {
        min-height: 44px;
        padding: 0 16px;
        font-size: 13px;
    }

    .panel,
    .card,
    .timeline-card,
    .contact-card,
    .gallery-tile,
    .goal-card,
    .leader-card,
    .impact-card,
    .feature-card,
    .cta-band {
        padding: 16px;
    }

    .hero-chip {
        min-height: 32px;
        padding: 0 10px;
        font-size: 11px;
    }

    .hero-spot {
        padding: 14px 16px;
    }

    .hero-spot strong {
        font-size: 0.9rem;
        margin-bottom: 6px;
    }

    .hero-spot p {
        font-size: 0.9rem;
    }

    .section-title h2 {
        font-size: clamp(1.5rem, 3.5vw, 2rem);
        margin-bottom: 8px;
    }

    .section-title p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .page-section {
        padding: 18px 0 42px;
    }

    .hero {
        padding: 60px 0 42px;
    }

    .card-grid,
    .goal-stack {
        gap: 14px;
    }

    .feature-card h3,
    .timeline-card h3,
    .goal-card h3 {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }

    .stat-number {
        font-size: clamp(1.6rem, 3vw, 2.2rem);
        margin-bottom: 6px;
    }

    .stat-label {
        font-size: 10px;
    }

    .cta-band h2 {
        font-size: clamp(1.4rem, 3vw, 1.8rem);
        margin-bottom: 8px;
    }

    .cta-band p {
        font-size: 0.9rem;
    }

    .field input,
    .field textarea {
        padding: 12px 14px;
        font-size: 16px;
    }

    .field label {
        font-size: 0.85rem;
    }

    .footer-inner {
        gap: 22px;
        padding: 0 12px;
    }

    .footer-bottom-inner {
        padding: 0 12px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .scroll-arrow i {
        animation: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

