:root {
    --green-900: #173c2d;
    --green-800: #285943;
    --green-700: #367557;
    --green-100: #e5eee8;
    --tea: #8eae82;
    --gray: #68706c;
    --elephant: #66716f;
    --paper: #f4f2ed;
    --ink: #1e2924;
    --white: #fff;
    --serif: 'Playfair Display', Georgia, serif;
    --sans: 'DM Sans', Arial, sans-serif;
    --ease: cubic-bezier(.22, .61, .36, 1)
}

* {
    box-sizing: border-box;
    margin: 0
}

html {
    scroll-behavior: smooth
}

body {
    background: var(--paper);
    color: var(--ink);
    font-family: var(--sans);
    line-height: 1.6;
    overflow-x: hidden
}

body.menu-open {
    overflow: hidden
}

a {
    color: inherit;
    text-decoration: none
}

img {
    display: block;
    max-width: 100%
}

button,
input,
select {
    font: inherit
}

.section-shell {
    max-width: 1280px;
    margin: auto;
    padding: 8rem 5vw
}

.section-kicker,
.eyebrow {
    color: var(--green-700);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase
}

.section-kicker::before,
.eyebrow::before {
    background: var(--tea);
    content: '';
    display: inline-block;
    height: 1px;
    margin: 0 .7rem .2rem 0;
    width: 2.2rem
}

h2 {
    font: 500 clamp(2.5rem, 5vw, 5.2rem)/1.02 var(--serif);
    letter-spacing: -.045em
}

h2 em,
h3 em,
.hero h1 em {
    color: var(--tea);
    font-style: italic
}

.site-header {
    align-items: center;
    background: rgba(244, 242, 237, .96);
    display: flex;
    justify-content: space-between;
    padding: 1.15rem 5vw;
    position: relative;
    z-index: 20
}

.brand {
    align-items: center;
    display: inline-flex;
    gap: .75rem
}

.brand img {
    height: 47px;
    width: 52px
}

.brand span {
    display: grid;
    line-height: 1
}

.brand strong {
    color: var(--green-900);
    font: 600 1.2rem var(--serif)
}

.brand small {
    color: var(--elephant);
    font-size: .55rem;
    letter-spacing: .19em;
    margin-top: .3rem;
    text-transform: uppercase
}

.site-nav {
    align-items: center;
    display: flex;
    gap: clamp(1rem, 3vw, 3rem)
}

.site-nav a {
    color: var(--gray);
    font-size: .78rem;
    font-weight: 600;
    transition: color .25s ease
}

.site-nav a:hover {
    color: var(--green-800)
}

.nav-cta {
    background: var(--green-800);
    color: var(--white) !important;
    padding: .8rem 1.1rem
}

.menu-toggle {
    background: none;
    border: 0;
    cursor: pointer;
    display: none;
    padding: .5rem
}

.menu-toggle span {
    background: var(--green-900);
    display: block;
    height: 2px;
    margin: 5px 0;
    transition: transform .3s ease;
    width: 24px
}

.hero {
    align-items: flex-end;
    color: var(--white);
    display: flex;
    min-height: min(820px, calc(100vh - 80px));
    overflow: hidden;
    padding: 10rem 8vw 5.5rem;
    position: relative
}

.hero-video,
.hero-shade {
    height: 100%;
    inset: 0;
    object-fit: cover;
    position: absolute;
    width: 100%
}

.hero-video {
    animation: scaleHero 12s var(--ease) both
}

.hero-shade {
    background: linear-gradient(90deg, rgba(14, 37, 27, .78), rgba(15, 36, 28, .18) 75%), linear-gradient(0deg, rgba(14, 37, 27, .7), transparent 50%)
}

.hero-content {
    max-width: 750px;
    position: relative;
    z-index: 1
}

.hero .eyebrow {
    color: #d3e3d0;
    margin-bottom: 1.4rem
}

.hero h1 {
    font: 500 clamp(3.5rem, 8vw, 8rem)/.95 var(--serif);
    letter-spacing: -.065em;
    margin-bottom: 1.7rem
}

.hero-copy {
    color: rgba(255, 255, 255, .85);
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    max-width: 550px
}

.hero-actions {
    align-items: center;
    display: flex;
    gap: 2rem;
    margin-top: 2.4rem
}

.button {
    align-items: center;
    border: 0;
    cursor: pointer;
    display: inline-flex;
    font-weight: 700;
    gap: 1.5rem;
    justify-content: center;
    padding: 1rem 1.35rem;
    transition: transform .3s var(--ease), background .3s ease
}

.button:hover {
    transform: translateY(-4px)
}

.button-primary {
    background: var(--tea);
    color: var(--green-900)
}

.button-dark {
    background: var(--green-800);
    color: var(--white);
    width: 100%
}

.text-link {
    border-bottom: 1px solid rgba(255, 255, 255, .6);
    color: var(--white);
    font-size: .83rem;
    padding-bottom: .35rem
}

.text-link span {
    margin-left: .6rem
}

.hero-foot {
    bottom: 1.8rem;
    color: rgba(255, 255, 255, .72);
    display: flex;
    font-size: .68rem;
    justify-content: space-between;
    left: 8vw;
    letter-spacing: .14em;
    position: absolute;
    right: 8vw;
    text-transform: uppercase;
    z-index: 1
}

.hero-foot b {
    color: var(--tea);
    font-size: 1rem;
    margin-left: .4rem
}

.intro {
    padding-bottom: 0
}

.intro-grid,
.section-heading {
    align-items: end;
    display: grid;
    gap: 4rem;
    grid-template-columns: 1.2fr .8fr
}

.intro-grid p,
.section-heading>p {
    color: var(--gray);
    font-size: 1.05rem;
    max-width: 430px
}

.arrow-link {
    border-bottom: 1px solid var(--green-800);
    color: var(--green-800);
    display: inline-block;
    font-size: .83rem;
    font-weight: 700;
    margin-top: 1.8rem;
    padding-bottom: .5rem
}

.arrow-link span {
    margin-left: 1rem
}

.marquee {
    color: var(--green-800);
    font: 600 clamp(3.4rem, 9vw, 9rem)/1 var(--serif);
    margin: 8rem -5vw 0;
    overflow: hidden;
    white-space: nowrap
}

.marquee div {
    animation: marquee 24s linear infinite
}

.marquee i {
    color: var(--tea);
    font-style: normal
}

.journeys {
    background: var(--green-900);
    color: var(--white);
    max-width: none
}

.journeys>*,
.services>*,
.destinations>* {
    max-width: 1180px;
    margin-left: auto;
    margin-right: auto
}

.journeys .section-kicker,
.services .section-kicker {
    color: var(--tea)
}

.section-heading {
    margin-bottom: 3.5rem
}

.section-heading>p {
    color: rgba(255, 255, 255, .63)
}

.journey-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(3, 1fr)
}

.journey-card {
    aspect-ratio: 1/1.1;
    overflow: hidden;
    position: relative
}

.journey-card.journey-large {
    grid-row: span 2;
    aspect-ratio: auto
}

.journey-card img {
    height: 100%;
    object-fit: cover;
    transition: transform .8s var(--ease);
    width: 100%
}

.journey-card::after {
    background: linear-gradient(0deg, rgba(10, 30, 22, .86), transparent 63%);
    content: '';
    inset: 0;
    position: absolute
}

.journey-card:hover img {
    transform: scale(1.08)
}

.card-overlay {
    bottom: 1.7rem;
    left: 1.7rem;
    position: absolute;
    right: 1.7rem;
    z-index: 1
}

.card-overlay>span {
    color: var(--tea);
    font-size: .65rem;
    letter-spacing: .15em
}

.card-overlay h3 {
    font: 500 clamp(1.4rem, 2.5vw, 2.5rem)/1 var(--serif);
    margin: .6rem 0 1rem
}

.card-overlay a {
    color: var(--white);
    font-size: .75rem;
    text-transform: uppercase
}

.card-overlay a b {
    color: var(--tea);
    margin-left: .75rem
}

.services {
    background: var(--paper)
}

.services .section-heading>p,
.destinations .section-heading>p {
    color: var(--gray)
}

.service-list {
    border-top: 1px solid #ccd2cc
}

.service {
    align-items: center;
    border-bottom: 1px solid #ccd2cc;
    display: grid;
    gap: 2rem;
    grid-template-columns: 5rem 1fr 2rem;
    padding: 1.7rem 0;
    transition: padding .35s var(--ease), color .35s ease
}

.service:hover {
    color: var(--green-800);
    padding-left: 1rem;
    padding-right: 1rem
}

.service>span {
    color: var(--tea);
    font-size: .75rem
}

.service h3 {
    font: 500 clamp(1.3rem, 2vw, 2rem) var(--serif)
}

.service p {
    color: var(--gray);
    font-size: .88rem;
    margin-top: .35rem
}

.service>b {
    color: var(--tea);
    font-size: 1.35rem
}

.destinations {
    background: var(--green-100);
    max-width: none
}

.destination-strip {
    display: grid;
    gap: .8rem;
    grid-template-columns: repeat(4, 1fr)
}

.destination {
    aspect-ratio: .72;
    overflow: hidden;
    position: relative
}

.destination::after {
    background: linear-gradient(0deg, rgba(16, 44, 32, .85), transparent 65%);
    content: '';
    inset: 0;
    position: absolute
}

.destination img {
    height: 100%;
    object-fit: cover;
    transition: transform .8s var(--ease);
    width: 100%
}

.destination:hover img {
    transform: scale(1.1)
}

.destination span {
    bottom: 1.2rem;
    color: var(--white);
    left: 1.2rem;
    position: absolute;
    z-index: 1
}

.destination small,
.destination em {
    display: block;
    font-size: .65rem;
    letter-spacing: .15em;
    text-transform: uppercase
}

.destination small {
    color: var(--tea)
}

.destination strong {
    display: block;
    font: 500 1.7rem var(--serif);
    margin: .35rem 0
}

.destination em {
    color: rgba(255, 255, 255, .75);
    font-style: normal
}

.contact {
    background: var(--paper)
}

.contact-card {
    background: #dfe9df;
    display: grid;
    gap: 5rem;
    grid-template-columns: 1fr 1fr;
    padding: clamp(2rem, 7vw, 6rem)
}

.contact-card p {
    color: var(--gray);
    margin: 1.5rem 0;
    max-width: 380px
}

.contact-detail {
    color: var(--green-800);
    font-size: .85rem;
    font-weight: 700
}

.contact-form {
    align-self: center;
    display: grid;
    gap: .5rem
}

.contact-form label {
    color: var(--gray);
    font-size: .75rem;
    margin-top: .7rem
}

.contact-form input,
.contact-form select {
    background: transparent;
    border: 0;
    border-bottom: 1px solid #aebcaf;
    border-radius: 0;
    color: var(--ink);
    outline: 0;
    padding: .6rem 0
}

.contact-form input:focus,
.contact-form select:focus {
    border-bottom-color: var(--green-800)
}

.contact-form button {
    margin-top: 1.5rem
}

.form-status {
    color: var(--green-800);
    font-size: .8rem;
    margin: .2rem 0 0 !important;
    min-height: 1.3rem
}

.site-footer {
    background: var(--green-900);
    color: var(--white);
    padding: 4rem 5vw 1.5rem
}

.footer-top,
.footer-bottom {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin: auto;
    max-width: 1180px
}

.footer-top {
    padding-bottom: 4rem
}

.footer-top p {
    color: rgba(255, 255, 255, .55);
    font-size: .85rem
}

.footer-links {
    display: flex;
    gap: 1.5rem
}

.footer-links a {
    color: rgba(255, 255, 255, .72);
    font-size: .8rem
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .15);
    color: rgba(255, 255, 255, .45);
    font-size: .68rem;
    padding-top: 1.3rem
}

.footer-bottom a {
    color: var(--tea)
}

+.reveal {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity .8s var(--ease), transform .8s var(--ease)
}

.reveal.visible {
    opacity: 1;
    transform: none
}

@keyframes scaleHero {
    from {
        transform: scale(1.08)
    }

    to {
        transform: scale(1)
    }
}

@keyframes marquee {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-35%)
    }
}

+@media (max-width:800px) {
    .menu-toggle {
        display: block;
        position: relative;
        z-index: 22
    }

    .site-nav {
        align-items: flex-start;
        background: var(--paper);
        flex-direction: column;
        gap: 1.8rem;
        inset: 0;
        justify-content: center;
        padding: 7rem 10vw 3rem;
        position: fixed;
        transform: translateX(100%);
        transition: transform .4s var(--ease)
    }

    .site-nav.open {
        transform: translateX(0)
    }

    .site-nav a {
        font: 500 2rem var(--serif)
    }

    .site-nav .nav-cta {
        font: 600 .9rem var(--sans);
        margin-top: 1rem
    }

    .hero {
        min-height: 720px;
        padding: 8rem 7vw 6rem
    }

    .hero-foot {
        left: 7vw;
        right: 7vw
    }

    .hero-foot span:first-child {
        display: none
    }

    .intro-grid,
    .section-heading,
    .contact-card {
        gap: 2rem;
        grid-template-columns: 1fr
    }

    .section-shell {
        padding: 5rem 7vw
    }

    .marquee {
        margin-top: 5rem
    }

    .journey-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .journey-card.journey-large {
        grid-column: span 2;
        grid-row: span 1;
        aspect-ratio: 1/1.1
    }

    .destination-strip {
        grid-template-columns: repeat(2, 1fr)
    }

    .destination {
        aspect-ratio: .85
    }

    .footer-top,
    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 1.5rem
    }

    .footer-bottom {
        align-items: center;
        flex-direction: row;
        flex-wrap: wrap
    }
}

+@media (max-width:480px) {
    .brand strong {
        font-size: 1rem
    }

    .brand img {
        height: 40px;
        width: 44px
    }

    .hero {
        min-height: 680px
    }

    .hero h1 {
        font-size: 3.4rem
    }

    .hero-actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 1.3rem
    }

    .hero-foot {
        font-size: .55rem
    }

    .journey-grid,
    .destination-strip {
        grid-template-columns: 1fr
    }

    .journey-card.journey-large {
        grid-column: auto
    }

    .destination {
        aspect-ratio: 1.25
    }

    .service {
        gap: 1rem;
        grid-template-columns: 2.5rem 1fr 1rem
    }

    .service p {
        font-size: .78rem
    }

    .footer-links {
        flex-wrap: wrap
    }
}

+@media (prefers-reduced-motion:reduce) {

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important
    }

    .reveal {
        opacity: 1;
        transform: none
    }
}