:root {
    --black: #050505;
    --black2: #0d0d0d;
    --panel: #121212;
    --white: #f7f5f0;
    --muted: #aaa39a;
    --gold: #c7a35a;
    --lime: #b8ff3a;
    --pink: #ff5cad;
    --line: rgba(255, 255, 255, .13);
}


/* =========================================================
   BASE
========================================================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--black);
    color: var(--white);
    font-family: "DM Sans", sans-serif;
    line-height: 1.5;
}

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

img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wrap {
    width: min(1620px, calc(100% - 40px));
    margin: auto;
}


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

.topline {
    height: 4px;
    background: linear-gradient(
        90deg,
        var(--lime),
        var(--gold),
        var(--pink)
    );
}

header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(5, 5, 5, .93);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
}

.nav {
    min-height: 84px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 24px;
}

.brand {
    text-align: center;
    font-family: "Italiana", serif;
    font-size: 2.05rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    line-height: 1;
}

.brand small {
    display: block;
    font-family: "DM Sans", sans-serif;
    font-size: .57rem;
    letter-spacing: .34em;
    color: var(--gold);
    margin-top: 7px;
}

.menu {
    display: flex;
    gap: 24px;
    align-items: center;
    font-size: .78rem;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.menu a {
    padding: 30px 0;
    color: #d7d2cb;
    transition: .25s;
}

.menu a:hover {
    color: #fff;
}

.nav-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 18px;
}

.social {
    font-size: .76rem;
    letter-spacing: .09em;
    color: #d5cec5;
}

.social:hover {
    color: var(--gold);
}

.follow-btn {
    border: 1px solid var(--gold);
    padding: 10px 15px;
    text-transform: uppercase;
    font-size: .7rem;
    letter-spacing: .16em;
    transition: .25s;
}

.follow-btn:hover {
    background: var(--gold);
    color: #060606;
}


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

.hero {
    padding: 22px 0 30px;
}

.hero-grid {
    height: 720px;
    display: grid;
    grid-template-columns: 1.35fr .78fr .9fr;
    grid-template-rows: 1fr 1fr;
    gap: 8px;
    position: relative;
    background: #000;
}

.hero-grid figure {
    margin: 0;
    overflow: hidden;
    position: relative;
    background: #111;
}

.hero-grid figure:first-child {
    grid-row: 1 / span 2;
}

.hero-grid figure:nth-child(4) {
    grid-column: 2 / span 2;
}

.hero-grid figure::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, .02),
        rgba(0, 0, 0, .42)
    );
}

.hero-grid img {
    filter: saturate(.92) contrast(1.05);
    transition: transform .8s ease;
}

.hero-grid figure:hover img {
    transform: scale(1.02);
}

.hero-copy {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 4;
    text-align: center;
    width: min(760px, 74%);
    padding: 34px 40px;
    background: rgba(5, 5, 5, .78);
    border: 1px solid rgba(199, 163, 90, .75);
    backdrop-filter: blur(10px);
}

.hero-copy .kicker {
    font-size: .68rem;
    letter-spacing: .34em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 700;
}

.hero-copy h1 {
    font-family: "Italiana", serif;
    font-weight: 400;
    text-transform: uppercase;
    font-size: clamp(4rem, 7.3vw, 8.3rem);
    letter-spacing: .03em;
    line-height: .78;
    margin: 20px 0 15px;
}

.hero-copy h1 span {
    display: block;
    font-family: "Playfair Display", serif;
    text-transform: none;
    font-style: italic;
    color: var(--pink);
    font-size: .42em;
    letter-spacing: 0;
    margin-top: 18px;
}

.hero-copy p {
    max-width: 610px;
    margin: 0 auto;
    color: #ddd7cf;
    font-size: 1rem;
    letter-spacing: .03em;
}

.hero-mark {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 22px;
}

.hero-mark i {
    width: 42px;
    height: 2px;
    background: var(--gold);
    display: block;
}

.hero-mark i:nth-child(2) {
    background: var(--lime);
    width: 12px;
}

.hero-mark i:nth-child(3) {
    background: var(--pink);
    width: 12px;
}


/* =========================================================
   MANIFESTO
========================================================= */

.manifesto {
    padding: 62px 0 76px;
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 70px;
    align-items: end;
    border-bottom: 1px solid var(--line);
}

.manifesto .index {
    color: var(--gold);
    letter-spacing: .18em;
    text-transform: uppercase;
    font-size: .7rem;
}

.manifesto h2 {
    font-family: "Italiana", serif;
    font-size: clamp(3rem, 5vw, 6rem);
    line-height: .93;
    font-weight: 400;
    text-transform: uppercase;
    margin: 12px 0 0;
}

.manifesto h2 em {
    font-family: "Playfair Display", serif;
    text-transform: none;
    color: var(--lime);
    font-weight: 600;
}

.manifesto-copy {
    max-width: 720px;
    color: #bbb4ac;
    font-size: 1.1rem;
}

.manifesto-copy strong {
    color: #fff;
    font-weight: 600;
}

.pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 24px;
}

.pill {
    border: 1px solid var(--line);
    padding: 8px 12px;
    font-size: .74rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: #ddd7cf;
}

.pill.hot {
    border-color: var(--pink);
    color: var(--pink);
}

.pill.lime {
    border-color: var(--lime);
    color: var(--lime);
}


/* =========================================================
   SECTIONS
========================================================= */

.section {
    padding: 72px 0;
    border-bottom: 1px solid var(--line);
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 30px;
    margin-bottom: 32px;
}

.eyebrow {
    font-size: .67rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 9px;
}

.section h2 {
    font-family: "Italiana", serif;
    font-size: clamp(2.8rem, 4.5vw, 5rem);
    line-height: .95;
    font-weight: 400;
    text-transform: uppercase;
    margin: 0;
}

.section-head p {
    margin: 0;
    max-width: 520px;
    color: var(--muted);
    text-align: right;
}


/* =========================================================
   EDITORIAL
========================================================= */

.editorial {
    display: grid;
    grid-template-columns: 1.3fr .7fr;
    gap: 20px;
}

.feature {
    position: relative;
    min-height: 640px;
    overflow: hidden;
    background: #111;
}

.feature img {
    transition: transform .8s ease;
}

.feature:hover img {
    transform: scale(1.018);
}

.feature::after {
    content: "";
    position: absolute;
    inset: 30% 0 0;
    background: linear-gradient(
        180deg,
        transparent,
        rgba(0, 0, 0, .88)
    );
}

.feature-copy {
    position: absolute;
    z-index: 2;
    left: 38px;
    right: 38px;
    bottom: 36px;
}

.tag {
    display: inline-block;
    color: var(--lime);
    font-size: .66rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.feature h3 {
    font-family: "Playfair Display", serif;
    font-size: clamp(2.4rem, 4vw, 4.5rem);
    line-height: .96;
    margin: 0 0 10px;
    max-width: 760px;
}

.feature p {
    color: #c8c1b8;
    max-width: 660px;
    margin: 0;
}

.side-stack {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
}

.side-card {
    position: relative;
    min-height: 310px;
    overflow: hidden;
    background: #111;
}

.side-card::after {
    content: "";
    position: absolute;
    inset: 35% 0 0;
    background: linear-gradient(
        180deg,
        transparent,
        rgba(0, 0, 0, .9)
    );
}

.side-card .txt {
    position: absolute;
    z-index: 2;
    left: 24px;
    right: 24px;
    bottom: 22px;
}

.side-card h3 {
    font-family: "Playfair Display", serif;
    font-size: 2rem;
    line-height: 1;
    margin: 4px 0 6px;
}

.side-card p {
    font-size: .85rem;
    color: #bfb8af;
    margin: 0;
}


/* =========================================================
   LUXE STRIP
========================================================= */

.luxe-strip {
    margin-top: 22px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
}

.luxe-strip div {
    background: #090909;
    padding: 22px 18px;
    min-height: 120px;
}

.luxe-strip b {
    display: block;
    font-family: "Italiana", serif;
    font-weight: 400;
    text-transform: uppercase;
    font-size: 1.5rem;
    letter-spacing: .04em;
    margin-bottom: 7px;
}

.luxe-strip span {
    color: #8f8982;
    font-size: .82rem;
}

.luxe-strip div:nth-child(2) b {
    color: var(--pink);
}

.luxe-strip div:nth-child(3) b {
    color: var(--lime);
}

.luxe-strip div:nth-child(4) b {
    color: var(--gold);
}


/* =========================================================
   TRAVEL
========================================================= */

.travel-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.story {
    background: #0b0b0b;
    border: 1px solid var(--line);
}

.story .image {
    aspect-ratio: 4 / 5;
    overflow: hidden;
}

.story .body {
    padding: 22px;
}

.story .meta {
    font-size: .64rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--gold);
}

.story h3 {
    font-family: "Playfair Display", serif;
    font-size: 1.8rem;
    line-height: 1.05;
    margin: 8px 0;
}

.story p {
    margin: 0;
    color: #979089;
    font-size: .9rem;
}


/* =========================================================
   PLANS
========================================================= */

.plans {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 60px;
    align-items: start;
}

.plan-intro {
    position: sticky;
    top: 125px;
}

.plan-intro h2 {
    max-width: 480px;
}

.plan-intro .scribble {
    font-family: "Playfair Display", serif;
    font-style: italic;
    color: var(--pink);
    font-size: 1.25rem;
    margin-top: 18px;
}

.plan-list {
    border-top: 1px solid var(--line);
}

.plan {
    display: grid;
    grid-template-columns: 110px 1fr auto;
    gap: 22px;
    align-items: center;
    padding: 26px 0;
    border-bottom: 1px solid var(--line);
}

.plan-date {
    font-family: "Italiana", serif;
    font-size: 1.7rem;
    text-transform: uppercase;
    color: var(--gold);
}

.plan-date small {
    display: block;
    font-family: "DM Sans", sans-serif;
    font-size: .62rem;
    letter-spacing: .18em;
    color: #7b756f;
    margin-top: 5px;
}

.plan b {
    display: block;
    font-family: "Playfair Display", serif;
    font-size: 1.5rem;
    margin-bottom: 4px;
}

.plan span {
    color: #8f8982;
    font-size: .88rem;
}

.arrow {
    width: 38px;
    height: 38px;
    border: 1px solid var(--gold);
    display: grid;
    place-items: center;
    color: var(--gold);
}


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

.about {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 48px;
    align-items: center;
}

.about-image {
    aspect-ratio: 4 / 5;
    overflow: hidden;
    position: relative;
}

.about-image::after {
    content: "N";
    position: absolute;
    right: 20px;
    bottom: -12px;
    font-family: "Italiana", serif;
    font-size: 10rem;
    color: rgba(255, 255, 255, .13);
}

.about-copy .hello {
    font-family: "Playfair Display", serif;
    font-size: 1.1rem;
    font-style: italic;
    color: var(--pink);
}

.about-copy h2 {
    font-size: clamp(3.2rem, 5vw, 5.7rem);
    margin: 8px 0 18px;
}

.about-copy p {
    color: #aaa39a;
    font-size: 1.04rem;
    max-width: 650px;
}

.facts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    margin-top: 28px;
}

.fact {
    background: #090909;
    padding: 18px;
}

.fact small {
    display: block;
    text-transform: uppercase;
    letter-spacing: .16em;
    color: #6f6963;
    font-size: .62rem;
    margin-bottom: 5px;
}

.fact b {
    font-family: "Playfair Display", serif;
    font-size: 1.08rem;
    font-weight: 600;
}


/* =========================================================
   FOLLOW / CTA
========================================================= */

.follow {
    margin: 78px auto 96px;
    border: 1px solid var(--gold);
    padding: 58px 35px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(199, 163, 90, .15),
            transparent 45%
        ),
        #080808;
}

.follow::before,
.follow::after {
    content: "";
    position: absolute;
    width: 90px;
    height: 3px;
    top: 50%;
    background: var(--lime);
}

.follow::before {
    left: 0;
}

.follow::after {
    right: 0;
    background: var(--pink);
}

.follow .small {
    color: var(--gold);
    font-size: .68rem;
    text-transform: uppercase;
    letter-spacing: .25em;
}

.follow h2 {
    font-family: "Italiana", serif;
    text-transform: uppercase;
    font-size: clamp(3.4rem, 6vw, 6.5rem);
    font-weight: 400;
    line-height: .88;
    margin: 16px 0 12px;
}

.follow p {
    color: #aaa39a;
    max-width: 600px;
    margin: 0 auto 24px;
}

.follow a {
    display: inline-block;
    padding: 13px 21px;
    border: 1px solid #fff;
    text-transform: uppercase;
    letter-spacing: .15em;
    font-size: .72rem;
    transition: .25s;
}

.follow a:hover {
    background: #fff;
    color: #000;
}


/* =========================================================
   FOLLOW LINKS
========================================================= */

.follow-links {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.follow-links a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-width: 145px;
    justify-content: center;
}

.follow-links i {
    font-size: .95rem;
}


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

footer {
    border-top: 1px solid var(--line);
    padding: 30px 0 42px;
    color: #6e6862;
    font-size: .77rem;
}

.foot {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}


/* =========================================================
   FLOATING LANGUAGE WIDGET
========================================================= */

.language-widget {
    position: fixed;
    left: 22px;
    bottom: 22px;
    z-index: 1000;
    font-family: "DM Sans", sans-serif;
}

.language-widget-toggle {
    height: 46px;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 0 14px;
    border: 1px solid var(--gold);
    background: rgba(9, 9, 9, .94);
    color: var(--gold);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: .12em;
    font: 600 .66rem / 1 "DM Sans", sans-serif;
    transition: .25s ease;
}

.language-widget-toggle:hover,
.language-widget.open .language-widget-toggle {
    background: var(--gold);
    color: #090909;
}

.language-widget-icon {
    font-size: .95rem;
}

.language-widget-arrow {
    font-size: .62rem;
    transition: transform .25s ease;
}

.language-widget.open .language-widget-arrow {
    transform: rotate(180deg);
}

.language-widget-panel {
    position: absolute;
    left: 0;
    bottom: 56px;
    width: min(330px, calc(100vw - 28px));
    padding: 17px;
    background: rgba(9, 9, 9, .98);
    border: 1px solid var(--line);
    box-shadow: 0 16px 50px rgba(0, 0, 0, .45);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: .22s ease;
}

.language-widget.open .language-widget-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-widget-heading {
    margin-bottom: 12px;
    color: var(--gold);
    font-size: .67rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .16em;
}

.gtranslate_wrapper {
    min-height: 30px;
}


/* Prevent Google Translate top banner */

body {
    top: 0 !important;
}

.skiptranslate iframe,
.VIpgJd-ZVi9od-ORHb-OEVmcd {
    display: none !important;
}


/* =========================================================
   GTRANSLATE SELECT
========================================================= */

.language-widget-panel .gt_selector {
    width: 100%;
    min-width: 220px;
    padding: 12px 40px 12px 14px;

    background: #0b0b0b;
    color: #d6ad55;

    border: 1px solid rgba(214, 173, 85, .45);
    border-radius: 0;

    font-family: "DM Sans", sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .06em;

    outline: none;
    cursor: pointer;

    appearance: auto;
}

.language-widget-panel .gt_selector:hover,
.language-widget-panel .gt_selector:focus {
    border-color: #d6ad55;
}

.language-widget-panel .gt_selector option {
    background: #111;
    color: #fff;
}


/* =========================================================
   BACK TO TOP
========================================================= */

.back-to-top {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 46px;
    height: 46px;
    border: 1px solid var(--gold);
    background: rgba(9, 9, 9, .92);
    color: var(--gold);
    font-size: 1.25rem;
    display: grid;
    place-items: center;
    cursor: pointer;
    z-index: 999;

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);

    transition:
        opacity .25s ease,
        transform .25s ease,
        visibility .25s ease,
        background .25s ease,
        color .25s ease;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--gold);
    color: #090909;
}


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

@media (max-width: 980px) {

    .menu {
        display: none;
    }

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

    .brand {
        text-align: left;
    }

    .nav-right {
        justify-content: flex-end;
    }

    .hero-grid {
        height: 630px;
        grid-template-columns: 1fr 1fr;
    }

    .hero-grid figure:first-child {
        grid-row: auto;
    }

    .hero-grid figure:nth-child(4) {
        grid-column: auto;
    }

    .hero-grid figure:nth-child(3) {
        display: none;
    }

    .hero-copy {
        width: 82%;
    }

    .manifesto,
    .editorial,
    .plans,
    .about {
        grid-template-columns: 1fr;
    }

    .plan-intro {
        position: static;
    }

    .side-stack {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: none;
    }

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

    .luxe-strip {
        grid-template-columns: 1fr 1fr;
    }

    .section-head {
        align-items: start;
        flex-direction: column;
    }

    .section-head p {
        text-align: left;
    }

}


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

@media (max-width: 640px) {

    .wrap {
        width: min(calc(100% - 22px), 1320px);
    }


    /* HEADER */

    .nav {
        min-height: 72px;
    }

    .brand {
        font-size: 1.55rem;
    }

    .brand small {
        font-size: .47rem;
    }

    .social {
        display: none;
    }

    .follow-btn {
        padding: 8px 10px;
        font-size: .61rem;
    }


    /* HERO */

    .hero {
        padding-top: 12px;
    }

    /*
     * Mobile hero becomes a real stacked layout instead of
     * trying to squeeze the desktop absolute-positioned card
     * into a 520px box.
     */

    .hero-grid {
        height: auto;
        min-height: 620px;

        grid-template-columns: 1fr 1fr;
        grid-template-rows: 260px auto;

        gap: 4px;
        align-items: stretch;
    }

    .hero-grid figure {
        min-height: 260px;
    }

    .hero-grid figure:first-child {
        display: block;
        grid-column: 1;
        grid-row: 1;
    }

    .hero-grid figure:nth-child(2) {
        display: block;
        grid-column: 2;
        grid-row: 1;
    }

    .hero-grid figure:nth-child(3),
    .hero-grid figure:nth-child(4) {
        display: none;
    }

    .hero-copy {
        position: relative;

        left: auto;
        top: auto;
        transform: none;

        grid-column: 1 / -1;
        grid-row: 2;

        width: calc(100% - 36px);
        margin: -34px auto 0;

        padding: 28px 20px;

        align-self: start;
    }

    .hero-copy .kicker {
        line-height: 1.5;
    }

    .hero-copy h1 {
        font-size: clamp(3rem, 14vw, 4rem);
        line-height: .9;
    }

    .hero-copy h1 span {
        font-size: .46em;
        line-height: 1.1;
    }

    .hero-copy p {
        font-size: .87rem;
        line-height: 1.6;
    }


    /* MANIFESTO */

    .manifesto {
        gap: 26px;
        padding: 44px 0 54px;
    }


    /* SECTIONS */

    .section {
        padding: 54px 0;
    }


    /* EDITORIAL */

    .feature {
        min-height: 510px;
    }

    .side-stack {
        grid-template-columns: 1fr;
    }


    /* LUXE STRIP */

    .luxe-strip {
        grid-template-columns: 1fr;
    }


    /* TRAVEL */

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


    /* PLANS */

    .plan {
        grid-template-columns: 78px 1fr auto;
    }


    /* ABOUT */

    .about {
        gap: 28px;
    }

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


    /* FOLLOW */

    .follow {
        padding-left: 18px;
        padding-right: 18px;
    }

    .follow::before,
    .follow::after {
        display: none;
    }

    /*
     * @prettynayatravels is a handle, not a headline.
     * Keep the gorgeous Italiana type, but don't let the
     * bloody thing attempt to occupy neighbouring countries.
     */

    .follow .social-handle,
    .follow h2 {
        font-size: clamp(1.8rem, 7.5vw, 2.5rem);
        line-height: 1;
        letter-spacing: 0;
        white-space: nowrap;
        overflow-wrap: normal;
        word-break: normal;
    }


    /* LANGUAGE */

    .language-widget {
        left: 14px;
        bottom: 14px;
    }

    .language-widget-toggle {
        width: 42px;
        height: 42px;
        padding: 0;
        justify-content: center;
    }

    .language-widget-label,
    .language-widget-arrow {
        display: none;
    }

    .language-widget-panel {
        bottom: 50px;
    }


    /* BACK TO TOP */

    .back-to-top {
        right: 14px;
        bottom: 14px;
        width: 42px;
        height: 42px;
    }

}