:root {
    --red: #b3202a;
    --red-dark: #8f1820;
    --ink: #202124;
    --muted: #66676b;
    --line: #dedede;
    --soft: #f5f2ee;
    --white: #ffffff;
    --max-width: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    color: var(--ink);
    background: var(--white);
    line-height: 1.6;
}

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

a {
    color: inherit;
}

.container {
    width: min(calc(100% - 40px), var(--max-width));
    margin-inline: auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    backdrop-filter: blur(10px);
}

.header-inner {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.menu-toggle {
    display: none;
    border: 0;
    background: transparent;
    color: var(--ink);
    font: inherit;
    font-weight: 750;
    cursor: pointer;
    padding: 10px 4px;
}

.mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
}

.mobile-menu-inner {
    display: grid;
    gap: 0;
    padding-top: 6px;
    padding-bottom: 8px;
}

.mobile-menu a {
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    font-weight: 700;
    text-decoration: none;
}

.mobile-menu a:last-child {
    border-bottom: 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.brand-logo {
    display: block;
    width: auto;
    height: 54px;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.site-nav a {
    font-size: 0.95rem;
    font-weight: 650;
    text-decoration: none;
}

.site-nav a:not(.button):hover {
    color: var(--red);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 4px;
    background: var(--red);
    color: var(--white);
    font-weight: 750;
    text-decoration: none;
    transition:
        background 160ms ease,
        transform 160ms ease;
}

.button:hover {
    background: var(--red-dark);
    transform: translateY(-1px);
}

.button-small {
    min-height: 42px;
    padding-inline: 18px;
}

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

.button-light:hover {
    background: #f8f8f8;
}

.text-link {
    font-weight: 700;
    text-decoration: none;
}

.hero {
    padding: 82px 0 90px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 70px;
}

.hero h1 {
    margin: 0;
    max-width: 760px;
    font-size: clamp(3.3rem, 6vw, 5.7rem);
    line-height: 0.98;
    letter-spacing: -0.045em;
}

.hero-intro {
    max-width: 660px;
    margin: 28px 0 0;
    color: var(--muted);
    font-size: 1.25rem;
    line-height: 1.6;
}

.hero-actions {
    margin-top: 34px;
    display: flex;
    align-items: center;
    gap: 26px;
}

.hero-image-wrap,
.section-image-wrap,
.story-image-block {
    overflow: hidden;
}

.hero-image {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.section {
    padding: 110px 0;
}

.section-soft {
    background: var(--soft);
}

.split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
}

.split-grid-reverse .section-copy {
    order: 1;
}

.split-grid-reverse .section-image-wrap {
    order: 2;
}

.section-copy {
    max-width: 600px;
}

.eyebrow {
    margin: 0 0 16px;
    color: var(--red);
    font-size: 0.82rem;
    font-weight: 850;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.eyebrow-light {
    color: rgba(255, 255, 255, 0.76);
}

h2 {
    margin: 0 0 26px;
    font-size: clamp(2.5rem, 4vw, 4rem);
    line-height: 1.06;
    letter-spacing: -0.035em;
}

h3 {
    margin: 0 0 6px;
    font-size: 1.25rem;
}

p {
    margin: 0 0 20px;
}

.lead {
    font-size: 1.3rem;
    line-height: 1.6;
}

.section-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.story-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 70px 90px;
}

.story-intro {
    max-width: 680px;
}

.story-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.image-caption {
    margin: 12px 0 0;
    color: var(--muted);
    font-size: 0.9rem;
}

.timeline {
    grid-column: 1 / -1;
    border-top: 1px solid var(--line);
}

.timeline-item {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 30px;
    padding: 30px 0;
    border-bottom: 1px solid var(--line);
}

.timeline-year {
    color: var(--red);
    font-size: 1.15rem;
    font-weight: 850;
}

.timeline-item p {
    margin-bottom: 0;
    max-width: 700px;
    color: var(--muted);
}

.founder-note {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 250px 4px minmax(0, 700px);
    gap: 28px;
    align-items: center;
    margin-top: 14px;
    padding-top: 18px;
}

.founder-photo-wrap {
    overflow: hidden;
    aspect-ratio: 4 / 5;
}

.founder-photo {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 100% 48%;
}

.founder-note-rule {
    width: 4px;
    height: 100%;
    min-height: 180px;
    background: var(--red);
}

.founder-note-label {
    margin: 0 0 8px;
    color: var(--red);
    font-size: 0.78rem;
    font-weight: 850;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.founder-note-content p:last-child {
    margin: 0;
    font-size: 1.15rem;
    line-height: 1.7;
}

.patron {
    display: grid;
    grid-template-columns: 130px 1fr;
    align-items: center;
    gap: 26px;
    margin-top: 42px;
    padding-top: 28px;
    border-top: 1px solid var(--line);
}

.patron-photo {
    width: 130px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 50%;
}

.patron blockquote {
    margin: 0;
    padding: 0;
    border: 0;
}

.patron blockquote p {
    margin-bottom: 14px;
    font-size: 1.35rem;
    line-height: 1.45;
    font-weight: 650;
}

.patron blockquote footer {
    font-weight: 800;
}

.patron blockquote footer span {
    display: block;
    margin-top: 2px;
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 500;
}

.section-today {
    background: #202124;
    color: var(--white);
}

.section-today .eyebrow {
    color: #e98f95;
}

.section-today p {
    color: rgba(255, 255, 255, 0.82);
}

.section-today .lead {
    color: var(--white);
}

.today-grid {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    align-items: center;
    gap: 90px;
}

.today-image {
    overflow: hidden;
}

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

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

.support-inner {
    max-width: 820px;
}

.support-inner p {
    max-width: 720px;
    color: rgba(255, 255, 255, 0.88);
}

.support-inner .button {
    margin-top: 12px;
}

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

.contact-email a {
    color: var(--red);
    font-size: clamp(1.7rem, 3vw, 2.8rem);
    font-weight: 800;
    text-decoration: none;
}

.contact-details {
    padding-top: 44px;
}

.site-footer {
    padding: 38px 0;
    border-top: 1px solid var(--line);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.footer-inner p {
    margin: 4px 0 0;
    color: var(--muted);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 22px;
}

.footer-links a {
    color: var(--muted);
    font-size: 0.9rem;
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--red);
}

.footer-logo {
    width: auto;
    height: 44px;
}

.footer-brand p {
    margin-top: 10px;
}

.utility-page {
    padding: 90px 0 110px;
}

.utility-content {
    max-width: 780px;
}

.utility-content h1 {
    margin: 0 0 32px;
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 1;
    letter-spacing: -0.04em;
}

.utility-content h2 {
    margin: 42px 0 14px;
    font-size: 1.5rem;
    letter-spacing: -0.02em;
}

.utility-content a:not(.button) {
    color: var(--red);
}

@media (max-width: 600px) {
    .utility-page {
        padding: 60px 0 80px;
    }
}

@media (min-width: 901px) {
    .mobile-menu {
        display: none !important;
    }
}

@media (max-width: 900px) {
    .site-nav a:not(.button) {
        display: none;
    }

    .menu-toggle {
        display: inline-flex;
        align-items: center;
    }

    .hero {
        padding-top: 56px;
    }

    .hero-grid,
    .split-grid,
    .story-layout,
    .today-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-grid,
    .split-grid,
    .story-layout,
    .today-grid {
        gap: 44px;
    }

    .hero-image {
        aspect-ratio: 16 / 10;
    }

    .split-grid-reverse .section-copy,
    .split-grid-reverse .section-image-wrap {
        order: initial;
    }

    .story-image-block {
        max-width: 680px;
    }

    .timeline {
        grid-column: auto;
    }

    .founder-note {
        grid-column: auto;
    }

    .section {
        padding: 78px 0;
    }

    .today-photo-placeholder {
        min-height: 300px;
    }
}

@media (max-width: 600px) {
    .container {
        width: min(calc(100% - 28px), var(--max-width));
    }

    .header-inner {
        min-height: 68px;
    }

    .hero h1 {
        font-size: clamp(2.8rem, 14vw, 4rem);
    }

    .hero-intro {
        font-size: 1.08rem;
    }

    .hero-actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
    }

    .timeline-item {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .footer-inner,
    .footer-links {
        flex-direction: column;
    }

    .footer-links {
        gap: 8px;
    }

    .brand-logo {
        height: 46px;
    }

    .patron {
        grid-template-columns: 90px 1fr;
        gap: 18px;
    }

    .patron-photo {
        width: 90px;
    }

    .founder-note {
        grid-column: auto;
    }

    .hero {
        padding-top: 48px;
        padding-bottom: 64px;
    }

    .section {
        padding: 64px 0;
    }

    .hero-grid,
    .split-grid,
    .story-layout,
    .today-grid {
        gap: 36px;
    }

    .contact-grid {
        gap: 32px;
    }

    .contact-details {
        padding-top: 0;
    }

    .contact-section {
        padding-bottom: 56px;
    }

    .footer-links {
        display: grid;
        grid-template-columns: repeat(2, max-content);
        column-gap: 28px;
        row-gap: 10px;
    }

    .footer-logo {
        height: 40px;
    }

    .founder-note {
        grid-template-columns: 4px 1fr;
        gap: 18px;
        align-items: start;
    }

    .founder-photo-wrap {
        grid-column: 1 / -1;
        width: 100%;
        max-width: 320px;
        aspect-ratio: 4 / 5;
    }

    .founder-note-rule {
        grid-column: 1;
        grid-row: 2;
        min-height: 100%;
    }

    .founder-note-content {
        grid-column: 2;
        grid-row: 2;
    }
}

@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;
    }
}