/* =========================================================
   SIR TRAVEL — STYLE
   ========================================================= */

:root {
    --black: #0b0b0b;
    --dark: #111111;
    --white: #ffffff;
    --cream: #f3f0e9;
    --soft: #e7e2d8;
    --gray: #99958d;
    --line: rgba(255,255,255,0.16);
    --dark-line: rgba(0,0,0,0.14);
    --gold: #c6a66b;

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

    --container: 1280px;
}

/* RESET */

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--cream);
    color: var(--black);
    font-family: var(--sans);
    overflow-x: hidden;
}

body.modal-open {
    overflow: hidden;
}

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

button,
input,
textarea,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

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


/* =========================================================
   LOADER
   ========================================================= */

.loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity .7s ease, visibility .7s ease;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-logo img {
    width: 170px;
    max-height: 80px;
    object-fit: contain;
}


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

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 24px 40px;
    color: var(--white);
    transition:
        background .35s ease,
        padding .35s ease,
        color .35s ease;
}

.header.scrolled {
    padding: 15px 40px;
    background: rgba(10,10,10,.88);
    backdrop-filter: blur(16px);
}

.header-inner {
    max-width: var(--container);
    margin: auto;

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

.logo {
    display: flex;
    align-items: center;
    width: 150px;
}

.logo img {
    width: 100%;
    height: 52px;
    object-fit: contain;
    object-position: left center;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 34px;
    margin-left: auto;
}

.desktop-nav a {
    font-size: 13px;
    letter-spacing: .08em;
    text-transform: uppercase;
    opacity: .85;
    transition: opacity .25s ease;
}

.desktop-nav a:hover {
    opacity: 1;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.languages {
    display: flex;
    gap: 5px;
}

.lang {
    border: 0;
    background: transparent;
    color: inherit;
    font-size: 11px;
    letter-spacing: .08em;
    padding: 5px;
    opacity: .5;
}

.lang.active,
.lang:hover {
    opacity: 1;
}

.header-button {
    border: 1px solid rgba(255,255,255,.55);
    padding: 12px 18px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .08em;
    transition: all .3s ease;
}

.header-button:hover {
    background: var(--white);
    color: var(--black);
}


/* MENU BUTTON */

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255,255,255,.4);
    background: transparent;
    position: relative;
}

.menu-toggle span {
    position: absolute;
    left: 11px;
    width: 19px;
    height: 1px;
    background: currentColor;
    transition: transform .3s ease;
}

.menu-toggle span:first-child {
    top: 16px;
}

.menu-toggle span:last-child {
    top: 23px;
}


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

.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 900;
    background: var(--black);
    color: var(--white);

    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;

    transform: translateX(100%);
    transition: transform .45s cubic-bezier(.77,0,.18,1);
}

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

.mobile-menu nav {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.mobile-menu nav a {
    font-family: var(--serif);
    font-size: clamp(38px, 10vw, 72px);
}

.mobile-languages {
    display: flex;
    gap: 10px;
    margin-top: 45px;
}

.mobile-languages .lang {
    border: 1px solid rgba(255,255,255,.3);
    padding: 10px 14px;
}


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

.hero {
    min-height: 100vh;
    position: relative;
    background: var(--black);
    color: var(--white);
    overflow: hidden;

    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    inset: -5%;
    background-image:
        url("https://images.unsplash.com/photo-1519681393784-d120267933ba?auto=format&fit=crop&w=2200&q=90");
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
}

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

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.78) 0%,
            rgba(0,0,0,.48) 45%,
            rgba(0,0,0,.20) 100%
        ),
        linear-gradient(
            0deg,
            rgba(0,0,0,.7),
            transparent 50%
        );
}

.hero-content {
    position: relative;
    z-index: 2;

    width: min(900px, calc(100% - 80px));
    margin: auto;
    padding-top: 80px;
}

.hero-small {
    font-size: 11px;
    letter-spacing: .24em;
    margin-bottom: 26px;
    color: rgba(255,255,255,.75);
}

.hero h1 {
    font-family: var(--serif);
    font-size: clamp(58px, 8vw, 120px);
    line-height: .92;
    font-weight: 500;
    max-width: 900px;
    letter-spacing: -.045em;
}

.hero p {
    max-width: 570px;
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255,255,255,.78);
    margin-top: 35px;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 38px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 52px;
    padding: 0 25px;

    border: 1px solid transparent;

    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .1em;

    transition:
        background .3s ease,
        color .3s ease,
        border .3s ease,
        transform .3s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-light {
    background: var(--white);
    color: var(--black);
}

.btn-light:hover {
    background: var(--soft);
}

.btn-outline {
    border-color: rgba(255,255,255,.55);
    color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--black);
}

.btn-dark {
    background: var(--black);
    color: var(--white);
}

.btn-dark:hover {
    background: #292929;
}

.hero-bottom {
    position: absolute;
    z-index: 3;
    bottom: 28px;
    left: 40px;
    right: 40px;

    display: flex;
    justify-content: space-between;

    font-size: 10px;
    letter-spacing: .2em;
    color: rgba(255,255,255,.65);
}

.scroll-text {
    animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {
    0%,100% {
        opacity: .4;
    }

    50% {
        opacity: 1;
    }
}


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

.section {
    max-width: var(--container);
    margin: auto;
    padding: 125px 40px;
}

.section-number {
    font-size: 10px;
    letter-spacing: .18em;
    color: #8c887f;
    margin-bottom: 50px;
}

.section-heading {
    max-width: 900px;
}

.section-heading h2 {
    font-family: var(--serif);
    font-weight: 500;
    font-size: clamp(40px, 5.5vw, 75px);
    line-height: 1.02;
    letter-spacing: -.035em;
}

.section-heading p {
    margin-top: 25px;
    max-width: 580px;
    line-height: 1.7;
    color: #67635c;
}


/* =========================================================
   INTRO
   ========================================================= */

.intro {
    padding-top: 145px;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    gap: 100px;
}

.intro h2 {
    font-family: var(--serif);
    font-size: clamp(44px, 5vw, 72px);
    line-height: 1.02;
    font-weight: 500;
    letter-spacing: -.04em;
}

.intro-grid p {
    color: #67635c;
    font-size: 17px;
    line-height: 1.8;
    max-width: 500px;
}

.text-link {
    display: inline-block;
    margin-top: 28px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .1em;
    border-bottom: 1px solid var(--black);
    padding-bottom: 7px;
}


/* =========================================================
   MOODS
   ========================================================= */

.moods {
    border-top: 1px solid var(--dark-line);
}

.mood-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    margin-top: 65px;
    background: var(--dark-line);
    border: 1px solid var(--dark-line);
}

.mood-card {
    text-align: left;
    border: 0;
    background: var(--cream);
    min-height: 260px;
    padding: 30px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    transition:
        background .35s ease,
        color .35s ease,
        transform .35s ease;
}

.mood-card span {
    font-size: 11px;
    color: #88847b;
}

.mood-card strong {
    font-family: var(--serif);
    font-size: 35px;
    font-weight: 500;
}

.mood-card small {
    font-size: 13px;
    color: #77736b;
    line-height: 1.5;
    max-width: 250px;
}

.mood-card:hover {
    background: var(--black);
    color: var(--white);
    transform: translateY(-4px);
}

.mood-card:hover span,
.mood-card:hover small {
    color: rgba(255,255,255,.55);
}


/* =========================================================
   DESTINATIONS
   ========================================================= */

.destinations {
    max-width: none;
    background: var(--black);
    color: var(--white);
}

.destinations > * {
    max-width: var(--container);
    margin-left: auto;
    margin-right: auto;
}

.destinations .section-number {
    color: rgba(255,255,255,.5);
}

.destinations .section-heading p {
    color: rgba(255,255,255,.6);
}

.destination-grid {
    max-width: none !important;
    margin-top: 65px !important;

    display: grid;
    grid-template-columns: 1.3fr .85fr .85fr;
    min-height: 650px;
}

.destination-card {
    position: relative;
    overflow: hidden;
    min-height: 650px;

    background-size: cover;
    background-position: center;

    display: flex;
    align-items: flex-end;
}

.destination-lapland {
    background-image:
        url("https://images.unsplash.com/photo-1483347756197-71ef80e95f73?auto=format&fit=crop&w=1400&q=85");
}

.destination-europe {
    background-image:
        url("https://images.unsplash.com/photo-1500534623283-312aade485b7?auto=format&fit=crop&w=1200&q=85");
}

.destination-armenia {
    background-image:
        url("https://images.unsplash.com/photo-1548013146-72479768bada?auto=format&fit=crop&w=1200&q=85");
}

.destination-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            0deg,
            rgba(0,0,0,.82),
            rgba(0,0,0,.05) 70%
        );
}

.destination-content {
    position: relative;
    z-index: 2;
    padding: 35px;
    width: 100%;
}

.destination-content span {
    font-size: 10px;
    letter-spacing: .16em;
    opacity: .65;
}

.destination-content h3 {
    font-family: var(--serif);
    font-size: clamp(40px, 5vw, 68px);
    font-weight: 500;
    margin-top: 12px;
}

.destination-content p {
    max-width: 390px;
    color: rgba(255,255,255,.72);
    line-height: 1.6;
    margin-top: 10px;
}

.destination-button {
    margin-top: 24px;
    border: 1px solid rgba(255,255,255,.45);
    background: transparent;
    color: white;
    padding: 12px 17px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.destination-button:hover {
    background: white;
    color: black;
}


/* =========================================================
   SECRET TRIP
   ========================================================= */

.secret-trip {
    max-width: none;
    min-height: 650px;
    position: relative;

    display: flex;
    align-items: center;

    color: var(--white);
    overflow: hidden;
}

.secret-background {
    position: absolute;
    inset: 0;

    background-image:
        url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=2200&q=90");
    background-size: cover;
    background-position: center;
}

.secret-trip::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.58);
}

.secret-content {
    position: relative;
    z-index: 2;
    max-width: var(--container);
    width: 100%;
    margin: auto;
    padding: 40px;
}

.secret-content .section-number {
    color: rgba(255,255,255,.6);
}

.secret-content h2 {
    font-family: var(--serif);
    font-size: clamp(55px, 8vw, 105px);
    font-weight: 500;
    line-height: .95;
    max-width: 900px;
}

.secret-content p {
    max-width: 520px;
    line-height: 1.7;
    color: rgba(255,255,255,.72);
    margin: 28px 0;
}


/* =========================================================
   QUIZ
   ========================================================= */

.quiz {
    background: var(--soft);
    max-width: none;
}

.quiz > * {
    max-width: var(--container);
    margin-left: auto;
    margin-right: auto;
}

.quiz-header h2 {
    font-family: var(--serif);
    font-size: clamp(50px, 7vw, 95px);
    font-weight: 500;
    line-height: .95;
    letter-spacing: -.04em;
}

.quiz-header p {
    max-width: 500px;
    margin-top: 25px;
    color: #666;
    line-height: 1.7;
}

.quiz-box {
    margin-top: 65px;
    background: var(--white);
    padding: 60px;
    min-height: 480px;
    position: relative;
}

.quiz-progress {
    position: absolute;
    top: 35px;
    right: 40px;
    font-size: 11px;
    letter-spacing: .1em;
}

.quiz-question {
    display: none;
    max-width: 900px;
    padding-top: 20px;
}

.quiz-question.active {
    display: block;
}

.quiz-question > span {
    color: #999;
    font-size: 11px;
}

.quiz-question h3 {
    font-family: var(--serif);
    font-weight: 500;
    font-size: clamp(38px, 5vw, 62px);
    margin-top: 18px;
}

.quiz-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 40px;
}

.quiz-options button {
    min-height: 65px;
    text-align: left;
    padding: 0 20px;

    border: 1px solid var(--dark-line);
    background: transparent;

    transition: all .25s ease;
}

.quiz-options button:hover {
    background: var(--black);
    color: white;
}

.quiz-result {
    display: none;
    padding-top: 20px;
    max-width: 800px;
}

.quiz-result.active {
    display: block;
}

.quiz-result > span {
    font-size: 10px;
    letter-spacing: .18em;
    color: #999;
}

.quiz-result h3 {
    font-family: var(--serif);
    font-size: clamp(45px, 6vw, 75px);
    font-weight: 500;
    margin: 15px 0;
}

.quiz-result p {
    color: #777;
    margin-bottom: 30px;
}


/* =========================================================
   BUILD
   ========================================================= */

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

.build-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--dark-line);
    border-bottom: 1px solid var(--dark-line);
    margin-top: 65px;
}

.build-item {
    min-height: 300px;
    padding: 30px;
    border-right: 1px solid var(--dark-line);

    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

.build-item > span {
    font-size: 11px;
    color: #999;
}

.build-item strong {
    font-family: var(--serif);
    font-size: 30px;
    font-weight: 500;
}

.build-item p {
    color: #777;
    font-size: 13px;
    line-height: 1.6;
}


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

.journey {
    background: var(--black);
    color: var(--white);
    max-width: none;
}

.journey > * {
    max-width: var(--container);
    margin-left: auto;
    margin-right: auto;
}

.journey .section-number {
    color: rgba(255,255,255,.45);
}

.journey-title h2 {
    font-family: var(--serif);
    font-size: clamp(55px, 8vw, 110px);
    font-weight: 500;
    line-height: .9;
    letter-spacing: -.05em;
}

.journey-line {
    margin-top: 100px;

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

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

.journey-line > div {
    min-height: 280px;
    padding: 28px 25px;
    border-right: 1px solid var(--line);
}

.journey-line > div:last-child {
    border-right: 0;
}

.journey-line span {
    font-size: 11px;
    color: rgba(255,255,255,.45);
}

.journey-line h3 {
    font-family: var(--serif);
    font-size: 28px;
    font-weight: 500;
    margin-top: 80px;
}

.journey-line p {
    color: rgba(255,255,255,.55);
    line-height: 1.6;
    font-size: 13px;
    margin-top: 15px;
}


/* =========================================================
   WHY
   ========================================================= */

.why {
    max-width: none;
}

.why > * {
    max-width: var(--container);
    margin-left: auto;
    margin-right: auto;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 65px;
    border-top: 1px solid var(--dark-line);
}

.why-card {
    min-height: 300px;
    padding: 30px;
    border-right: 1px solid var(--dark-line);
}

.why-card:last-child {
    border-right: 0;
}

.why-card span {
    font-size: 11px;
    color: #999;
}

.why-card h3 {
    font-family: var(--serif);
    font-size: 38px;
    font-weight: 500;
    margin-top: 90px;
}

.why-card p {
    color: #777;
    line-height: 1.6;
    margin-top: 15px;
    max-width: 320px;
}


/* =========================================================
   STORIES
   ========================================================= */

.stories {
    max-width: none;
    background: var(--soft);
}

.stories > * {
    max-width: var(--container);
    margin-left: auto;
    margin-right: auto;
}

.stories-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
}

.stories-heading h2 {
    font-family: var(--serif);
    font-size: clamp(50px, 7vw, 95px);
    line-height: .92;
    font-weight: 500;
    letter-spacing: -.04em;
}

.stories-heading a {
    border-bottom: 1px solid var(--black);
    padding-bottom: 6px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .1em;
    white-space: nowrap;
}

.stories-grid {
    margin-top: 65px;

    display: grid;
    grid-template-columns: 1.25fr .9fr .9fr;
    gap: 12px;
}

.story-card {
    min-height: 540px;
    position: relative;

    background-size: cover;
    background-position: center;

    display: flex;
    align-items: end;

    overflow: hidden;
}

.story-one {
    background-image:
        url("https://images.unsplash.com/photo-1483347756197-71ef80e95f73?auto=format&fit=crop&w=1200&q=85");
}

.story-two {
    background-image:
        url("https://images.unsplash.com/photo-1500534314209-a25ddb2bd429?auto=format&fit=crop&w=1200&q=85");
}

.story-three {
    background-image:
        url("https://images.unsplash.com/photo-1502602898657-3e91760cbb34?auto=format&fit=crop&w=1200&q=85");
}

.story-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        0deg,
        rgba(0,0,0,.8),
        transparent 65%
    );
}

.story-content {
    position: relative;
    z-index: 2;
    color: white;
    padding: 30px;
}

.story-content span {
    font-size: 9px;
    letter-spacing: .15em;
    color: rgba(255,255,255,.65);
}

.story-content h3 {
    font-family: var(--serif);
    font-weight: 500;
    font-size: 32px;
    line-height: 1.05;
    max-width: 450px;
    margin: 12px 0 25px;
}

.story-content a {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .1em;
}


/* =========================================================
   TESTIMONIAL
   ========================================================= */

.testimonial {
    text-align: center;
    max-width: 1000px;
    padding-top: 150px;
    padding-bottom: 150px;
}

.quote-mark {
    font-family: var(--serif);
    font-size: 100px;
    line-height: .5;
    color: #aaa;
}

.testimonial blockquote {
    font-family: var(--serif);
    font-size: clamp(38px, 5vw, 66px);
    line-height: 1.05;
    font-weight: 500;
    letter-spacing: -.03em;
    margin-top: 35px;
}

.testimonial-author {
    margin-top: 35px;
    font-size: 12px;
}

.testimonial-author span {
    display: block;
    color: #999;
    margin-top: 7px;
}


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

.contact {
    max-width: none;
    background: var(--white);
}

.contact > * {
    max-width: var(--container);
    margin-left: auto;
    margin-right: auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 120px;
}

.contact-info h2 {
    font-family: var(--serif);
    font-size: clamp(55px, 7vw, 100px);
    line-height: .9;
    font-weight: 500;
    letter-spacing: -.05em;
}

.contact-info > p {
    color: #777;
    max-width: 430px;
    line-height: 1.7;
    margin-top: 30px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 40px;
}

.contact-details a {
    font-size: 15px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-form label {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.contact-form label span {
    font-size: 10px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #777;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    border: 0;
    border-bottom: 1px solid var(--dark-line);
    background: transparent;
    padding: 13px 0;
    outline: none;
    color: var(--black);
    border-radius: 0;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    border-color: var(--black);
}

.form-status {
    font-size: 12px;
    min-height: 20px;
}


/* =========================================================
   FINAL CTA
   ========================================================= */

.final-cta {
    min-height: 650px;
    background: var(--black);
    color: var(--white);

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

    text-align: center;
    padding: 60px 30px;
}

.final-cta-content > span {
    font-size: 10px;
    letter-spacing: .2em;
    opacity: .55;
}

.final-cta h2 {
    font-family: var(--serif);
    font-size: clamp(60px, 9vw, 130px);
    font-weight: 500;
    line-height: .88;
    letter-spacing: -.05em;
    max-width: 1000px;
    margin: 25px auto 40px;
}


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

.footer {
    background: var(--black);
    color: var(--white);
    padding: 70px 40px 30px;
    border-top: 1px solid var(--line);
}

.footer-top {
    max-width: var(--container);
    margin: auto;

    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
}

.footer-brand img {
    width: 145px;
    height: 50px;
    object-fit: contain;
    object-position: left;
}

.footer-brand p {
    color: rgba(255,255,255,.45);
    font-size: 13px;
    margin-top: 20px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column span {
    font-size: 9px;
    letter-spacing: .15em;
    color: rgba(255,255,255,.4);
    margin-bottom: 8px;
}

.footer-column a {
    font-size: 13px;
    color: rgba(255,255,255,.75);
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    max-width: var(--container);
    margin: 80px auto 0;

    padding-top: 20px;
    border-top: 1px solid var(--line);

    display: flex;
    justify-content: space-between;
    gap: 20px;

    color: rgba(255,255,255,.4);
    font-size: 10px;
}


/* =========================================================
   MODALS
   ========================================================= */

.modal {
    position: fixed;
    inset: 0;
    z-index: 5000;

    background: rgba(0,0,0,.75);
    backdrop-filter: blur(12px);

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

    padding: 25px;

    opacity: 0;
    visibility: hidden;

    transition:
        opacity .3s ease,
        visibility .3s ease;
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-box {
    position: relative;

    width: min(650px, 100%);
    background: var(--cream);
    color: var(--black);

    padding: 60px;
    transform: translateY(20px);
    transition: transform .35s ease;
}

.modal.active .modal-box {
    transform: translateY(0);
}

.modal-box > span {
    font-size: 10px;
    letter-spacing: .16em;
    color: #888;
}

.modal-box h2 {
    font-family: var(--serif);
    font-size: clamp(45px, 6vw, 70px);
    line-height: .95;
    font-weight: 500;
    margin: 18px 0;
}

.modal-box p {
    color: #666;
    line-height: 1.7;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;

    width: 40px;
    height: 40px;

    border: 1px solid var(--dark-line);
    background: transparent;

    font-size: 25px;
    line-height: 1;
}

.modal-close:hover {
    background: var(--black);
    color: white;
}

.secret-options {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 8px;
    margin: 30px 0;
}

.secret-options button {
    padding: 15px;
    background: transparent;
    border: 1px solid var(--dark-line);
    text-align: left;
}

.secret-options button:hover {
    background: var(--black);
    color: white;
}


/* =========================================================
   SCROLL REVEAL
   ========================================================= */

.reveal {
    opacity: 0;
    transform: translateY(35px);
    transition:
        opacity .8s ease,
        transform .8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1000px) {

    .header {
        padding: 20px;
    }

    .header.scrolled {
        padding: 14px 20px;
    }

    .desktop-nav,
    .header-button {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .hero-content {
        width: calc(100% - 40px);
    }

    .section {
        padding: 90px 25px;
    }

    .intro-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

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

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

    .destination-card {
        min-height: 500px;
    }

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

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

    .build-item:nth-child(-n+2) {
        border-bottom: 1px solid var(--dark-line);
    }

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

    .journey-line > div:nth-child(2) {
        border-right: 0;
    }

    .journey-line > div:nth-child(-n+2) {
        border-bottom: 1px solid var(--line);
    }

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

    .why-card {
        border-right: 0;
        border-bottom: 1px solid var(--dark-line);
    }

    .why-card:last-child {
        border-bottom: 0;
    }

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

    .story-card:first-child {
        grid-column: span 2;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: span 2;
    }
}


@media (max-width: 650px) {

    .logo {
        width: 120px;
    }

    .logo img {
        height: 42px;
    }

    .header-actions {
        gap: 7px;
    }

    .languages {
        gap: 0;
    }

    .lang {
        font-size: 10px;
        padding: 4px;
    }

    .hero {
        min-height: 100svh;
    }

    .hero-content {
        padding-top: 60px;
    }

    .hero h1 {
        font-size: clamp(48px, 15vw, 76px);
    }

    .hero p {
        font-size: 15px;
    }

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

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .section {
        padding: 75px 20px;
    }

    .section-number {
        margin-bottom: 35px;
    }

    .intro h2 {
        font-size: 42px;
    }

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

    .mood-card {
        min-height: 220px;
    }

    .destination-content {
        padding: 25px;
    }

    .destination-card {
        min-height: 450px;
    }

    .secret-trip {
        min-height: 580px;
    }

    .secret-content {
        padding: 25px;
    }

    .secret-content h2 {
        font-size: 58px;
    }

    .quiz-box {
        padding: 45px 22px;
    }

    .quiz-options {
        grid-template-columns: 1fr;
    }

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

    .build-item {
        border-right: 0;
        border-bottom: 1px solid var(--dark-line);
        min-height: 230px;
    }

    .build-item:nth-child(2) {
        border-bottom: 1px solid var(--dark-line);
    }

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

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

    .journey-line > div {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .journey-line > div:last-child {
        border-bottom: 0;
    }

    .journey-line h3 {
        margin-top: 50px;
    }

    .stories-heading {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .story-card:first-child {
        grid-column: auto;
    }

    .story-card {
        min-height: 430px;
    }

    .contact-grid {
        gap: 55px;
    }

    .contact-info h2 {
        font-size: 60px;
    }

    .final-cta {
        min-height: 520px;
    }

    .final-cta h2 {
        font-size: 64px;
    }

    .footer {
        padding: 55px 20px 25px;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        grid-column: auto;
    }

    .footer-bottom {
        flex-direction: column;
        margin-top: 55px;
    }

    .modal-box {
        padding: 45px 25px;
    }

    .secret-options {
        grid-template-columns: 1fr;
    }
}


/* =========================================================
   SMALL SCREEN FIXES
   ========================================================= */

@media (max-width: 380px) {

    .hero h1 {
        font-size: 44px;
    }

    .secret-content h2 {
        font-size: 48px;
    }

    .final-cta h2 {
        font-size: 52px;
    }

    .logo {
        width: 105px;
    }
}