@font-face {
    font-family: "PT Sans Local";
    src: url("/fonts/ptsans/ptsans-regular-webfont.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "PT Sans Local";
    src: url("/fonts/ptsans/ptsans-bold-webfont.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --sand: #f6f1e7;
    --sand-deep: #e7ddce;
    --sea: #1d596a;
    --sea-soft: #5f8f98;
    --sea-dark: #123843;
    --sun: #c88448;
    --text: #21363c;
    --muted: #65797e;
    --line: rgba(18, 56, 67, 0.14);
    --max: 1320px;
    --copy: 820px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background:
        linear-gradient(180deg, rgba(29, 89, 106, 0.05), transparent 180px),
        linear-gradient(180deg, #fbf8f2 0%, var(--sand) 50%, #f2ebdf 100%);
    font: 400 18px/1.75 "PT Sans Local", Georgia, serif;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    width: 100%;
    height: auto;
}

.site-shell {
    min-height: 100vh;
}

.masthead,
.hero,
.quote-strip,
.choice-zone,
.article-flow__inner,
.content-band__inner,
.site-footer {
    width: min(calc(100% - 40px), var(--max));
    margin-inline: auto;
}

.masthead {
    padding: 26px 0 10px;
}

.masthead__bar,
.masthead__navwrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.masthead__navwrap {
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid var(--line);
}

.brandmark {
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
}

.brandmark__eyebrow,
.hero__eyebrow,
.choice-zone__eyebrow,
.site-footer__label,
.quote-card__meta {
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 12px;
    color: var(--sun);
}

.brandmark__name {
    font: 700 30px/1.02 Georgia, "Times New Roman", serif;
    color: var(--sea-dark);
}

.menu-toggle {
    display: none;
    border: 1px solid var(--sea-dark);
    background: transparent;
    color: var(--sea-dark);
    padding: 10px 14px;
    font: inherit;
}

.site-nav,
.lang-switch,
.site-footer__links,
.site-footer__langs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 18px;
}

.site-nav__link,
.lang-switch__link,
.site-footer__links a,
.site-footer__langs a,
.action-link {
    position: relative;
}

.site-nav__link::after,
.lang-switch__link::after,
.site-footer__links a::after,
.site-footer__langs a::after,
.action-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 180ms ease;
}

.site-nav__link:hover::after,
.site-nav__link.is-active::after,
.lang-switch__link:hover::after,
.lang-switch__link.is-active::after,
.site-footer__links a:hover::after,
.site-footer__langs a:hover::after,
.site-footer__langs .is-active::after,
.action-link:hover::after {
    transform: scaleX(1);
}

.hero {
    padding: 52px 0 32px;
}

.hero__copy {
    max-width: var(--copy);
}

.hero__title {
    margin: 10px 0 16px;
    font: 700 clamp(46px, 7vw, 92px)/0.93 Georgia, "Times New Roman", serif;
    max-width: 11ch;
    color: var(--sea-dark);
}

.hero__lede {
    margin: 0 0 18px;
    color: var(--sea);
    font-size: 22px;
    max-width: 40ch;
}

.hero__excerpt,
.article-flow__inner,
.content-band__copy {
    max-width: var(--copy);
}

.photo-band {
    margin: 0 0 46px;
}

.photo-band__figure {
    width: min(100%, calc(var(--max) + 80px));
    margin: 0 auto;
    overflow: hidden;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.photo-band__figure img {
    aspect-ratio: 16 / 6;
    object-fit: cover;
}

.article-flow {
    margin-bottom: 48px;
}

.quote-strip {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    margin-bottom: 48px;
}

.quote-card {
    padding: 0 0 0 18px;
    border-left: 2px solid rgba(200, 132, 72, 0.45);
}

.quote-card h2 {
    margin: 6px 0 8px;
    font: 700 clamp(24px, 3vw, 34px)/1.05 Georgia, serif;
    color: var(--sea-dark);
}

.choice-zone {
    margin-bottom: 56px;
}

.choice-zone__header {
    margin-bottom: 18px;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.choice-card {
    background: rgba(255, 255, 255, 0.42);
    border-top: 1px solid var(--line);
}

.choice-card__media {
    overflow: hidden;
}

.choice-card__media img {
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.choice-card__body {
    padding: 16px 0 0;
}

.choice-card__body h2,
.content-band__copy h2 {
    margin: 0 0 10px;
    font: 700 clamp(28px, 4vw, 42px)/1.02 Georgia, serif;
    color: var(--sea-dark);
}

.content-band {
    margin: 52px 0;
}

.content-band__inner {
    width: min(calc(100% - 40px), var(--max));
}

.content-band__media {
    margin-bottom: 20px;
}

.content-band__media img {
    aspect-ratio: 16 / 7;
    object-fit: cover;
}

.prose {
    color: var(--text);
}

.prose p,
.prose ul,
.prose ol {
    margin: 0 0 1em;
}

.prose ul,
.prose ol {
    padding-left: 1.2em;
}

.prose h1,
.prose h2,
.prose h3 {
    color: var(--sea-dark);
    font-family: Georgia, "Times New Roman", serif;
    line-height: 1.08;
}

.prose h3 {
    margin: 1.4em 0 0.55em;
    font-size: clamp(26px, 3vw, 34px);
}

.prose a,
.action-link {
    color: var(--sea);
}

.site-footer {
    display: grid;
    grid-template-columns: 0.7fr 1.4fr 0.6fr;
    gap: 20px;
    align-items: start;
    padding: 28px 0 42px;
    border-top: 1px solid var(--line);
    margin-top: 56px;
}

@media (max-width: 980px) {
    .card-grid,
    .quote-strip,
    .site-footer {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    body {
        font-size: 17px;
    }

    .masthead,
    .hero,
    .quote-strip,
    .choice-zone,
    .article-flow__inner,
    .content-band__inner,
    .site-footer {
        width: min(calc(100% - 24px), var(--max));
    }

    .menu-toggle {
        display: inline-flex;
    }

    .masthead__navwrap {
        display: none;
        flex-direction: column;
        align-items: flex-start;
    }

    .masthead__navwrap.is-open {
        display: flex;
    }

    .site-nav,
    .lang-switch {
        flex-direction: column;
        gap: 10px;
    }

    .hero {
        padding-top: 28px;
    }

    .hero__title {
        font-size: clamp(38px, 12vw, 64px);
    }

    .hero__lede {
        font-size: 19px;
    }
}
