
:root {
    --slate-950: #0f172a;
    --slate-900: #111827;
    --slate-800: #1f2937;
    --slate-700: #334155;
    --slate-600: #475569;
    --slate-100: #f1f5f9;
    --amber-500: #f59e0b;
    --amber-400: #fbbf24;
    --white: #ffffff;
    --border: #e5e7eb;
    --shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

* { box-sizing: border-box; }

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #f8fafc;
    color: var(--slate-800);
    line-height: 1.6;
}

a { color: inherit; }

.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 20px;
}

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

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

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-weight: 800;
    color: var(--slate-900);
}

.brand img {
    height: 52px;
    width: auto;
    object-fit: contain;
}

.site-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    font-size: 14px;
    font-weight: 700;
    color: var(--slate-600);
}

.site-nav a {
    text-decoration: none;
}

.site-nav a:hover {
    color: var(--amber-500);
}

.hero,
.page-hero {
    background: linear-gradient(135deg, #0f172a, #1f2937);
    color: white;
    border-bottom: 5px solid var(--amber-500);
}

.hero {
    padding: 92px 0;
    text-align: center;
}

.page-hero {
    padding: 70px 0;
}

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

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 12px;
    font-weight: 800;
    color: var(--amber-400);
    margin: 0 0 12px;
}

h1 {
    font-size: clamp(36px, 6vw, 58px);
    line-height: 1.05;
    margin: 0 0 18px;
}

h2 {
    color: var(--slate-900);
    margin-top: 0;
    line-height: 1.2;
}

.page-hero h2,
.hero h2,
.page-hero h1,
.hero h1 {
    color: white;
}

.lead {
    font-size: 19px;
    color: #cbd5e1;
    max-width: 820px;
}

.hero .lead {
    margin: 0 auto 32px;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.button {
    display: inline-block;
    text-decoration: none;
    border-radius: 10px;
    padding: 12px 18px;
    font-weight: 800;
    border: 1px solid transparent;
}

.button.primary {
    background: var(--amber-500);
    color: var(--slate-950);
}

.button.primary:hover {
    background: var(--amber-400);
}

.button.secondary {
    background: transparent;
    color: white;
    border-color: rgba(255,255,255,0.35);
}

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

.split-card,
.intro-card,
.release-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 24px;
    box-shadow: var(--shadow);
    padding: 32px;
}

.split-card {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr;
    gap: 32px;
    align-items: center;
    margin-bottom: 48px;
}

.highlight-card,
.cta-box {
    background: #f8fafc;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 24px;
}

.clean-list {
    padding-left: 18px;
    margin: 0;
}

.text-link {
    color: #b45309;
    font-weight: 800;
    text-decoration: none;
}

.section {
    margin: 56px 0;
}

.section-heading {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 28px;
}

.section-heading p {
    color: var(--slate-600);
}

.card-grid {
    display: grid;
    gap: 22px;
}

.card-grid.three {
    grid-template-columns: repeat(3, 1fr);
}

.info-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 10px 24px rgba(15,23,42,0.04);
}

.icon {
    font-size: 28px;
}

.contact-section {
    background: var(--slate-900);
    color: white;
    border-radius: 24px;
    border-bottom: 5px solid var(--amber-500);
    padding: 38px;
}

.section-heading.light h2 {
    color: white;
}

.section-heading.light p {
    color: #cbd5e1;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    max-width: 780px;
    margin: 0 auto;
}

.contact-grid > div {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    padding: 22px;
}

.contact-grid h3 {
    color: var(--amber-400);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.email-box {
    margin: 28px auto 0;
    max-width: 650px;
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    background: rgba(0,0,0,0.28);
    border-radius: 14px;
    padding: 16px;
}

.email-box span {
    color: #94a3b8;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 12px;
}

.email-box a {
    color: var(--amber-400);
    font-weight: 800;
}

.trustee-grid {
    display: grid;
    gap: 26px;
    margin-top: 34px;
}

.trustee-card {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 28px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 26px;
    box-shadow: var(--shadow);
}

.trustee-card img,
.photo-placeholder {
    width: 220px;
    height: 220px;
    border-radius: 22px;
    object-fit: cover;
    background: #e2e8f0;
}

.photo-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    font-weight: 900;
    color: var(--slate-600);
}

.role {
    color: #b45309;
    font-weight: 800;
    margin-top: -8px;
}

.release-list {
    display: grid;
    gap: 22px;
}

.release-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.release-card .date {
    color: #b45309;
    font-weight: 800;
    margin-top: 0;
}

.timeline {
    display: grid;
    gap: 22px;
    margin-top: 28px;
}

.timeline article {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 22px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 24px;
}

.timeline span {
    font-size: 24px;
    font-weight: 900;
    color: #b45309;
}

.site-footer {
    background: white;
    border-top: 1px solid var(--border);
    padding: 28px 0;
    color: var(--slate-600);
    font-size: 13px;
}

.footer-inner {
    text-align: center;
}

.footer-inner img {
    height: 48px;
    opacity: 0.8;
}

@media (max-width: 820px) {
    .header-inner {
        flex-direction: column;
        padding: 16px 20px;
    }

    .site-nav {
        justify-content: center;
    }

    .split-card,
    .card-grid.three,
    .contact-grid,
    .trustee-card,
    .timeline article {
        grid-template-columns: 1fr;
    }

    .trustee-card img,
    .photo-placeholder {
        width: 100%;
        height: auto;
        min-height: 260px;
    }

    .release-card {
        align-items: flex-start;
        flex-direction: column;
    }
}
