:root {
    --ink: #10202b;
    --ink-soft: #39444b;
    --cream: #f5efe3;
    --cream-deep: #eadcc4;
    --paper: #fff9ed;
    --gold: #c69a37;
    --gold-dark: #8a681f;
    --green: #333b22;
    --green-deep: #222918;
    --line: rgba(72, 62, 43, 0.22);
    --shadow: 0 18px 45px rgba(16, 32, 43, 0.16);
    --max: 1220px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--ink);
    background:
        radial-gradient(circle at top left, rgba(198, 154, 55, 0.10), transparent 28rem),
        linear-gradient(180deg, #fbf6eb 0%, #f1e5cf 100%);
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 17px;
    line-height: 1.7;
}
a { color: inherit; }
img { max-width: 100%; display: block; }
.container {
    width: min(var(--max), calc(100% - 40px));
    margin-inline: auto;
}
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(253, 247, 237, 0.96);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(8px);
}
.header-inner {
    min-height: 92px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}
.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    min-width: 280px;
}
.brand-mark {
    width: 58px;
    height: 58px;
    border: 2px solid var(--gold);
    border-radius: 999px;
    display: grid;
    place-items: center;
    color: var(--gold-dark);
    background: #fff8e7;
    font-weight: 700;
    letter-spacing: .06em;
    box-shadow: inset 0 0 0 6px rgba(198,154,55,.12);
}
.brand-text { display: grid; line-height: 1; }
.brand-small {
    text-transform: uppercase;
    font-size: .82rem;
    letter-spacing: .16em;
}
.brand-large {
    font-size: clamp(2rem, 3.4vw, 2.9rem);
    text-transform: uppercase;
    letter-spacing: .08em;
    line-height: .96;
}
.brand-sub {
    margin-top: 7px;
    font-size: .72rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--gold-dark);
}
.main-nav {
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: .96rem;
}
.main-nav a {
    text-decoration: none;
    padding: 10px 0;
    border-bottom: 2px solid transparent;
}
.main-nav a:hover,
.main-nav a.active {
    color: var(--gold-dark);
    border-bottom-color: var(--gold);
}
.nav-toggle, .nav-toggle-label { display: none; }
.hero {
    background:
        radial-gradient(circle at 26% 22%, rgba(198, 154, 55, 0.13), transparent 24rem),
        #10202b;
    color: #fff;
    overflow: hidden;
    position: relative;
}
.hero .container.hero-grid {
    width: 100%;
    max-width: none;
    margin: 0;
}
.hero-grid {
    display: grid;
    grid-template-columns: minmax(720px, calc((100vw - var(--max)) / 2 + 720px)) minmax(0, 1fr);
    min-height: 500px;
    align-items: stretch;
}
.hero-copy {
    padding: clamp(50px, 6vw, 78px) clamp(34px, 4vw, 62px) clamp(50px, 6vw, 78px) max(34px, calc((100vw - var(--max)) / 2 + 20px));
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
    background: linear-gradient(90deg, rgba(14,29,39,.98), rgba(14,29,39,.94) 62%, rgba(14,29,39,.78));
}
.hero-copy::after {
    content: "";
    position: absolute;
    top: 0;
    right: -150px;
    bottom: 0;
    width: 150px;
    background: linear-gradient(90deg, rgba(14,29,39,.78), transparent);
    pointer-events: none;
}
.eyebrow,
.section-kicker {
    margin: 0 0 10px;
    color: var(--gold);
    font-style: italic;
    letter-spacing: .03em;
    font-size: clamp(1.15rem, 2.2vw, 1.65rem);
}
.hero h1,
.page-hero h1 {
    margin: 0;
    font-size: clamp(2.8rem, 3.8vw, 3.9rem);
    line-height: 1.02;
    letter-spacing: .01em;
}
.hero h1 { max-width: 760px; }
.hero-intro {
    color: #eac46a;
    font-style: italic;
    font-size: clamp(1.15rem, 2vw, 1.4rem);
    margin: 20px 0 8px;
}
.hero-copy p:not(.eyebrow):not(.hero-intro) {
    max-width: 520px;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.75;
    color: rgba(255,255,255,.9);
}
.hero-art {
    position: relative;
    min-height: 500px;
}
.hero-art::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 -1px;
    width: 180px;
    z-index: 1;
    background: linear-gradient(90deg, rgba(16,32,43,.72) 0%, transparent 100%);
}
.hero-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    filter: sepia(.05) contrast(1.03);
}
.decor-line {
    width: min(430px, 100%);
    height: 26px;
    position: relative;
    margin: 22px 0 4px;
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
}
.decor-line::before,
.decor-line::after {
    content: "";
    height: 1px;
    background: var(--gold);
    flex: 1;
}
.decor-line span { padding: 0 12px; font-size: .88rem; }
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: .78rem;
    font-weight: 700;
    padding: 14px 22px;
    border: 1px solid currentColor;
    transition: transform .2s ease, background .2s ease, color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary {
    color: #fff;
    background: linear-gradient(135deg, #646139, #343b22);
    border-color: var(--gold);
}
.button-ghost { color: #fff; border-color: rgba(255,255,255,.45); }
.button-outline { color: var(--ink); border-color: var(--ink); }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 22px; }
.section-pad { padding: clamp(58px, 8vw, 92px) 0; }
.alt-bg {
    background: rgba(255, 249, 237, .62);
    border-block: 1px solid var(--line);
}
.split-panel {
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    gap: clamp(32px, 6vw, 72px);
    align-items: center;
}
.archive-photo {
    margin: 0;
    transform: rotate(-2deg);
    filter: drop-shadow(0 14px 20px rgba(16,32,43,.18));
}
.archive-photo img { border: 10px solid #f8f1e2; box-shadow: var(--shadow); }
h2 {
    margin: 0 0 18px;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.08;
    font-weight: 500;
    letter-spacing: .02em;
}
.section-kicker {
    text-transform: uppercase;
    font-size: .88rem;
    font-style: normal;
    letter-spacing: .18em;
    color: var(--gold-dark);
}
.centre { text-align: center; }
.centre-line { margin-inline: auto; width: 260px; }
.moments {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
    margin-top: 42px;
    position: relative;
}
.moments article {
    text-align: center;
    position: relative;
    padding: 0 8px;
}
.moment-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin: 0 auto 14px;
    color: #fff;
    background: radial-gradient(circle at 35% 25%, #59613d, var(--green-deep));
    box-shadow: 0 8px 18px rgba(16,32,43,.18);
    font-size: 1.55rem;
}
.moments h3 { margin: 0 0 6px; line-height: 1.2; font-size: 1.18rem; }
.moments p { margin: 0; font-family: Arial, Helvetica, sans-serif; font-size: .94rem; color: var(--ink-soft); line-height: 1.55; }
.card-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 22px;
    margin-top: 36px;
}
.card-grid.two-col { grid-template-columns: repeat(2, 1fr); }
.feature-card,
.info-card {
    display: block;
    min-height: 270px;
    padding: 30px 24px;
    text-align: center;
    text-decoration: none;
    background: rgba(255, 249, 237, .72);
    border: 1px solid var(--line);
    box-shadow: 0 12px 30px rgba(16,32,43,.06);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(198,154,55,.65);
    box-shadow: var(--shadow);
}
.feature-card span { font-size: 2rem; display: inline-block; margin-bottom: 12px; }
.feature-card h3,
.info-card h2 {
    margin: 0 0 12px;
    font-size: 1.45rem;
    text-transform: uppercase;
    letter-spacing: .06em;
    line-height: 1.15;
}
.feature-card p,
.info-card p {
    font-family: Arial, Helvetica, sans-serif;
    color: var(--ink-soft);
    font-size: .94rem;
    line-height: 1.62;
}
.feature-card strong {
    display: inline-block;
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: .72rem;
}
.page-hero {
    padding: 78px 0;
    color: #fff;
    background:
        linear-gradient(90deg, rgba(16,32,43,.96), rgba(16,32,43,.72)),
        url('../images/hero-aitken-artwork.png') center 35% / cover no-repeat,
        #10202b;
}
.small-hero h1 { max-width: 880px; }
.small-hero p:not(.eyebrow) {
    max-width: 760px;
    font-family: Arial, Helvetica, sans-serif;
    color: rgba(255,255,255,.88);
}
.content-narrow { max-width: 860px; }
.content-narrow h2 { margin-top: 34px; font-size: clamp(1.65rem, 3vw, 2.25rem); }
.content-narrow h2:first-child { margin-top: 0; }
.content-narrow p,
.content-narrow li,
.contact-card p {
    font-family: Arial, Helvetica, sans-serif;
    color: var(--ink-soft);
}
.timeline-list { position: relative; }
.timeline-list::before {
    content: "";
    position: absolute;
    left: 82px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: var(--line);
}
.timeline-list article {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 28px;
    padding: 28px 0;
    border-bottom: 1px solid var(--line);
}
.timeline-list span {
    position: relative;
    z-index: 1;
    width: 92px;
    min-height: 54px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: var(--green);
    color: #fff;
    font-weight: 700;
    font-size: .9rem;
    text-align: center;
    padding: 8px;
}
.timeline-list h2 { margin: 0 0 6px; font-size: 1.55rem; }
.timeline-list p { margin: 0; }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}
.gallery-grid figure {
    margin: 0;
    background: var(--paper);
    border: 1px solid var(--line);
    padding: 12px;
    box-shadow: 0 12px 24px rgba(16,32,43,.08);
}
.gallery-grid img { aspect-ratio: 4 / 3; width: 100%; object-fit: cover; }
.gallery-grid figcaption {
    margin-top: 10px;
    font-size: .88rem;
    color: var(--ink-soft);
    font-family: Arial, Helvetica, sans-serif;
}
.gallery-grid .placeholder {
    min-height: 230px;
    display: grid;
    place-items: center;
    text-align: center;
    border-style: dashed;
}
.gallery-grid .placeholder span { font-size: 3rem; color: var(--gold-dark); }
.source-list { padding-left: 1.2rem; }
.note-box,
.contact-card {
    background: rgba(255,249,237,.76);
    border: 1px solid var(--line);
    padding: 24px;
    box-shadow: 0 12px 28px rgba(16,32,43,.06);
}
.contact-card { max-width: 760px; }
.small-text { font-size: .9rem; }
code { background: rgba(16,32,43,.08); padding: 2px 6px; border-radius: 5px; }
.site-footer {
    color: rgba(255,255,255,.86);
    background:
        radial-gradient(circle at 20% 20%, rgba(198,154,55,.16), transparent 24rem),
        linear-gradient(135deg, var(--green), var(--green-deep));
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr .75fr 1fr;
    gap: 42px;
    padding: 46px 0;
}
.site-footer h2 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: #fff8e7;
}
.site-footer p,
.site-footer li {
    font-family: Arial, Helvetica, sans-serif;
    font-size: .94rem;
    line-height: 1.65;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer a { color: #f1cc72; text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }
.signature {
    color: #e0ba5c !important;
    font-family: Georgia, 'Times New Roman', serif !important;
    font-size: 1.55rem !important;
    font-style: italic;
}
.footer-bottom {
    background: rgba(10, 20, 28, .82);
    padding: 14px 0;
}
.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
}
.footer-bottom p { margin: 0; font-size: .86rem; }
@media (max-width: 1040px) {
    .header-inner { min-height: 88px; }
    .main-nav { gap: 12px; font-size: .88rem; }
    .hero .container.hero-grid { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }
    .hero-grid { grid-template-columns: 1fr; min-height: auto; }
    .hero-copy { padding: 54px 0; max-width: 720px; background: transparent; }
    .hero-copy::after { display: none; }
    .hero-art { min-height: 420px; margin-inline: -20px; }
    .hero-art::before { display: none; }
    .split-panel { grid-template-columns: 1fr; }
    .archive-photo { max-width: 520px; }
    .moments { grid-template-columns: repeat(2, 1fr); }
    .card-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 820px) {
    .brand { min-width: auto; }
    .brand-mark { width: 50px; height: 50px; }
    .brand-small, .brand-sub { font-size: .62rem; }
    .brand-large { font-size: 2rem; }
    .nav-toggle-label {
        display: grid;
        place-items: center;
        width: 44px;
        height: 44px;
        border: 1px solid var(--line);
        cursor: pointer;
    }
    .nav-toggle-label span,
    .nav-toggle-label span::before,
    .nav-toggle-label span::after {
        display: block;
        width: 22px;
        height: 2px;
        background: var(--ink);
        position: relative;
    }
    .nav-toggle-label span::before,
    .nav-toggle-label span::after { content: ""; position: absolute; left: 0; }
    .nav-toggle-label span::before { top: -7px; }
    .nav-toggle-label span::after { top: 7px; }
    .main-nav {
        position: absolute;
        left: 20px;
        right: 20px;
        top: 88px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        background: #fff8e9;
        padding: 12px 20px;
        border: 1px solid var(--line);
        box-shadow: var(--shadow);
    }
    .main-nav a { padding: 12px 0; }
    .nav-toggle:checked ~ .main-nav { display: flex; }
    .hero { background: #10202b; }
    .hero-copy { padding-top: 42px; padding-bottom: 42px; }
    .hero-art { min-height: 340px; }
    .footer-grid { grid-template-columns: 1fr; gap: 22px; }
}
@media (max-width: 620px) {
    body { font-size: 16px; }
    .container { width: min(100% - 28px, var(--max)); }
    .brand-text { max-width: 210px; }
    .hero h1, .page-hero h1 { font-size: 2.65rem; }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .moments, .card-grid, .card-grid.two-col, .gallery-grid { grid-template-columns: 1fr; }
    .timeline-list::before { left: 45px; }
    .timeline-list article { grid-template-columns: 92px 1fr; gap: 18px; }
    .timeline-list span { width: 82px; font-size: .78rem; }
    .footer-bottom-inner { display: block; }
}
