﻿/* ── Palette (Financial Times–inspired) ── */
:root {
    --bg: #FFF1E5;
    --bg-card: #FDEBD6;
    --border: #CFC0B4;
    --text: #33302E;
    --text-muted: #66605A;
    --accent: #990F3D;
    --accent-soft: #C9185B;
    --link: #990F3D;
    --link-hover: #660829;
    --serif-head: 'Playfair Display', Georgia, serif;
    --serif-body: 'Source Serif 4', Georgia, serif;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: var(--serif-body);
    font-size: 17px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

/* ── heading ── */
.site-header {
    border-bottom: 2px solid var(--accent);
    padding: 1.5rem 0 1.25rem;
    background-color: var(--bg);
}

heading {
    border-bottom: 2px solid var(--accent);
    padding: 1.5rem 0 1.25rem;
    background-color: var(--bg);
}

.heading-inner {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.heading-text {
}

.heading-org {
    font-family: var(--serif-body);
    font-size: 1.0rem;
    font-weight: 1000;
    color: var(--text-muted);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.heading-title {
    font-family: var(--serif-head);
    font-size: 1.55rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1.15;
    letter-spacing: -0.01em;
}

/* heading layout update */
.heading-with-links {
    justify-content: space-between;
}

/* Right side buttons */
.heading-links {
    display: flex;
    gap: 0.6rem;
}

/* Button style */
.heading-btn {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent);
    text-decoration: none;
    border: 1px solid var(--accent);
    padding: 0.35rem 0.7rem;
    border-radius: 2px;
    transition: all 0.15s;
    white-space: nowrap;
}

.heading-btn:hover {
    background-color: var(--accent);
    color: #fff;
}

/* main container */
.heading-with-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* LEFT: logo + text together */
.heading-left {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

/* RIGHT: buttons */
.heading-links {
    display: flex;
    gap: 0.6rem;
}

.site-logo {
    height: 56px;
    width: auto;
    flex-shrink: 0;
}

.logo-placeholder {
    height: 70px;
    width: 70px;
    background-color: var(--bg-card);
    border: 1.5px dashed var(--border);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    color: var(--text-muted);
    text-align: center;
    flex-shrink: 0;
    font-family: var(--serif-body);
    line-height: 1.3;
    padding: 4px;
}

/* ── Nav ── */
nav {
    border-bottom: 1px solid var(--border);
    background-color: var(--bg);
}

nav a {
    display: inline-block;
    padding: 0.6rem 1rem 0.6rem 0;
    font-size: 0.85rem;
    font-family: var(--serif-body);
    font-weight: 400;
    color: var(--text-muted);
    text-decoration: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    transition: color 0.15s, border-color 0.15s;
}

nav a:hover, nav a.active {
    color: var(--accent);
    border-bottom-color: var(--accent);
}

/* ── Main ── */
main {
    max-width: 860px;
    margin: 0 auto;
    padding: 2.5rem 1.5rem 4rem;
}

/* ── Breadcrumb ── */
.breadcrumb {
    max-width: 860px;
    margin: 0 auto;
    padding: 1rem 0rem 0;
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: -40px;
    margin-bottom: 1.0rem;
}

.breadcrumb a {
    color: var(--accent);
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb span {
    margin: 0 0.4rem;
}

/* ── Page heading ── */
.page-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.4rem;
}

.page-title {
    font-family: var(--serif-head);
    font-size: 2rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.15;
    margin-bottom: 0.4rem;
}

.page-period {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 2rem;
}















/* ── Footer ── */
footer {
    border-top: 2px solid var(--accent);
    background-color: var(--bg);
    padding: 1.5rem 0;
}

.footer-inner {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-org {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer-org a {
    color: var(--accent);
    text-decoration: none;
}

.footer-org a:hover {
    text-decoration: underline;
}

.footer-links {
    display: flex;
    gap: 1.25rem;
}

.footer-links a {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--accent);
}

/* ── Responsive ── */
@media (max-width: 600px) {
    .heading-title {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .about-section {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .fy-tags {
        display: none;
    }

    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.6rem;
    }
}
