:root {
    --ink: #18201d;
    --paper: #f8f7f2;
    --white: #ffffff;
    --forest: #173b32;
    --tomato: #c44c36;
    --mustard: #d6a62e;
    --blue: #315f73;
    --line: #cfd4cf;
    --muted: #66706b;
    --content: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 17px;
    line-height: 1.7;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
}

.skip-link {
    position: fixed;
    top: 8px;
    left: 8px;
    z-index: 100;
    padding: 9px 13px;
    background: var(--white);
    color: var(--ink);
    transform: translateY(-160%);
}

.skip-link:focus {
    transform: translateY(0);
}

.site-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(calc(100% - 48px), var(--content));
    min-height: 86px;
    margin: 0 auto;
    color: var(--white);
    border-bottom: 1px solid rgba(255, 255, 255, .48);
}

.wordmark {
    display: inline-flex;
    align-items: baseline;
    gap: 7px;
    text-decoration: none;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 25px;
}

.wordmark strong {
    font-size: 34px;
    font-weight: 700;
}

.site-header nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.site-header nav a {
    padding: 9px 0;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.site-header nav a:hover,
.site-header nav a:focus-visible {
    border-bottom: 2px solid var(--mustard);
}

.hero {
    position: relative;
    min-height: min(760px, 82vh);
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    color: var(--white);
    background: var(--forest);
}

.hero > img,
.hero-shade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero > img {
    object-fit: cover;
    object-position: center 44%;
}

.hero-shade {
    background: rgba(5, 16, 16, .46);
}

.hero-copy {
    position: relative;
    z-index: 1;
    width: min(calc(100% - 48px), var(--content));
    margin: 0 auto;
    padding: 120px 0 70px;
}

.hero-label,
.issue,
.section-number {
    margin: 0 0 14px;
    color: var(--tomato);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.hero-label {
    color: #f4cc62;
}

.hero h1 {
    max-width: 900px;
    margin: 0;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 132px;
    font-weight: 400;
    line-height: .88;
}

.hero-copy > p:last-child {
    max-width: 670px;
    margin: 28px 0 0;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 29px;
    line-height: 1.38;
}

.hero-jump {
    position: absolute;
    right: max(24px, calc((100% - var(--content)) / 2));
    bottom: 72px;
    z-index: 2;
    text-decoration: none;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.hero-jump span {
    margin-left: 8px;
    color: #f4cc62;
    font-size: 18px;
}

.story {
    overflow: hidden;
}

.story-header {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(290px, .8fr);
    gap: 70px;
    width: min(calc(100% - 48px), var(--content));
    margin: 0 auto;
    padding: 92px 0 68px;
    border-bottom: 1px solid var(--line);
}

.story-header h2,
.feature-copy h3,
.band-heading h3,
.itinerary h3,
.bakery-copy h3,
.pack-list h3,
.story-ending h3 {
    margin: 0;
    font-family: Georgia, 'Times New Roman', serif;
    font-weight: 400;
    line-height: 1.08;
}

.story-header h2 {
    max-width: 760px;
    font-size: 72px;
}

.story-meta {
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.dek {
    align-self: end;
    margin: 0;
    color: var(--blue);
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 24px;
    line-height: 1.45;
}

.story-grid {
    display: grid;
    grid-template-columns: minmax(0, 740px) minmax(220px, 1fr);
    gap: 80px;
    width: min(calc(100% - 48px), var(--content));
    margin: 0 auto;
}

.intro-grid {
    padding: 70px 0 104px;
}

.story-copy p {
    margin: 0 0 24px;
}

.lead {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 25px;
    line-height: 1.62;
}

.margin-note {
    align-self: start;
    margin-top: 10px;
    padding-top: 18px;
    border-top: 5px solid var(--mustard);
}

.margin-note span {
    color: var(--tomato);
    font-size: 13px;
    font-weight: 800;
}

.margin-note p {
    margin: 12px 0 0;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 21px;
    line-height: 1.45;
}

.feature-split {
    display: grid;
    grid-template-columns: minmax(320px, 48%) minmax(0, 1fr);
    min-height: 790px;
    background: var(--forest);
    color: var(--white);
}

.portrait-figure {
    position: relative;
    min-height: 790px;
    margin: 0;
}

.portrait-figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.portrait-figure figcaption {
    position: absolute;
    left: 26px;
    bottom: 24px;
    max-width: 370px;
    padding: 10px 13px;
    background: rgba(10, 20, 18, .84);
    font-size: 12px;
    line-height: 1.45;
}

.feature-copy {
    align-self: center;
    max-width: 640px;
    padding: 75px clamp(30px, 7vw, 110px);
}

.feature-copy .section-number,
.field-notes-band .section-number {
    color: #f4cc62;
}

.feature-copy h3,
.band-heading h3,
.itinerary h3,
.bakery-copy h3,
.pack-list h3,
.story-ending h3 {
    font-size: 52px;
}

.feature-copy > p:not(.section-number) {
    color: #e3ebe6;
}

.route-rule {
    margin-top: 40px;
    padding: 24px 0 0;
    border-top: 1px solid rgba(255, 255, 255, .3);
}

.route-rule strong {
    color: #f4cc62;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 20px;
}

.route-rule ol {
    margin: 16px 0 0;
    padding-left: 23px;
}

.route-rule li {
    margin-bottom: 8px;
}

.field-notes-band {
    padding: 100px max(24px, calc((100% - var(--content)) / 2));
    background: var(--blue);
    color: var(--white);
}

.band-heading {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 45px;
    align-items: end;
    margin-bottom: 56px;
}

.band-heading .section-number {
    align-self: start;
}

.notes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(255, 255, 255, .35);
}

.notes-grid section {
    padding: 30px 34px 8px 0;
}

.notes-grid section + section {
    padding-left: 34px;
    border-left: 1px solid rgba(255, 255, 255, .35);
}

.notes-grid span {
    color: #f4cc62;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.notes-grid h4 {
    margin: 10px 0 15px;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 27px;
    font-weight: 400;
}

.notes-grid p {
    margin: 0;
    color: #e6eef1;
}

.wide-figure {
    position: relative;
    margin: 0;
    background: var(--ink);
}

.wide-figure img {
    width: 100%;
    max-height: 760px;
    object-fit: cover;
}

.wide-figure figcaption {
    position: absolute;
    right: max(24px, calc((100% - var(--content)) / 2));
    bottom: 22px;
    max-width: 440px;
    padding: 10px 13px;
    background: rgba(14, 18, 17, .82);
    color: var(--white);
    font-size: 12px;
    line-height: 1.45;
}

.itinerary {
    padding: 105px 0;
}

.itinerary h3 {
    margin-bottom: 34px;
}

.itinerary blockquote {
    align-self: center;
    margin: 0;
    padding: 28px 0 28px 32px;
    color: var(--tomato);
    border-left: 6px solid var(--mustard);
}

.itinerary blockquote p {
    margin: 0;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 30px;
    line-height: 1.35;
}

.bakery-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--white);
}

.bakery-copy {
    align-self: center;
    max-width: 700px;
    margin-left: auto;
    padding: 90px clamp(34px, 6vw, 100px);
}

.bakery-copy h3 {
    margin-bottom: 32px;
}

.bakery-panel > img {
    width: 100%;
    height: 100%;
    min-height: 650px;
    object-fit: cover;
}

.pack-list {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 90px;
    width: min(calc(100% - 48px), var(--content));
    margin: 0 auto;
    padding: 110px 0;
}

.pack-list ul {
    margin: 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid var(--line);
}

.pack-list li {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 22px;
    padding: 20px 0;
    border-bottom: 1px solid var(--line);
}

.pack-list li strong {
    color: var(--forest);
}

.pack-list li span {
    color: var(--muted);
}

.story-ending {
    padding: 110px max(24px, calc((100% - 850px) / 2));
    background: var(--tomato);
    color: var(--white);
    text-align: center;
}

.story-ending .issue {
    color: #ffe4a3;
}

.story-ending h3 {
    margin-bottom: 26px;
}

.story-ending p:not(.issue) {
    max-width: 720px;
    margin: 0 auto 30px;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 22px;
    line-height: 1.55;
}

.story-ending a {
    display: inline-block;
    padding: 10px 0;
    text-decoration: none;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    border-bottom: 2px solid #ffe4a3;
}

.site-footer {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 24px;
    align-items: center;
    padding: 46px max(24px, calc((100% - var(--content)) / 2));
    background: var(--ink);
    color: var(--white);
}

.footer-mark {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    color: var(--mustard);
    font-family: Georgia, 'Times New Roman', serif;
    font-weight: 700;
    border: 1px solid #68736e;
}

.site-footer p {
    margin: 0;
    line-height: 1.45;
}

.footer-note {
    color: #aeb8b3;
    font-size: 13px;
}

.footer-note a {
    margin-left: 8px;
    color: var(--white);
    text-underline-offset: 3px;
}

.interior-page {
    background: var(--paper);
}

.interior-header {
    position: relative;
    color: var(--forest);
    border-bottom-color: var(--line);
}

.policy-page {
    width: min(calc(100% - 48px), 820px);
    margin: 0 auto;
    padding: 88px 0 110px;
}

.policy-page .issue {
    margin-bottom: 18px;
}

.policy-page h1 {
    margin: 0 0 28px;
    color: var(--forest);
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 64px;
    font-weight: 400;
    line-height: 1.05;
}

.policy-page .policy-lead {
    margin: 0 0 52px;
    color: var(--blue);
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 23px;
    line-height: 1.5;
}

.policy-page section {
    padding: 30px 0;
    border-top: 1px solid var(--line);
}

.policy-page h2 {
    margin: 0 0 12px;
    color: var(--forest);
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 28px;
    font-weight: 400;
}

.policy-page p {
    margin: 0 0 16px;
}

.policy-page section p:last-child {
    margin-bottom: 0;
}

.policy-page a {
    color: var(--blue);
    text-underline-offset: 3px;
}

@media (max-width: 900px) {
    .hero h1 {
        font-size: 96px;
    }

    .story-header h2 {
        font-size: 60px;
    }

    .feature-copy h3,
    .band-heading h3,
    .itinerary h3,
    .bakery-copy h3,
    .pack-list h3,
    .story-ending h3 {
        font-size: 46px;
    }

    .story-header,
    .story-grid,
    .pack-list {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .story-header {
        padding-top: 72px;
    }

    .dek {
        max-width: 680px;
    }

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

    .feature-copy {
        padding: 60px 34px;
    }

    .band-heading {
        grid-template-columns: 1fr;
        gap: 12px;
    }

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

    .notes-grid section,
    .notes-grid section + section {
        padding: 25px 0;
        border-left: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .35);
    }

    .bakery-panel {
        grid-template-columns: 1fr;
    }

    .bakery-copy {
        max-width: none;
        margin: 0;
    }

    .bakery-panel > img {
        min-height: 440px;
    }
}

@media (max-width: 680px) {
    body {
        font-size: 16px;
    }

    .site-header {
        align-items: flex-start;
        width: calc(100% - 32px);
        min-height: 78px;
        padding-top: 16px;
    }

    .wordmark {
        display: block;
        font-size: 16px;
        line-height: 1;
    }

    .wordmark strong {
        display: block;
        margin-top: 2px;
        font-size: 28px;
    }

    .site-header nav {
        gap: 14px;
        padding-top: 9px;
    }

    .site-header nav a {
        font-size: 10px;
    }

    .site-header nav a:nth-child(2) {
        display: none;
    }

    .interior-header {
        align-items: center;
    }

    .policy-page {
        width: calc(100% - 32px);
        padding: 64px 0 82px;
    }

    .policy-page h1 {
        font-size: 48px;
    }

    .hero {
        min-height: 640px;
    }

    .hero-copy {
        width: calc(100% - 32px);
        padding-bottom: 100px;
    }

    .hero h1 {
        font-size: 66px;
    }

    .hero-copy > p:last-child {
        max-width: 90%;
        font-size: 20px;
    }

    .hero-jump {
        right: auto;
        left: 16px;
        bottom: 42px;
    }

    .story-header,
    .story-grid,
    .pack-list {
        width: calc(100% - 32px);
    }

    .story-header {
        padding: 62px 0 50px;
    }

    .story-header h2 {
        font-size: 47px;
    }

    .dek,
    .lead {
        font-size: 21px;
    }

    .intro-grid {
        padding: 50px 0 76px;
    }

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

    .portrait-figure {
        min-height: 560px;
    }

    .feature-copy,
    .bakery-copy {
        padding: 62px 24px 70px;
    }

    .feature-copy h3,
    .band-heading h3,
    .itinerary h3,
    .bakery-copy h3,
    .pack-list h3,
    .story-ending h3 {
        font-size: 39px;
    }

    .field-notes-band {
        padding-top: 72px;
        padding-bottom: 72px;
    }

    .wide-figure img {
        min-height: 480px;
    }

    .wide-figure figcaption {
        right: 16px;
        left: 16px;
        bottom: 16px;
    }

    .itinerary {
        padding: 76px 0;
    }

    .itinerary blockquote {
        padding-left: 22px;
    }

    .itinerary blockquote p {
        font-size: 25px;
    }

    .bakery-panel > img {
        min-height: 360px;
    }

    .pack-list {
        padding: 78px 0;
    }

    .pack-list li {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .story-ending {
        padding-top: 78px;
        padding-bottom: 78px;
    }

    .site-footer {
        grid-template-columns: auto 1fr;
    }

    .footer-note {
        grid-column: 1 / -1;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}
