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

:root {
    --cream: #faf8f4;
    --white: #fff;
    --deep: #16120e;
    --terra: #b5602e;
    --terra-light: #d4784a;
    --gold: #c9963a;
    --gray: #6b6560;
    --light: #f0ece4;
    --border: #e8e0d4;
    --nav-h: 70px;
}

html {
    scroll-behavior: smooth
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--cream);
    color: var(--deep);
    overflow-x: hidden
}

::-webkit-scrollbar {
    width: 5px
}

::-webkit-scrollbar-thumb {
    background: var(--terra);
    border-radius: 3px
}

img {
    display: block
}

button {
    cursor: pointer;
    font-family: 'Inter', sans-serif
}

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

/* ─── TOPBAR ─── */
.topbar {
    background: var(--deep);
    color: rgba(255, 255, 255, .7);
    font-size: .75rem;
    padding: .45rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.topbar-links {
    display: flex;
    gap: 1.5rem
}

.topbar-links a {
    color: rgba(255, 255, 255, .7);
    transition: color .2s
}

.topbar-links a:hover {
    color: var(--gold)
}

.topbar-contact {
    display: flex;
    gap: 2rem;
    font-size: .72rem
}

/* ─── NAV ─── */
nav {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 200;
    height: var(--nav-h)
}

.nav-inner {
    max-width: 1400px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 4rem
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--terra);
    cursor: pointer
}

.logo span {
    color: var(--deep);
    font-style: italic
}

.nav-menu {
    display: flex;
    gap: 0;
    height: 100%;
    align-items: center
}

.nav-item {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center
}

.nav-item>a,
.nav-item>button {
    height: 100%;
    padding: 0 1.1rem;
    display: flex;
    align-items: center;
    gap: .3rem;
    font-size: .82rem;
    font-weight: 500;
    color: var(--deep);
    background: none;
    border: none;
    white-space: nowrap;
    transition: color .2s;
    letter-spacing: .2px
}

.nav-item>a:hover,
.nav-item>button:hover,
.nav-item.open>button {
    color: var(--terra)
}

.nav-item>button::after {
    content: '▾';
    font-size: .65rem;
    margin-left: .1rem;
    transition: transform .2s
}

.nav-item.open>button::after {
    transform: rotate(180deg)
}

.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    border: 1px solid var(--border);
    border-top: 2px solid var(--terra);
    border-radius: 0 0 .5rem .5rem;
    min-width: 220px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .1);
    z-index: 300
}

.nav-item.open .dropdown {
    display: block
}

.dropdown a {
    display: flex;
    align-items: center;
    gap: .8rem;
    padding: .75rem 1.2rem;
    font-size: .82rem;
    color: var(--deep);
    transition: background .15s, color .15s
}

.dropdown a:hover {
    background: var(--light);
    color: var(--terra)
}

.dropdown a .dd-img {
    width: 44px;
    height: 28px;
    object-fit: cover;
    border-radius: .25rem;
    flex-shrink: 0
}

.dropdown-divider {
    height: 1px;
    background: var(--border);
    margin: .3rem 0
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem
}

.nav-phone {
    font-size: .8rem;
    font-weight: 600;
    color: var(--terra)
}

.btn-quote {
    background: var(--terra);
    color: #fff;
    border: none;
    padding: .6rem 1.4rem;
    border-radius: 2rem;
    font-size: .8rem;
    font-weight: 600;
    transition: background .2s, transform .2s
}

.btn-quote:hover {
    background: #9e4e22;
    transform: translateY(-1px)
}

/* ─── BREADCRUMB ─── */
.breadcrumb {
    background: var(--light);
    padding: .7rem 4rem;
    font-size: .78rem;
    color: var(--gray);
    border-bottom: 1px solid var(--border);
    max-width: 100%
}

.breadcrumb span {
    color: var(--terra);
    font-weight: 500
}

.breadcrumb a {
    color: var(--gray);
    transition: color .2s
}

.breadcrumb a:hover {
    color: var(--terra)
}

/* ─── HERO BANNER ─── */
.hero-banner {
    position: relative;
    height: 75vh;
    min-height: 480px;
    overflow: hidden
}

.hero-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(22, 18, 14, .72) 0%, rgba(22, 18, 14, .35) 60%, transparent 100%)
}

.hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 4rem;
    max-width: 680px
}

.hero-eyebrow p{
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold) !important;
    margin-bottom: 1rem
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 5vw, 5rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.05;
    margin-bottom: .8rem
}

.hero-subtitle {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, .8);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 500px
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap
}

.btn-hero-primary {
    background: var(--terra);
    color: #fff;
    border: none;
    padding: .9rem 2rem;
    border-radius: 2rem;
    font-size: .88rem;
    font-weight: 600;
    transition: all .25s
}

.btn-hero-primary:hover {
    background: #9e4e22;
    transform: translateY(-2px)
}

.button.white span{
    color: var(--primary-color) !important;
}
.button.white.is-outline span{
    color: #FFF !important;
}

.btn-hero-ghost {
    background: rgba(255, 255, 255, .15) !important;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, .5) !important;
    padding: .9rem 2rem;
    border-radius: 2rem;
    font-size: .88rem;
    font-weight: 500;
    backdrop-filter: blur(4px);
    transition: all .25s
}

.btn-hero-ghost:hover {
    background: rgba(255, 255, 255, .25)
}

/* ─── CONTENT SECTIONS ─── */
.content-wrap {
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 4rem
}

.section-eyebrow {
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--terra);
    margin-bottom: .6rem
}

.section-h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem
}

.section-body {
    font-size: .95rem;
    color: var(--gray);
    line-height: 1.85;
    max-width: 860px
}

.section-body p {
    margin-bottom: 1rem
}

/* ─── MUST SEE GRID ─── */
.must-see-section {
    background: var(--white);
    padding: 5rem 0
}

.must-see-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem
}

.must-see-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2.5rem
}

.places-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem
}

.place-card {
    border-radius: .75rem;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    background: var(--deep);
    aspect-ratio: 16/10
}

.place-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease, opacity .4s
}

.place-card:hover img {
    transform: scale(1.07);
    opacity: .85
}

.place-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(22, 18, 14, .85) 0%, rgba(22, 18, 14, .1) 55%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.4rem
}

.place-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: .3rem
}

.place-desc {
    font-size: .78rem;
    color: rgba(255, 255, 255, .7);
    line-height: 1.5;
    margin-bottom: .8rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden
}

.place-link {
    font-size: .75rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: .5px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: .3rem;
    transition: gap .2s
}

.place-card:hover .place-link {
    gap: .6rem
}

/* ─── OFFERS SECTION ─── */
.offers-section {
    padding: 5rem 0;
    background: var(--cream)
}

.offers-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem
}

.offers-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2.5rem
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem
}

.offer-card {
    background: var(--white);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0, 0, 0, .06);
    transition: transform .3s, box-shadow .3s;
    cursor: pointer
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, .12)
}

.offer-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform .5s
}

.offer-img-wrap {
    overflow: hidden
}

.offer-card:hover .offer-img {
    transform: scale(1.04)
}

.offer-badge {
    display: inline-block;
    font-size: .65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: .25rem .7rem;
    border-radius: 2rem;
    margin-bottom: .7rem
}

.badge-hot {
    background: #fde8dc;
    color: #b5602e
}

.badge-new {
    background: #dff0e8;
    color: #2e7d52
}

.badge-popular {
    background: #e8e4f8;
    color: #5040a0
}

.badge-luxury {
    background: #fdf3dc;
    color: #8b6914
}

.badge-seasonal {
    background: #dceef0;
    color: #1f6b78
}

.badge-romantic {
    background: #fde4ec;
    color: #9c2a52
}

.offer-body {
    padding: 1.2rem 1.4rem
}

.offer-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: .4rem;
    line-height: 1.3
}

.offer-meta {
    display: flex;
    gap: 1rem;
    font-size: .75rem;
    color: var(--gray);
    margin-bottom: .8rem
}

.offer-desc {
    font-size: .82rem;
    color: var(--gray);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden
}

.offer-footer {
    padding: .9rem 1.4rem;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center
}

.offer-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--terra)
}

.offer-price sub {
    font-size: .65rem;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
    color: var(--gray)
}

.btn-view {
    background: var(--terra);
    color: #fff;
    border: none;
    padding: .45rem 1.1rem;
    border-radius: 2rem;
    font-size: .75rem;
    font-weight: 600;
    transition: background .2s
}

.btn-view:hover {
    background: #9e4e22
}

.see-all-btn {
    font-size: .82rem;
    font-weight: 600;
    color: var(--terra);
    border: 1.5px solid var(--terra);
    background: none;
    padding: .55rem 1.4rem;
    border-radius: 2rem;
    transition: all .2s
}

.see-all-btn:hover {
    background: var(--terra);
    color: #fff
}

/* ─── TRAVEL STYLES ─── */
.styles-section {
    background: var(--deep);
    padding: 5rem 0;
    color: #fff
}

.styles-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem
}

.styles-section .section-eyebrow {
    color: var(--gold)
}

.styles-section .section-h2 {
    color: #fff
}

.styles-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: .8rem;
    margin-top: 2.5rem
}

.style-card {
    border-radius: .75rem;
    overflow: hidden;
    position: relative;
    aspect-ratio: 2/3;
    cursor: pointer
}

.style-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s
}

.style-card:hover img {
    transform: scale(1.08)
}

.style-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(22, 18, 14, .85) 30%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1rem
}

.style-name {
    font-family: 'Playfair Display', serif;
    font-size: .95rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: .5px
}

/* ─── CTA STRIP ─── */
.cta-strip {
    background: var(--terra);
    padding: 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem
}

.cta-strip-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: .5rem
}

.cta-strip-text p {
    color: rgba(255, 255, 255, .8);
    font-size: .9rem
}

.cta-strip-actions {
    display: flex;
    gap: 1rem;
    flex-shrink: 0
}

.btn-cta-white {
    background: #fff;
    color: var(--terra);
    border: none;
    padding: .9rem 2rem;
    border-radius: 2rem;
    font-size: .88rem;
    font-weight: 700;
    transition: all .2s;
    white-space: nowrap
}

.btn-cta-white:hover {
    background: var(--light);
    transform: translateY(-1px)
}

.btn-cta-ghost {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, .6);
    padding: .9rem 2rem;
    border-radius: 2rem;
    font-size: .88rem;
    font-weight: 600;
    transition: all .2s;
    white-space: nowrap
}

.btn-cta-ghost:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, .1)
}

/* ─── DESTINATION DETAIL PAGE ─── */
.dest-intro {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 4rem
}

.dest-intro-text .section-h2 {
    margin-bottom: 1rem
}

.dest-intro-text .section-body {
    font-size: .92rem;
    color: var(--gray);
    line-height: 1.9
}

.dest-info-card {
    background: var(--white);
    border-radius: 1rem;
    padding: 1.8rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, .07);
    height: fit-content;
    position: sticky;
    top: 90px
}

.info-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    padding-bottom: .8rem;
    border-bottom: 2px solid var(--border)
}

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: .6rem 0;
    border-bottom: 1px solid var(--border);
    font-size: .83rem
}

.info-row:last-of-type {
    border-bottom: none
}

.info-label {
    color: var(--gray);
    font-weight: 500
}

.info-val {
    font-weight: 600;
    text-align: right;
    max-width: 180px
}

.btn-quote-card {
    width: 100%;
    background: var(--terra);
    color: #fff;
    border: none;
    padding: .85rem;
    border-radius: .5rem;
    font-size: .88rem;
    font-weight: 600;
    margin-top: 1.2rem;
    transition: background .2s
}

.btn-quote-card:hover {
    background: #9e4e22
}

/* ─── TOUR DETAIL PAGE ─── */
.tour-detail-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 4rem
}

.tour-gallery {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 240px 200px;
    gap: .6rem;
    border-radius: 1rem;
    overflow: hidden;
    margin-bottom: 2.5rem
}

.tour-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.tour-gallery img:first-child {
    grid-row: 1/3
}

.detail-h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    padding-bottom: .6rem;
    border-bottom: 2px solid var(--light)
}

.highlights-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .5rem;
    margin-bottom: 2.5rem;
    list-style: none
}

.highlights-grid li {
    display: flex;
    align-items: flex-start;
    gap: .5rem;
    font-size: .85rem;
    line-height: 1.5
}

.highlights-grid li::before {
    content: '✓';
    color: var(--terra);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px
}

.itin-list {
    list-style: none;
    margin-bottom: 2.5rem
}

.itin-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border)
}

.itin-item:last-child {
    border-bottom: none
}

.itin-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--terra);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .72rem;
    font-weight: 700;
    flex-shrink: 0
}

.itin-day-title {
    font-weight: 600;
    font-size: .88rem;
    margin-bottom: .2rem
}

.itin-day-desc {
    font-size: .8rem;
    color: var(--gray);
    line-height: 1.55
}

.inc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem
}

.inc-label {
    font-weight: 700;
    font-size: .82rem;
    margin-bottom: .6rem
}

.inc-list {
    list-style: none
}

.inc-list li {
    font-size: .82rem;
    padding: .3rem 0;
    display: flex;
    gap: .5rem;
    align-items: flex-start
}

.inc-list li::before {
    content: '✓';
    color: #2e7d52;
    font-weight: 700;
    flex-shrink: 0
}

.exc-list li::before {
    content: '✕';
    color: #c0392b;
    font-weight: 700;
    flex-shrink: 0
}

/* booking sidebar */
.booking-panel {
    position: sticky;
    top: 90px;
    height: fit-content
}

.booking-box {
    background: var(--white);
    border-radius: 1rem;
    padding: 1.8rem;
    box-shadow: 0 4px 32px rgba(0, 0, 0, .1);
    margin-bottom: 1.5rem
}

.booking-price-big {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--terra)
}

.booking-price-big sub {
    font-size: .8rem;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    color: var(--gray)
}

.booking-stars {
    font-size: .8rem;
    color: var(--gray);
    margin-bottom: 1.4rem
}

.booking-stars span {
    color: var(--gold)
}

.f-label {
    display: block;
    font-size: .72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: var(--gray);
    margin-bottom: .35rem
}

.f-input {
    width: 100%;
    padding: .7rem .9rem;
    border: 1.5px solid var(--border);
    border-radius: .5rem;
    font-size: .85rem;
    font-family: 'Inter', sans-serif;
    color: var(--deep);
    background: var(--cream);
    outline: none;
    transition: border-color .2s;
    margin-bottom: .9rem
}

.f-input:focus {
    border-color: var(--terra)
}

.btn-book-now {
    width: 100%;
    background: var(--terra);
    color: #fff;
    border: none;
    padding: .95rem;
    border-radius: .5rem;
    font-size: .9rem;
    font-weight: 700;
    transition: background .2s, transform .2s;
    margin-top: .2rem
}

.btn-book-now:hover {
    background: #9e4e22;
    transform: translateY(-1px)
}

.book-note {
    font-size: .72rem;
    color: var(--gray);
    text-align: center;
    margin-top: .7rem
}

.book-success {
    display: none;
    text-align: center;
    padding: 1.5rem 0;
    color: #2e7d52
}

.book-success.show {
    display: block
}

/* ─── CONTACT PAGE ─── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 4rem
}

.contact-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1rem
}

.contact-info p {
    font-size: .9rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 2rem
}

.c-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1.5rem
}

.c-icon {
    width: 44px;
    height: 44px;
    border-radius: .6rem;
    background: rgba(181, 96, 46, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0
}

.c-label {
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .8px;
    font-weight: 600;
    color: var(--gray);
    margin-bottom: .2rem
}

.c-val {
    font-size: .9rem;
    font-weight: 600
}

.contact-form-box {
    background: var(--white);
    border-radius: 1rem;
    padding: 2.2rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, .07)
}

.contact-form-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 1.4rem
}

.f-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem
}

.f-textarea {
    width: 100%;
    padding: .7rem .9rem;
    border: 1.5px solid var(--border);
    border-radius: .5rem;
    font-size: .85rem;
    font-family: 'Inter', sans-serif;
    color: var(--deep);
    background: var(--cream);
    outline: none;
    transition: border-color .2s;
    resize: vertical;
    min-height: 110px;
    margin-bottom: .9rem
}

.f-textarea:focus {
    border-color: var(--terra)
}

.form-success-msg {
    display: none;
    text-align: center;
    padding: 2rem;
    color: #2e7d52
}

.form-success-msg.show {
    display: block
}

.form-success-msg .big-icon {
    font-size: 2.8rem;
    margin-bottom: .8rem
}

/* ─── MODAL ─── */
.modal-bg {
    position: fixed;
    inset: 0;
    background: rgba(22, 18, 14, .6);
    backdrop-filter: blur(4px);
    z-index: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s
}

.modal-bg.open {
    opacity: 1;
    pointer-events: all
}

.modal-box {
    background: #fff;
    border-radius: 1.2rem;
    width: 90%;
    max-width: 480px;
    padding: 2.2rem;
    position: relative;
    transform: translateY(16px);
    transition: transform .25s;
    max-height: 90vh;
    overflow-y: auto
}

.modal-bg.open .modal-box {
    transform: translateY(0)
}

.modal-close-btn {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    background: var(--light);
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-size: .9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s
}

.modal-close-btn:hover {
    background: var(--border)
}

.modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: .3rem
}

.modal-sub {
    font-size: .82rem;
    color: var(--gray);
    margin-bottom: 1.5rem
}

.modal-success-inner {
    display: none;
    text-align: center;
    padding: 1rem 0
}

.modal-success-inner.show {
    display: block
}

.modal-success-inner .big {
    font-size: 3rem;
    margin-bottom: .8rem
}

.modal-success-inner h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: .5rem
}

.modal-success-inner p {
    color: var(--gray);
    font-size: .88rem
}

/* ─── FOOTER ─── */
.footer-main {
    background: var(--deep);
    color: rgba(255, 255, 255, .75);
    padding: 4rem 4rem 2rem
}

.footer-grid {
    display: grid;
    grid-template-columns: 2.5fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--terra);
    margin-bottom: .8rem
}

.footer-about {
    font-size: .82rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, .5)
}

.footer-col h4 {
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, .4);
    margin-bottom: 1rem
}

.footer-col ul {
    list-style: none
}

.footer-col li {
    margin-bottom: .5rem
}

.footer-col a {
    font-size: .82rem;
    color: rgba(255, 255, 255, .65);
    transition: color .2s
}

.footer-col a:hover {
    color: var(--gold)
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding-top: 1.4rem;
    display: flex;
    justify-content: space-between;
    font-size: .75rem;
    color: rgba(255, 255, 255, .28)
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.hero-content>* {
    animation: fadeUp .8s ease both
}

.hero-content>*:nth-child(1) {
    animation-delay: .1s
}

.hero-content>*:nth-child(2) {
    animation-delay: .2s
}

.hero-content>*:nth-child(3) {
    animation-delay: .3s
}

.hero-content>*:nth-child(4) {
    animation-delay: .45s
}

/* ─── RESPONSIVE ─── */
@media(max-width:1024px) {

    .topbar,
    .nav-inner,
    .breadcrumb,
    .content-wrap,
    .must-see-inner,
    .offers-inner,
    .styles-inner,
    .dest-intro,
    .tour-detail-layout,
    .contact-grid,
    .footer-grid {
        padding-left: 1.5rem;
        padding-right: 1.5rem
    }

    .nav-menu {
        display: none
    }

    .places-grid,
    .offers-grid {
        grid-template-columns: 1fr 1fr
    }

    .styles-grid {
        grid-template-columns: repeat(3, 1fr)
    }

    .dest-intro,
    .tour-detail-layout,
    .contact-grid {
        grid-template-columns: 1fr
    }

    .booking-panel,
    .dest-info-card {
        position: static
    }

    .cta-strip {
        flex-direction: column;
        text-align: center;
        padding: 3rem 2rem
    }

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

    .hero-content {
        padding: 0 2rem
    }

    .f-row {
        grid-template-columns: 1fr
    }

    .inc-grid {
        grid-template-columns: 1fr
    }

    .highlights-grid {
        grid-template-columns: 1fr
    }
}

@media(max-width:600px) {

    .places-grid,
    .offers-grid,
    .styles-grid {
        grid-template-columns: 1fr
    }
}