:root {
    --green: #203f38;
    --green-light: #31564d;
    --cream: #f4f0e6;
    --paper: #ebe4d4;
    --gold: #b89761;
    --ink: #252724;
    --white: #ffffff;
    --border: rgba(32, 63, 56, .16);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--ink);
    background: var(--cream);
    line-height: 1.6;
}

a {
    color: inherit;
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.site-header {
    background: rgba(244, 240, 230, .97);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.site-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.brand-mark {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--green);
    color: white;
    font-family: Georgia, serif;
    font-size: 18px;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-text strong {
    font-family: Georgia, serif;
    font-size: 19px;
}

.brand-text small {
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: 9px;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 26px;
    padding: 0;
    margin: 0;
}

.main-nav a {
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

.hero {
    min-height: 690px;
    display: flex;
    align-items: center;
    background:
        linear-gradient(90deg, rgba(19, 43, 37, .95), rgba(19, 43, 37, .45)),
        radial-gradient(circle at 75% 50%, #937553, #203f38 65%);
    color: white;
}

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

.eyebrow {
    text-transform: uppercase;
    letter-spacing: .25em;
    font-size: 12px;
    font-weight: 700;
}

.eyebrow.dark {
    color: var(--green);
}

.hero h1,
.section-heading h2,
.memory-copy h2,
.participate-inner h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
}

.hero h1 {
    margin: 12px 0 24px;
    font-size: clamp(54px, 8vw, 92px);
    line-height: .98;
}

.hero-intro {
    font-size: 20px;
    max-width: 680px;
    color: rgba(255, 255, 255, .88);
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 34px;
}

.button {
    display: inline-block;
    padding: 15px 23px;
    text-decoration: none;
    border-radius: 2px;
    font-weight: 700;
}

.button-primary {
    background: var(--gold);
    color: #17251f;
}

.button-secondary {
    border: 1px solid rgba(255, 255, 255, .6);
    color: white;
}

.search-history {
    background: white;
    border-bottom: 1px solid var(--border);
    padding: 30px 0;
}

.search-history p {
    margin: 0 0 10px;
    color: var(--green);
    font-weight: 700;
}

.search-history form {
    display: flex;
}

.search-history input {
    flex: 1;
    min-width: 0;
    padding: 18px 20px;
    border: 1px solid var(--border);
    font-size: 16px;
}

.search-history button {
    border: 0;
    background: var(--green);
    color: white;
    padding: 0 28px;
    font-weight: 700;
}

.section {
    padding: 100px 0;
}

.section-heading {
    max-width: 730px;
    margin-bottom: 45px;
}

.section-heading span {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: .2em;
    font-size: 12px;
    font-weight: 700;
}

.section-heading h2 {
    font-size: clamp(38px, 5vw, 58px);
    line-height: 1.05;
    color: var(--green);
    margin: 12px 0;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.feature-card {
    background: white;
    padding: 34px;
    min-height: 245px;
    border: 1px solid var(--border);
}

.feature-card > span {
    color: var(--gold);
    font-family: Georgia, serif;
}

.feature-card h3 {
    font-family: Georgia, serif;
    color: var(--green);
    font-size: 26px;
    margin: 28px 0 10px;
}

.memory-section {
    padding: 100px 0;
    background: var(--paper);
}

.memory-grid {
    display: grid;
    grid-template-columns: 1.3fr .7fr;
    gap: 70px;
    align-items: center;
}

.memory-copy h2 {
    color: var(--green);
    font-size: clamp(38px, 5vw, 58px);
    line-height: 1.06;
}

.memory-copy p {
    font-size: 17px;
}

.memory-card {
    background: var(--green);
    color: white;
    padding: 55px 45px;
    min-height: 360px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.memory-card span {
    color: #d3b982;
    text-transform: uppercase;
    letter-spacing: .17em;
    font-size: 11px;
}

.memory-card strong {
    font-family: Georgia, serif;
    font-size: 38px;
    line-height: 1.1;
    margin: 20px 0;
    font-weight: 400;
}

.participate-section {
    background: var(--green);
    color: white;
    padding: 100px 0;
    text-align: center;
}

.participate-inner {
    max-width: 830px;
}

.participate-inner h2 {
    font-size: clamp(40px, 5vw, 60px);
    line-height: 1.05;
    margin: 15px 0 22px;
}

.participate-inner p {
    font-size: 18px;
    color: rgba(255, 255, 255, .8);
}

.site-footer {
    background: #152b26;
    color: rgba(255, 255, 255, .78);
    padding: 70px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
}

.site-footer h2,
.site-footer h3 {
    color: white;
    font-family: Georgia, serif;
}

.footer-bottom {
    margin-top: 60px;
    padding: 25px 20px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    text-align: center;
    font-size: 13px;
}

@media (max-width: 900px) {
    .main-nav {
        display: none;
    }

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

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

@media (max-width: 620px) {
    .hero {
        min-height: 590px;
    }

    .feature-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .search-history form {
        flex-direction: column;
    }

    .search-history button {
        padding: 16px;
    }
}

.page-main,
.book-page {
    background: #f4f0e6;
}

.page-hero {
    padding: 80px 0 50px;
    background: #ebe4d4;
}

.page-hero h1 {
    margin: 10px 0 0;
    font-family: Georgia, serif;
    font-size: clamp(42px, 6vw, 72px);
    line-height: 1.05;
    color: #203f38;
    font-weight: 400;
}

.page-content-section {
    padding: 70px 0 100px;
}

.page-content {
    max-width: 880px;
    font-size: 18px;
}

.page-content h2 {
    font-family: Georgia, serif;
    color: #203f38;
    font-size: 36px;
}

.book-hero {
    padding: 90px 0;
    background: linear-gradient(135deg, #203f38 0%, #31564d 100%);
    color: white;
}

.book-grid {
    display: grid;
    grid-template-columns: minmax(280px, 430px) 1fr;
    gap: 70px;
    align-items: center;
}

.book-cover {
    background: white;
    padding: 18px;
    box-shadow: 0 25px 60px rgba(0,0,0,.28);
}

.book-cover-image {
    width: 100%;
    height: auto;
    display: block;
}

.book-cover-placeholder {
    min-height: 560px;
    display: grid;
    place-items: center;
    background: #ebe4d4;
    color: #203f38;
    font-family: Georgia, serif;
    font-size: 30px;
    text-align: center;
}

.book-info h1 {
    font-family: Georgia, serif;
    font-size: clamp(42px, 5vw, 64px);
    line-height: 1.04;
    font-weight: 400;
    margin: 15px 0 20px;
}

.book-subtitle {
    font-size: 22px;
    color: #d8c39c;
}

.book-authors {
    margin: 28px 0;
    font-size: 17px;
}

.book-price {
    display: inline-block;
    margin: 5px 0 18px;
    padding: 8px 18px;
    background: #b89761;
    color: #17251f;
    font-family: Georgia, serif;
    font-size: 34px;
}

.book-sale-notice {
    max-width: 600px;
    margin-bottom: 28px;
    color: rgba(255,255,255,.86);
}

.book-details {
    padding: 90px 0;
}

.book-details-inner {
    max-width: 900px;
}

.book-details h2 {
    font-family: Georgia, serif;
    color: #203f38;
    font-size: clamp(36px, 5vw, 52px);
    line-height: 1.08;
}

.book-details p {
    font-size: 18px;
}

.book-notice {
    margin-top: 45px;
    padding: 30px;
    background: #ebe4d4;
    border-left: 5px solid #b89761;
}

.book-notice h3 {
    margin-top: 0;
    font-family: Georgia, serif;
    color: #203f38;
}

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

    .book-cover {
        max-width: 430px;
        margin: 0 auto;
    }
}

.person-page {
    background: #f4f0e6;
}

.person-hero {
    padding: 80px 0;
    background: #203f38;
    color: white;
}

.person-grid {
    display: grid;
    grid-template-columns: minmax(260px, 400px) 1fr;
    gap: 70px;
    align-items: center;
}

.person-photo {
    background: white;
    padding: 15px;
}

.person-photo-image {
    width: 100%;
    height: auto;
    display: block;
}

.person-photo-placeholder {
    min-height: 460px;
    display: grid;
    place-items: center;
    background: #ebe4d4;
    color: #203f38;
    font-family: Georgia, serif;
    font-size: 28px;
    text-align: center;
}

.person-info h1 {
    font-family: Georgia, serif;
    font-size: clamp(42px, 6vw, 70px);
    line-height: 1.05;
    font-weight: 400;
    margin: 15px 0 30px;
}

.person-meta {
    max-width: 650px;
    border-top: 1px solid rgba(255,255,255,.2);
}

.person-meta-row {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 20px;
    padding: 13px 0;
    border-bottom: 1px solid rgba(255,255,255,.2);
}

.person-meta-row span {
    color: #d8c39c;
}

.person-story {
    padding: 80px 0 100px;
}

.person-story-inner {
    max-width: 900px;
}

.person-story-inner p {
    font-size: 18px;
}

.person-story-inner h2 {
    font-family: Georgia, serif;
    color: #203f38;
    font-size: 36px;
}

.person-sources,
.person-book-link {
    margin-top: 50px;
    padding: 30px;
    background: #ebe4d4;
}

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

    .person-photo {
        max-width: 400px;
        margin: 0 auto;
    }

    .person-meta-row {
        grid-template-columns: 1fr;
        gap: 4px;
    }
}

.war-memory-page {
    background: #f4f0e6;
}

.war-memory-hero {
    padding: 100px 0;
    background: #203f38;
    color: white;
}

.war-memory-hero h1 {
    max-width: 900px;
    margin: 12px 0 25px;
    font-family: Georgia, serif;
    font-weight: 400;
    font-size: clamp(52px, 8vw, 90px);
    line-height: 1;
}

.war-memory-intro {
    max-width: 760px;
    margin: 0;
    font-size: 20px;
    color: rgba(255,255,255,.82);
}

.war-memory-section {
    padding: 90px 0 110px;
}

.war-memory-heading {
    max-width: 760px;
    margin-bottom: 50px;
}

.war-memory-heading h2 {
    margin: 10px 0 15px;
    font-family: Georgia, serif;
    font-weight: 400;
    font-size: clamp(38px, 5vw, 58px);
    line-height: 1.05;
    color: #203f38;
}

.people-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.person-card {
    overflow: hidden;
    background: white;
    border: 1px solid rgba(32,63,56,.15);
}

.person-card-image {
    display: block;
    background: #ebe4d4;
}

.person-card-image img {
    width: 100%;
    height: 330px;
    display: block;
    object-fit: cover;
}

.person-card-placeholder {
    height: 330px;
    display: grid;
    place-items: center;
    background: #ebe4d4;
    color: #203f38;
}

.person-card-placeholder span {
    font-family: Georgia, serif;
    font-size: 30px;
}

.person-card-content {
    padding: 30px;
}

.person-dates {
    margin: 0 0 8px;
    color: #b89761;
    font-weight: 700;
}

.person-card h3 {
    margin: 0 0 15px;
    font-family: Georgia, serif;
    font-size: 30px;
    color: #203f38;
}

.person-card h3 a {
    text-decoration: none;
}

.person-card-link {
    color: #203f38;
    font-weight: 700;
}

.memory-links {
    padding: 80px 0;
    background: #ebe4d4;
}

.memory-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.memory-links-grid > a {
    padding: 35px;
    background: white;
    text-decoration: none;
    border-top: 4px solid #b89761;
}

.memory-links-grid span {
    display: block;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: .16em;
    font-size: 11px;
    color: #b89761;
}

.memory-links-grid strong {
    display: block;
    font-family: Georgia, serif;
    font-size: 27px;
    line-height: 1.15;
    color: #203f38;
}

@media (max-width: 800px) {

    .people-grid,
    .memory-links-grid {
        grid-template-columns: 1fr;
    }
}

.victimes-list {
    margin-top: 35px;
    border-top: 1px solid rgba(32,63,56,.18);
}

.victime-item {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 25px;
    align-items: center;
    padding: 25px 0;
    border-bottom: 1px solid rgba(32,63,56,.18);
}

.victime-photo img {
    width: 100px;
    height: 120px;
    object-fit: cover;
    display: block;
}

.victime-item h3 {
    margin: 0 0 5px;
    font-family: Georgia, serif;
    font-size: 26px;
    color: #203f38;
}

.victime-item h3 a {
    text-decoration: none;
}

.victime-dates {
    margin: 0 0 8px;
    color: #927647;
}

@media (max-width: 600px) {
    .victime-item {
        grid-template-columns: 80px 1fr;
    }

    .victime-photo img {
        width: 70px;
        height: 90px;
    }
}

.news-page,
.article-page {
    background: #f4f0e6;
}

.news-hero {
    padding: 90px 0 70px;
    background: #203f38;
    color: white;
}

.news-hero h1 {
    margin: 12px 0 20px;
    font-family: Georgia, serif;
    font-size: clamp(48px, 7vw, 80px);
    font-weight: 400;
    line-height: 1.02;
}

.news-hero p {
    max-width: 760px;
    font-size: 19px;
    color: rgba(255,255,255,.82);
}

.news-list-section {
    padding: 90px 0 110px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.news-card {
    background: white;
    border: 1px solid rgba(32,63,56,.15);
    overflow: hidden;
}

.news-card-image {
    display: block;
    background: #ebe4d4;
}

.news-card-image img {
    width: 100%;
    height: 250px;
    display: block;
    object-fit: cover;
}

.news-card-placeholder {
    height: 250px;
    display: grid;
    place-items: center;
    padding: 30px;
    text-align: center;
    font-family: Georgia, serif;
    font-size: 25px;
    color: #203f38;
}

.news-card-content {
    padding: 28px;
}

.news-date {
    margin: 0 0 10px;
    color: #b89761;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.news-card h2 {
    margin: 0 0 15px;
    font-family: Georgia, serif;
    font-size: 29px;
    line-height: 1.15;
    color: #203f38;
}

.news-card h2 a {
    text-decoration: none;
}

.news-readmore {
    display: inline-block;
    margin-top: 10px;
    color: #203f38;
    font-weight: 700;
}

.article-header {
    padding: 80px 0 50px;
    background: #ebe4d4;
}

.article-header-inner {
    max-width: 930px;
}

.article-header h1 {
    margin: 12px 0 20px;
    font-family: Georgia, serif;
    font-size: clamp(44px, 6vw, 72px);
    line-height: 1.05;
    font-weight: 400;
    color: #203f38;
}

.article-meta {
    color: #776e60;
    font-size: 14px;
}

.article-featured {
    padding-top: 45px;
}

.article-featured-image {
    width: 100%;
    max-height: 650px;
    object-fit: cover;
    display: block;
}

.article-body {
    padding: 60px 0 100px;
}

.article-content {
    max-width: 850px;
    font-size: 18px;
}

.article-content h2,
.article-content h3 {
    font-family: Georgia, serif;
    color: #203f38;
}

.article-content h2 {
    margin-top: 50px;
    font-size: 38px;
}

.article-content h3 {
    margin-top: 35px;
    font-size: 28px;
}

.article-content img {
    max-width: 100%;
    height: auto;
}

.article-footer-box {
    margin-top: 65px;
    padding: 35px;
    background: #ebe4d4;
    border-left: 5px solid #b89761;
}

.article-footer-box h2 {
    margin-top: 0;
}

@media (max-width: 950px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.photos-page {
    background: #f4f0e6;
}

.photos-hero {
    padding: 90px 0 70px;
    background: #203f38;
    color: white;
}

.photos-hero h1 {
    margin: 12px 0 20px;
    font-family: Georgia, serif;
    font-size: clamp(48px, 7vw, 80px);
    font-weight: 400;
    line-height: 1.02;
}

.photos-hero p {
    max-width: 700px;
    font-size: 19px;
    color: rgba(255,255,255,.82);
}

.photos-section {
    padding: 90px 0 110px;
}

.photos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.photo-card {
    background: white;
    border: 1px solid rgba(32,63,56,.15);
    overflow: hidden;
}

.photo-card-image {
    display: block;
}

.photo-card-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.photo-card-placeholder {
    height: 300px;
    display: grid;
    place-items: center;
    background: #ebe4d4;
    color: #203f38;
    font-family: Georgia, serif;
    font-size: 28px;
}

.photo-card-content {
    padding: 25px;
}

.photo-card h2 {
    margin: 0 0 12px;
    font-family: Georgia, serif;
    font-size: 27px;
    line-height: 1.15;
    color: #203f38;
}

.photo-card h2 a {
    text-decoration: none;
}

.photo-card-link {
    font-weight: 700;
    color: #203f38;
}

.photos-empty {
    grid-column: 1 / -1;
    padding: 60px;
    text-align: center;
    background: #ebe4d4;
}

.photos-contribute {
    padding: 80px 0;
    text-align: center;
    background: #ebe4d4;
}

.photos-contribute h2 {
    margin-top: 0;
    font-family: Georgia, serif;
    font-size: 40px;
    color: #203f38;
}

@media (max-width: 900px) {
    .photos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.single-photo-page {
    background: #f4f0e6;
}

.single-photo-header {
    padding: 70px 0 45px;
    background: #203f38;
    color: white;
}

.single-photo-header h1 {
    margin: 10px 0 0;
    max-width: 900px;
    font-family: Georgia, serif;
    font-size: clamp(42px, 6vw, 68px);
    line-height: 1.05;
    font-weight: 400;
}

.single-photo-content {
    padding: 70px 0 100px;
}

.single-photo-grid {
    display: grid;
    grid-template-columns: 1.4fr .6fr;
    gap: 60px;
    align-items: start;
}

.single-photo-visual {
    background: white;
    padding: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,.10);
}

.single-photo-image {
    display: block;
    width: 100%;
    height: auto;
}

.single-photo-info {
    font-size: 17px;
}

.single-photo-info strong {
    color: #203f38;
}

.photo-source,
.photo-credit {
    padding-top: 15px;
    border-top: 1px solid rgba(32,63,56,.15);
}

.photo-help {
    padding: 70px 0;
    text-align: center;
    background: #ebe4d4;
}

.photo-help h2 {
    margin-top: 0;
    font-family: Georgia, serif;
    font-size: 38px;
    color: #203f38;
}

@media (max-width: 800px) {
    .single-photo-grid {
        grid-template-columns: 1fr;
    }
}

.home-page {
    background: #f4f0e6;
}

.home-hero {
    min-height: 720px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        linear-gradient(
            90deg,
            rgba(21,43,38,.96) 0%,
            rgba(21,43,38,.80) 45%,
            rgba(21,43,38,.30) 100%
        ),
        radial-gradient(
            circle at 78% 48%,
            #907756 0%,
            #31564d 40%,
            #203f38 75%
        );
    color: white;
}

.home-hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
}

.home-hero h1 {
    margin: 14px 0 26px;
    font-family: Georgia, serif;
    font-size: clamp(58px, 9vw, 100px);
    line-height: .96;
    font-weight: 400;
}

.home-hero-intro {
    max-width: 680px;
    font-size: 21px;
    color: rgba(255,255,255,.86);
}

.home-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.home-search {
    padding: 30px 0;
    background: white;
    border-bottom: 1px solid rgba(32,63,56,.14);
}

.home-search-inner {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 40px;
    align-items: center;
}

.home-search-inner span {
    display: block;
    color: #b89761;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.home-search-inner strong {
    display: block;
    margin-top: 4px;
    color: #203f38;
    font-family: Georgia, serif;
    font-size: 24px;
    font-weight: 400;
}

.home-search form {
    display: flex;
}

.home-search input {
    flex: 1;
    min-width: 0;
    padding: 17px 19px;
    border: 1px solid rgba(32,63,56,.18);
    font-size: 16px;
}

.home-search button {
    border: 0;
    padding: 0 26px;
    background: #203f38;
    color: white;
    font-weight: 700;
}

.home-section {
    padding: 100px 0;
}

.home-explore-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 18px;
}

.home-explore-card {
    min-height: 235px;
    padding: 32px;
    background: white;
    border: 1px solid rgba(32,63,56,.14);
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease;
}

.home-explore-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 34px rgba(0,0,0,.08);
}

.home-explore-card > span {
    color: #b89761;
    font-family: Georgia, serif;
}

.home-explore-card h3 {
    margin: 27px 0 10px;
    font-family: Georgia, serif;
    font-size: 27px;
    color: #203f38;
}

.home-section-action {
    margin-top: 45px;
    text-align: center;
}

.button-outline-dark {
    border: 1px solid #203f38;
    color: #203f38;
}

.home-memory {
    padding: 105px 0;
    background: #ebe4d4;
}

.home-memory-grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 75px;
    align-items: center;
}

.home-memory-copy h2,
.home-book-copy h2,
.home-contribute h2 {
    font-family: Georgia, serif;
    font-weight: 400;
}

.home-memory-copy h2 {
    margin: 12px 0 25px;
    font-size: clamp(40px,5vw,60px);
    line-height: 1.06;
    color: #203f38;
}

.home-memory-copy p {
    font-size: 18px;
}

.home-memory-panel {
    min-height: 370px;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #203f38;
    color: white;
}

.home-memory-panel span {
    color: #d6bd90;
    text-transform: uppercase;
    letter-spacing: .15em;
    font-size: 11px;
}

.home-memory-panel strong {
    margin: 20px 0;
    font-family: Georgia, serif;
    font-size: 39px;
    line-height: 1.08;
    font-weight: 400;
}

.home-memory-panel a {
    color: #d6bd90;
    font-weight: 700;
}

.home-book {
    padding: 105px 0;
    background: white;
}

.home-book-grid {
    display: grid;
    grid-template-columns: 1fr .65fr;
    gap: 80px;
    align-items: center;
}

.home-book-copy h2 {
    margin: 12px 0 25px;
    font-size: clamp(40px,5vw,60px);
    line-height: 1.06;
    color: #203f38;
}

.home-book-copy p {
    max-width: 650px;
    font-size: 18px;
}

.home-book-price {
    display: inline-block;
    margin: 10px 0 15px;
    padding: 9px 19px;
    background: #b89761;
    color: #17251f;
    font-family: Georgia, serif;
    font-size: 36px;
}

.home-book-cover {
    padding: 18px;
    background: #f4f0e6;
    box-shadow: 0 20px 50px rgba(0,0,0,.16);
}

.home-book-cover-image {
    width: 100%;
    height: auto;
    display: block;
}

.home-contribute {
    padding: 105px 0;
    background: #203f38;
    color: white;
    text-align: center;
}

.home-contribute-inner {
    max-width: 840px;
}

.home-contribute h2 {
    margin: 15px 0 25px;
    font-size: clamp(42px,5vw,64px);
    line-height: 1.05;
}

.home-contribute p {
    font-size: 19px;
    color: rgba(255,255,255,.82);
}

@media (max-width: 900px) {

    .home-search-inner,
    .home-memory-grid,
    .home-book-grid {
        grid-template-columns: 1fr;
    }

    .home-explore-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .home-book-cover {
        max-width: 430px;
        margin: 0 auto;
    }
}

@media (max-width: 620px) {

    .home-hero {
        min-height: 620px;
    }

    .home-search form {
        flex-direction: column;
    }

    .home-search button {
        padding: 16px;
    }

    .home-explore-grid {
        grid-template-columns: 1fr;
    }
}
