/* =========================================================
   KAMBRESHWAR VALLEY
   PREMIUM CINEMATIC WEBSITE
========================================================= */


/* =========================================================
   ROOT
========================================================= */

:root {

    --ink: #172326;
    --ink-soft: #253438;

    --teal: #2e7472;
    --teal-dark: #1d5554;

    --mist: #eef0ea;
    --stone: #d8d1c3;
    --terracotta: #a9654a;
    --brass: #b89a62;

    --ivory: #faf9f5;
    --white: #ffffff;

    --text: #263436;
    --text-soft: #697476;

    --border: rgba(23, 35, 38, 0.12);
    --border-light: rgba(255, 255, 255, 0.18);

    --shadow-soft: 0 20px 60px rgba(23, 35, 38, 0.08);
    --shadow-large: 0 35px 90px rgba(23, 35, 38, 0.16);

    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-soft: cubic-bezier(0.16, 1, 0.3, 1);

    --container: 1380px;

}


/* =========================================================
   RESET
========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    margin: 0;
    padding: 0;

    background: var(--ivory);
    color: var(--text);

    font-family: "Manrope", sans-serif;

    font-size: 15px;
    line-height: 1.7;

    overflow-x: hidden;

    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}


body.menu-open {
    overflow: hidden;
}


img {
    display: block;
    width: 100%;
    max-width: 100%;
}


a {
    color: inherit;
    text-decoration: none;
}


button,
input,
textarea,
select {
    font: inherit;
}


button {
    border: 0;
    cursor: pointer;
}


p,
h1,
h2,
h3,
h4 {
    margin-top: 0;
}


::selection {
    background: var(--teal);
    color: var(--white);
}


/* =========================================================
   CONTAINER
========================================================= */

.container {
    width: min(100% - 80px, var(--container));
    margin: 0 auto;
}


/* =========================================================
   PAGE LOADER
========================================================= */

.page-loader {
    position: fixed;
    inset: 0;
    z-index: 9999;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--ink);

    transition:
        opacity 1s var(--ease),
        visibility 1s var(--ease);
}


body.loaded .page-loader {
    opacity: 0;
    visibility: hidden;
}


.loader-inner {
    text-align: center;
}


.loader-symbol {
    display: flex;
    justify-content: center;
    gap: 7px;

    margin-bottom: 22px;
}


.loader-symbol span {
    display: block;

    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: var(--brass);

    animation: loaderPulse 1.3s infinite var(--ease);
}


.loader-symbol span:nth-child(2) {
    animation-delay: .12s;
}


.loader-symbol span:nth-child(3) {
    animation-delay: .24s;
}


.loader-brand {
    color: var(--white);

    font-family: "Cormorant Garamond", serif;
    font-size: 25px;
    letter-spacing: .04em;
}


.loader-line {
    width: 80px;
    height: 1px;

    margin: 18px auto 0;

    background: rgba(255, 255, 255, .25);

    overflow: hidden;
}


.loader-line::after {
    content: "";

    display: block;

    width: 100%;
    height: 100%;

    background: var(--brass);

    transform: translateX(-100%);

    animation: loaderLine 1.6s var(--ease) forwards;
}


@keyframes loaderPulse {

    0%,
    100% {
        transform: translateY(0);
        opacity: .4;
    }

    50% {
        transform: translateY(-6px);
        opacity: 1;
    }

}


@keyframes loaderLine {

    to {
        transform: translateX(0);
    }

}


/* =========================================================
   SCROLL PROGRESS
========================================================= */

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10001;

    width: 100%;
    height: 2px;

    pointer-events: none;
}


.scroll-progress span {
    display: block;

    width: 0;
    height: 100%;

    background: var(--brass);

    transform-origin: left center;
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
    position: fixed;
    top: 0;
    left: 0;

    z-index: 500;

    width: 100%;

    color: var(--white);

    transition:
        background .7s var(--ease),
        box-shadow .7s var(--ease),
        backdrop-filter .7s var(--ease),
        transform .7s var(--ease);
}


.site-header.scrolled {
    background: rgba(23, 35, 38, .88);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    box-shadow: 0 10px 35px rgba(0, 0, 0, .08);
}


.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;

    width: min(100% - 70px, 1480px);

    min-height: 94px;

    margin: 0 auto;

    transition: min-height .6s var(--ease);
}


.site-header.scrolled .header-inner {
    min-height: 76px;
}


/* =========================================================
   BRAND
========================================================= */

.brand {
    display: inline-flex;
    align-items: center;
    gap: 13px;

    flex-shrink: 0;
}


.brand-symbol {
    position: relative;

    display: flex;
    align-items: flex-end;
    gap: 3px;

    width: 27px;
    height: 27px;
}


.brand-symbol span {
    display: block;

    width: 7px;

    background: var(--brass);

    transform: skewX(-17deg);
}


.brand-symbol span:nth-child(1) {
    height: 13px;
}


.brand-symbol span:nth-child(2) {
    height: 21px;
}


.brand-symbol span:nth-child(3) {
    height: 17px;
}


.brand-copy {
    display: flex;
    flex-direction: column;

    line-height: 1;
}


.brand-copy strong {
    color: var(--white);

    font-family: "Cormorant Garamond", serif;
    font-size: 25px;
    font-weight: 600;

    letter-spacing: .02em;
}


.brand-copy small {
    margin-top: 5px;

    color: rgba(255, 255, 255, .58);

    font-size: 8px;
    font-weight: 600;

    letter-spacing: .25em;
    text-transform: uppercase;
}


/* =========================================================
   DESKTOP NAV
========================================================= */

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 30px;

    margin-left: auto;
    margin-right: 40px;
}


.desktop-nav a {
    position: relative;

    color: rgba(255, 255, 255, .78);

    font-size: 11px;
    font-weight: 600;

    letter-spacing: .08em;
    text-transform: uppercase;

    transition: color .4s var(--ease);
}


.desktop-nav a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -8px;

    width: 100%;
    height: 1px;

    background: var(--brass);

    transform: scaleX(0);
    transform-origin: right;

    transition: transform .5s var(--ease);
}


.desktop-nav a:hover {
    color: var(--white);
}


.desktop-nav a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}


/* =========================================================
   HEADER CTA
========================================================= */

.header-cta {
    display: inline-flex;
    align-items: center;
    gap: 13px;

    padding: 12px 17px;

    border: 1px solid rgba(255, 255, 255, .3);

    color: var(--white);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: .12em;
    text-transform: uppercase;

    transition:
        background .45s var(--ease),
        border-color .45s var(--ease),
        transform .45s var(--ease);
}


.header-cta i {
    font-size: 10px;

    transition: transform .45s var(--ease);
}


.header-cta:hover {
    background: var(--brass);
    border-color: var(--brass);

    transform: translateY(-2px);
}


.header-cta:hover i {
    transform: translateX(4px);
}


/* =========================================================
   MOBILE TOGGLE
========================================================= */

.mobile-toggle {
    display: none;

    width: 42px;
    height: 42px;

    background: transparent;

    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 6px;
}


.mobile-toggle span {
    display: block;

    height: 1px;

    background: var(--white);

    transition:
        width .4s var(--ease),
        transform .4s var(--ease);
}


.mobile-toggle span:nth-child(1) {
    width: 24px;
}


.mobile-toggle span:nth-child(2) {
    width: 17px;
}


.mobile-toggle span:nth-child(3) {
    width: 21px;
}


/* =========================================================
   MOBILE MENU
========================================================= */

.mobile-menu {
    position: fixed;
    inset: 0;

    z-index: 490;

    visibility: hidden;

    pointer-events: none;
}


.mobile-menu-bg {
    position: absolute;
    inset: 0;

    background: rgba(23, 35, 38, .97);

    transform: translateY(-100%);

    transition: transform .8s var(--ease);
}


.mobile-menu-inner {
    position: relative;
    z-index: 2;

    display: flex;
    flex-direction: column;

    height: 100%;

    padding: 120px 35px 30px;

    opacity: 0;

    transform: translateY(25px);

    transition:
        opacity .5s var(--ease) .15s,
        transform .7s var(--ease) .15s;
}


.mobile-menu.open {
    visibility: visible;
    pointer-events: auto;
}


.mobile-menu.open .mobile-menu-bg {
    transform: translateY(0);
}


.mobile-menu.open .mobile-menu-inner {
    opacity: 1;
    transform: translateY(0);
}


.mobile-menu-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    color: rgba(255, 255, 255, .5);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: .16em;
    text-transform: uppercase;
}


.mobile-menu-top button {
    width: 42px;
    height: 42px;

    border: 1px solid rgba(255, 255, 255, .18);

    color: var(--white);
    background: transparent;

    transition:
        background .4s var(--ease),
        transform .4s var(--ease);
}


.mobile-menu-top button:hover {
    background: var(--brass);
    transform: rotate(90deg);
}


.mobile-nav {
    display: flex;
    flex-direction: column;

    margin-top: 55px;
}


.mobile-nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 17px 0;

    border-bottom: 1px solid rgba(255, 255, 255, .12);

    color: var(--white);

    font-family: "Cormorant Garamond", serif;
    font-size: 34px;

    transform: translateX(-20px);
    opacity: 0;

    transition:
        opacity .6s var(--ease),
        transform .6s var(--ease),
        color .3s var(--ease);
}


.mobile-menu.open .mobile-nav a {
    opacity: 1;
    transform: translateX(0);
}


.mobile-menu.open .mobile-nav a:nth-child(1) {
    transition-delay: .18s;
}


.mobile-menu.open .mobile-nav a:nth-child(2) {
    transition-delay: .22s;
}


.mobile-menu.open .mobile-nav a:nth-child(3) {
    transition-delay: .26s;
}


.mobile-menu.open .mobile-nav a:nth-child(4) {
    transition-delay: .30s;
}


.mobile-menu.open .mobile-nav a:nth-child(5) {
    transition-delay: .34s;
}


.mobile-menu.open .mobile-nav a:nth-child(6) {
    transition-delay: .38s;
}


.mobile-menu.open .mobile-nav a:nth-child(7) {
    transition-delay: .42s;
}


.mobile-menu.open .mobile-nav a:nth-child(8) {
    transition-delay: .46s;
}


.mobile-nav a i {
    font-family: "Manrope", sans-serif;

    font-size: 13px;

    color: var(--brass);

    transition: transform .4s var(--ease);
}


.mobile-nav a:hover {
    color: var(--brass);
}


.mobile-nav a:hover i {
    transform: translateX(8px);
}


.mobile-menu-footer {
    display: flex;
    justify-content: space-between;
    gap: 20px;

    margin-top: auto;

    color: rgba(255, 255, 255, .42);

    font-size: 10px;

    letter-spacing: .08em;
    text-transform: uppercase;
}


/* =========================================================
   HERO
========================================================= */

.hero-section {
    position: relative;

    min-height: 100svh;

    display: flex;
    align-items: flex-end;

    overflow: hidden;

    background: var(--ink);
}


.hero-background {
    position: absolute;
    inset: 0;

    overflow: hidden;
}


.hero-image {
    width: 100%;
    height: 112%;

    object-fit: cover;

    transform: scale(1.06);

    animation: heroImageReveal 2.2s var(--ease) forwards;

    will-change: transform;
}


@keyframes heroImageReveal {

    from {
        transform: scale(1.14);
    }

    to {
        transform: scale(1.06);
    }

}


.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to bottom,
            rgba(9, 18, 20, .5) 0%,
            rgba(9, 18, 20, .08) 38%,
            rgba(9, 18, 20, .2) 58%,
            rgba(9, 18, 20, .82) 100%
        );
}


.hero-grain {
    position: absolute;
    inset: 0;

    opacity: .09;

    background-image:
        url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='.5'/%3E%3C/svg%3E");

    pointer-events: none;
}


.hero-content {
    position: relative;
    z-index: 3;

    width: min(100% - 80px, var(--container));

    margin: 0 auto;

    padding: 150px 0 100px;

    color: var(--white);
}


.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 23px;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: .22em;
    text-transform: uppercase;
}


.hero-eyebrow span {
    width: 35px;
    height: 1px;

    background: var(--brass);
}


.hero-title {
    margin-bottom: 45px;

    font-family: "Cormorant Garamond", serif;
    font-size: clamp(80px, 12vw, 190px);
    font-weight: 500;

    line-height: .78;

    letter-spacing: -.055em;

    text-transform: uppercase;
}


.hero-line {
    display: block;
}


.hero-line-outline {
    color: transparent;

    -webkit-text-stroke: 1px rgba(255, 255, 255, .75);
}


.hero-bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 40px;
}


.hero-introduction {
    max-width: 440px;
}


.hero-introduction p {
    margin-bottom: 22px;

    color: rgba(255, 255, 255, .8);

    font-size: 16px;
    line-height: 1.65;
}


.text-link {
    display: inline-flex;
    align-items: center;
    gap: 15px;

    color: var(--white);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: .13em;
    text-transform: uppercase;
}


.text-link i {
    color: var(--brass);

    transition: transform .5s var(--ease);
}


.text-link:hover i {
    transform: translateY(5px);
}


.hero-location {
    display: flex;
    align-items: flex-start;
    gap: 12px;

    padding-bottom: 2px;

    color: rgba(255, 255, 255, .68);

    font-size: 10px;
    line-height: 1.8;

    letter-spacing: .12em;
    text-transform: uppercase;
}


.hero-location i {
    margin-top: 4px;

    color: var(--brass);
}


.hero-scroll {
    position: absolute;
    right: 42px;
    bottom: 45px;

    z-index: 4;

    display: flex;
    align-items: center;
    gap: 15px;

    color: rgba(255, 255, 255, .6);

    font-size: 8px;
    font-weight: 700;

    letter-spacing: .2em;
    text-transform: uppercase;

    transform: rotate(-90deg) translateX(100%);
    transform-origin: right center;
}


.scroll-line {
    position: relative;

    width: 65px;
    height: 1px;

    background: rgba(255, 255, 255, .25);

    overflow: hidden;
}


.scroll-line span {
    position: absolute;
    left: 0;
    top: 0;

    width: 30px;
    height: 1px;

    background: var(--brass);

    animation: scrollLine 2.4s infinite var(--ease);
}


@keyframes scrollLine {

    0% {
        transform: translateX(-100%);
    }

    50% {
        transform: translateX(180%);
    }

    100% {
        transform: translateX(180%);
    }

}


.hero-stamp {
    position: absolute;
    right: 65px;
    top: 50%;

    z-index: 4;

    display: flex;
    align-items: center;
    gap: 12px;

    color: rgba(255, 255, 255, .55);

    font-size: 8px;
    font-weight: 700;

    letter-spacing: .17em;
    text-transform: uppercase;

    transform: rotate(90deg);
}


.stamp-dot {
    width: 4px;
    height: 4px;

    border-radius: 50%;

    background: var(--brass);
}


/* =========================================================
   REVEAL ANIMATIONS
========================================================= */

.reveal-up {
    opacity: 0;
    transform: translateY(35px);

    transition:
        opacity 1s var(--ease),
        transform 1s var(--ease);
}


.reveal-up.visible {
    opacity: 1;
    transform: translateY(0);
}


.reveal-scale {
    opacity: 0;
    transform: scale(.96);

    transition:
        opacity 1.2s var(--ease),
        transform 1.2s var(--ease);
}


.reveal-scale.visible {
    opacity: 1;
    transform: scale(1);
}


.reveal-card {
    opacity: 0;
    transform: translateY(45px);

    transition:
        opacity 1s var(--ease),
        transform 1s var(--ease);
}


.reveal-card.visible {
    opacity: 1;
    transform: translateY(0);
}


.reveal-card:nth-child(2) {
    transition-delay: .08s;
}


.reveal-card:nth-child(3) {
    transition-delay: .16s;
}


.reveal-card:nth-child(4) {
    transition-delay: .24s;
}


.reveal-card:nth-child(5) {
    transition-delay: .08s;
}


.reveal-card:nth-child(6) {
    transition-delay: .16s;
}


.reveal-card:nth-child(7) {
    transition-delay: .24s;
}


.reveal-card:nth-child(8) {
    transition-delay: .32s;
}


/* =========================================================
   SECTION SYSTEM
========================================================= */

.section-padding {
    padding: 150px 0;
}


.heading-label {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 24px;

    color: var(--teal);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: .2em;
    text-transform: uppercase;
}


.heading-label span {
    display: block;

    width: 34px;
    height: 1px;

    background: var(--brass);
}


.heading-label.light {
    color: rgba(255, 255, 255, .65);
}


.display-title {
    margin-bottom: 0;

    color: var(--ink);

    font-family: "Cormorant Garamond", serif;
    font-size: clamp(55px, 7vw, 105px);
    font-weight: 500;

    line-height: .9;

    letter-spacing: -.045em;
}


.display-title em {
    color: var(--teal);

    font-style: italic;
    font-weight: 400;
}


.display-title.light {
    color: var(--white);
}


.display-title.light em {
    color: var(--stone);
}


.centered {
    text-align: center;
}


.centered .heading-label {
    justify-content: center;
}


.heading-description {
    max-width: 680px;

    margin: 30px auto 0;

    color: var(--text-soft);

    font-size: 15px;
    line-height: 1.9;
}


/* =========================================================
   INTRO BAND
========================================================= */

.intro-band {
    padding: 65px 0;

    background: var(--ink);

    color: var(--white);
}


.intro-band-inner {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 70px;

    align-items: start;
}


.small-label {
    padding-top: 8px;

    color: var(--brass);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: .2em;
    text-transform: uppercase;
}


.intro-band p {
    max-width: 900px;

    margin: 0;

    color: rgba(255, 255, 255, .82);

    font-family: "Cormorant Garamond", serif;
    font-size: clamp(29px, 3.2vw, 48px);
    line-height: 1.08;

    letter-spacing: -.025em;
}


/* =========================================================
   VISION
========================================================= */

.vision-section {
    background: var(--ivory);
}


.section-heading {
    margin-bottom: 90px;
}


.vision-layout {
    display: grid;
    grid-template-columns: 1.35fr .65fr;

    gap: 110px;
}


.vision-copy {
    max-width: 820px;
}


.large-copy {
    margin-bottom: 28px;

    color: var(--ink);

    font-family: "Cormorant Garamond", serif;
    font-size: clamp(27px, 3vw, 43px);
    line-height: 1.18;

    letter-spacing: -.025em;
}


.vision-copy > p:not(.large-copy) {
    max-width: 670px;

    color: var(--text-soft);

    font-size: 15px;
    line-height: 1.95;
}


.circle-link {
    display: inline-flex;
    align-items: center;
    gap: 20px;

    margin-top: 32px;

    color: var(--ink);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: .12em;
    text-transform: uppercase;
}


.circle-link i {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 48px;
    height: 48px;

    border: 1px solid var(--border);
    border-radius: 50%;

    color: var(--teal);

    transition:
        background .5s var(--ease),
        color .5s var(--ease),
        transform .5s var(--ease);
}


.circle-link:hover i {
    background: var(--teal);
    color: var(--white);

    transform: translateX(6px);
}


.vision-side {
    border-left: 1px solid var(--border);

    padding-left: 45px;
}


.vision-word {
    padding: 19px 0;

    border-bottom: 1px solid var(--border);

    color: var(--ink);

    font-family: "Cormorant Garamond", serif;
    font-size: 31px;

    transition:
        color .4s var(--ease),
        padding-left .5s var(--ease);
}


.vision-word:hover {
    padding-left: 14px;
    color: var(--teal);
}


/* =========================================================
   CINEMATIC IMAGE
========================================================= */

.cinematic-image-section {
    padding: 0 25px;

    background: var(--ivory);
}


.cinematic-image-wrap {
    position: relative;

    height: 80vh;
    min-height: 600px;

    overflow: hidden;
}


.cinematic-image-wrap img {
    width: 100%;
    height: 115%;

    object-fit: cover;

    transform: translateY(-5%);

    transition: transform 1.5s var(--ease);
}


.cinematic-image-wrap:hover img {
    transform: translateY(-5%) scale(1.035);
}


.cinematic-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to right,
            rgba(8, 18, 20, .6),
            rgba(8, 18, 20, .05) 70%
        ),
        linear-gradient(
            to top,
            rgba(8, 18, 20, .75),
            transparent 55%
        );
}


.cinematic-caption {
    position: absolute;
    left: 8%;
    bottom: 10%;

    color: var(--white);
}


.caption-label {
    display: block;

    margin-bottom: 20px;

    color: var(--brass);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: .2em;
    text-transform: uppercase;
}


.cinematic-caption h2 {
    margin-bottom: 15px;

    font-family: "Cormorant Garamond", serif;
    font-size: clamp(55px, 7vw, 105px);
    font-weight: 400;

    line-height: .86;
    letter-spacing: -.045em;
}


.cinematic-caption p {
    margin: 0;

    color: rgba(255, 255, 255, .7);

    font-size: 12px;

    letter-spacing: .1em;
}


/* =========================================================
   DESTINATION
========================================================= */

.destination-section {
    background: var(--mist);
}


.split-heading {
    display: grid;
    grid-template-columns: 1.1fr .65fr;
    gap: 100px;

    align-items: end;
}


.heading-intro {
    padding-bottom: 8px;
}


.heading-intro p {
    margin: 0;

    color: var(--text-soft);

    font-size: 14px;
    line-height: 1.9;
}


.destination-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 24px;
}


.destination-card {
    position: relative;

    min-height: 470px;

    padding: 45px;

    overflow: hidden;

    background: var(--ivory);

    transition:
        transform .7s var(--ease),
        box-shadow .7s var(--ease);
}


.destination-card:hover {
    transform: translateY(-8px);

    box-shadow: var(--shadow-soft);
}


.destination-card-large {
    grid-row: span 2;

    display: flex;
    flex-direction: column;

    padding: 0;

    background: var(--ink);

    color: var(--white);
}


.card-image {
    height: 55%;

    overflow: hidden;
}


.card-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 1.1s var(--ease);
}


.destination-card-large:hover .card-image img {
    transform: scale(1.06);
}


.card-content {
    padding: 38px;
}


.destination-card-large .card-content {
    padding: 35px 40px;
}


.card-kicker {
    display: block;

    margin-bottom: 18px;

    color: var(--teal);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: .2em;
    text-transform: uppercase;
}


.destination-card-large .card-kicker {
    color: var(--brass);
}


.destination-card h3 {
    margin-bottom: 20px;

    color: var(--ink);

    font-family: "Cormorant Garamond", serif;
    font-size: 47px;
    font-weight: 500;

    line-height: .95;
    letter-spacing: -.03em;
}


.destination-card-large h3 {
    color: var(--white);
}


.destination-card p {
    max-width: 440px;

    margin-bottom: 0;

    color: var(--text-soft);

    font-size: 13px;
    line-height: 1.85;
}


.destination-card-large p {
    color: rgba(255, 255, 255, .62);
}


.card-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 52px;
    height: 52px;

    margin-bottom: 35px;

    border: 1px solid var(--border);

    color: var(--teal);

    font-size: 17px;
}


.card-arrow {
    position: absolute;
    right: 35px;
    bottom: 35px;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 44px;
    height: 44px;

    border: 1px solid var(--border);
    border-radius: 50%;

    color: var(--teal);

    transition:
        background .4s var(--ease),
        color .4s var(--ease),
        transform .5s var(--ease);
}


.card-arrow:hover {
    background: var(--teal);
    color: var(--white);

    transform: translateX(5px);
}


.destination-card-wide {
    min-height: 300px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    background: var(--teal);
}


.destination-card-wide .card-content {
    padding: 0;
}


.destination-card-wide .card-icon {
    border-color: rgba(255, 255, 255, .18);
    color: var(--white);
}


.destination-card-wide .card-kicker,
.destination-card-wide h3,
.destination-card-wide p {
    color: var(--white);
}


.destination-card-wide p {
    color: rgba(255, 255, 255, .65);
}


.card-decoration {
    position: relative;

    width: 180px;
    height: 180px;

    margin-right: 35px;
}


.card-decoration span {
    position: absolute;

    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 50%;
}


.card-decoration span:nth-child(1) {
    inset: 0;
}


.card-decoration span:nth-child(2) {
    inset: 25px;
}


.card-decoration span:nth-child(3) {
    inset: 50px;
}


/* =========================================================
   MARQUEE
========================================================= */

.marquee-section {
    overflow: hidden;

    padding: 25px 0;

    background: var(--terracotta);

    color: var(--white);
}


.marquee-track {
    display: flex;
    align-items: center;

    width: max-content;

    animation: marquee 35s linear infinite;
}


.marquee-track span {
    margin: 0 35px;

    font-family: "Cormorant Garamond", serif;
    font-size: 32px;
    font-style: italic;
}


.marquee-track i {
    color: var(--brass);
    font-size: 8px;
}


@keyframes marquee {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }

}


/* =========================================================
   DISTRICTS
========================================================= */

.district-section {
    background: var(--ivory);
}


.district-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 0;

    border-top: 1px solid var(--border);
    border-left: 1px solid var(--border);
}


.district-item {
    display: grid;
    grid-template-columns: 65px 1fr;
    gap: 30px;

    min-height: 245px;

    padding: 38px;

    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);

    transition:
        background .5s var(--ease),
        transform .5s var(--ease);
}


.district-item:hover {
    background: var(--mist);
}


.district-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 50px;
    height: 50px;

    border: 1px solid var(--border);

    color: var(--teal);

    transition:
        background .45s var(--ease),
        color .45s var(--ease),
        transform .45s var(--ease);
}


.district-item:hover .district-icon {
    background: var(--teal);
    color: var(--white);

    transform: rotate(-5deg);
}


.district-copy > span {
    display: block;

    margin-bottom: 13px;

    color: var(--teal);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: .17em;
    text-transform: uppercase;
}


.district-copy h3 {
    margin-bottom: 13px;

    color: var(--ink);

    font-family: "Cormorant Garamond", serif;
    font-size: 34px;
    font-weight: 500;

    line-height: 1;
}


.district-copy p {
    margin: 0;

    color: var(--text-soft);

    font-size: 12px;
    line-height: 1.8;
}


.district-highlight {
    background: var(--ink);
}


.district-highlight .district-copy h3 {
    color: var(--white);
}


.district-highlight .district-copy p {
    color: rgba(255, 255, 255, .62);
}


.district-highlight .district-copy > span {
    color: var(--brass);
}


.district-highlight .district-icon {
    border-color: rgba(255, 255, 255, .18);
    color: var(--brass);
}


/* =========================================================
   STAY
========================================================= */

.stay-section {
    background: var(--mist);
}


.stay-intro {
    display: grid;
    grid-template-columns: 1fr .65fr;
    gap: 100px;

    margin-bottom: 85px;
}


.stay-description {
    padding-top: 45px;
}


.stay-description p {
    color: var(--text-soft);

    font-size: 14px;
    line-height: 1.9;
}


.stay-description p + p {
    margin-top: 20px;
}


.stay-visual {
    display: grid;
    grid-template-columns: 1.45fr .55fr;
    gap: 24px;
}


.stay-main-image {
    position: relative;

    height: 700px;

    overflow: hidden;
}


.stay-main-image > img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 1.2s var(--ease);
}


.stay-main-image:hover > img {
    transform: scale(1.045);
}


.image-gradient {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(10, 20, 21, .75),
            transparent 50%
        );
}


.image-label {
    position: absolute;
    left: 40px;
    bottom: 40px;

    color: var(--white);
}


.image-label span {
    display: block;

    margin-bottom: 8px;

    color: var(--brass);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: .2em;
    text-transform: uppercase;
}


.image-label strong {
    font-family: "Cormorant Garamond", serif;
    font-size: 47px;
    font-weight: 400;
    line-height: 1;
}


.stay-side {
    display: flex;
    flex-direction: column;

    gap: 24px;
}


.stay-small-image {
    height: 390px;

    overflow: hidden;
}


.stay-small-image img {
    height: 100%;

    object-fit: cover;

    transition: transform 1.1s var(--ease);
}


.stay-small-image:hover img {
    transform: scale(1.06);
}


.stay-quote {
    flex: 1;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 35px;

    background: var(--ink);
}


.stay-quote i {
    margin-bottom: 25px;

    color: var(--brass);

    font-size: 19px;
}


.stay-quote p {
    margin: 0;

    color: var(--white);

    font-family: "Cormorant Garamond", serif;
    font-size: 28px;
    line-height: 1.1;
}


/* =========================================================
   JOURNEYS
========================================================= */

.journeys-section {
    background: var(--ivory);
}


.journey-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 18px;
}


.journey-card {
    background: var(--mist);

    overflow: hidden;

    transition:
        transform .7s var(--ease),
        box-shadow .7s var(--ease);
}


.journey-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-soft);
}


.journey-image {
    height: 390px;

    overflow: hidden;
}


.journey-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 1.1s var(--ease);
}


.journey-card:hover .journey-image img {
    transform: scale(1.07);
}


.journey-content {
    padding: 30px;
}


.journey-content > span {
    display: block;

    margin-bottom: 12px;

    color: var(--teal);

    font-size: 8px;
    font-weight: 700;

    letter-spacing: .17em;
    text-transform: uppercase;
}


.journey-content h3 {
    margin-bottom: 12px;

    color: var(--ink);

    font-family: "Cormorant Garamond", serif;
    font-size: 39px;
    font-weight: 500;

    line-height: .95;
}


.journey-content p {
    margin: 0;

    color: var(--text-soft);

    font-size: 11px;
    line-height: 1.8;
}


/* =========================================================
   WELLNESS
========================================================= */

.wellness-section {
    position: relative;

    min-height: 900px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background: var(--ink);
}


.wellness-image {
    position: absolute;
    inset: 0;
}


.wellness-image img {
    width: 100%;
    height: 115%;

    object-fit: cover;

    transform: translateY(-5%);
}


.wellness-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(10, 23, 24, .92) 0%,
            rgba(10, 23, 24, .7) 42%,
            rgba(10, 23, 24, .15) 100%
        );
}


.wellness-container {
    position: relative;
    z-index: 2;
}


.wellness-content {
    max-width: 760px;
}


.wellness-text {
    max-width: 610px;

    margin: 35px 0;

    color: rgba(255, 255, 255, .68);

    font-size: 14px;
    line-height: 1.95;
}


.wellness-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    max-width: 610px;

    border-top: 1px solid rgba(255, 255, 255, .16);
}


.wellness-list-item {
    display: flex;
    align-items: center;
    gap: 14px;

    padding: 17px 0;

    border-bottom: 1px solid rgba(255, 255, 255, .16);

    color: var(--white);

    font-family: "Cormorant Garamond", serif;
    font-size: 22px;
}


.wellness-list-item i {
    color: var(--brass);

    font-family: "Font Awesome 6 Free";
    font-size: 11px;
}


/* =========================================================
   CULTURE
========================================================= */

.culture-section {
    background: var(--ivory);
}


.culture-layout {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 110px;

    align-items: center;
}


.culture-image {
    position: relative;

    height: 700px;

    overflow: hidden;
}


.culture-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 1.3s var(--ease);
}


.culture-image:hover img {
    transform: scale(1.045);
}


.vertical-label {
    position: absolute;
    left: 20px;
    bottom: 30px;

    color: rgba(255, 255, 255, .8);

    font-size: 8px;
    font-weight: 700;

    letter-spacing: .2em;
    text-transform: uppercase;

    writing-mode: vertical-rl;
    transform: rotate(180deg);
}


.culture-content {
    max-width: 700px;
}


.culture-content .large-copy {
    margin-top: 38px;
}


.culture-content > p:not(.large-copy) {
    color: var(--text-soft);

    font-size: 14px;
    line-height: 1.9;
}


.culture-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    margin-top: 45px;

    border-top: 1px solid var(--border);
}


.culture-point {
    display: flex;
    align-items: center;
    gap: 15px;

    padding: 19px 0;

    border-bottom: 1px solid var(--border);

    color: var(--ink);

    font-size: 11px;
    font-weight: 600;
}


.culture-point i {
    color: var(--teal);
}


/* =========================================================
   FUTURE
========================================================= */

.future-section {
    position: relative;

    overflow: hidden;

    background: var(--ink);

    color: var(--white);
}


.future-section::before {
    content: "";

    position: absolute;

    width: 650px;
    height: 650px;

    right: -250px;
    top: -250px;

    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 50%;

    box-shadow:
        0 0 0 80px rgba(255, 255, 255, .025),
        0 0 0 160px rgba(255, 255, 255, .018);
}


.future-top {
    display: grid;
    grid-template-columns: 1fr .65fr;
    gap: 100px;

    align-items: end;

    margin-bottom: 100px;
}


.future-intro {
    margin: 0;

    color: rgba(255, 255, 255, .6);

    font-size: 14px;
    line-height: 1.95;
}


.future-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    border-top: 1px solid rgba(255, 255, 255, .13);
}


.future-item {
    padding: 45px 35px 20px;

    border-right: 1px solid rgba(255, 255, 255, .13);
}


.future-item:last-child {
    border-right: 0;
}


.future-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 50px;
    height: 50px;

    margin-bottom: 35px;

    border: 1px solid rgba(255, 255, 255, .16);

    color: var(--brass);
}


.future-item h3 {
    margin-bottom: 14px;

    font-family: "Cormorant Garamond", serif;
    font-size: 38px;
    font-weight: 400;
}


.future-item p {
    margin: 0;

    color: rgba(255, 255, 255, .52);

    font-size: 12px;
    line-height: 1.85;
}


/* =========================================================
   SUSTAINABILITY
========================================================= */

.sustainability-section {
    background: var(--mist);
}


.sustainability-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 1px;

    background: var(--border);
}


.sustainability-card {
    min-height: 320px;

    padding: 40px;

    background: var(--ivory);

    transition:
        transform .6s var(--ease),
        background .5s var(--ease);
}


.sustainability-card:hover {
    position: relative;
    z-index: 2;

    background: var(--white);

    transform: translateY(-7px);

    box-shadow: var(--shadow-soft);
}


.sustainability-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 48px;
    height: 48px;

    margin-bottom: 55px;

    border: 1px solid var(--border);

    color: var(--teal);
}


.sustainability-card h3 {
    margin-bottom: 15px;

    color: var(--ink);

    font-family: "Cormorant Garamond", serif;
    font-size: 34px;
    font-weight: 500;

    line-height: 1;
}


.sustainability-card p {
    margin: 0;

    color: var(--text-soft);

    font-size: 11px;
    line-height: 1.85;
}


/* =========================================================
   GALLERY
========================================================= */

.gallery-section {
    padding: 150px 0 0;

    background: var(--ink);
}


.gallery-heading {
    margin-bottom: 70px;
}


.gallery-grid {
    display: grid;

    grid-template-columns: repeat(12, 1fr);

    gap: 10px;
}


.gallery-item {
    position: relative;

    height: 450px;

    overflow: hidden;
}


.gallery-large {
    grid-column: span 7;
    height: 620px;
}


.gallery-wide {
    grid-column: span 7;
}


.gallery-item:not(.gallery-large):not(.gallery-wide) {
    grid-column: span 5;
}


.gallery-item img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 1.2s var(--ease),
        filter 1.2s var(--ease);
}


.gallery-item::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(8, 17, 19, .75),
            transparent 45%
        );

    pointer-events: none;
}


.gallery-item:hover img {
    transform: scale(1.07);

    filter: saturate(.85);
}


.gallery-caption {
    position: absolute;

    left: 30px;
    right: 30px;
    bottom: 27px;

    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: space-between;

    color: var(--white);

    font-family: "Cormorant Garamond", serif;
    font-size: 26px;
}


.gallery-caption i {
    font-family: "Font Awesome 6 Free";

    font-size: 10px;

    color: var(--brass);

    transition: transform .5s var(--ease);
}


.gallery-item:hover .gallery-caption i {
    transform: translate(4px, -4px);
}


/* =========================================================
   LOCATION
========================================================= */

.location-section {
    background: var(--ivory);
}


.location-layout {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 100px;

    align-items: center;
}


.location-content {
    max-width: 650px;
}


.location-details {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 35px;

    margin-top: 50px;

    padding-top: 28px;

    border-top: 1px solid var(--border);
}


.location-detail {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}


.location-detail > i {
    margin-top: 4px;

    color: var(--teal);
}


.location-detail span {
    display: block;

    margin-bottom: 7px;

    color: var(--text-soft);

    font-size: 8px;
    font-weight: 700;

    letter-spacing: .16em;
    text-transform: uppercase;
}


.location-detail strong {
    color: var(--ink);

    font-size: 11px;
    font-weight: 600;

    line-height: 1.7;
}


.location-map {
    position: relative;

    height: 650px;

    overflow: hidden;

    background: var(--ink);
}


.map-image {
    width: 100%;
    height: 100%;
}


.map-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    filter: saturate(.7);

    transition:
        transform 1.2s var(--ease),
        filter 1.2s var(--ease);
}


.location-map:hover .map-image img {
    transform: scale(1.04);
    filter: saturate(.9);
}


.map-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(12, 24, 25, .8),
            transparent 60%
        );
}


.map-marker {
    position: absolute;
    left: 50%;
    top: 52%;

    display: flex;
    align-items: center;
    gap: 15px;

    transform: translate(-50%, -50%);
}


.marker-pulse {
    position: absolute;

    left: 17px;
    top: 17px;

    width: 42px;
    height: 42px;

    border: 1px solid rgba(184, 154, 98, .7);
    border-radius: 50%;

    animation: markerPulse 2.5s infinite var(--ease);
}


@keyframes markerPulse {

    0% {
        transform: scale(.7);
        opacity: .8;
    }

    100% {
        transform: scale(2.3);
        opacity: 0;
    }

}


.marker-icon {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 48px;
    height: 48px;

    border-radius: 50%;

    background: var(--brass);

    color: var(--white);
}


.marker-copy {
    display: flex;
    flex-direction: column;

    min-width: 150px;

    padding: 13px 17px;

    background: rgba(23, 35, 38, .88);

    backdrop-filter: blur(10px);
}


.marker-copy strong {
    color: var(--white);

    font-size: 10px;
}


.marker-copy span {
    margin-top: 3px;

    color: rgba(255, 255, 255, .55);

    font-size: 8px;

    letter-spacing: .12em;
    text-transform: uppercase;
}


/* =========================================================
   JOURNEY AHEAD
========================================================= */

.journey-ahead {
    position: relative;

    min-height: 750px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    text-align: center;

    color: var(--white);
}


.journey-ahead-image {
    position: absolute;
    inset: 0;
}


.journey-ahead-image img {
    width: 100%;
    height: 115%;

    object-fit: cover;
}


.journey-ahead-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            rgba(10, 23, 24, .6),
            rgba(10, 23, 24, .82)
        );
}


.journey-ahead-content {
    position: relative;
    z-index: 2;

    width: min(100% - 40px, 900px);
}


.journey-ahead-content .heading-label {
    justify-content: center;
}


.journey-ahead h2 {
    margin: 0 0 30px;

    font-family: "Cormorant Garamond", serif;
    font-size: clamp(60px, 8vw, 115px);
    font-weight: 400;

    line-height: .85;
    letter-spacing: -.05em;
}


.journey-ahead h2 em {
    color: var(--stone);
    font-style: italic;
}


.journey-ahead-content > p {
    max-width: 600px;

    margin: 0 auto 35px;

    color: rgba(255, 255, 255, .67);

    font-size: 14px;
    line-height: 1.9;
}


.button-light {
    display: inline-flex;
    align-items: center;
    gap: 18px;

    padding: 17px 23px;

    border: 1px solid rgba(255, 255, 255, .35);

    color: var(--white);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: .16em;
    text-transform: uppercase;

    transition:
        background .5s var(--ease),
        border-color .5s var(--ease),
        color .5s var(--ease),
        transform .5s var(--ease);
}


.button-light i {
    color: var(--brass);

    transition: transform .5s var(--ease);
}


.button-light:hover {
    background: var(--white);
    border-color: var(--white);

    color: var(--ink);

    transform: translateY(-4px);
}


.button-light:hover i {
    transform: translateX(5px);
}


/* =========================================================
   ENQUIRY
========================================================= */

.enquiry-section {
    background: var(--mist);
}


.enquiry-layout {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 100px;

    align-items: start;
}


.enquiry-copy {
    position: sticky;
    top: 130px;
}


.enquiry-copy .large-copy {
    margin-top: 40px;
}


.enquiry-note {
    display: flex;
    align-items: flex-start;
    gap: 14px;

    margin-top: 35px;

    padding-top: 25px;

    border-top: 1px solid var(--border);

    color: var(--text-soft);

    font-size: 11px;
}


.enquiry-note i {
    margin-top: 4px;

    color: var(--teal);
}


.enquiry-form-wrap {
    padding: 55px;

    background: var(--ivory);

    box-shadow: var(--shadow-soft);
}


.enquiry-form {
    display: flex;
    flex-direction: column;

    gap: 25px;
}


.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 20px;
}


.form-group {
    display: flex;
    flex-direction: column;

    gap: 9px;
}


.form-group label {
    color: var(--ink);

    font-size: 8px;
    font-weight: 700;

    letter-spacing: .16em;
    text-transform: uppercase;
}


.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;

    padding: 15px 0;

    border: 0;
    border-bottom: 1px solid rgba(23, 35, 38, .2);

    outline: 0;

    background: transparent;

    color: var(--ink);

    font-size: 13px;

    border-radius: 0;

    transition:
        border-color .4s var(--ease),
        padding-left .4s var(--ease);
}


.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--teal);
    padding-left: 7px;
}


.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9da4a4;
}


.form-group textarea {
    min-height: 120px;

    resize: vertical;
}


.form-group select {
    cursor: pointer;

    appearance: none;

    background-image:
        linear-gradient(45deg, transparent 50%, var(--teal) 50%),
        linear-gradient(135deg, var(--teal) 50%, transparent 50%);

    background-position:
        calc(100% - 8px) 50%,
        calc(100% - 3px) 50%;

    background-size:
        5px 5px,
        5px 5px;

    background-repeat: no-repeat;
}


.form-submit {
    display: flex;
    align-items: center;
    justify-content: space-between;

    width: 100%;

    margin-top: 10px;

    padding: 18px 20px;

    background: var(--teal);

    color: var(--white);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: .16em;
    text-transform: uppercase;

    transition:
        background .5s var(--ease),
        transform .5s var(--ease);
}


.form-submit i {
    color: var(--brass);

    transition: transform .5s var(--ease);
}


.form-submit:hover {
    background: var(--ink);

    transform: translateY(-3px);
}


.form-submit:hover i {
    transform: translateX(5px);
}


.form-status {
    min-height: 20px;

    color: var(--teal);

    font-size: 11px;
}


/* =========================================================
   FINAL CTA
========================================================= */

.final-cta {
    padding: 150px 30px;

    background: var(--ivory);

    text-align: center;
}


.final-cta-inner {
    max-width: 900px;

    margin: 0 auto;
}


.final-mark {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 4px;

    height: 30px;

    margin-bottom: 35px;
}


.final-mark span {
    display: block;

    width: 7px;

    background: var(--brass);

    transform: skewX(-15deg);
}


.final-mark span:nth-child(1) {
    height: 15px;
}


.final-mark span:nth-child(2) {
    height: 27px;
}


.final-mark span:nth-child(3) {
    height: 20px;
}


.final-cta p {
    margin-bottom: 20px;

    color: var(--teal);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: .2em;
    text-transform: uppercase;
}


.final-cta h2 {
    margin-bottom: 50px;

    color: var(--ink);

    font-family: "Cormorant Garamond", serif;
    font-size: clamp(70px, 9vw, 135px);
    font-weight: 400;

    line-height: .82;
    letter-spacing: -.055em;
}


.final-cta h2 em {
    color: var(--teal);
    font-style: italic;
}


.back-top {
    display: inline-flex;
    align-items: center;
    gap: 15px;

    color: var(--ink);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: .15em;
    text-transform: uppercase;
}


.back-top i {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    border: 1px solid var(--border);
    border-radius: 50%;

    color: var(--teal);

    transition:
        background .4s var(--ease),
        color .4s var(--ease),
        transform .4s var(--ease);
}


.back-top:hover i {
    background: var(--teal);
    color: var(--white);

    transform: translateY(-5px);
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    padding: 80px 0 30px;

    background: var(--ink);

    color: var(--white);
}


.footer-top {
    display: grid;

    grid-template-columns: 2fr repeat(3, 1fr);

    gap: 60px;

    padding-bottom: 75px;

    border-bottom: 1px solid rgba(255, 255, 255, .12);
}


.footer-brand-logo {
    margin-bottom: 25px;
}


.footer-brand p {
    max-width: 300px;

    margin-bottom: 13px;

    color: rgba(255, 255, 255, .55);

    font-family: "Cormorant Garamond", serif;
    font-size: 24px;
    line-height: 1.1;
}


.footer-location {
    color: rgba(255, 255, 255, .35);

    font-size: 8px;
    font-weight: 700;

    letter-spacing: .14em;
    text-transform: uppercase;
}


.footer-column {
    display: flex;
    flex-direction: column;

    gap: 11px;
}


.footer-column h4 {
    margin-bottom: 12px;

    color: var(--brass);

    font-size: 8px;
    font-weight: 700;

    letter-spacing: .18em;
    text-transform: uppercase;
}


.footer-column a {
    width: fit-content;

    color: rgba(255, 255, 255, .55);

    font-size: 10px;

    transition:
        color .35s var(--ease),
        transform .35s var(--ease);
}


.footer-column a:hover {
    color: var(--white);

    transform: translateX(4px);
}


.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    padding-top: 25px;

    color: rgba(255, 255, 255, .3);

    font-size: 8px;

    letter-spacing: .08em;
    text-transform: uppercase;
}


.footer-legal {
    display: flex;
    gap: 25px;
}


.footer-legal a,
.footer-top-link {
    color: rgba(255, 255, 255, .3);

    transition: color .35s var(--ease);
}


.footer-legal a:hover,
.footer-top-link:hover {
    color: var(--white);
}


.footer-top-link {
    display: flex;
    align-items: center;
    gap: 9px;
}


.footer-top-link i {
    color: var(--brass);
}


/* =========================================================
   RESPONSIVE — LARGE TABLET
========================================================= */

@media (max-width: 1200px) {

    .desktop-nav {
        gap: 18px;
        margin-right: 25px;
    }

    .desktop-nav a {
        font-size: 9px;
    }

    .hero-title {
        font-size: clamp(75px, 12vw, 150px);
    }

    .vision-layout,
    .culture-layout {
        gap: 70px;
    }

    .journey-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .journey-image {
        height: 420px;
    }

    .sustainability-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 980px) {

    .container,
    .hero-content {
        width: min(100% - 50px, var(--container));
    }


    .desktop-nav,
    .header-cta {
        display: none;
    }


    .mobile-toggle {
        display: flex;
    }


    .header-inner {
        width: min(100% - 50px, 1480px);
        min-height: 80px;
    }


    .site-header.scrolled .header-inner {
        min-height: 72px;
    }


    .section-padding {
        padding: 110px 0;
    }


    .vision-layout,
    .culture-layout,
    .location-layout,
    .enquiry-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }


    .vision-side {
        display: grid;
        grid-template-columns: repeat(2, 1fr);

        padding-left: 0;

        border-left: 0;
    }


    .vision-word {
        padding: 18px 0;
        border-right: 1px solid var(--border);
        padding-left: 20px;
    }


    .intro-band-inner,
    .split-heading,
    .stay-intro,
    .future-top {
        grid-template-columns: 1fr;
        gap: 30px;
    }


    .stay-description {
        padding-top: 0;
    }


    .destination-grid {
        grid-template-columns: 1fr 1fr;
    }


    .destination-card-large {
        grid-row: auto;
        grid-column: span 2;
    }


    .destination-card-wide {
        grid-column: span 2;
    }


    .district-grid {
        grid-template-columns: 1fr;
    }


    .stay-visual {
        grid-template-columns: 1fr;
    }


    .stay-main-image {
        height: 600px;
    }


    .stay-side {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }


    .stay-small-image {
        height: 350px;
    }


    .future-grid {
        grid-template-columns: 1fr;
    }


    .future-item {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .13);
    }


    .future-item:last-child {
        border-bottom: 0;
    }


    .gallery-large,
    .gallery-wide,
    .gallery-item:not(.gallery-large):not(.gallery-wide) {
        grid-column: span 6;
    }


    .gallery-large {
        height: 500px;
    }


    .gallery-item {
        height: 400px;
    }


    .enquiry-copy {
        position: static;
    }


    .footer-top {
        grid-template-columns: 1.5fr 1fr 1fr;
    }


    .footer-brand {
        grid-column: span 3;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 640px) {

    body {
        font-size: 14px;
    }


    .container,
    .hero-content {
        width: calc(100% - 36px);
    }


    .header-inner {
        width: calc(100% - 36px);
    }


    .brand-copy strong {
        font-size: 21px;
    }


    .brand-copy small {
        font-size: 7px;
    }


    .section-padding {
        padding: 85px 0;
    }


    .hero-section {
        min-height: 100svh;
    }


    .hero-content {
        padding: 140px 0 75px;
    }


    .hero-eyebrow {
        font-size: 8px;
    }


    .hero-title {
        margin-bottom: 45px;

        font-size: clamp(67px, 20vw, 110px);

        line-height: .82;
    }


    .hero-bottom {
        flex-direction: column;
        align-items: flex-start;

        gap: 25px;
    }


    .hero-introduction p {
        font-size: 14px;
    }


    .hero-location {
        font-size: 8px;
    }


    .hero-scroll,
    .hero-stamp {
        display: none;
    }


    .intro-band {
        padding: 45px 0;
    }


    .intro-band-inner {
        gap: 18px;
    }


    .intro-band p {
        font-size: 29px;
    }


    .section-heading {
        margin-bottom: 55px;
    }


    .display-title {
        font-size: clamp(53px, 16vw, 82px);
    }


    .large-copy {
        font-size: 29px;
    }


    .vision-layout {
        gap: 45px;
    }


    .vision-side {
        grid-template-columns: 1fr;
    }


    .vision-word {
        padding-left: 0;
        border-right: 0;
    }


    .cinematic-image-section {
        padding: 0 10px;
    }


    .cinematic-image-wrap {
        height: 72vh;
        min-height: 500px;
    }


    .cinematic-caption {
        left: 25px;
        right: 25px;
        bottom: 40px;
    }


    .cinematic-caption h2 {
        font-size: 55px;
    }


    .destination-grid {
        grid-template-columns: 1fr;
    }


    .destination-card-large,
    .destination-card-wide {
        grid-column: auto;
    }


    .destination-card {
        min-height: 390px;

        padding: 32px;
    }


    .destination-card-large {
        min-height: 540px;
    }


    .destination-card h3 {
        font-size: 40px;
    }


    .destination-card-wide {
        min-height: 390px;
    }


    .card-decoration {
        display: none;
    }


    .district-item {
        grid-template-columns: 50px 1fr;
        gap: 20px;

        min-height: auto;

        padding: 28px 22px;
    }


    .district-icon {
        width: 43px;
        height: 43px;

        font-size: 13px;
    }


    .district-copy h3 {
        font-size: 30px;
    }


    .stay-main-image {
        height: 520px;
    }


    .stay-side {
        grid-template-columns: 1fr;
    }


    .stay-small-image {
        height: 300px;
    }


    .stay-quote {
        min-height: 300px;
    }


    .journey-grid {
        grid-template-columns: 1fr;
    }


    .journey-image {
        height: 430px;
    }


    .wellness-section {
        min-height: 850px;
    }


    .wellness-overlay {
        background:
            linear-gradient(
                to bottom,
                rgba(10, 23, 24, .55),
                rgba(10, 23, 24, .92)
            );
    }


    .wellness-list {
        grid-template-columns: 1fr;
    }


    .wellness-list-item {
        font-size: 21px;
    }


    .culture-image {
        height: 500px;
    }


    .culture-points {
        grid-template-columns: 1fr;
    }


    .future-top {
        margin-bottom: 60px;
    }


    .future-item {
        padding: 35px 0;
    }


    .sustainability-grid {
        grid-template-columns: 1fr;
    }


    .sustainability-card {
        min-height: 270px;
    }


    .gallery-section {
        padding-top: 85px;
    }


    .gallery-heading {
        margin-bottom: 45px;
    }


    .gallery-grid {
        display: grid;
        grid-template-columns: 1fr;
    }


    .gallery-large,
    .gallery-wide,
    .gallery-item:not(.gallery-large):not(.gallery-wide) {
        grid-column: auto;
    }


    .gallery-large,
    .gallery-item {
        height: 420px;
    }


    .location-details {
        grid-template-columns: 1fr;
        gap: 25px;
    }


    .location-map {
        height: 470px;
    }


    .map-marker {
        left: 42%;
    }


    .marker-copy {
        min-width: 125px;
    }


    .journey-ahead {
        min-height: 680px;
    }


    .journey-ahead h2 {
        font-size: 62px;
    }


    .enquiry-form-wrap {
        padding: 30px 22px;
    }


    .form-row {
        grid-template-columns: 1fr;
    }


    .final-cta {
        padding: 100px 20px;
    }


    .final-cta h2 {
        font-size: 70px;
    }


    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 45px 25px;
    }


    .footer-brand {
        grid-column: span 2;
    }


    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;

        gap: 18px;
    }


    .footer-legal {
        flex-wrap: wrap;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 390px) {

      .hero-title {
    font-size: clamp(34px, 8.5vw, 42px);
    line-height: 0.9;
    letter-spacing: -0.02em;
    max-width: 100%;
}



    .display-title {
        font-size: 49px;
    }


    .cinematic-caption h2 {
        font-size: 47px;
    }


    .journey-ahead h2 {
        font-size: 53px;
    }


    .final-cta h2 {
        font-size: 59px;
    }

}




@media (max-width: 600px) {

    .hero-title {
        font-size: clamp(32px, 9vw, 38px);
        line-height: 0.88;
        letter-spacing: -0.025em;
        width: 100%;
        max-width: 100%;
    }

    .hero-title .hero-line {
        display: block;
        width: 100%;
        max-width: 100%;
    }

}

/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }


    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }


    .reveal-up,
    .reveal-scale,
    .reveal-card {
        opacity: 1;
        transform: none;
    }

}