:root {
    color-scheme: light;
    --ink: #17211f;
    --muted: #5f6864;
    --line: #d9ddd4;
    --paper: #f7f5ef;
    --white: #ffffff;
    --leaf: #1f6f5b;
    --spice: #b8492c;
    --water: #225d73;
}

* {
    box-sizing: border-box;
}

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

a {
    color: inherit;
}

img {
    max-width: 100%;
}

.site-header {
    align-items: center;
    background: #17211f;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    display: flex;
    gap: 24px;
    justify-content: space-between;
    min-height: 82px;
    padding: 14px clamp(18px, 4vw, 56px);
    position: sticky;
    top: 0;
    z-index: 10;
}

.brand {
    align-items: center;
    display: flex;
    flex: 0 0 auto;
    text-decoration: none;
}

.brand img {
    display: block;
    height: auto;
    width: clamp(150px, 15vw, 178px);
}

.site-nav {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-end;
}

.site-nav a {
    border-radius: 6px;
    color: #e8ecdf;
    font-size: 14px;
    padding: 8px 10px;
    text-decoration: none;
}

.site-nav a[aria-current="page"],
.site-nav a:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
}

.nav-toggle {
    align-items: center;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 6px;
    color: var(--white);
    cursor: pointer;
    display: none;
    flex: 0 0 auto;
    height: 44px;
    justify-content: center;
    padding: 10px;
    position: relative;
    width: 44px;
}

.nav-toggle span {
    background: currentColor;
    display: block;
    height: 2px;
    position: absolute;
    transition: transform 160ms ease, opacity 160ms ease;
    width: 22px;
}

.nav-toggle span:first-child {
    transform: translateY(-7px);
}

.nav-toggle span:last-child {
    transform: translateY(7px);
}

.nav-toggle[aria-expanded="true"] span:first-child {
    transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:last-child {
    transform: rotate(-45deg);
}

.hero,
.sub-hero {
    display: grid;
    min-height: 460px;
    overflow: hidden;
    position: relative;
}

.hero img,
.sub-hero img {
    filter: brightness(0.7);
    height: 100%;
    inset: 0;
    object-fit: cover;
    position: absolute;
    width: 100%;
}

.hero-copy,
.sub-hero div,
.listing-head {
    align-self: end;
    color: var(--white);
    max-width: 900px;
    padding: clamp(56px, 9vw, 112px) clamp(20px, 6vw, 86px);
    position: relative;
}

.hero-copy p,
.sub-hero p,
.listing-head p {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0;
    margin: 0 0 8px;
    text-transform: uppercase;
}

.hero-copy h1,
.sub-hero h1,
.listing-head h1 {
    font-size: clamp(42px, 8vw, 92px);
    line-height: 0.95;
    margin: 0 0 18px;
}

.hero-copy span,
.sub-hero span {
    display: block;
    font-size: clamp(18px, 2vw, 24px);
    max-width: 680px;
}

.content-shell {
    margin: 0 auto;
    max-width: 1080px;
    padding: clamp(32px, 6vw, 76px) 20px;
}

.article-body {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: clamp(24px, 5vw, 56px);
}

.article-body h2,
.article-body h3 {
    color: var(--water);
    line-height: 1.2;
}

.article-body img {
    border-radius: 8px;
    height: auto;
    margin: 10px 18px 18px 0;
}

.article-body .alignleft {
    float: left;
}

.article-body .alignright {
    float: right;
}

.article-body::after {
    clear: both;
    content: "";
    display: table;
}

.article-body--sights {
    padding-bottom: 20px;
    padding-top: 20px;
}

.sight-row {
    align-items: start;
    border-top: 1px solid var(--line);
    display: grid;
    column-gap: clamp(22px, 4vw, 44px);
    grid-template-columns: minmax(220px, 34%) minmax(0, 1fr);
    padding: clamp(26px, 4vw, 42px) 0;
    row-gap: 16px;
}

.sight-row:first-child {
    border-top: 0;
}

.sight-media {
    display: grid;
    gap: 14px;
}

.article-body .sight-media img {
    aspect-ratio: 492 / 335;
    border-radius: 6px;
    display: block;
    height: auto;
    margin: 0;
    object-fit: cover;
    width: 100%;
}

.sight-title {
    color: var(--water);
    font-size: 24px;
    grid-column: 1 / -1;
    line-height: 1.25;
    margin: 0;
}

.sight-copy p {
    margin: 0 0 14px;
}

.sight-copy p:last-child {
    margin-bottom: 0;
}

.gallery-grid {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.gallery-grid a {
    display: block;
    cursor: zoom-in;
}

.gallery-grid img {
    aspect-ratio: 4 / 3;
    border-radius: 6px;
    height: 100%;
    margin: 0;
    object-fit: cover;
    width: 100%;
}

.page-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    margin: 0 auto;
    max-width: 1180px;
    padding: 0 20px clamp(44px, 6vw, 80px);
}

.page-card {
    align-content: start;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    display: grid;
    gap: 12px;
    min-height: 220px;
    overflow: hidden;
    padding: 18px;
    text-decoration: none;
}

.page-card:hover {
    border-color: var(--leaf);
}

.page-card img {
    aspect-ratio: 16 / 9;
    border-radius: 6px;
    object-fit: cover;
    width: 100%;
}

.page-card strong {
    color: var(--water);
    font-size: 20px;
    line-height: 1.2;
}

.page-card span {
    color: var(--muted);
    font-size: 14px;
}

.listing-head {
    background: var(--water);
    max-width: none;
}

.button {
    background: var(--white);
    border-radius: 6px;
    color: var(--water);
    display: inline-block;
    font-weight: 700;
    padding: 10px 14px;
    text-decoration: none;
}

.site-footer {
    background: #17211f;
    color: #dce4dd;
    padding: 40px clamp(18px, 4vw, 56px) 22px;
}

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

.footer-grid img {
    display: block;
    height: auto;
    width: 186px;
}

.footer-grid p {
    font-size: 14px;
    margin: 12px 0 0;
}

.footer-grid strong {
    color: var(--white);
    display: block;
    font-size: 16px;
    margin: 0 0 10px;
}

.footer-grid ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-grid li {
    margin: 4px 0;
}

.footer-grid a {
    color: #ced7cd;
    font-size: 14px;
    text-decoration: none;
}

.footer-grid a:hover,
.footer-grid a:focus-visible {
    color: var(--white);
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    color: #9daaa0;
    font-size: 12px;
    margin-top: 32px;
    padding-top: 16px;
}

.lightbox {
    background: #101615;
    border: 0;
    border-radius: 6px;
    color: var(--white);
    height: min(94vh, 900px);
    max-height: 94vh;
    max-width: 96vw;
    overflow: hidden;
    padding: 0;
    width: min(96vw, 1240px);
}

.lightbox::backdrop {
    background: rgba(10, 16, 15, 0.88);
}

.lightbox[open] {
    display: grid;
    place-items: center;
}

.lightbox figure {
    display: grid;
    height: 100%;
    margin: 0;
    padding: 50px 58px 42px;
    place-items: center;
    width: 100%;
}

.lightbox img {
    display: block;
    max-height: calc(94vh - 112px);
    max-width: 100%;
    object-fit: contain;
}

.lightbox figcaption {
    bottom: 12px;
    color: #dce4dd;
    font-size: 14px;
    left: 60px;
    position: absolute;
    right: 60px;
    text-align: center;
}

.lightbox-close,
.lightbox-previous,
.lightbox-next {
    align-items: center;
    background: rgba(16, 22, 21, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 6px;
    color: var(--white);
    cursor: pointer;
    display: flex;
    height: 44px;
    justify-content: center;
    padding: 0;
    position: absolute;
    width: 44px;
    z-index: 1;
}

.lightbox-close {
    font-size: 32px;
    line-height: 1;
    right: 12px;
    top: 12px;
}

.lightbox-previous,
.lightbox-next {
    font-size: 38px;
    line-height: 1;
    top: calc(50% - 22px);
}

.lightbox-previous {
    left: 10px;
}

.lightbox-next {
    right: 10px;
}

.lightbox-close:hover,
.lightbox-previous:hover,
.lightbox-next:hover,
.lightbox-close:focus-visible,
.lightbox-previous:focus-visible,
.lightbox-next:focus-visible {
    background: var(--leaf);
    border-color: var(--white);
}

html.lightbox-open {
    overflow: hidden;
}

@media (max-width: 720px) {
    .site-header {
        align-items: center;
        flex-wrap: wrap;
        min-height: 72px;
        padding-bottom: 10px;
        padding-top: 10px;
    }

    .site-nav {
        flex-basis: 100%;
        justify-content: flex-start;
        width: 100%;
    }

    .js .nav-toggle {
        display: flex;
    }

    .js .site-nav {
        background: #17211f;
        border-bottom: 1px solid rgba(255, 255, 255, 0.14);
        box-shadow: 0 10px 18px rgba(23, 33, 31, 0.35);
        display: none;
        gap: 2px;
        left: 0;
        right: 0;
        padding: 8px 18px 14px;
        position: absolute;
        top: 100%;
        z-index: 30;
    }

    .js .site-nav.is-open {
        display: grid;
    }

    .js .site-nav a {
        color: #ffffff;
        padding: 10px 12px;
    }

    .js .site-nav a[aria-current="page"],
    .js .site-nav a:hover {
        background: rgba(255, 255, 255, 0.08);
        color: #ffffff;
    }

    .brand img {
        width: 160px;
    }

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

    .hero,
    .sub-hero {
        min-height: 420px;
    }

    .article-body .alignleft,
    .article-body .alignright {
        float: none;
        margin-right: 0;
    }

    .lightbox figure {
        padding: 54px 48px 44px;
    }

    .lightbox-previous {
        left: 4px;
    }

    .lightbox-next {
        right: 4px;
    }

    .sight-row {
        column-gap: 0;
        grid-template-columns: 1fr;
        row-gap: 16px;
    }

    .sight-title {
        font-size: 22px;
    }
}
