/* =========================================================
   KAPIL ADHIKARI — PREMIUM TRAVEL PORTFOLIO
   COMPLETE RESPONSIVE CSS
========================================================= */

:root {
    --cream: #f8f6f0;
    --cream-2: #eee9df;
    --white: #ffffff;

    --green: #18382b;
    --green-2: #28513f;
    --green-dark: #10261d;

    --orange: #d96b3b;
    --gold: #b99452;

    --text: #26332d;
    --muted: #68736d;
    --border: #d9d2c5;

    --serif: "Playfair Display", Georgia, serif;
    --sans: "DM Sans", Arial, sans-serif;

    --shadow: 0 20px 60px rgba(24, 56, 43, .12);
    --radius: 20px;

    --ease: cubic-bezier(.16, 1, .3, 1);
}


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    background: var(--cream);
    color: var(--text);
    font-family: var(--sans);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.lightbox-open {
    overflow: hidden;
}

img {
    width: 100%;
    display: block;
}

button,
input,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(1180px, 90%);
    margin: 0 auto;
}

.section {
    padding: 120px 0;
}


/* =========================================================
   HEADER
========================================================= */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 26px 0;
    transition: .45s var(--ease);
}

.header.scrolled {
    padding: 14px 0;
    background: rgba(248, 246, 240, .92);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(24, 56, 43, .10);
    box-shadow: 0 8px 30px rgba(24, 56, 43, .06);
}

.nav {
    width: min(1180px, 90%);
    margin: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-name {
    font-family: var(--serif);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--green);
}

.brand-sub {
    margin-top: 5px;
    color: var(--orange);
    font-size: .56rem;
    letter-spacing: 3px;
    font-weight: 700;
}

.desktop-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    position: relative;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--green);
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 0;
    height: 2px;
    background: var(--orange);
    transition: .3s var(--ease);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-contact {
    background: var(--green);
    color: var(--white);

    padding: 11px 21px;
    border-radius: 100px;

    font-size: .72rem;
    font-weight: 700;

    transition: .3s var(--ease);
}

.nav-contact:hover {
    background: var(--orange);
    transform: translateY(-2px);
}


/* =========================================================
   MOBILE MENU BUTTON
========================================================= */

.menu-button {
    display: none;

    width: 46px;
    height: 46px;

    border: 1px solid var(--border);
    border-radius: 50%;

    background: rgba(255,255,255,.85);

    align-items: center;
    justify-content: center;
    flex-direction: column;

    gap: 6px;
}

.menu-button span {
    width: 18px;
    height: 2px;
    background: var(--green);
}


/* =========================================================
   MOBILE MENU
========================================================= */

.mobile-menu {
    position: fixed;
    inset: 0;

    z-index: 2000;

    background: var(--cream);

    transform: translateX(100%);
    transition: transform .55s var(--ease);
}

.mobile-menu.open {
    transform: translateX(0);
}

.mobile-menu-inner {
    height: 100%;

    padding: 100px 10% 50px;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mobile-label {
    color: var(--orange);

    font-size: .68rem;
    font-weight: 700;
    letter-spacing: 3px;

    margin-bottom: 25px;
}

.mobile-menu-inner > a {
    font-family: var(--serif);
    font-size: 2.2rem;

    padding: 7px 0;

    color: var(--green);

    transition: .3s ease;
}

.mobile-menu-inner > a:hover {
    color: var(--orange);
    padding-left: 8px;
}

.mobile-location {
    margin-top: 35px;

    display: flex;
    align-items: center;
    gap: 8px;

    color: var(--muted);
    font-size: .85rem;
}

.mobile-location svg {
    width: 17px;
    color: var(--orange);
}

.menu-close {
    position: absolute;

    top: 25px;
    right: 6%;

    width: 45px;
    height: 45px;

    border: 1px solid var(--border);
    border-radius: 50%;

    background: white;
}

.menu-close span {
    position: absolute;

    left: 13px;

    width: 18px;
    height: 2px;

    background: var(--green);
}

.menu-close span:first-child {
    transform: rotate(45deg);
}

.menu-close span:last-child {
    transform: rotate(-45deg);
}


/* =========================================================
   HERO
========================================================= */

.hero {
    height: 100svh;
    min-height: 650px;

    position: relative;

    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--green);
}

.hero-image {
    position: absolute;
    inset: 0;
}

.hero-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    animation: heroZoom 12s ease-out forwards;
}

@keyframes heroZoom {

    from {
        transform: scale(1.08);
    }

    to {
        transform: scale(1);
    }

}

.hero-gradient {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to bottom,
            rgba(248,246,240,.48),
            rgba(248,246,240,.10) 35%,
            rgba(248,246,240,.28) 68%,
            rgba(248,246,240,.94)
        );
}

.hero-content {
    position: relative;

    z-index: 2;

    width: 90%;
    max-width: 900px;

    text-align: center;

    margin-top: 40px;
}

.hero-eyebrow {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    color: var(--green);

    font-size: .7rem;
    font-weight: 700;
    letter-spacing: 4px;

    margin-bottom: 20px;
}

.hero-eyebrow span {
    width: 28px;
    height: 1px;

    background: var(--orange);
}

.hero h1 {
    font-family: var(--serif);

    font-size: clamp(4rem, 10vw, 8rem);

    line-height: .86;

    letter-spacing: -4px;

    font-weight: 700;
}

.hero h1 em {
    display: block;

    font-weight: 500;
    font-style: italic;

    color: var(--green-2);
}

.hero-description {
    margin: 28px auto 35px;

    font-family: var(--serif);
    font-style: italic;

    font-size: clamp(1.05rem, 2vw, 1.35rem);

    max-width: 600px;
}

.hero-buttons {
    display: flex;

    justify-content: center;
    align-items: center;

    gap: 25px;
}

.primary-button {
    display: inline-flex;
    align-items: center;

    gap: 10px;

    background: var(--green);
    color: white;

    padding: 15px 23px;

    border-radius: 100px;

    font-size: .82rem;
    font-weight: 700;

    transition: .35s var(--ease);
}

.primary-button:hover {
    background: var(--orange);

    transform: translateY(-4px);

    box-shadow: var(--shadow);
}

.primary-button svg {
    width: 16px;
}

.text-button {
    display: flex;

    align-items: center;

    gap: 8px;

    font-size: .8rem;
    font-weight: 700;
}

.text-button svg {
    width: 15px;
}

.hero-bottom {
    position: absolute;

    z-index: 3;

    bottom: 28px;

    left: 5%;
    right: 5%;

    display: flex;

    align-items: center;
    justify-content: space-between;

    font-size: .66rem;
    font-weight: 700;

    letter-spacing: 1.5px;
}

.hero-location,
.hero-social {
    display: flex;

    align-items: center;

    gap: 8px;
}

.hero-location svg {
    width: 14px;

    color: var(--orange);
}

.hero-scroll {
    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 8px;
}

.scroll-line {
    width: 55px;
    height: 1px;

    background: var(--green);
}

.social-dot {
    width: 7px;
    height: 7px;

    background: var(--orange);

    border-radius: 50%;
}


/* =========================================================
   TYPOGRAPHY
========================================================= */

.eyebrow {
    display: inline-block;

    color: var(--orange);

    font-size: .7rem;
    font-weight: 700;

    letter-spacing: 3px;

    margin-bottom: 18px;
}

.eyebrow.light {
    color: var(--gold);
}

.section-intro h2,
.section-heading h2,
.portfolio-title {
    font-family: var(--serif);

    color: var(--green);

    font-weight: 600;

    font-size: clamp(2.7rem, 5vw, 4.5rem);

    line-height: 1.05;

    letter-spacing: -1.5px;
}

.section-intro h2 em,
.section-heading h2 em,
.portfolio-title em {
    color: var(--green-2);

    font-weight: 500;
}


/* =========================================================
   ABOUT
========================================================= */

.about {
    background: var(--cream);
}

.section-intro {
    margin-bottom: 75px;
}

.about-grid {
    display: grid;

    grid-template-columns: .9fr 1fr;

    gap: 90px;

    align-items: center;
}

.about-photo {
    position: relative;
}

.about-photo img {
    height: 600px;

    object-fit: cover;

    border-radius: var(--radius);

    box-shadow: var(--shadow);
}

.photo-caption {
    position: absolute;

    left: 20px;
    right: 20px;
    bottom: 20px;

    z-index: 2;

    display: flex;

    justify-content: space-between;

    color: white;

    font-size: .7rem;
    font-weight: 700;

    letter-spacing: 1px;

    text-transform: uppercase;
}

.photo-caption::before {
    content: "";

    position: absolute;

    inset: -20px;

    z-index: -1;

    background:
        linear-gradient(
            transparent,
            rgba(0,0,0,.65)
        );

    border-radius: 0 0 18px 18px;
}

.about-text {
    max-width: 570px;
}

.large-text {
    color: var(--green);

    font-family: var(--serif);

    font-size: 1.45rem;

    line-height: 1.5;

    margin-bottom: 25px;
}

.about-text > p:not(.large-text) {
    color: var(--muted);

    margin-bottom: 18px;
}

.signature {
    margin-top: 40px;

    padding-top: 25px;

    border-top: 1px solid var(--border);
}

.signature-name {
    display: block;

    font-family: var(--serif);

    font-style: italic;

    color: var(--green);

    font-size: 2rem;
}

.signature-line {
    display: block;

    width: 70px;
    height: 1px;

    background: var(--orange);

    margin: 8px 0;
}

.signature-role {
    color: var(--muted);

    font-size: .72rem;

    text-transform: uppercase;

    letter-spacing: 1.5px;
}


/* =========================================================
   STATS
========================================================= */

.stats {
    background: var(--green);

    color: white;

    padding: 60px 0;
}

.stats-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);
}

.stat {
    text-align: center;

    padding: 15px;

    border-right: 1px solid rgba(255,255,255,.13);
}

.stat:last-child {
    border-right: 0;
}

.stat strong {
    display: block;

    font-family: var(--serif);

    font-size: 3.2rem;

    line-height: 1;
}

.stat strong span {
    color: var(--gold);
}

.stat small {
    display: block;

    margin-top: 10px;

    color: rgba(255,255,255,.65);

    font-size: .65rem;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}


/* =========================================================
   JOURNEY
========================================================= */

.journey {
    background: var(--cream-2);
}

.section-heading {
    display: flex;

    justify-content: space-between;

    align-items: end;

    gap: 50px;

    margin-bottom: 60px;
}

.section-heading > p {
    max-width: 350px;

    color: var(--muted);

    font-size: .9rem;
}

.journey-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 25px;
}

.destination-card {
    background: white;

    border-radius: var(--radius);

    overflow: hidden;

    border: 1px solid var(--border);

    transition: .45s var(--ease);
}

.destination-card:hover {
    transform: translateY(-8px);

    box-shadow: var(--shadow);
}

.destination-card.large {
    grid-column: span 2;

    display: grid;

    grid-template-columns: 1.3fr 1fr;
}

.destination-image {
    height: 290px;

    position: relative;

    overflow: hidden;
}

.destination-card.large .destination-image {
    height: 390px;
}

.destination-image img {
    height: 100%;

    object-fit: cover;

    transition: .7s var(--ease);
}

.destination-card:hover .destination-image img {
    transform: scale(1.06);
}

.destination-number {
    position: absolute;

    top: 18px;
    left: 18px;

    width: 38px;
    height: 38px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(255,255,255,.92);

    color: var(--green);

    font-size: .7rem;

    font-weight: 700;
}

.destination-content {
    position: relative;

    padding: 30px;
}

.destination-content > span {
    color: var(--orange);

    font-size: .62rem;

    font-weight: 700;

    letter-spacing: 2px;
}

.destination-content h3 {
    font-family: var(--serif);

    color: var(--green);

    font-size: 2rem;

    margin: 6px 0 12px;
}

.destination-content p {
    color: var(--muted);

    font-size: .85rem;

    max-width: 380px;
}

.destination-content > svg {
    position: absolute;

    right: 25px;
    bottom: 25px;

    width: 20px;

    color: var(--orange);
}


/* =========================================================
   QUOTE
========================================================= */

.quote-section {
    min-height: 560px;

    position: relative;

    display: flex;

    align-items: center;
    justify-content: center;

    overflow: hidden;

    color: white;

    text-align: center;
}

.quote-background {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
}

.quote-overlay {
    position: absolute;

    inset: 0;

    background: rgba(18,48,35,.80);
}

.quote-content {
    position: relative;

    z-index: 2;

    width: min(850px, 90%);
}

.quote-content blockquote {
    font-family: var(--serif);

    font-size: clamp(2rem, 4vw, 3.4rem);

    line-height: 1.2;

    font-style: italic;

    margin: 20px 0 30px;
}

.quote-author {
    color: var(--gold);

    font-size: .75rem;

    letter-spacing: 2px;

    font-weight: 700;
}


/* =========================================================
   GALLERY
========================================================= */

.gallery {
    background: var(--cream);
}

.gallery-heading {
    margin-bottom: 50px;
}

.gallery-grid {
    display: grid;

    grid-template-columns: 1.3fr 1fr 1fr;

    grid-auto-rows: 300px;

    gap: 18px;
}

.gallery-item {
    position: relative;

    overflow: hidden;

    border-radius: 14px;

    cursor: pointer;
}

.gallery-item.gallery-wide {
    grid-row: span 2;
}

.gallery-item.gallery-tall {
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: .7s var(--ease);
}

.gallery-hover {
    position: absolute;

    inset: 0;

    background: rgba(24,56,43,.72);

    color: white;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    opacity: 0;

    transition: .4s var(--ease);
}

.gallery-hover span {
    font-size: .65rem;

    font-weight: 700;

    letter-spacing: 2px;
}

.gallery-hover svg {
    width: 16px;
}

.gallery-item:hover img {
    transform: scale(1.07);
}

.gallery-item:hover .gallery-hover {
    opacity: 1;
}


/* =========================================================
   PORTFOLIO
========================================================= */

.portfolio {
    background: var(--cream-2);
}

.portfolio-title {
    margin-bottom: 60px;
}

.portfolio-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    border-top: 1px solid var(--border);

    border-bottom: 1px solid var(--border);
}

.portfolio-item {
    position: relative;

    padding: 40px 25px;

    border-right: 1px solid var(--border);

    transition: .35s var(--ease);
}

.portfolio-item:last-child {
    border-right: 0;
}

.portfolio-item:hover {
    background: white;
}

.portfolio-number {
    display: block;

    color: var(--orange);

    font-size: .65rem;

    font-weight: 700;

    margin-bottom: 35px;
}

.portfolio-item svg {
    width: 28px;

    color: var(--green);

    margin-bottom: 25px;
}

.portfolio-item h3 {
    font-family: var(--serif);

    color: var(--green);

    font-size: 1.4rem;

    margin-bottom: 10px;
}

.portfolio-item p {
    color: var(--muted);

    font-size: .82rem;
}


/* =========================================================
   CONTACT
========================================================= */

.contact {
    background: var(--cream);

    padding-bottom: 120px;
}

.contact-box {
    display: grid;

    grid-template-columns: 1fr 1fr;

    background: var(--green);

    border-radius: 24px;

    overflow: hidden;

    box-shadow: var(--shadow);

    color: white;
}

.contact-left {
    padding: 70px;
}

.contact-left h2 {
    font-family: var(--serif);

    font-size: clamp(2.7rem, 5vw, 4.2rem);

    line-height: 1;

    font-weight: 500;
}

.contact-left h2 em {
    color: #d4b87d;
}

.contact-left > p {
    max-width: 430px;

    margin: 25px 0 45px;

    color: rgba(255,255,255,.70);

    font-size: .9rem;
}

.contact-location {
    display: flex;

    gap: 13px;

    align-items: center;
}

.contact-location svg {
    color: var(--gold);

    width: 18px;
}

.contact-location small {
    display: block;

    color: rgba(255,255,255,.5);

    font-size: .6rem;

    letter-spacing: 2px;
}

.contact-location strong {
    font-size: .85rem;
}

.contact-right {
    background: #f4f1e9;

    color: var(--green);

    padding: 70px;

    display: flex;

    flex-direction: column;

    justify-content: center;
}

.contact-line {
    padding: 22px 0;

    border-bottom: 1px solid var(--border);
}

.contact-line > span {
    display: block;

    color: var(--orange);

    font-size: .62rem;

    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 7px;
}

.contact-line > a {
    font-family: var(--serif);

    font-size: 1.3rem;
}

.contact-line > a:hover {
    color: var(--orange);
}

.contact-socials {
    display: flex;

    gap: 10px;
}

.contact-socials a {
    width: 38px;
    height: 38px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid var(--border);

    border-radius: 50%;

    transition: .3s ease;
}

.contact-socials a:hover {
    background: var(--green);

    color: white;

    transform: translateY(-3px);
}

.contact-socials svg {
    width: 16px;
}


/* =========================================================
   FOOTER
========================================================= */

.footer {
    background: var(--cream-2);

    border-top: 1px solid var(--border);

    padding: 35px 0;
}

.footer-inner {
    display: grid;

    grid-template-columns: 1fr auto 1fr;

    align-items: center;

    gap: 30px;
}

.footer-inner > div:first-child {
    display: flex;

    flex-direction: column;
}

.footer-inner strong {
    font-family: var(--serif);

    color: var(--green);

    font-size: 1.05rem;
}

.footer-inner span {
    color: var(--muted);

    font-size: .65rem;

    margin-top: 3px;
}

.footer-center {
    color: var(--muted);

    font-size: .7rem;
}

.back-top {
    justify-self: end;

    display: flex;

    align-items: center;

    gap: 8px;

    color: var(--green);

    font-size: .65rem;

    font-weight: 700;

    letter-spacing: 1px;
}

.back-top svg {
    width: 15px;
}


/* =========================================================
   LIGHTBOX
========================================================= */

.lightbox {
    position: fixed;

    inset: 0;

    z-index: 5000;

    background: rgba(12,31,23,.97);

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 40px;

    opacity: 0;

    visibility: hidden;

    transition: .35s ease;
}

.lightbox.open {
    opacity: 1;

    visibility: visible;
}

.lightbox-content {
    max-width: 1100px;

    max-height: 90vh;

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 18px;
}

.lightbox-content img {
    width: auto;

    max-width: 90vw;

    max-height: 78vh;

    object-fit: contain;

    border-radius: 8px;
}

#lightboxTitle {
    color: white;

    font-family: var(--serif);

    font-size: 1.1rem;

    text-align: center;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;

    width: 48px;
    height: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255,255,255,.25);

    border-radius: 50%;

    background: rgba(255,255,255,.08);

    color: white;

    transition: .3s ease;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--orange);

    border-color: var(--orange);
}

.lightbox-close {
    top: 25px;
    right: 30px;
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

.lightbox-close svg,
.lightbox-prev svg,
.lightbox-next svg {
    width: 20px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .desktop-menu {
        gap: 20px;
    }

    .about-grid {
        grid-template-columns: 1fr 1fr;

        gap: 45px;
    }

    .about-photo img {
        height: 520px;
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .portfolio-item:nth-child(2) {
        border-right: 0;
    }

    .portfolio-item:nth-child(1),
    .portfolio-item:nth-child(2) {
        border-bottom: 1px solid var(--border);
    }

    .contact-left,
    .contact-right {
        padding: 50px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 760px) {

    .section {
        padding: 80px 0;
    }

    .container {
        width: 90%;
    }


    /* HEADER */

    .header {
        padding: 18px 0;
    }

    .header.scrolled {
        padding: 12px 0;
    }

    .desktop-menu {
        display: none;
    }

    .menu-button {
        display: flex;
    }


    /* HERO */

    .hero {
        min-height: 680px;
    }

    .hero-image img {
        object-position: 55% center;
    }

    .hero-gradient {
        background:
            linear-gradient(
                to bottom,
                rgba(248,246,240,.48),
                rgba(248,246,240,.08) 30%,
                rgba(248,246,240,.35) 65%,
                rgba(248,246,240,.96)
            );
    }

    .hero-content {
        margin-top: 15px;
    }

    .hero-eyebrow {
        font-size: .58rem;

        letter-spacing: 2.5px;

        gap: 8px;
    }

    .hero-eyebrow span {
        width: 18px;
    }

    .hero h1 {
        font-size: clamp(3.4rem, 17vw, 5.5rem);

        letter-spacing: -2.5px;
    }

    .hero-description {
        font-size: 1rem;

        line-height: 1.5;

        margin: 22px auto 28px;
    }

    .hero-buttons {
        flex-direction: column;

        gap: 16px;
    }

    .primary-button {
        padding: 14px 20px;
    }

    .hero-bottom {
        left: 5%;
        right: 5%;
        bottom: 20px;
    }

    .hero-scroll {
        display: none;
    }

    .hero-social span {
        display: none;
    }


    /* HEADINGS */

    .section-intro h2,
    .section-heading h2,
    .portfolio-title {
        font-size: clamp(2.4rem, 11vw, 3.5rem);
    }

    .eyebrow {
        font-size: .62rem;

        letter-spacing: 2px;
    }


    /* ABOUT */

    .section-intro {
        margin-bottom: 45px;
    }

    .about-grid {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .about-photo img {
        height: 470px;
    }

    .large-text {
        font-size: 1.25rem;
    }

    .signature {
        margin-top: 30px;
    }


    /* STATS */

    .stats {
        padding: 40px 0;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat {
        padding: 20px 10px;

        border-right: 1px solid rgba(255,255,255,.13);

        border-bottom: 1px solid rgba(255,255,255,.13);
    }

    .stat:nth-child(2) {
        border-right: 0;
    }

    .stat:nth-child(3),
    .stat:nth-child(4) {
        border-bottom: 0;
    }

    .stat:nth-child(4) {
        border-right: 0;
    }

    .stat strong {
        font-size: 2.5rem;
    }


    /* JOURNEY */

    .section-heading {
        display: block;

        margin-bottom: 40px;
    }

    .section-heading > p {
        margin-top: 20px;

        max-width: 100%;
    }

    .journey-grid {
        grid-template-columns: 1fr;

        gap: 18px;
    }

    .destination-card.large {
        grid-column: auto;

        display: block;
    }

    .destination-card.large .destination-image {
        height: 300px;
    }

    .destination-image {
        height: 250px;
    }

    .destination-content {
        padding: 25px;
    }

    .destination-content h3 {
        font-size: 1.8rem;
    }


    /* QUOTE */

    .quote-section {
        min-height: 500px;
    }

    .quote-content blockquote {
        font-size: 2rem;
    }


    /* GALLERY */

    .gallery-grid {
        grid-template-columns: 1fr 1fr;

        grid-auto-rows: 220px;

        gap: 10px;
    }

    .gallery-item.gallery-wide {
        grid-row: span 2;
    }

    .gallery-item.gallery-tall {
        grid-row: span 2;
    }


    /* PORTFOLIO */

    .portfolio-title {
        margin-bottom: 40px;
    }

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

    .portfolio-item,
    .portfolio-item:nth-child(2) {
        border-right: 0;

        border-bottom: 1px solid var(--border);
    }

    .portfolio-item:last-child {
        border-bottom: 0;
    }


    /* CONTACT */

    .contact {
        padding-bottom: 80px;
    }

    .contact-box {
        grid-template-columns: 1fr;

        border-radius: 18px;
    }

    .contact-left,
    .contact-right {
        padding: 40px 28px;
    }

    .contact-left h2 {
        font-size: 3rem;
    }

    .contact-left > p {
        margin: 20px 0 35px;
    }

    .contact-right {
        padding-top: 20px;
    }

    .contact-line > a {
        font-size: 1.1rem;

        word-break: break-word;
    }


    /* FOOTER */

    .footer {
        padding: 30px 0;
    }

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

        text-align: center;

        gap: 20px;
    }

    .footer-inner > div:first-child {
        align-items: center;
    }

    .back-top {
        justify-self: center;
    }


    /* LIGHTBOX */

    .lightbox {
        padding: 20px;
    }

    .lightbox-content img {
        max-width: 92vw;

        max-height: 75vh;
    }

    .lightbox-close {
        top: 18px;
        right: 18px;
    }

    .lightbox-prev {
        left: 12px;
    }

    .lightbox-next {
        right: 12px;
    }

    .lightbox-close,
    .lightbox-prev,
    .lightbox-next {
        width: 42px;
        height: 42px;
    }

}


/* =========================================================
   SMALL PHONES
========================================================= */

@media (max-width: 420px) {

    .hero {
        min-height: 640px;
    }

    .hero h1 {
        font-size: 3.35rem;
    }

    .hero-description {
        font-size: .92rem;
    }

    .hero-location span {
        font-size: .58rem;
    }

    .about-photo img {
        height: 420px;
    }

    .gallery-grid {
        grid-auto-rows: 190px;
    }

    .destination-card.large .destination-image {
        height: 260px;
    }

    .quote-content blockquote {
        font-size: 1.7rem;
    }

}


/* =========================================================
   ACCESSIBILITY
========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }

}
