:root {
    --green: #123d35;
    --green-dark: #092720;
    --green-soft: #eaf1ee;
    --gold: #c59a58;
    --gold-light: #e1c08a;
    --cream: #f7f3eb;
    --white: #ffffff;
    --text: #24332f;
    --muted: #6d7c77;
    --border: #e3e7e4;
    --shadow: 0 18px 50px rgba(13, 44, 36, 0.12);
    --container: 1200px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background: var(--white);
    font-family: "DM Sans", sans-serif;
    line-height: 1.65;
}

body.menu-open {
    overflow: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
}

button,
input,
select {
    font: inherit;
}

.container {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
}

.topbar {
    color: rgba(255, 255, 255, 0.8);
    background: var(--green-dark);
    font-size: 12px;
}

.topbar-inner {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.topbar-contact {
    display: flex;
    gap: 25px;
}

.topbar-links a {
    color: var(--gold-light);
    text-decoration: none;
}

.site-header {
    position: relative;
    z-index: 100;
}

.navbar {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 8px 30px rgba(5, 38, 30, 0.08);
}

.navbar-inner {
    min-height: 84px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: var(--green);
    text-decoration: none;
}

.brand-mark {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border: 1px solid var(--gold);
    border-radius: 50%;
    color: var(--gold);
    font-family: "Playfair Display", serif;
    font-size: 25px;
    font-weight: 700;
}

.brand-content {
    display: grid;
    line-height: 1;
}

.brand-content strong {
    font-family: "Playfair Display", serif;
    font-size: 22px;
    letter-spacing: 2px;
}

.brand-content small {
    margin-top: 6px;
    color: var(--gold);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 5px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-menu > a {
    position: relative;
    color: #3e504a;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}

.nav-menu > a:not(.nav-book-button)::after {
    position: absolute;
    right: 0;
    bottom: -9px;
    left: 0;
    width: 0;
    height: 2px;
    margin: auto;
    background: var(--gold);
    content: "";
    transition: width 0.25s ease;
}

.nav-menu > a:hover::after,
.nav-menu > a.active::after {
    width: 100%;
}

/*
 * Experiences navigation dropdown
 */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    position: relative;
    padding: 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 0;
    background: transparent;
    color: #3e504a;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
}

.nav-dropdown-toggle::after {
    position: absolute;
    right: 0;
    bottom: -9px;
    left: 0;
    width: 0;
    height: 2px;
    margin: auto;
    background: var(--gold);
    content: "";
    transition: width .25s ease;
}

.nav-dropdown:hover
.nav-dropdown-toggle::after,
.nav-dropdown.open
.nav-dropdown-toggle::after,
.nav-dropdown.active
.nav-dropdown-toggle::after {
    width: 100%;
}

.nav-dropdown-arrow {
    display: inline-block;
    color: var(--gold);
    font-size: 10px;
    transition: transform .25s ease;
}

.nav-dropdown:hover
.nav-dropdown-arrow,
.nav-dropdown.open
.nav-dropdown-arrow {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 24px);
    left: 50%;
    width: 285px;
    padding: 10px;
    visibility: hidden;
    opacity: 0;
    border-top: 3px solid var(--gold);
    background: #fff;
    box-shadow: 0 20px 55px rgba(9, 39, 32, .17);
    transform:
        translateX(-50%)
        translateY(10px);
    transition:
        visibility .25s ease,
        opacity .25s ease,
        transform .25s ease;
}

.nav-dropdown-menu::before {
    position: absolute;
    right: 0;
    bottom: 100%;
    left: 0;
    height: 24px;
    content: "";
}

.nav-dropdown:hover
.nav-dropdown-menu,
.nav-dropdown.open
.nav-dropdown-menu {
    visibility: visible;
    opacity: 1;
    transform:
        translateX(-50%)
        translateY(0);
}

.nav-dropdown-menu > a {
    padding: 12px 11px;
    display: flex;
    align-items: center;
    gap: 11px;
    color: #42564f;
    text-decoration: none;
    transition:
        background .2s ease,
        color .2s ease;
}

.nav-dropdown-menu > a:hover,
.nav-dropdown-menu > a.active {
    background: var(--green-soft);
    color: var(--green);
}

.dropdown-link-icon {
    width: 31px;
    height: 31px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #f3f6f4;
    color: var(--gold);
}

.nav-dropdown-menu strong,
.nav-dropdown-menu small {
    display: block;
}

.nav-dropdown-menu strong {
    font-size: 11px;
}

.nav-dropdown-menu small {
    margin-top: 2px;
    color: #82908b;
    font-size: 8px;
    font-weight: 500;
}

.nav-book-button {
    padding: 13px 20px;
    color: var(--white) !important;
    background: var(--green);
}


.nav-dropdown.section-active
.nav-dropdown-toggle::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 9px;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: var(--green);
}

.hero {
    position: relative;
    background: var(--green-dark);
}

.hero-slider {
    position: relative;
    min-height: 680px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    min-height: 680px;
    display: flex;
    align-items: center;
    visibility: hidden;
    opacity: 0;
    background-position: center;
    background-size: cover;
    transition:
        opacity 0.7s ease,
        visibility 0.7s ease;
}

.hero-slide.active {
    visibility: visible;
    opacity: 1;
}

.hero-fallback {
    position: relative;
    visibility: visible;
    opacity: 1;
    background:
        linear-gradient(
            115deg,
            rgba(7, 38, 30, 0.98),
            rgba(18, 61, 53, 0.78)
        );
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 70px;
    padding-bottom: 120px;
    color: var(--white);
}

.eyebrow,
.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--gold);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.2px;
    text-transform: uppercase;
}

.eyebrow::before,
.section-eyebrow::before {
    width: 34px;
    height: 1px;
    background: currentColor;
    content: "";
}

.hero-content h1 {
    max-width: 780px;
    margin: 22px 0;
    font-family: "Playfair Display", serif;
    font-size: clamp(44px, 6vw, 78px);
    font-weight: 600;
    line-height: 1.08;
}

.hero-content p {
    max-width: 630px;
    margin: 0 0 34px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 17px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
}

.button {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 25px;
    border: 1px solid transparent;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-decoration: none;
    text-transform: uppercase;
    transition: 0.25s ease;
}

.button-gold {
    color: var(--green-dark);
    background: var(--gold);
}

.button-gold:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

.button-outline {
    border-color: rgba(255, 255, 255, 0.55);
    color: var(--white);
}

.button-outline:hover {
    color: var(--green-dark);
    background: var(--white);
}

.slider-arrow {
    position: absolute;
    z-index: 5;
    top: 50%;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    color: var(--white);
    background: rgba(7, 30, 25, 0.3);
    font-size: 30px;
    cursor: pointer;
    transform: translateY(-50%);
}

.slider-prev {
    left: 25px;
}

.slider-next {
    right: 25px;
}

.slider-dots {
    position: absolute;
    z-index: 5;
    right: 0;
    bottom: 42px;
    left: 0;
    display: flex;
    justify-content: center;
    gap: 9px;
}

.slider-dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 1px solid white;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
}

.slider-dot.active {
    background: var(--gold);
    border-color: var(--gold);
}

.booking-bar {
    position: relative;
    z-index: 10;
    margin-top: -42px;
}

.booking-form {
    display: grid;
    grid-template-columns: 1.25fr repeat(3, 1fr) 1.15fr;
    min-height: 110px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.booking-heading,
.booking-field {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px 26px;
    border-right: 1px solid var(--border);
}

.booking-heading {
    color: var(--white);
    background: var(--green);
}

.booking-heading span,
.booking-field > span {
    margin-bottom: 7px;
    color: var(--gold);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.booking-heading strong {
    font-family: "Playfair Display", serif;
    font-size: 20px;
}

.booking-field input,
.booking-field select {
    width: 100%;
    padding: 0;
    border: 0;
    outline: 0;
    color: var(--text);
    background: transparent;
    font-size: 13px;
    font-weight: 600;
}

.booking-submit {
    border: 0;
    color: var(--green-dark);
    background: var(--gold);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
}

.section {
    padding: 115px 0;
}

.section-small {
    padding: 80px 0;
}

.welcome-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
    gap: 85px;
    align-items: center;
}

.welcome-image-wrap {
    position: relative;
    min-height: 560px;
}

.welcome-image {
    width: calc(100% - 55px);
    height: 560px;
    object-fit: cover;
}

.welcome-placeholder {
    width: calc(100% - 55px);
    height: 560px;
    display: grid;
    place-content: center;
    color: var(--white);
    background:
        linear-gradient(135deg, var(--green), var(--green-dark));
    text-align: center;
}

.welcome-placeholder span {
    color: var(--gold);
    font-size: 56px;
    font-family: "Playfair Display", serif;
}

.experience-card {
    position: absolute;
    right: 0;
    bottom: 42px;
    width: 190px;
    padding: 27px;
    color: var(--white);
    background: var(--green);
    box-shadow: var(--shadow);
}

.experience-card strong,
.experience-card span {
    display: block;
}

.experience-card strong {
    color: var(--gold);
    font-family: "Playfair Display", serif;
    font-size: 28px;
}

.welcome-content h2,
.section-heading h2,
.video-content h2,
.cta-inner h2 {
    margin: 18px 0 24px;
    color: var(--green-dark);
    font-family: "Playfair Display", serif;
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 600;
    line-height: 1.2;
}

.welcome-description {
    color: var(--muted);
    font-size: 15px;
}

.welcome-features {
    display: grid;
    gap: 14px;
    margin: 35px 0;
}

.welcome-features div {
    display: flex;
    align-items: center;
    gap: 15px;
}

.welcome-features span {
    color: var(--gold);
    font-family: "Playfair Display", serif;
}

.welcome-features strong {
    font-size: 14px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    color: var(--green);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: uppercase;
}

.video-section {
    padding-top: 30px;
    background: var(--cream);
}

.video-card {
    position: relative;
    min-height: 540px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--green-dark);
}

.video-card > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(5, 30, 24, 0.9),
            rgba(5, 30, 24, 0.28)
        );
}

.video-content {
    position: relative;
    z-index: 2;
    max-width: 580px;
    padding: 70px;
    color: var(--white);
}

.section-eyebrow.light {
    color: var(--gold-light);
}

.video-content h2,
.cta-inner h2 {
    color: var(--white);
}

.video-content p {
    color: rgba(255, 255, 255, 0.76);
}

.play-button {
    position: absolute;
    z-index: 3;
    top: 50%;
    right: 14%;
    width: 90px;
    height: 90px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 50%;
    color: var(--green-dark);
    background: var(--white);
    text-decoration: none;
    transform: translateY(-50%);
}

.play-button::before {
    position: absolute;
    inset: -12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    content: "";
}

.section-heading.centered {
    text-align: center;
}

.section-heading.centered .section-eyebrow {
    justify-content: center;
}

.section-heading.compact h2 {
    margin-bottom: 42px;
    font-size: 38px;
}

.client-logos {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    border-top: 1px solid var(--border);
    border-left: 1px solid var(--border);
}

.client-logo {
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--white);
}

.client-logo img {
    max-width: 140px;
    max-height: 65px;
    object-fit: contain;
    filter: grayscale(1);
    opacity: 0.68;
    transition: 0.25s ease;
}

.client-logo:hover img {
    filter: grayscale(0);
    opacity: 1;
}

.cta-section {
    padding: 75px 0;
    color: var(--white);
    background: var(--green);
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.cta-inner h2 {
    max-width: 760px;
    margin-bottom: 0;
    font-size: 40px;
}

.site-footer {
    color: rgba(255, 255, 255, 0.7);
    background: var(--green-dark);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.45fr repeat(3, 1fr);
    gap: 65px;
    padding-top: 80px;
    padding-bottom: 70px;
}

.footer-logo {
    color: var(--white);
}

.footer-brand p {
    max-width: 340px;
    margin-top: 25px;
    font-size: 13px;
}

.site-footer h3 {
    margin: 0 0 22px;
    color: var(--white);
    font-family: "Playfair Display", serif;
    font-size: 18px;
}

.footer-links,
.footer-contact {
    display: grid;
    gap: 11px;
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 13px;
}

.footer-links a {
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-inner {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    font-size: 11px;
}

@media (max-width: 1050px) {
    .nav-menu {
        gap: 17px;
    }

    .booking-form {
        grid-template-columns: repeat(2, 1fr);
    }

    .booking-submit {
        min-height: 75px;
    }

    .welcome-grid {
        gap: 50px;
    }

    .client-logos {
        grid-template-columns: repeat(4, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 820px) {
    .topbar {
        display: none;
    }

    .navbar-inner {
        min-height: 72px;
    }

    .menu-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 72px;
        right: 0;
        bottom: 0;
        width: min(340px, 88%);
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 25px;
        background: var(--white);
        box-shadow: -20px 20px 40px rgba(0, 0, 0, 0.12);
        transform: translateX(110%);
        transition: transform 0.3s ease;
    }

    .nav-menu.open {
        transform: translateX(0);
    }

    .nav-menu > a {
        padding: 14px 4px;
        border-bottom: 1px solid var(--border);
    }

    .nav-menu > a::after {
        display: none;
    }

    .nav-book-button {
        margin-top: 18px;
        padding: 15px !important;
        text-align: center;
    }

    .hero-slider,
    .hero-slide {
        min-height: 620px;
    }

    .slider-arrow {
        display: none;
    }

    .booking-bar {
        margin-top: 0;
    }

    .booking-form {
        grid-template-columns: 1fr 1fr;
    }

    .welcome-grid {
        grid-template-columns: 1fr;
    }

    .welcome-image-wrap {
        min-height: 470px;
    }

    .welcome-image,
    .welcome-placeholder {
        height: 470px;
    }

    .video-content {
        padding: 45px;
    }

    .play-button {
        right: 8%;
    }

    .client-logos {
        grid-template-columns: repeat(3, 1fr);
    }

    .cta-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .nav-dropdown {
    width: 100%;
}

.nav-dropdown-toggle {
    width: 100%;
    padding: 14px 18px;
    justify-content: space-between;
    font-size: 14px;
    text-align: left;
}

.nav-dropdown-toggle::after {
    display: none;
}

.nav-dropdown-menu {
    position: static;
    width: 100%;
    max-height: 0;
    padding: 0 12px;
    visibility: visible;
    opacity: 1;
    overflow: hidden;
    border-top: 0;
    box-shadow: none;
    background: #f7f9f8;
    transform: none;
    transition:
        max-height .3s ease,
        padding .3s ease;
}

.nav-dropdown-menu::before {
    display: none;
}

.nav-dropdown:hover
.nav-dropdown-menu {
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    transform: none;
}

.nav-dropdown.open
.nav-dropdown-menu {
    max-height: 260px;
    padding-top: 8px;
    padding-bottom: 8px;
    transform: none;
}

.nav-dropdown-menu > a {
    padding: 10px 8px;
}
}

@media (max-width: 600px) {
    .container {
        width: min(calc(100% - 28px), var(--container));
    }

    .brand-mark {
        width: 40px;
        height: 40px;
    }

    .brand-content strong {
        font-size: 18px;
    }

    .hero-slider,
    .hero-slide {
        min-height: 570px;
    }

    .hero-content {
        padding-top: 70px;
        padding-bottom: 80px;
    }

    .hero-content h1 {
        font-size: 42px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .button {
        width: 100%;
    }

    .slider-dots {
        bottom: 25px;
    }

    .booking-form {
        grid-template-columns: 1fr;
    }

    .booking-heading,
    .booking-field {
        min-height: 85px;
        border-right: 0;
        border-bottom: 1px solid var(--border);
    }

    .section {
        padding: 75px 0;
    }

    .welcome-image-wrap {
        min-height: 390px;
    }

    .welcome-image,
    .welcome-placeholder {
        width: calc(100% - 25px);
        height: 390px;
    }

    .experience-card {
        width: 165px;
        padding: 20px;
    }

    .welcome-content h2 {
        font-size: 36px;
    }

    .video-card {
        min-height: 580px;
        align-items: flex-start;
    }

    .video-content {
        padding: 42px 25px;
    }

    .play-button {
        top: auto;
        right: auto;
        bottom: 55px;
        left: 50%;
        width: 74px;
        height: 74px;
        transform: translateX(-50%);
    }

    .client-logos {
        grid-template-columns: repeat(2, 1fr);
    }

    .client-logo {
        min-height: 100px;
        padding: 18px;
    }

    .cta-inner h2 {
        font-size: 34px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .footer-bottom-inner {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        padding: 22px 0;
    }

    .footer-bottom-inner p {
        margin: 0;
    }
}
