/* =========================
   BASIC SETTINGS
========================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: #ffffff;
    background: #f5f1e8;
}


/* =========================
   NAVIGATION
========================= */

.navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 28px 6%;

    z-index: 100;

    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar.scrolled {
    position: fixed;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 1280px;
    
    padding: 18px 32px;
    
    background: rgba(11, 20, 28, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    
    border: 1px solid rgba(216, 188, 122, 0.15);
    border-radius: 12px;
    
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.logo {
    color: white;
    text-decoration: none;

    font-size: 24px;
    font-weight: 800;
    letter-spacing: 3px;
    
    transition: font-size 0.3s;
}

.navbar.scrolled .logo {
    font-size: 20px;
}

.logo span {
    display: block;

    font-size: 10px;
    letter-spacing: 5px;
    margin-top: 3px;

    opacity: 0.8;
}

.navbar nav {
    display: flex;
    gap: 32px;
}

.navbar nav a {
    color: white;
    text-decoration: none;

    font-size: 14px;
    font-weight: 500;

    position: relative;
    
    transition: color 0.3s;
}

.navbar nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: #d8bc7a;
    transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar nav a:hover {
    color: #d8bc7a;
}

.navbar nav a:hover::after {
    width: 100%;
}

.nav-button {
    background: #c8a45d;
    color: #17202a;

    text-decoration: none;

    padding: 13px 22px;

    font-size: 13px;
    font-weight: 700;

    border-radius: 4px;
    
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-button:hover {
    background: #d8a85f;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(200, 164, 93, 0.25);
}

:focus-visible {
    outline: 2px solid #d8bc7a;
    outline-offset: 4px;
}

a:focus-visible {
    outline: 2px solid #d8bc7a;
    outline-offset: 2px;
}

button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid #d8bc7a;
    outline-offset: 2px;
}

/* =========================
   SECTION SCROLL MARGIN
========================= */

section {
    scroll-margin-top: 100px;
}

.hero {
    scroll-margin-top: 0;
}

/* =========================
   MOBILE MENU BUTTON
========================= */

.mobile-menu-button {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 101;
}

.mobile-menu-button span {
    width: 24px;
    height: 2px;
    background: white;
    border-radius: 1px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu-button[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg) translateY(10px);
}

.mobile-menu-button[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-button[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg) translateY(-10px);
}

.navbar.scrolled .mobile-menu-button span {
    background: white;
}

/* =========================
   MOBILE MENU
========================= */

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(11, 20, 28, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 50;
    
    display: flex;
    align-items: center;
    justify-content: center;
    
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu.open {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    text-align: center;
}

.mobile-menu-link {
    color: white;
    text-decoration: none;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.5px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
    transform: translateY(20px);
}

.mobile-menu.open .mobile-menu-link {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu-link:nth-child(1) {
    transition-delay: 0.1s;
}

.mobile-menu-link:nth-child(2) {
    transition-delay: 0.15s;
}

.mobile-menu-link:nth-child(3) {
    transition-delay: 0.2s;
}

.mobile-menu-link:nth-child(4) {
    transition-delay: 0.25s;
}

.mobile-menu-link:hover {
    color: #d8bc7a;
}

.mobile-menu-cta {
    color: white;
    text-decoration: none;
    background: #c8a45d;
    color: #17202a;
    padding: 16px 28px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    
    display: inline-block;
    
    margin-top: 20px;
    
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: 0.3s;
}

.mobile-menu.open .mobile-menu-cta {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu-cta:hover {
    background: #d8a85f;
    transform: translateY(-2px);
}

/* =========================
   HERO
========================= */

.hero {
    position: relative;

    min-height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    background: #0b141c;
}
/* HERO BACKGROUND */

.hero-bg {
    position: absolute;

    inset: -8%;

    background-image:
        url("https://images.unsplash.com/photo-1521336575822-6da63fb45455?auto=format&fit=crop&w=2000&q=85");

    background-size: cover;
    background-position: center;

    transform: scale(1.08);

    will-change: transform;
}

.hero-overlay {
    position: absolute;

    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(7, 17, 24, 0.88) 0%,
            rgba(7, 17, 24, 0.62) 45%,
            rgba(7, 17, 24, 0.25) 100%
        );
}

.hero-content {
    position: relative;

    z-index: 2;

    width: 88%;
    max-width: 1200px;

    margin-top: 70px;

    will-change: transform, opacity;
}
.eyebrow {
    font-size: 12px;
    letter-spacing: 4px;

    font-weight: 700;

    color: #d8bc7a;

    margin-bottom: 25px;
}

/* HERO TITLE */

.hero-title {
    margin: 0;

    max-width: 1050px;

    font-size: clamp(58px, 7.5vw, 112px);

    line-height: 0.91;

    letter-spacing: -5px;

    font-weight: 800;
}

.hero-line {
    display: block;

    overflow: hidden;

    padding-bottom: 0.08em;

    margin-bottom: -0.08em;
}

.hero-line-text {
    display: block;

    will-change: transform, opacity;
}

.hero-accent {
    color: #d8bc7a;
}

.hero-description {
    max-width: 620px;

    margin-top: 35px;

    font-size: 19px;

    line-height: 1.7;

    color: rgba(255,255,255,0.85);
}

.hero-buttons {
    display: flex;

    gap: 15px;

    margin-top: 40px;
}

.button {
    display: inline-block;

    padding: 17px 28px;

    text-decoration: none;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 1px;

    border-radius: 4px;
    
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    
    cursor: pointer;
    
    border: none;
}

.button:hover {
    transform: translateY(-4px);
}

.button:active {
    transform: translateY(-2px);
}

.button-primary {
    background: #c8a45d;

    color: #17202a;
    
    box-shadow: 0 8px 16px rgba(200, 164, 93, 0.2);
}

.button-primary:hover {
    background: #d8a85f;
    box-shadow: 0 12px 24px rgba(200, 164, 93, 0.3);
}

.button-secondary {
    border: 1.5px solid rgba(255,255,255,0.6);

    color: white;
    
    background: transparent;
    
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.button-secondary:hover {
    border-color: rgba(255,255,255,0.9);
    background: rgba(255,255,255,0.05);
    box-shadow: 0 8px 16px rgba(255,255,255,0.1);
}

.hero-bottom {
    position: absolute;

    z-index: 2;

    bottom: 28px;
    left: 6%;
    right: 6%;

    display: flex;
    justify-content: space-between;
    align-items: flex-end;

    color: rgba(255,255,255,0.65);
}

.hero-bottom p {
    margin: 0;

    font-size: 11px;

    letter-spacing: 2px;

    text-transform: uppercase;
}
/* SCROLL INDICATOR */

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 10px;

    color: rgba(255,255,255,0.65);

    text-decoration: none;
}

.scroll-indicator span {
    font-size: 9px;

    font-weight: 700;

    letter-spacing: 3px;
}

.scroll-line {
    position: relative;

    width: 1px;
    height: 48px;

    overflow: hidden;

    background: rgba(255,255,255,0.25);
}

.scroll-line-inner {
    position: absolute;

    top: -100%;
    left: 0;

    width: 100%;
    height: 100%;

    background: #d8bc7a;
}


/* =========================
   TEMPORARY SECTIONS
========================= */

.placeholder {
    min-height: 500px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #f5f1e8;

    color: #17202a;
}

.placeholder h2 {
    font-size: 50px;
}


/* =========================
   MOBILE
========================= */

@media (max-width: 800px) {

    .navbar nav {
        display: none;
    }

    .mobile-menu-button {
        display: flex;
    }

    .nav-button {
        display: none;
    }

    .navbar {
        padding: 18px 4%;
    }

    .navbar.scrolled {
        top: 12px;
        width: calc(100% - 24px);
        padding: 14px 20px;
    }

    .logo {
        font-size: 18px;
    }

    .navbar.scrolled .logo {
        font-size: 16px;
    }

    .hero-title {
        font-size: 55px;
        letter-spacing: -2.5px;
    }

    .hero-content {
        width: 88%;
        margin-top: 40px;
    }

    .hero-description {
        font-size: 17px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-bottom p {
        display: none;
    }

    .scroll-indicator {
        margin-left: auto;
    }

}

/* =========================
   WHY TROUBADOUR
========================= */

.why-section {
    background: #f5f1e8;
    color: #17202a;

    padding: 140px 6%;
}

.why-container {
    max-width: 1200px;
    margin: 0 auto;
}

.why-intro {
    max-width: 850px;
    margin-bottom: 80px;
}

.section-label {
    color: #a17d36;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 4px;

    margin-bottom: 25px;
}

.why-intro h2 {
    margin: 0;

    font-size: clamp(42px, 5vw, 72px);

    line-height: 1.05;

    letter-spacing: -2px;
}

.why-intro-text {
    max-width: 680px;

    margin-top: 35px;

    font-size: 18px;

    line-height: 1.8;

    color: #56606a;
}


/* =========================
   WHY CARDS
========================= */

.why-cards {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    border-top: 1px solid #d6d0c3;
    border-left: 1px solid #d6d0c3;
}

.why-card {
    min-height: 280px;

    padding: 40px;

    border-right: 1px solid #d6d0c3;
    border-bottom: 1px solid #d6d0c3;

    transition:
        background 0.3s,
        transform 0.3s;
}

.why-card:hover {
    background: #ebe5d8;

    transform: translateY(-4px);
}

.card-number {
    color: #a17d36;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 50px;
}

.why-card h3 {
    margin: 0 0 15px;

    font-size: 25px;

    letter-spacing: -0.5px;
}

.why-card p {
    margin: 0;

    max-width: 450px;

    color: #68717a;

    font-size: 16px;

    line-height: 1.7;
}


/* =========================
   WHY SECTION MOBILE
========================= */

@media (max-width: 800px) {

    .why-section {
        padding: 90px 6%;
    }

    .why-intro {
        margin-bottom: 55px;
    }

    .why-intro h2 {
        font-size: 45px;
    }

    .why-cards {
        grid-template-columns: 1fr;
    }

    .why-card {
        min-height: auto;

        padding: 30px;
    }

    .card-number {
        margin-bottom: 30px;
    }
}
/* =========================
   DESTINATIONS
========================= */

.destinations-section {
    background: #17202a;
    color: white;

    padding: 140px 6%;
}

.destinations-container {
    max-width: 1200px;
    margin: 0 auto;
}


/* =========================
   DESTINATION HEADING
========================= */

.destinations-heading {
    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 60px;

    margin-bottom: 70px;
}

.destinations-heading h2 {
    margin: 0;

    font-size: clamp(50px, 6vw, 82px);

    line-height: 0.95;

    letter-spacing: -3px;
}

.destinations-intro {
    max-width: 430px;

    margin: 0;

    color: rgba(255,255,255,0.65);

    font-size: 17px;

    line-height: 1.8;
}


/* =========================
   DESTINATION GRID
========================= */

.destination-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 18px;
}


/* =========================
   DESTINATION CARDS
========================= */

.destination-card {
    position: relative;

    min-height: 520px;

    overflow: hidden;

    color: white;

    text-decoration: none;

    display: flex;

    align-items: flex-end;

    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.destination-card:hover {
    transform: translateY(-8px);
}

/* DESTINATION IMAGE LAYER */

.destination-image {
    position: absolute;

    inset: -5%;

    background-size: cover;
    background-position: center;

    transform: scale(1.06);

    will-change: transform;

    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    
    z-index: 0;
}

.destination-card:hover .destination-image {
    transform: scale(1.12);
}

/* INDIVIDUAL IMAGES */

.france-image {
    background-image:
        url("https://images.unsplash.com/photo-1502602898657-3e91760cbb34?auto=format&fit=crop&w=1200&q=85");
}

.england-image {
    background-image:
        url("https://images.unsplash.com/photo-1513635269975-59663e0ac1ad?auto=format&fit=crop&w=1200&q=85");
}

.germany-image {
    background-image:
        url("https://images.unsplash.com/photo-1467269204594-9661b134dd2b?auto=format&fit=crop&w=1200&q=85");
}

.switzerland-image {
    background-image:
        url("https://images.unsplash.com/photo-1527668752968-14dc70a27c95?auto=format&fit=crop&w=1200&q=85");
}


/* DARK OVERLAY */

.destination-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            transparent 25%,
            rgba(0,0,0,0.85) 100%
        );

    transition: background 0.4s;
    
    z-index: 1;
}


.destination-card:hover .destination-overlay {
    background:
        linear-gradient(
            transparent 10%,
            rgba(0,0,0,0.9) 100%
        );
}


/* CARD CONTENT */

.destination-content {
    position: relative;

    z-index: 2;

    padding: 40px;

    width: 100%;
}

.destination-number {
    margin: 0 0 35px;

    color: #d8bc7a;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 3px;
}

.destination-content h3 {
    margin: 0;

    font-size: 48px;

    letter-spacing: -1px;
}

.destination-description {
    max-width: 400px;

    margin: 15px 0 25px;

    color: rgba(255,255,255,0.8);

    font-size: 15px;

    line-height: 1.6;
}

.destination-link {
    color: #d8bc7a;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 1px;
    
    display: inline-block;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.destination-card:hover .destination-link {
    transform: translateX(6px);
}


/* =========================
   CUSTOM DESTINATION
========================= */

.custom-destination {
    text-align: center;

    padding: 100px 20px 20px;
}

.custom-destination p {
    margin: 0 0 15px;

    color: #d8bc7a;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 4px;
}

.custom-destination h3 {
    margin: 0 0 25px;

    font-size: clamp(32px, 4vw, 50px);

    letter-spacing: -1px;
}

.custom-destination a {
    color: white;

    text-decoration: none;

    border-bottom: 2px solid #d8bc7a;

    padding-bottom: 8px;

    font-size: 14px;

    font-weight: 700;
    
    display: inline-block;
    
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.custom-destination a:hover {
    color: #d8bc7a;
    padding-bottom: 6px;
    padding-right: 6px;
}


/* =========================
   DESTINATIONS MOBILE
========================= */

@media (max-width: 800px) {

    .destinations-section {
        padding: 90px 6%;
    }

    .destinations-heading {
        display: block;

        margin-bottom: 50px;
    }

    .destinations-heading h2 {
        font-size: 55px;

        margin-bottom: 30px;
    }

    .destination-grid {
        grid-template-columns: 1fr;
    }

    .destination-card {
        min-height: 480px;
    }

    .destination-content {
        padding: 30px;
    }

    .destination-content h3 {
        font-size: 42px;
    }

    .custom-destination {
        padding-top: 75px;
    }
}

/* =========================
   HOW IT WORKS
========================= */

.process-section {
    background: #f5f1e8;
    color: #17202a;

    padding: 140px 6%;
}

.process-container {
    max-width: 1200px;
    margin: 0 auto;
}


/* HEADING */

.process-heading {
    max-width: 850px;
    margin-bottom: 100px;
}

.process-heading h2 {
    margin: 0;

    font-size: clamp(48px, 6vw, 82px);

    line-height: 0.98;

    letter-spacing: -3px;
}

.process-heading > p:last-child {
    max-width: 620px;

    margin-top: 30px;

    font-size: 18px;
    line-height: 1.8;

    color: #68717a;
}


/* =========================
   PROCESS LIST
========================= */

.process-list {
    border-top: 1px solid #ccc5b7;
}

.process-step {
    display: grid;

    grid-template-columns: 140px 1fr;

    gap: 40px;

    padding: 55px 0;

    border-bottom: 1px solid #ccc5b7;

    transition:
        padding-left 0.35s ease,
        background 0.35s ease;
}

.process-step:hover {
    padding-left: 25px;
}

.process-number {
    font-size: 13px;

    color: #a17d36;

    font-weight: 700;

    letter-spacing: 3px;

    padding-top: 8px;
}

.process-content {
    max-width: 760px;
}

.process-content h3 {
    margin: 0 0 14px;

    font-size: clamp(30px, 4vw, 48px);

    letter-spacing: -1.5px;
}

.process-content p {
    margin: 0;

    max-width: 630px;

    color: #68717a;

    font-size: 16px;

    line-height: 1.75;
}


/* =========================
   PROCESS CTA
========================= */

.process-cta {
    display: flex;

    justify-content: space-between;
    align-items: center;

    gap: 30px;

    margin-top: 70px;

    padding: 35px 0;

    border-bottom: 1px solid #ccc5b7;
}

.process-cta p {
    margin: 0;

    font-size: 18px;

    color: #68717a;
}

.process-cta a {
    color: #17202a;

    text-decoration: none;

    font-size: 15px;

    font-weight: 700;

    border-bottom: 2px solid #a17d36;

    padding-bottom: 7px;
    
    display: inline-block;

    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.process-cta a:hover {
    color: #a17d36;
    transform: translateX(4px);
}


/* =========================
   HOW IT WORKS MOBILE
========================= */

@media (max-width: 800px) {

    .process-section {
        padding: 90px 6%;
    }

    .process-heading {
        margin-bottom: 65px;
    }

    .process-heading h2 {
        font-size: 52px;
    }

    .process-step {
        grid-template-columns: 1fr;

        gap: 18px;

        padding: 38px 0;
    }

    .process-step:hover {
        padding-left: 0;
    }

    .process-content h3 {
        font-size: 34px;
    }

    .process-cta {
        display: block;
    }

    .process-cta p {
        margin-bottom: 22px;
    }
}

/* =========================
   TESTIMONIALS
========================= */

.testimonials-section {
    background: #0e161d;
    color: white;

    padding: 140px 6%;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
}


/* HEADING */

.testimonials-top {
    margin-bottom: 90px;
}

.testimonials-top h2 {
    margin: 0;

    font-size: clamp(50px, 7vw, 92px);

    line-height: 0.95;

    letter-spacing: -4px;
}


/* FEATURED QUOTE */

.featured-testimonial {
    position: relative;

    padding: 70px 0;

    border-top: 1px solid rgba(255,255,255,0.2);
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.quote-mark {
    color: #d8bc7a;

    font-family: Georgia, serif;

    font-size: 100px;
    line-height: 0.7;

    margin-bottom: 35px;
}

.featured-testimonial blockquote {
    max-width: 1000px;

    margin: 0 0 45px;

    font-size: clamp(27px, 3.5vw, 46px);

    line-height: 1.3;

    letter-spacing: -1px;

    font-weight: 400;
}


/* PERSON */

.testimonial-person {
    display: flex;
    flex-direction: column;

    gap: 6px;
}

.testimonial-person strong {
    font-size: 14px;
    letter-spacing: 1px;
}

.testimonial-person span {
    color: rgba(255,255,255,0.5);

    font-size: 13px;
}


/* SMALL TESTIMONIALS */

.testimonial-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 0;

    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.testimonial-card {
    padding: 55px 50px 55px 0;
}

.testimonial-card + .testimonial-card {
    border-left: 1px solid rgba(255,255,255,0.2);

    padding-left: 50px;
}

.testimonial-card p {
    margin: 0 0 40px;

    font-size: 20px;

    line-height: 1.7;

    color: rgba(255,255,255,0.82);
}


/* BOTTOM MESSAGE */

.testimonial-bottom {
    display: flex;

    justify-content: space-between;
    align-items: flex-end;

    gap: 50px;

    padding-top: 80px;
}

.testimonial-bottom > p {
    max-width: 700px;

    margin: 0;

    font-size: clamp(30px, 4vw, 52px);

    line-height: 1.1;

    letter-spacing: -2px;
}

.testimonial-bottom a {
    flex-shrink: 0;

    color: #d8bc7a;

    text-decoration: none;

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 1px;

    border-bottom: 2px solid #d8bc7a;

    padding-bottom: 7px;
    
    display: inline-block;

    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-bottom a:hover {
    transform: translateX(4px);
    padding-bottom: 5px;
}


/* =========================
   TESTIMONIALS MOBILE
========================= */

@media (max-width: 800px) {

    .testimonials-section {
        padding: 90px 6%;
    }

    .testimonials-top {
        margin-bottom: 60px;
    }

    .testimonials-top h2 {
        font-size: 52px;
        letter-spacing: -2px;
    }

    .featured-testimonial {
        padding: 55px 0;
    }

    .quote-mark {
        font-size: 75px;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        padding: 45px 0;
    }

    .testimonial-card + .testimonial-card {
        border-left: 0;

        border-top: 1px solid rgba(255,255,255,0.2);

        padding-left: 0;
    }

    .testimonial-bottom {
        display: block;
    }

    .testimonial-bottom a {
        display: inline-block;

        margin-top: 35px;
    }
}
/* =========================
   CONTACT / QUOTE
========================= */

.contact-section {
    background: #d8bc7a;
    color: #17202a;

    padding: 140px 6%;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
}


/* INTRO */

.contact-intro {
    max-width: 900px;

    margin-bottom: 90px;
}

.contact-intro .section-label {
    color: #17202a;
}

.contact-intro h2 {
    margin: 0;

    font-size: clamp(52px, 7vw, 92px);

    line-height: 0.95;

    letter-spacing: -4px;
}

.contact-description {
    max-width: 650px;

    margin-top: 30px;

    font-size: 18px;

    line-height: 1.8;

    color: rgba(23,32,42,0.75);
}


/* =========================
   FORM
========================= */

.trip-form {
    border-top: 1px solid rgba(23,32,42,0.3);

    padding-top: 60px;
}

.form-row {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 40px;

    margin-bottom: 45px;
}

.form-group {
    display: flex;

    flex-direction: column;

    gap: 12px;
}

.form-group label {
    font-size: 12px;

    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;
}


/* INPUTS */

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;

    border: none;

    border-bottom: 2px solid rgba(23,32,42,0.3);

    background: transparent;

    padding: 14px 0;

    font-family: inherit;

    font-size: 18px;

    color: #17202a;

    outline: none;

    transition: border-color 0.3s;
}

.form-group textarea {
    resize: vertical;

    min-height: 160px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(23,32,42,0.5);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #d8bc7a;
    outline: none;
    box-shadow: 0 2px 0 #d8bc7a;
}

.form-group input:focus-visible,
.form-group select:focus-visible,
.form-group textarea:focus-visible {
    border-color: #d8bc7a;
    box-shadow: 0 2px 0 #d8bc7a;
}


/* MESSAGE */

.form-message {
    margin-bottom: 55px;
}


/* BOTTOM */

.form-bottom {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;
}

.form-bottom p {
    margin: 0;

    color: rgba(23,32,42,0.65);

    font-size: 14px;
}

.form-bottom button {
    border: none;

    background: #17202a;

    color: white;

    padding: 18px 30px;

    font-family: inherit;

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 1px;

    cursor: pointer;

    border-radius: 4px;

    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.form-bottom button:hover {
    transform: translateY(-4px);

    background: #2a3d50;
    
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
}

.form-bottom button:active {
    transform: translateY(-2px);
}


/* =========================
   CONTACT MOBILE
========================= */

@media (max-width: 800px) {

    .contact-section {
        padding: 90px 6%;
    }

    .contact-intro {
        margin-bottom: 65px;
    }

    .contact-intro h2 {
        font-size: 52px;

        letter-spacing: -2px;
    }

    .form-row {
        grid-template-columns: 1fr;

        gap: 35px;

        margin-bottom: 35px;
    }

    .form-bottom {
        display: block;
    }

    .form-bottom button {
        width: 100%;

        margin-top: 25px;
    }
}
/* =========================
   FOOTER
========================= */

.site-footer {
    background: #091016;
    color: white;

    padding: 100px 6% 35px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}


/* TOP */

.footer-top {
    display: grid;

    grid-template-columns: 1.2fr 2fr;

    gap: 100px;

    padding-bottom: 80px;

    border-bottom: 1px solid rgba(255,255,255,0.15);
}


/* BRAND */

.footer-logo {
    color: white;

    text-decoration: none;

    font-size: 28px;

    font-weight: 800;

    letter-spacing: 3px;
}

.footer-logo span {
    display: block;

    margin-top: 4px;

    font-size: 10px;

    letter-spacing: 5px;

    color: #d8bc7a;
}

.footer-brand p {
    max-width: 420px;

    margin-top: 30px;

    color: rgba(255,255,255,0.6);

    font-size: 16px;

    line-height: 1.8;
}


/* LINKS */

.footer-links {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 50px;
}

.footer-column {
    display: flex;

    flex-direction: column;

    gap: 14px;
}

.footer-heading {
    margin: 0 0 12px;

    color: #d8bc7a;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 3px;

    text-transform: uppercase;
}

.footer-column a {
    color: rgba(255,255,255,0.7);

    text-decoration: none;

    font-size: 15px;

    transition:
        color 0.3s,
        transform 0.3s;
}

.footer-column a:hover {
    color: white;

    transform: translateX(4px);
}


/* BOTTOM */

.footer-bottom {
    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 30px;

    padding-top: 30px;
}

.footer-bottom p {
    margin: 0;

    color: rgba(255,255,255,0.4);

    font-size: 12px;
}

.footer-bottom-links {
    display: flex;

    gap: 25px;
}

.footer-bottom-links a {
    color: rgba(255,255,255,0.4);

    text-decoration: none;

    font-size: 12px;
}

.footer-bottom-links a:hover {
    color: white;
}


/* =========================
   FOOTER MOBILE
========================= */

@media (max-width: 800px) {

    .site-footer {
        padding: 75px 6% 30px;
    }

    .footer-top {
        grid-template-columns: 1fr;

        gap: 60px;
    }

    .footer-links {
        grid-template-columns: 1fr 1fr;

        gap: 45px;
    }

    .footer-bottom {
        display: block;
    }

    .footer-bottom-links {
        margin-top: 20px;
    }
}

/* =========================
   MASKED HEADING REVEALS
========================= */

.reveal-heading {
    overflow: visible;
}

.reveal-line {
    display: block;

    overflow: hidden;

    padding-bottom: 0.08em;

    margin-bottom: -0.08em;
}

.reveal-text {
    display: block;

    will-change: transform, opacity;
}


/* ACCENT COLORS */

.why-intro .accent-text,
.process-heading .accent-text {
    color: #a17d36;
}

.destinations-heading .accent-text,
.testimonials-top .accent-text {
    color: #d8bc7a;
}

.contact-intro .accent-text {
    color: #ffffff;
}

/* =========================
   SMALL PHONE BREAKPOINT
========================= */

@media (max-width: 480px) {

    .navbar {
        padding: 16px 4%;
    }

    .navbar.scrolled {
        top: 10px;
        width: calc(100% - 20px);
        padding: 12px 16px;
    }

    .logo {
        font-size: 16px;
    }

    .logo span {
        font-size: 8px;
    }

    .hero-title {
        font-size: 42px;
        letter-spacing: -2px;
        line-height: 0.95;
    }

    .hero-line {
        padding-bottom: 0.04em;
        margin-bottom: -0.04em;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .button {
        width: 100%;
        padding: 15px 20px;
        text-align: center;
    }

    .hero-description {
        font-size: 15px;
        max-width: 100%;
    }

    .hero-bottom {
        left: 4%;
        right: 4%;
        flex-direction: column;
        gap: 15px;
        bottom: 20px;
    }

    .scroll-indicator {
        width: 100%;
        margin: 0;
    }

    /* WHY SECTION */

    .why-section {
        padding: 80px 4%;
    }

    .why-intro h2 {
        font-size: 36px;
    }

    .why-intro-text {
        font-size: 16px;
    }

    .why-card {
        padding: 25px;
    }

    .why-card h3 {
        font-size: 20px;
    }

    .why-card p {
        font-size: 14px;
    }

    /* DESTINATIONS SECTION */

    .destinations-section {
        padding: 80px 4%;
    }

    .destinations-heading {
        flex-direction: column;
        gap: 20px;
    }

    .destinations-heading h2 {
        font-size: 42px;
    }

    .destinations-intro {
        max-width: 100%;
        font-size: 15px;
    }

    .destination-card {
        min-height: 400px;
    }

    .destination-content h3 {
        font-size: 32px;
    }

    .destination-description {
        font-size: 14px;
    }

    /* PROCESS SECTION */

    .process-section {
        padding: 80px 4%;
    }

    .process-heading h2 {
        font-size: 42px;
    }

    .process-step {
        grid-template-columns: 60px 1fr;
        gap: 20px;
        padding: 40px 0;
    }

    .process-content h3 {
        font-size: 22px;
    }

    .process-content p {
        font-size: 14px;
    }

    .process-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .process-cta p {
        font-size: 16px;
    }

    /* TESTIMONIALS */

    .testimonials-section {
        padding: 80px 4%;
    }

    .featured-testimonial blockquote {
        font-size: 18px;
    }

    .testimonial-card p {
        font-size: 14px;
    }

    .testimonial-bottom {
        flex-direction: column;
        gap: 20px;
    }

    .testimonial-bottom p {
        font-size: 14px;
    }

    .testimonial-bottom a {
        width: 100%;
        text-align: center;
    }

    /* CONTACT FORM */

    .contact-section {
        padding: 80px 4%;
    }

    .contact-intro h2 {
        font-size: 42px;
    }

    .form-row {
        flex-direction: column;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px;
    }

    .form-bottom {
        flex-direction: column;
    }

    .form-bottom button {
        width: 100%;
    }

    /* FOOTER */

    .site-footer {
        padding: 60px 4%;
    }

    .footer-links {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

}

/* =========================
   REDUCED MOTION
========================= */

@media (prefers-reduced-motion: reduce) {

    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    /* Navbar transitions */
    .navbar,
    .navbar nav a::after,
    .nav-button,
    .mobile-menu-button span {
        transition: none !important;
    }

    /* Button animations */
    .button,
    .button-primary,
    .button-secondary,
    .form-bottom button {
        transition: none !important;
    }

    .button:hover,
    .button-primary:hover,
    .button-secondary:hover,
    .form-bottom button:hover {
        transform: none !important;
    }

    /* Destination card animations */
    .destination-image,
    .destination-card,
    .destination-link {
        transition: none !important;
    }

    .destination-card:hover .destination-image {
        transform: scale(1.06) !important;
    }

    .destination-card:hover .destination-link {
        transform: none !important;
    }

    /* Mobile menu */
    .mobile-menu {
        transition: none !important;
    }

    .mobile-menu-link,
    .mobile-menu-cta {
        transition: none !important;
        opacity: 1 !important;
        transform: none !important;
    }

    .mobile-menu-button[aria-expanded="true"] span {
        transition: none !important;
    }

    /* CTA links */
    .custom-destination a,
    .process-cta a,
    .testimonial-bottom a {
        transition: none !important;
    }

    .custom-destination a:hover,
    .process-cta a:hover,
    .testimonial-bottom a:hover {
        transform: none !important;
    }

    /* Hero scroll animations still visible but instant */
    .hero-bg,
    .hero-content {
        will-change: auto !important;
    }

}
