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

html {
    scroll-behavior: smooth;
}

:root {

    --brand-primary: #c7a66a;

    --brand-primary-hover: #d4b278;

    --brand-primary-soft: rgba(199,166,106,0.18);

    --brand-primary-border: rgba(199,166,106,0.28);

    --brand-bg-dark: #1a1a1a;

    --brand-bg-soft: #202020;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #1a1a1a;
    color: white;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
}

/* HERO */

.hero {
    position: relative;
    min-height: 100vh;
    background:
        linear-gradient(rgba(20,20,20,0.88), rgba(20,20,20,0.90)),
        #151515;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.15);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    padding: 45px 20px 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
}

.hero-top {
    width: 100%;
    max-width: 1400px;
    display: block;
    margin-bottom: 55px;
}

.hero-panorama {
    width: 70%;
    aspect-ratio: 16 / 9;
    border-radius: 34px;
    overflow: hidden;
    border: 2px solid rgba(255,255,255,0.18);
    box-shadow: 0 18px 45px rgba(0,0,0,0.35);
    margin-left: auto;
    margin-right: auto;
}

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

/* LOGOS */

.logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo img {
    width: 100%;
    max-width: 420px;
    min-width: 0;
    height: auto;
    object-fit: contain;
    opacity: 0.98;
}

/* TITLES */

.hero h3 {
    font-size: 22px;
    letter-spacing: 5px;
    font-weight: 600;
    margin-bottom: 14px;
    color: rgba(255,255,255,0.88);
}

.hero h1 {
    font-size: 120px;
    line-height: 0.95;
    font-weight: 800;
    color: var(--brand-primary);
    letter-spacing: -3px;
    margin-bottom: 8px;
    text-shadow: 0 0 30px var(--brand-primary-soft);
}

.hero h2 {
    font-family: 'Playfair Display', serif;
    font-size: 54px;
    font-weight: 500;
    color: #f2f2f2;
    margin-bottom: 20px;
}

.subtitle {
    font-size: 24px;
    font-weight: 300;
    color: rgba(255,255,255,0.78);
    margin-bottom: 35px;
}

/* BUTTONS */

.hero-buttons,
.tour-buttons {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.hero-buttons {
    justify-content: center;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 18px 42px;
    border-radius: 60px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--brand-primary);
    color: white;
    box-shadow: 0 0 25px var(--brand-primary-soft);
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: var(--brand-primary-hover);
}

.btn-secondary {
    border: 2px solid rgba(255,255,255,0.7);
    color: white;
    background: transparent;
}

.btn-secondary:hover {
    background: white;
    color: black;
}

/* SHARED SECTIONS */

.tour-options,
.journey,
.booking-info {
    background: #202020;
}

.combo-section,
.tour-section,
.experience,
.activity-highlights,
.important-info {
    background: #1c1c1c;
}

.tour-options,
.combo-section,
.experience,
.journey,
.tour-details,
.activity-highlights,
.booking-info,
.important-info {
    padding: 100px 10%;
}

.section-intro {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 60px;
    color: rgba(255,255,255,0.76);
    font-size: 20px;
    line-height: 1.7;
}

/* TOUR OPTIONS */

.tour-options h2,
.tour-section h2,
.activity-highlights h2,
.journey h2,
.info-box h2 {
    text-align: center;
    font-size: 54px;
    margin-bottom: 18px;
}

.tour-options-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.tour-card-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 24px;
    margin-bottom: 28px;
    display: block;
}

.tour-option-card {
    background: linear-gradient(145deg, #2a2a2a, #1d1d1d);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 34px;
    padding: 48px 42px;
    transition: 0.3s;
}

.tour-option-card:hover {
    transform: translateY(-5px);
    border-color: var(--brand-primary-border);
}

.highlighted-tour {
    border-color: var(--brand-primary-border);
    box-shadow: 0 18px 45px var(--brand-primary-soft);
}

.tour-label {
    display: inline-block;
    color: var(--brand-primary);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 3px;
    margin-bottom: 18px;
}

.tour-option-card h3 {
    font-size: 34px;
    line-height: 1.2;
    margin-bottom: 18px;
}

.tour-subtitle {
    color: rgba(255,255,255,0.78);
    font-size: 18px;
    margin-bottom: 26px;
}

.tour-option-card ul {
    padding-left: 22px;
    color: rgba(255,255,255,0.78);
    font-size: 17px;
    line-height: 1.65;
    margin-bottom: 30px;
}

.tour-option-card li {
    margin-bottom: 8px;
}

.tour-option-card li::marker {
    color: var(--brand-primary);
}

.tour-price {
    font-size: 34px;
    font-weight: 800;
    color: var(--brand-primary);
    margin-bottom: 28px;
}

.tour-price-note {
    margin-top: -18px;
    margin-bottom: 28px;
    font-size: 14px;
    color: rgba(255,255,255,0.62);
    line-height: 1.45;
}

/* COMBO */

.combo-section {
    display: flex;
    justify-content: center;
}

.combo-box {
    width: 100%;
    max-width: 1000px;
    background: linear-gradient(145deg, #2a2a2a, #1d1d1d);
    border: 1px solid var(--brand-primary-border);
    border-radius: 34px;
    padding: 55px 50px;
    text-align: center;
}

.combo-box h2 {
    font-size: 48px;
    margin-bottom: 26px;
    color: var(--brand-primary);
}

.combo-box p {
    color: rgba(255,255,255,0.78);
    font-size: 19px;
    line-height: 1.75;
    margin-bottom: 18px;
}

.combo-highlight {
    color: white !important;
    font-size: 24px !important;
    font-weight: 700;
    margin-top: 20px;
}

/* TOUR SECTIONS */

.tour-section {
    padding-top: 110px;
}

.tour-section h2 {
    font-size: 58px;
    margin-bottom: 20px;
    padding: 0 10%;
}

/* EXPERIENCE CARDS */

.experience {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    padding-top: 70px;
}

.experience-card {
    background: #262626;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
    transition: 0.3s;
}

.experience-card:hover {
    transform: translateY(-5px);
    border-color: var(--brand-primary-border);
}

.experience-card img {
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    object-fit: cover;
    display: block;
}

.experience-card h3 {
    padding: 28px 28px 12px;
    font-size: 24px;
    color: white;
}

.experience-card p {
    padding: 0 28px 30px;
    color: rgba(255,255,255,0.76);
    font-size: 17px;
    line-height: 1.65;
}

/* JOURNEY */

.journey h2 {
    font-size: 64px;
    margin-bottom: 70px;
}

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

.journey-item {
    background: #262626;
    border-radius: 26px;
    padding: 0 0 32px;
    border: 1px solid rgba(255,255,255,0.04);
    overflow: hidden;
    transition: 0.3s;
}

.journey-item:hover {
    transform: translateY(-5px);
    border-color: var(--brand-primary-border);
}

.journey-item img {
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    object-fit: cover;
    display: block;
    margin-bottom: 8px;
}

.journey-item span,
.journey-item h3,
.journey-item ul {
    padding-left: 30px;
    padding-right: 30px;
}

.journey-item span {
    display: block;
    color: var(--brand-primary);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-top: 20px;
    margin-bottom: 12px;
}

.journey-item h3 {
    font-size: 23px;
    line-height: 1.25;
    color: white;
    margin-bottom: 16px;
}

.journey-item ul {
    list-style-position: outside;
    padding-left: 48px;
    font-size: 15px;
    line-height: 1.55;
    color: rgba(255,255,255,0.78);
}

.journey-item li {
    margin-bottom: 7px;
}

.journey-item li::marker {
    color: var(--brand-primary);
}

/* DETAILS */

.tour-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
    background: #202020;
}

.detail-box {
    background: #262626;
    border-radius: 28px;
    padding: 45px 40px;
    border: 1px solid rgba(255,255,255,0.06);
}

.detail-box h2 {
    font-size: 36px;
    color: var(--brand-primary);
    margin-bottom: 28px;
}

.detail-box ul {
    padding-left: 22px;
    color: rgba(255,255,255,0.78);
    font-size: 17px;
    line-height: 1.65;
}

.detail-box li {
    margin-bottom: 9px;
}

.detail-box li::marker {
    color: var(--brand-primary);
}

/* ACTIVITY */

.activity-highlights h2 {
    margin-bottom: 65px;
}

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

.activity-card {
    background: #262626;
    border-radius: 26px;
    padding: 38px 34px;
    border: 1px solid rgba(255,255,255,0.06);
}

.activity-card h3 {
    font-size: 24px;
    color: var(--brand-primary);
    margin-bottom: 20px;
}

.activity-card p,
.activity-card ul {
    color: rgba(255,255,255,0.78);
    font-size: 17px;
    line-height: 1.65;
}

.activity-card ul {
    padding-left: 22px;
}

.activity-card li {
    margin-bottom: 8px;
}

.activity-card li::marker {
    color: var(--brand-primary);
}

/* BOOKING */

.booking-info {
    display: flex;
    justify-content: center;
}

.booking-box {
    width: 100%;
    max-width: 950px;
    background: linear-gradient(145deg, #2a2a2a, #1d1d1d);
    border: 1px solid var(--brand-primary-border);
    border-radius: 34px;
    padding: 55px 50px;
}

.booking-box h2 {
    font-size: 44px;
    color: var(--brand-primary);
    margin-bottom: 32px;
    text-align: center;
}

.booking-box p {
    color: rgba(255,255,255,0.78);
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 18px;
}

.booking-box strong {
    color: white;
}

/* IMPORTANT */

.important-info {
    display: flex;
    justify-content: center;
}

.info-box {
    max-width: 900px;
    text-align: center;
}

.info-box h2 {
    font-size: 54px;
    margin-bottom: 35px;
}

.info-box p {
    font-size: 20px;
    margin-bottom: 18px;
    color: rgba(255,255,255,0.78);
}

/* FOOTER */

footer {
    background: #181818;
    text-align: center;
    padding: 80px 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

footer .logo {
    margin-bottom: 30px;
}

footer .logo img {
    width: 78vw;
    max-width: 520px;
    min-width: 260px;
    height: auto;
    object-fit: contain;
}

footer h3 {
    font-size: 34px;
    margin-bottom: 15px;
}

footer p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 10px;
    font-size: 18px;
}

/* MOBILE */

@media(max-width: 1100px) {

    .hero {
        min-height: 100vh;
    }

    .hero-content {
        padding: 90px 18px 60px;
    }

    .hero-top {
        margin-bottom: 55px;
    }

    .hero-panorama {
        width: 100%;
        aspect-ratio: 16 / 9;
        border-radius: 24px;
    }

    .hero h3 {
        font-size: 17px;
        letter-spacing: 7px;
        margin-bottom: 22px;
    }

    .hero h1 {
        font-size: 74px;
        line-height: 0.9;
        letter-spacing: -1px;
        max-width: 95vw;
    }

    .hero h2 {
        font-size: 44px;
        margin-top: 18px;
    }

    .subtitle {
        font-size: 20px;
        margin-top: 22px;
        margin-bottom: 38px;
    }

    .hero-buttons,
    .tour-buttons {
        justify-content: center;
        gap: 14px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 15px 28px;
        font-size: 16px;
    }

    .tour-options-grid,
    .experience,
    .journey-grid,
    .tour-details,
    .activity-grid {
        grid-template-columns: 1fr;
    }

    .tour-options,
    .combo-section,
    .experience,
    .journey,
    .tour-details,
    .activity-highlights,
    .booking-info,
    .important-info {
        padding: 70px 7%;
    }

    .tour-section {
        padding-top: 70px;
    }

    .tour-options h2,
    .combo-box h2,
    .tour-section h2 {
        font-size: 38px;
    }

    .section-intro {
        font-size: 18px;
        margin-bottom: 42px;
    }

    .tour-option-card {
        padding: 36px 26px;
    }

    .tour-option-card h3 {
        font-size: 28px;
    }

    .combo-box {
        padding: 38px 28px;
    }

    .combo-highlight {
        font-size: 21px !important;
    }

    .journey h2,
    .info-box h2 {
        font-size: 42px;
    }

    .activity-highlights h2,
    .booking-box h2 {
        font-size: 36px;
    }

    .journey-item h3 {
        font-size: 22px;
    }

    .journey-item ul {
        font-size: 15px;
        padding-left: 46px;
    }

    .detail-box,
    .activity-card,
    .booking-box {
        padding: 34px 26px;
    }

    footer .logo img {
        width: 78vw;
        max-width: 420px;
        min-width: 0;
    }
}

@media(max-width: 520px) {

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

    .hero h2 {
        font-size: 34px;
    }

    .tour-options h2,
    .tour-section h2,
    .combo-box h2,
    .journey h2,
    .info-box h2 {
        font-size: 32px;
    }

    .booking-box h2 {
        font-size: 30px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
}