/* =========================================================
   GENESIS HOSTELS
   LOCATION PAGE
   MATCHES INDEX + GALLERY VISUAL SYSTEM
========================================================= */


/* =========================================================
   ROOT
========================================================= */

:root {

    --navy: #0a2c4d;
    --navy-deep: #06182b;
    --navy-soft: #102f4e;

    --blue: #1769aa;
    --blue-dark: #0b5d91;
    --blue-light: #8bcdf7;
    --blue-pale: #b8dcf4;

    --white: #ffffff;
    --off-white: #f5f7fa;
    --soft: #eef3f7;

    --text: #14213d;
    --muted: #697386;
    --border: #e1e6eb;

    --radius: 20px;

    --shadow:
        0 20px 55px rgba(21, 43, 66, 0.10);

    --container: 1180px;

}


/* =========================================================
   RESET
========================================================= */

* {

    margin: 0;
    padding: 0;
    box-sizing: border-box;

}


html {

    scroll-behavior: smooth;

}


body {

    font-family:
        "Inter",
        Arial,
        Helvetica,
        sans-serif;

    background: var(--white);

    color: var(--text);

    line-height: 1.6;

    overflow-x: hidden;

    -webkit-font-smoothing: antialiased;

}


img {

    display: block;
    width: 100%;

}


a {

    color: inherit;
    text-decoration: none;

}


button {

    font: inherit;

}


.container {

    width:
        min(
            calc(100% - 48px),
            var(--container)
        );

    margin-inline: auto;

}


/* =========================================================
   NAVIGATION
========================================================= */

.main-nav {

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;
    height: 78px;

    z-index: 1000;

    transition:
        background .3s ease,
        box-shadow .3s ease,
        backdrop-filter .3s ease;

}


/* =========================================================
   SCROLLED NAVIGATION
========================================================= */

.main-nav.scrolled {

    background:
        rgba(255, 255, 255, .96);

    backdrop-filter:
        blur(14px);

    box-shadow:
        0 8px 30px
        rgba(15, 35, 60, .08);

}


/* =========================================================
   NAV CONTENT
========================================================= */

.nav-content {

    height: 100%;

    display: flex;

    align-items: center;

    justify-content: space-between;

}


/* =========================================================
   BRAND
========================================================= */

.brand-link {

    display: flex;

    align-items: center;

    gap: 12px;

}


.brand-logo {

    width: 44px;
    height: 44px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: white;

    color: var(--blue-dark);

    font-size: 22px;

    font-weight: 800;

    box-shadow:
        0 7px 22px
        rgba(0, 0, 0, .15);

}


.brand-name {

    display: flex;

    flex-direction: column;

    line-height: 1;

}


.brand-name strong {

    color: white;

    font-size: 16px;

    letter-spacing: 2px;

}


.brand-name span {

    margin-top: 4px;

    color:
        rgba(255,255,255,.65);

    font-size: 9px;

    letter-spacing: 3px;

}


/* SCROLLED BRAND */

.main-nav.scrolled
.brand-name strong {

    color: #13213a;

}


.main-nav.scrolled
.brand-name span {

    color: #697386;

}


/* =========================================================
   NAV LINKS
========================================================= */

.nav-links {

    display: flex;

    align-items: center;

    gap: 34px;

}


.nav-link {

    position: relative;

    color:
        rgba(255,255,255,.82);

    font-size: 13px;

    font-weight: 600;

    transition:
        color .2s ease;

}


/* =========================================================
   IMPORTANT:
   LOGIN USES .nav-link TOO
   SO IT STAYS WHITE ON HERO
========================================================= */

.nav-links a.nav-login {

    color:
        rgba(255,255,255,.82);

}


.nav-links a.nav-login:hover {

    color: white;

}


/* =========================================================
   SCROLLED NAV LINKS
========================================================= */

.main-nav.scrolled
.nav-link {

    color: #5e697a;

}


.main-nav.scrolled
.nav-links a.nav-login {

    color: #5e697a;

}


.nav-link:hover,
.main-nav.scrolled
.nav-link:hover {

    color: var(--blue);

}


.nav-links a.nav-login:hover {

    color: var(--blue);

}


/* =========================================================
   ACTIVE NAV LINK
========================================================= */

.nav-link.active {

    color: white;

}


.main-nav.scrolled
.nav-link.active {

    color: var(--blue);

}


.nav-link.active::after {

    content: "";

    position: absolute;

    left: 0;
    right: 0;

    bottom: -9px;

    height: 2px;

    background:
        currentColor;

    border-radius: 20px;

}


/* =========================================================
   LOGIN ACTIVE / HOVER SAFETY
========================================================= */

.nav-login.active {

    color: white;

}


.main-nav.scrolled
.nav-login.active {

    color: var(--blue);

}


/* =========================================================
   BOOK BUTTON
========================================================= */

.nav-book {

    margin-left: 5px;

    padding:
        11px 19px;

    border-radius: 9px;

    background: white;

    color: #0a3c66;

    font-size: 12px;

    font-weight: 750;

    box-shadow:
        0 7px 18px
        rgba(0,0,0,.13);

    transition:
        transform .2s ease,
        box-shadow .2s ease,
        background .2s ease;

}


.nav-book:hover {

    transform:
        translateY(-1px);

    box-shadow:
        0 10px 25px
        rgba(0,0,0,.18);

}


.main-nav.scrolled
.nav-book {

    background:
        linear-gradient(
            135deg,
            #0b4f82,
            #1769aa
        );

    color: white;

}


/* =========================================================
   MOBILE MENU BUTTON
========================================================= */

.menu-toggle {

    display: none;

    width: 43px;
    height: 43px;

    border: none;

    border-radius: 10px;

    background: white;

    cursor: pointer;

    align-items: center;
    justify-content: center;

    flex-direction: column;

    gap: 5px;

    box-shadow:
        0 7px 20px
        rgba(0,0,0,.12);

}


.menu-toggle span {

    width: 19px;
    height: 2px;

    background: #15304c;

    border-radius: 5px;

    transition: .25s ease;

}


.menu-toggle.open
span:nth-child(1) {

    transform:
        translateY(7px)
        rotate(45deg);

}


.menu-toggle.open
span:nth-child(2) {

    opacity: 0;

}


.menu-toggle.open
span:nth-child(3) {

    transform:
        translateY(-7px)
        rotate(-45deg);

}


/* =========================================================
   LOCATION HERO
========================================================= */

.location-hero {

    position: relative;

    min-height: 650px;

    display: flex;

    align-items: center;

    overflow: hidden;

    color: white;

    background-image:
        url("entrance.jpg");

    background-size: cover;

    background-position:
        center center;

    background-repeat: no-repeat;

}


.location-hero::before {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(5,24,45,.92) 0%,
            rgba(6,34,61,.78) 42%,
            rgba(5,24,45,.43) 100%
        );

    z-index: 1;

}


.location-hero-overlay {

    position: absolute;

    inset: 0;

    z-index: 2;

    pointer-events: none;

    background:
        linear-gradient(
            to bottom,
            transparent 55%,
            rgba(5,20,35,.55)
        );

}


/* =========================================================
   HERO CONTAINER
========================================================= */

.location-hero-container {

    position: relative;

    z-index: 3;

    padding-top: 100px;

    padding-bottom: 130px;

}


.location-hero-content {

    max-width: 700px;

}


/* =========================================================
   HERO LABEL
========================================================= */

.hero-label {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    margin-bottom: 23px;

    color:
        rgba(255,255,255,.82);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2.5px;

}


.hero-dot {

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background:
        #7cc9ff;

    box-shadow:
        0 0 0 5px
        rgba(124,201,255,.13);

}


/* =========================================================
   HERO TITLE
========================================================= */

.location-hero h1 {

    max-width: 750px;

    font-size:
        clamp(46px, 6vw, 76px);

    line-height: 1.02;

    letter-spacing: -3px;

    font-weight: 800;

    margin-bottom: 25px;

}


.location-hero h1 span {

    display: block;

    color:
        var(--blue-pale);

}


/* =========================================================
   HERO DESCRIPTION
========================================================= */

.location-hero-content > p {

    max-width: 570px;

    color:
        rgba(255,255,255,.76);

    font-size: 16px;

    line-height: 1.8;

    margin-bottom: 34px;

}


/* =========================================================
   HERO BUTTONS
========================================================= */

.hero-actions {

    display: flex;

    align-items: center;

    gap: 12px;

}


.hero-button {

    min-height: 48px;

    padding:
        0 20px;

    border-radius: 9px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    font-size: 12px;

    font-weight: 700;

    transition:
        transform .2s ease,
        box-shadow .2s ease,
        background .2s ease;

}


.hero-button.primary {

    background:
        linear-gradient(
            135deg,
            #0d6197,
            #187bb7
        );

    color: white;

    box-shadow:
        0 10px 25px
        rgba(0,0,0,.18);

}


.hero-button.primary:hover {

    transform:
        translateY(-2px);

    box-shadow:
        0 13px 30px
        rgba(0,0,0,.25);

}


.hero-button.secondary {

    background:
        rgba(255,255,255,.10);

    color: white;

    border:
        1px solid
        rgba(255,255,255,.30);

    backdrop-filter:
        blur(8px);

}


.hero-button.secondary:hover {

    transform:
        translateY(-2px);

    background:
        rgba(255,255,255,.17);

}


/* =========================================================
   HERO BOTTOM
========================================================= */

.hero-bottom {

    position: absolute;

    left: 0;
    right: 0;

    bottom: 0;

    z-index: 5;

    padding-bottom: 26px;

}


.hero-bottom-inner {

    display: flex;

    align-items: center;

    justify-content: space-between;

}


.hero-bottom-inner >
div:first-child {

    display: flex;

    flex-direction: column;

    gap: 5px;

}


.hero-bottom strong {

    font-size: 12px;

    letter-spacing: .4px;

}


.hero-bottom span {

    color:
        rgba(255,255,255,.58);

    font-size: 10px;

}


.hero-scroll-indicator {

    display: flex;

    align-items: center;

    gap: 10px;

    color:
        rgba(255,255,255,.62);

}


.hero-scroll-indicator b {

    width: 30px;
    height: 30px;

    border:
        1px solid
        rgba(255,255,255,.25);

    border-radius: 50%;

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 14px;

    color: white;

}


/* =========================================================
   GENERAL SECTION LABEL
========================================================= */

.section-label {

    display: inline-block;

    color:
        var(--blue);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2.2px;

    margin-bottom: 15px;

}


/* =========================================================
   INTRO
========================================================= */

.location-intro {

    padding:
        105px 0 95px;

    background:
        white;

}


.intro-grid {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 90px;

    align-items: center;

}


.intro-grid h2 {

    max-width: 520px;

    font-size:
        clamp(38px, 5vw, 58px);

    line-height: 1.06;

    letter-spacing: -2.5px;

    font-weight: 800;

    color:
        #14213d;

}


.intro-grid h2 span {

    color:
        var(--blue);

}


.intro-grid p {

    color:
        var(--muted);

    font-size: 15px;

    line-height: 1.9;

    max-width: 540px;

}


.location-tag {

    display: flex;

    align-items: center;

    gap: 9px;

    margin-top: 24px;

    color:
        #4f5c6e;

    font-size: 11px;

    font-weight: 650;

}


.location-dot {

    width: 8px;
    height: 8px;

    border-radius: 50%;

    background:
        var(--blue);

    box-shadow:
        0 0 0 5px
        rgba(23,105,170,.10);

}


/* =========================================================
   MAP SECTION
========================================================= */

.map-section {

    padding:
        105px 0 115px;

    background:
        #f5f7fa;

}


.section-heading {

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 50px;

    margin-bottom: 48px;

}


.section-heading h2 {

    color:
        #14213d;

    font-size:
        clamp(34px,4vw,48px);

    letter-spacing:
        -2px;

    line-height:
        1.1;

    font-weight:
        800;

}


.section-heading > p {

    max-width: 390px;

    color:
        #737d8d;

    font-size: 13px;

    line-height: 1.7;

}


.map-layout {

    display: grid;

    grid-template-columns:
        minmax(0, 1.65fr)
        minmax(320px, .75fr);

    gap: 20px;

    align-items: stretch;

}


/* =========================================================
   GOOGLE MAP CARD
========================================================= */

.map-card {

    min-height: 570px;

    overflow: hidden;

    border-radius:
        var(--radius);

    background:
        #dfe5ea;

    border:
        1px solid
        var(--border);

    box-shadow:
        var(--shadow);

}


.map-card iframe {

    display: block;

    width: 100%;

    height: 100%;

    min-height: 570px;

    border: 0;

}


/* =========================================================
   LOCATION INFO CARD
========================================================= */

.location-info-card {

    position: relative;

    overflow: hidden;

    padding:
        38px 34px;

    border-radius:
        var(--radius);

    background:
        linear-gradient(
            145deg,
            #0a2c4d,
            #0c3c64
        );

    color: white;

    box-shadow:
        0 25px 60px
        rgba(14,39,65,.15);

}


.location-info-card::after {

    content: "";

    position: absolute;

    width: 230px;
    height: 230px;

    right: -110px;
    bottom: -110px;

    border-radius: 50%;

    border:
        1px solid
        rgba(139,205,247,.20);

}


.info-kicker {

    color:
        #8bcdf7;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;

}


.location-info-card h3 {

    margin-top: 14px;

    font-size: 31px;

    line-height: 1.05;

    letter-spacing: -1px;

}


.location-info-card > p {

    margin-top: 15px;

    color:
        rgba(255,255,255,.58);

    font-size: 13px;

    line-height: 1.8;

}


/* =========================================================
   INFO LIST
========================================================= */

.info-list {

    margin-top: 35px;

}


.info-item {

    display: flex;

    gap: 14px;

    padding:
        19px 0;

    border-top:
        1px solid
        rgba(255,255,255,.10);

}


.info-icon {

    flex:
        0 0 38px;

    width: 38px;
    height: 38px;

    display: grid;

    place-items: center;

    border-radius: 10px;

    background:
        rgba(139,205,247,.10);

    color:
        #8bcdf7;

    font-size: 17px;

}


.info-item >
div:last-child {

    display: flex;

    flex-direction: column;

}


.info-item span {

    color:
        #8bcdf7;

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1.5px;

}


.info-item strong {

    margin-top: 3px;

    font-size: 12px;

    font-weight: 700;

}


.info-item small {

    margin-top: 3px;

    color:
        rgba(255,255,255,.46);

    font-size: 10px;

}


/* =========================================================
   DIRECTIONS BUTTON
========================================================= */

.directions-button {

    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-top: 25px;

    padding:
        14px 16px;

    border-radius: 9px;

    background:
        linear-gradient(
            135deg,
            #0d6197,
            #187bb7
        );

    color: white;

    font-size: 12px;

    font-weight: 800;

    box-shadow:
        0 10px 25px
        rgba(0,0,0,.16);

    transition:
        transform .25s ease,
        box-shadow .25s ease;

}


.directions-button:hover {

    transform:
        translateY(-2px);

    box-shadow:
        0 13px 30px
        rgba(0,0,0,.23);

}


/* =========================================================
   ARRIVAL SECTION
========================================================= */

.arrival-section {

    padding:
        110px 0;

    background:
        white;

}


.arrival-card {

    display: grid;

    grid-template-columns:
        .95fr 1.05fr;

    overflow: hidden;

    border-radius:
        var(--radius);

    background:
        #eef3f7;

    box-shadow:
        var(--shadow);

}


.arrival-image {

    position: relative;

    min-height: 580px;

    overflow: hidden;

}


.arrival-image img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .7s ease;

}


.arrival-card:hover
.arrival-image img {

    transform:
        scale(1.035);

}


/* =========================================================
   IMAGE BADGE
========================================================= */

.image-badge {

    position: absolute;

    left: 25px;
    bottom: 25px;

    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding:
        10px 14px;

    border-radius: 10px;

    background:
        rgba(5,21,36,.82);

    backdrop-filter:
        blur(10px);

    color: white;

    font-size: 10px;

    font-weight: 700;

}


.badge-dot {

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background:
        #7cc9ff;

}


/* =========================================================
   ARRIVAL CONTENT
========================================================= */

.arrival-content {

    padding:
        65px 65px 55px;

}


.arrival-content h2 {

    margin-top: 12px;

    font-size:
        clamp(37px,4vw,57px);

    line-height: 1;

    letter-spacing: -2.5px;

    color:
        #14213d;

}


.arrival-content h2 span {

    display: block;

    color:
        var(--blue);

}


.arrival-content > p {

    max-width: 500px;

    margin-top: 20px;

    color:
        var(--muted);

    font-size: 14px;

    line-height: 1.85;

}


/* =========================================================
   ARRIVAL POINTS
========================================================= */

.arrival-points {

    margin-top: 32px;

}


.arrival-points > div {

    display: flex;

    gap: 15px;

    padding:
        17px 0;

    border-top:
        1px solid
        var(--border);

}


.point-number {

    color:
        var(--blue);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1px;

}


.arrival-points strong {

    color:
        #14213d;

    font-size: 12px;

}


.arrival-points p {

    margin-top: 3px;

    color:
        var(--muted);

    font-size: 11px;

}


/* =========================================================
   ARRIVAL BUTTON
========================================================= */

.arrival-button {

    display: inline-flex;

    align-items: center;

    gap: 13px;

    margin-top: 28px;

    padding:
        13px 19px;

    border-radius: 9px;

    background:
        linear-gradient(
            135deg,
            #0b4f82,
            #1769aa
        );

    color: white;

    font-size: 12px;

    font-weight: 800;

    transition:
        transform .25s ease,
        box-shadow .25s ease;

}


.arrival-button:hover {

    transform:
        translateY(-2px);

    box-shadow:
        0 10px 25px
        rgba(23,105,170,.20);

}


/* =========================================================
   QUICK SECTION
========================================================= */

.quick-section {

    padding:
        0 0 105px;

    background:
        white;

}


.quick-grid {

    display: grid;

    grid-template-columns:
        repeat(4,1fr);

    border-top:
        1px solid
        var(--border);

    border-bottom:
        1px solid
        var(--border);

}


.quick-item {

    display: flex;

    align-items: center;

    gap: 17px;

    min-height: 105px;

    padding:
        20px 24px;

    border-right:
        1px solid
        var(--border);

}


.quick-item:last-child {

    border-right: 0;

}


.quick-number {

    color:
        var(--blue);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1px;

}


.quick-item div {

    display: flex;

    flex-direction: column;

}


.quick-item strong {

    color:
        #14213d;

    font-size: 13px;

}


.quick-item span:last-child {

    color:
        var(--muted);

    font-size: 10px;

}


/* =========================================================
   CTA
========================================================= */

.location-cta {

    padding:
        0 0 110px;

    background:
        white;

}


.cta-inner {

    position: relative;

    overflow: hidden;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 50px;

    padding:
        65px 70px;

    border-radius:
        var(--radius);

    background:
        linear-gradient(
            135deg,
            #071d35,
            #0c3c64
        );

    color: white;

}


.cta-inner::after {

    content: "";

    position: absolute;

    width: 330px;
    height: 330px;

    right: -150px;
    top: -170px;

    border-radius: 50%;

    border:
        1px solid
        rgba(139,205,247,.20);

}


.cta-inner h2 {

    position: relative;

    z-index: 1;

    margin-top: 12px;

    max-width: 600px;

    font-size:
        clamp(35px,4vw,52px);

    line-height: 1;

    letter-spacing: -2px;

}


.cta-inner h2 span {

    color:
        #a9d8f4;

}


.cta-inner p {

    position: relative;

    z-index: 1;

    margin-top: 14px;

    color:
        rgba(255,255,255,.57);

    font-size: 13px;

}


.cta-actions {

    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;

    gap: 10px;

    flex-shrink: 0;

}


.cta-primary,
.cta-secondary {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    padding:
        14px 19px;

    border-radius: 9px;

    font-size: 12px;

    font-weight: 800;

    transition:
        transform .25s ease,
        background .25s ease;

}


.cta-primary {

    background: white;

    color:
        #0a3d65;

}


.cta-primary:hover {

    transform:
        translateY(-2px);

    background:
        #eef7fc;

}


.cta-secondary {

    color: white;

    border:
        1px solid
        rgba(255,255,255,.25);

}


.cta-secondary:hover {

    transform:
        translateY(-2px);

    background:
        rgba(255,255,255,.08);

}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {

    padding:
        55px 0 25px;

    background:
        #06182b;

    color: white;

}


.footer-top {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    padding-bottom: 35px;

}


.footer-links {

    display: flex;

    align-items: center;

    gap: 25px;

}


.footer-links a {

    color:
        rgba(255,255,255,.57);

    font-size: 11px;

    font-weight: 600;

    transition:
        color .2s ease;

}


.footer-links a:hover,
.footer-links a.active {

    color:
        #8bcdf7;

}


.footer-bottom {

    display: flex;

    justify-content: space-between;

    gap: 20px;

    padding-top: 22px;

    border-top:
        1px solid
        rgba(255,255,255,.09);

}


.footer-bottom p {

    color:
        rgba(255,255,255,.38);

    font-size: 10px;

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {


    /* MOBILE NAV */

    .nav-links {

        position: absolute;

        top: calc(100% + 8px);

        right: 24px;

        width: 240px;

        padding: 12px;

        display: none;

        flex-direction: column;

        align-items: stretch;

        gap: 3px;

        border-radius: 13px;

        background: white;

        box-shadow:
            0 20px 50px
            rgba(0,0,0,.15);

    }


    .nav-links.open {

        display: flex;

    }


    .nav-link,
    .nav-links a.nav-login {

        color:
            #4d596a !important;

        padding:
            12px 13px;

        border-radius: 8px;

    }


    .nav-link:hover,
    .nav-link.active,
    .nav-links a.nav-login:hover {

        background:
            #f1f6fa;

        color:
            #0d5b8c !important;

    }


    .nav-link.active::after {

        display: none;

    }


    .nav-book {

        margin:
            5px 0 0;

        text-align:
            center;

        background:
            linear-gradient(
                135deg,
                #0b4f82,
                #1769aa
            ) !important;

        color: white !important;

    }


    .menu-toggle {

        display: flex;

    }


    /* INTRO */

    .intro-grid {

        grid-template-columns:
            1fr;

        gap: 35px;

    }


    /* MAP */

    .map-layout {

        grid-template-columns:
            1fr;

    }


    .location-info-card {

        min-height:
            auto;

    }


    /* ARRIVAL */

    .arrival-card {

        grid-template-columns:
            1fr;

    }


    .arrival-image {

        min-height:
            450px;

    }


    /* QUICK */

    .quick-grid {

        grid-template-columns:
            repeat(2,1fr);

    }


    .quick-item:nth-child(2) {

        border-right:
            0;

    }


    .quick-item:nth-child(-n+2) {

        border-bottom:
            1px solid
            var(--border);

    }


    /* CTA */

    .cta-inner {

        flex-direction:
            column;

        align-items:
            flex-start;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 760px) {


    .container {

        width:
            min(
                calc(100% - 34px),
                600px
            );

    }


    /* NAV */

    .main-nav {

        height:
            70px;

    }


    .brand-logo {

        width:
            41px;

        height:
            41px;

    }


    /* HERO */

    .location-hero {

        min-height:
            680px;

        background-position:
            58% center;

    }


    .location-hero::before {

        background:
            linear-gradient(
                180deg,
                rgba(5,25,45,.88),
                rgba(5,25,45,.68)
            );

    }


    .location-hero-container {

        padding-top:
            100px;

        padding-bottom:
            130px;

    }


    .location-hero h1 {

        font-size:
            47px;

        letter-spacing:
            -2.5px;

    }


    .location-hero-content > p {

        font-size:
            14px;

    }


    .hero-actions {

        align-items:
            stretch;

        flex-direction:
            column;

        max-width:
            260px;

    }


    .hero-button {

        width:
            100%;

    }


    .hero-bottom-inner {

        align-items:
            flex-start;

        gap:
            20px;

    }


    .hero-scroll-indicator {

        display:
            none;

    }


    /* INTRO */

    .location-intro {

        padding:
            75px 0;

    }


    .intro-grid h2 {

        font-size:
            42px;

    }


    /* MAP */

    .map-section {

        padding:
            75px 0;

    }


    .section-heading {

        flex-direction:
            column;

        align-items:
            flex-start;

        gap:
            15px;

        margin-bottom:
            32px;

    }


    .section-heading h2 {

        font-size:
            38px;

    }


    .map-card,
    .map-card iframe {

        min-height:
            420px;

    }


    .location-info-card {

        padding:
            30px 25px;

    }


    /* ARRIVAL */

    .arrival-section {

        padding:
            75px 0;

    }


    .arrival-card {

        border-radius:
            15px;

    }


    .arrival-image {

        min-height:
            330px;

    }


    .arrival-content {

        padding:
            42px 28px;

    }


    .arrival-content h2 {

        font-size:
            40px;

    }


    /* QUICK */

    .quick-section {

        padding-bottom:
            75px;

    }


    .quick-grid {

        grid-template-columns:
            1fr;

    }


    .quick-item {

        min-height:
            85px;

        border-right:
            0;

        border-bottom:
            1px solid
            var(--border);

    }


    .quick-item:last-child {

        border-bottom:
            0;

    }


    /* CTA */

    .location-cta {

        padding-bottom:
            75px;

    }


    .cta-inner {

        padding:
            45px 28px;

        border-radius:
            15px;

    }


    .cta-inner h2 {

        font-size:
            40px;

    }


    .cta-actions {

        width:
            100%;

        flex-direction:
            column;

        align-items:
            stretch;

    }


    .cta-primary,
    .cta-secondary {

        justify-content:
            center;

        width:
            100%;

    }


    /* FOOTER */

    .footer-top {

        flex-direction:
            column;

        align-items:
            flex-start;

        gap:
            28px;

    }


    .footer-links {

        flex-wrap:
            wrap;

        gap:
            15px 20px;

    }


    .footer-bottom {

        flex-direction:
            column;

        gap:
            8px;

    }

}


/* =========================================================
   SMALL PHONES
========================================================= */

@media (max-width: 400px) {


    .location-hero h1 {

        font-size:
            40px;

    }


    .intro-grid h2 {

        font-size:
            36px;

    }


    .section-heading h2 {

        font-size:
            34px;

    }


    .arrival-content h2 {

        font-size:
            35px;

    }


    .location-info-card h3 {

        font-size:
            28px;

    }

}