:root {
    --or-pale: #c8b280;
    --corail: #e76f51;
    --blanc-casse: #eae9e4;
    --bleu-pale: #3588d3;
    --noir: #232323;
    --surface: #f6f4ee;
    --panel-shadow: 0 12px 30px rgba(35, 35, 35, 0.12);
    --radius: 16px;
}

@font-face {
    font-family: "Winky Rough";
    src: url("https://audiquest.com/assets/font/Winky_Rough/WinkyRough-VariableFont_wght.ttf") format("truetype");
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Avenir Next", Avenir, "Segoe UI", sans-serif;
    color: var(--noir);
    background-color: var(--blanc-casse);
    background-image: radial-gradient(circle at 15% 10%, rgba(53, 136, 211, 0.2), transparent 45%),
        radial-gradient(circle at 85% 80%, rgba(200, 178, 128, 0.35), transparent 45%),
        url('https://audiquest.com/assets/img/trace1.svg');
    background-size: auto, auto, cover;
    background-attachment: fixed;
    line-height: 1.55;
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 30;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 20px;
    background: rgba(234, 233, 228, 0.9);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(53, 136, 211, 0.2);
}

.brand img {
    width: 170px;
    height: auto;
    display: block;
}

.topbar-link {
    text-decoration: none;
    color: var(--bleu-pale);
    font-weight: 700;
}

main {
    max-width: 1120px;
    margin: 0 auto;
    padding: 24px 16px 44px;
}

.hero {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 22px;
    align-items: stretch;
    margin-bottom: 22px;
}

.hero-content,
.hero-art {
    background: linear-gradient(155deg, #fff 0%, #f4efe2 100%);
    border: 1px solid rgba(200, 178, 128, 0.45);
    border-radius: var(--radius);
    box-shadow: var(--panel-shadow);
}

.hero-content {
    padding: 28px;
}

.hero-art {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.hero-art img {
    max-width: 240px;
    width: 100%;
    height: auto;
}

.eyebrow {
    color: var(--bleu-pale);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 0 0 10px;
    font-size: 0.82rem;
    font-weight: 800;
}

h1,
h2,
h3 {
    margin-top: 0;
    color: var(--bleu-pale);
}

h1 {
    font-family: "Winky Rough", "Avenir Next", sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.7rem);
    line-height: 1.1;
    margin-bottom: 12px;
}

.lead {
    font-size: 1.05rem;
}

.hero-actions,
.donation-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.btn {
    display: inline-block;
    text-decoration: none;
    border-radius: 999px;
    padding: 10px 16px;
    font-weight: 700;
    border: 1px solid transparent;
}

.btn-primary {
    background: var(--bleu-pale);
    border-color: var(--bleu-pale);
    color: #fff;
}

.btn-ghost {
    background: transparent;
    border-color: var(--or-pale);
    color: var(--noir);
}

.panel {
    background: var(--surface);
    border: 1px solid rgba(53, 136, 211, 0.17);
    border-left: 6px solid var(--or-pale);
    border-radius: var(--radius);
    box-shadow: var(--panel-shadow);
    padding: 24px;
    margin-bottom: 16px;
}

.grid-two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

ul,
ol {
    padding-left: 18px;
    margin-bottom: 0;
}

.timeline ol {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
}

.timeline li {
    border: 1px solid rgba(200, 178, 128, 0.45);
    background: #fff;
    border-radius: 12px;
    padding: 14px;
}

.timeline h3 {
    margin: 0 0 4px;
    color: var(--noir);
    font-size: 1rem;
}

.timeline p {
    margin: 0;
}

.donation {
    border-left-color: var(--corail);
}

.small {
    font-size: 0.92rem;
    opacity: 0.9;
}

.footer {
    text-align: center;
    padding: 18px;
    color: var(--noir);
}

.footer a {
    color: var(--bleu-pale);
    text-decoration: none;
    font-weight: 700;
}

@media (max-width: 920px) {
    .hero {
        grid-template-columns: 1fr;
    }

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

    .hero-content,
    .hero-art,
    .panel {
        padding: 18px;
    }
}
