* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    background: #f7f4ee;
    color: #15263d;
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.65
}

.container {
    width: min(1120px, calc(100% - 36px));
    margin: auto
}

.header {
    position: sticky;
    top: 0;
    z-index: 5;
    background: rgba(247, 244, 238, .94);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #ddd9d0
}

.nav {
    height: 72px;
    display: flex;
    align-items: center
}

.brand {
    font: 700 21px Georgia, serif;
    text-decoration: none;
    color: #15263d;
    margin-right: auto
}

.nav nav {
    display: flex;
    gap: 24px
}

.nav nav a {
    font-size: 14px;
    text-decoration: none;
    color: #334359
}

.hero {
    padding: 90px 0;
    background: linear-gradient(120deg, #f7f4ee, #eee8dd)
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    gap: 72px;
    align-items: center
}

h1,
h2,
h3 {
    font-family: Georgia, "Times New Roman", serif;
    line-height: 1.05;
    margin-top: 0
}

h1 {
    font-size: clamp(58px, 8vw, 106px);
    letter-spacing: -.055em;
    margin-bottom: 20px
}

h2 {
    font-size: clamp(36px, 5vw, 60px);
    letter-spacing: -.035em;
    margin-bottom: 30px
}

h3 {
    font-size: 25px;
    margin-bottom: 12px
}

.eyebrow {
    color: #b1844c;
    font-weight: 800;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .18em;
    margin-bottom: 15px
}

.light {
    color: #dfba80
}

.dates {
    font-size: 20px;
    color: #607086;
    margin: 0 0 20px
}

.lead {
    font-size: 18px;
    max-width: 640px;
    color: #3e4d61
}

.actions {
    display: flex;
    gap: 12px;
    margin-top: 32px
}

.btn {
    padding: 12px 18px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    border: 1px solid #15263d
}

.primary {
    background: #15263d;
    color: white
}

.secondary {
    color: #15263d
}

.photo-frame {
    background: white;
    padding: 14px;
    border: 1px solid #dad6ce;
    box-shadow: 0 18px 55px rgba(21, 38, 61, .09);
    transform: rotate(1deg)
}

.photo-frame img{
  width:100%;
  aspect-ratio:4/5;
  object-fit:cover;
  display:block;
}

.photo-placeholder {
    aspect-ratio: 4/5;
    display: grid;
    place-items: center;
    text-align: center;
    background: linear-gradient(135deg, #ded5c6, #f1eadf);
    color: #716550;
    padding: 30px
}

.photo-title {
    font: 700 48px Georgia, serif
}

.photo-caption {
    padding: 9px 2px 1px;
    font-size: 12px;
    color: #6b7584
}

.facts {
    background: #15263d;
    color: white
}

.facts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr)
}

.facts-grid div {
    padding: 25px 18px;
    border-right: 1px solid rgba(255, 255, 255, .12)
}

.facts-grid div:last-child {
    border-right: 0
}

.facts b,
.facts span {
    display: block
}

.facts b {
    font: 700 22px Georgia, serif
}

.facts span {
    font-size: 12px;
    color: #bec8d4
}

.section {
    padding: 105px 0
}

.two-col {
    display: grid;
    grid-template-columns: .78fr 1.22fr;
    gap: 85px
}

.text {
    font-size: 18px;
    color: #465469
}

.warm {
    background: #ebe5d9
}

.cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px
}

.cards article {
    background: rgba(255, 255, 255, .62);
    padding: 27px;
    border: 1px solid #d6d0c4;
    min-height: 235px
}

.num {
    font-size: 11px;
    letter-spacing: .18em;
    color: #b1844c;
    font-weight: 800
}

.cards p {
    color: #5b6779;
    margin-bottom: 0
}

.dark {
    background: #15263d;
    color: white
}

.dark h2 {
    color: white
}

.timeline {
    border-top: 1px solid rgba(255, 255, 255, .17)
}

.timeline div {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .11)
}

.timeline b {
    font: 700 23px Georgia, serif
}

.timeline span {
    color: #ccd5df
}

.wide {
    max-width: 780px;
    font-size: 18px;
    color: #566477
}

.archive-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 30px
}

.archive-grid div {
    background: white;
    border: 1px solid #ded9d0;
    padding: 22px
}

.archive-grid b,
.archive-grid span {
    display: block
}

.archive-grid span {
    color: #637084;
    font-size: 14px;
    margin-top: 5px
}

.sources {
    background: #f0ece4;
    padding: 92px 0
}

.source-links {
    display: grid;
    gap: 10px;
    margin-top: 26px
}

.source-links a {
    background: white;
    padding: 16px 18px;
    border: 1px solid #ddd8cf;
    text-decoration: none
}

.source-links a:hover {
    border-color: #b1844c
}

footer {
    background: #0d1b2d;
    color: #cdd5df
}

.footer {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 24px 0;
    font-size: 12px
}

@media(max-width:850px) {
    .nav nav {
        display: none
    }

    .hero-grid,
    .two-col {
        grid-template-columns: 1fr
    }

    .cards {
        grid-template-columns: 1fr 1fr
    }

    .facts-grid {
        grid-template-columns: 1fr 1fr
    }

    .hero {
        padding-top: 62px
    }
}

@media(max-width:560px) {
    .container {
        width: min(100% - 26px, 1120px)
    }

    .cards,
    .archive-grid {
        grid-template-columns: 1fr
    }

    .facts-grid {
        grid-template-columns: 1fr
    }

    .facts-grid div {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .11)
    }

    .timeline div {
        grid-template-columns: 95px 1fr
    }

    .footer {
        flex-direction: column
    }
}