:root {
    --ink: #111009;
    --parch: #f6f1e8;
    --warm: #ede4d3;
    --card: #faf7f2;
    --terra: #b85828;
    --forest: #243d2f;
    --gold: #c8a84a;
    --mid: #7a6e5f;
    --border: rgba(184, 88, 40, 0.13);
    --r: 18px;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: "DM Sans", sans-serif;
    background: var(--parch);
    color: var(--ink);
}


.hero {
    background: var(--forest);
    color: #fff;
    padding: 72px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse 70% 80% at 50% 50%,
        rgba(184, 88, 40, 0.15),
        transparent 70%
    );
}
.hero-tag {
    display: inline-block;
    padding: 5px 14px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 18px;
}
.hero h1 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 14px;
}
.hero h1 em {
    font-style: italic;
    color: rgba(200, 168, 74, 0.9);
}
.hero p {
    font-size: 0.9rem;
    opacity: 0.65;
    max-width: 480px;
    margin: 0 auto 28px;
    line-height: 1.7;
}

.active-link {
    color: var(--terra);
}

/* SEARCH */
.dest-search {
    display: flex;
    gap: 8px;
    max-width: 480px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.ds-input {
    flex: 1;
    padding: 12px 18px;
    border-radius: 100px;
    border: none;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    color: #fff;
    font-family: "DM Sans", sans-serif;
    font-size: 0.9rem;
    outline: none;
}
.ds-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}
.ds-btn {
    padding: 12px 22px;
    border-radius: 100px;
    background: var(--terra);
    color: #fff;
    border: none;
    font-family: "DM Sans", sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.18s;
}
.ds-btn:hover {
    background: #d4723f;
}

/* FILTERS */
.filters-bar {
    background: var(--card);
    border-bottom: 1px solid var(--border);
    padding: 16px 40px;
    display: flex;
    align-items: center;
    gap: 10px;
    overflow-x: auto;
    position: sticky;
    top: 64px;
    z-index: 90;
}
.filter-btn {
    padding: 7px 16px;
    border-radius: 100px;
    border: 1.5px solid var(--border);
    background: transparent;
    font-family: "DM Sans", sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--mid);
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.18s;
}
.filter-btn:hover {
    border-color: var(--terra);
    color: var(--terra);
}
.filter-btn.on {
    background: var(--terra);
    border-color: var(--terra);
    color: #fff;
}

/* CONTENT */
.content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 48px 40px 80px;
}

/* REGION */
.region {
    margin-bottom: 60px;
}
.region-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}
.region-title {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.6rem;
    font-weight: 400;
}
.region-sub {
    font-size: 0.8rem;
    color: var(--mid);
}
.see-all {
    font-size: 0.8rem;
    color: var(--terra);
    text-decoration: none;
    font-weight: 500;
}
.see-all:hover {
    text-decoration: underline;
}

/* DEST GRID */
.dest-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}
.dest-grid.featured {
    grid-template-columns: 1.6fr 1fr 1fr;
    grid-template-rows: auto auto;
}
.dest-card {
    border-radius: var(--r);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    background: var(--warm);
    transition: all 0.25s;
}
.dest-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 44px rgba(17, 16, 9, 0.14);
}
.dest-card.tall {
    grid-row: span 2;
}
.dest-photo {
    position: relative;
    overflow: hidden;
}
.dest-card.tall .dest-photo {
    height: 380px;
}
.dest-card:not(.tall) .dest-photo {
    height: 190px;
}
.dest-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.dest-card:hover .dest-photo img {
    transform: scale(1.06);
}
.dest-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(17, 16, 9, 0.72) 0%,
        rgba(17, 16, 9, 0.05) 55%,
        transparent 100%
    );
}
.dest-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
}
.dest-flag {
    font-size: 1rem;
    margin-bottom: 3px;
}
.dest-name {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: #fff;
    line-height: 1.1;
}
.dest-card.tall .dest-name {
    font-size: 1.7rem;
}
.dest-tag-row {
    display: flex;
    gap: 5px;
    margin-top: 6px;
    flex-wrap: wrap;
}
.dest-tag {
    padding: 2px 8px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.18);
}
.dest-ai-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 3px 9px;
    border-radius: 100px;
    background: rgba(184, 88, 40, 0.85);
    backdrop-filter: blur(4px);
    color: #fff;
    font-size: 0.63rem;
    font-weight: 600;
}
.dest-temp {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 3px 9px;
    border-radius: 100px;
    background: rgba(17, 16, 9, 0.6);
    backdrop-filter: blur(4px);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.65rem;
}

/* EXPERIENCE CARDS */
.exp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 16px;
}
.exp-card {
    background: var(--card);
    border-radius: var(--r);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all 0.2s;
    cursor: pointer;
}
.exp-card:hover {
    box-shadow: 0 6px 28px rgba(17, 16, 9, 0.09);
    transform: translateY(-2px);
    border-color: rgba(184, 88, 40, 0.28);
}
.exp-photo {
    height: 160px;
    overflow: hidden;
}
.exp-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}
.exp-card:hover .exp-photo img {
    transform: scale(1.05);
}
.exp-body {
    padding: 14px 16px;
}
.exp-type {
    font-size: 0.63rem;
    color: var(--terra);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-bottom: 4px;
}
.exp-name {
    font-size: 0.92rem;
    font-weight: 600;
    margin-bottom: 3px;
}
.exp-detail {
    font-size: 0.75rem;
    color: var(--mid);
    line-height: 1.4;
    margin-bottom: 10px;
}
.exp-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.exp-price {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--terra);
}
.btn-plan-dest {
    padding: 6px 14px;
    border-radius: 8px;
    background: var(--terra);
    color: #fff;
    border: none;
    font-family: "DM Sans", sans-serif;
    font-size: 0.74rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.17s;
    text-decoration: none;
}
.btn-plan-dest:hover {
    background: var(--forest);
}

/* INSPIRATION */
.insp-strip {
    background: var(--forest);
    color: #fff;
    padding: 52px 40px;
    margin: 0 0 60px;
}
.insp-wrap {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}
.insp-left h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 10px;
}
.insp-left h2 em {
    font-style: italic;
    color: rgba(200, 168, 74, 0.9);
}
.insp-left p {
    font-size: 0.86rem;
    opacity: 0.65;
    line-height: 1.7;
    margin-bottom: 20px;
}
.insp-quiz {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.quiz-q {
    font-size: 0.82rem;
    opacity: 0.8;
    margin-bottom: 8px;
    font-weight: 500;
}
.quiz-opts {
    display: flex;
    gap: 7px;
    flex-wrap: wrap;
}
.quiz-opt {
    padding: 6px 14px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    font-family: "DM Sans", sans-serif;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.75);
    cursor: pointer;
    transition: all 0.18s;
}
.quiz-opt:hover,
.quiz-opt.sel {
    background: var(--terra);
    border-color: var(--terra);
    color: #fff;
}
.btn-suggest {
    margin-top: 14px;
    padding: 11px 22px;
    border-radius: 100px;
    background: var(--terra);
    color: #fff;
    border: none;
    font-family: "DM Sans", sans-serif;
    font-size: 0.86rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}
.btn-suggest:hover {
    background: #d4723f;
}
.insp-result {
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--r);
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.12);
}
.ir-label {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.55;
    margin-bottom: 12px;
}
.ir-dest {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.6rem;
    font-weight: 300;
    margin-bottom: 4px;
}
.ir-why {
    font-size: 0.8rem;
    opacity: 0.7;
    line-height: 1.5;
    margin-bottom: 14px;
}
.ir-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}
.ir-tag {
    padding: 3px 9px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.1);
    font-size: 0.7rem;
}
.btn-plan-ir {
    padding: 9px 20px;
    border-radius: 100px;
    background: var(--terra);
    color: #fff;
    border: none;
    font-family: "DM Sans", sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 14px;
    transition: all 0.2s;
}

footer {
    background: var(--ink);
    color: rgba(255, 255, 255, 0.5);
    padding: 32px 40px;
    text-align: center;
    font-size: 0.78rem;
}
footer a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    margin: 0 10px;
}
footer a:hover {
    color: var(--terra);
}

@media (max-width: 900px) {
    .dest-grid,
    .dest-grid.featured {
        grid-template-columns: 1fr 1fr;
    }
    .dest-card.tall {
        grid-row: auto;
    }
    .dest-card.tall .dest-photo {
        height: 220px;
    }
    .exp-grid {
        grid-template-columns: 1fr 1fr;
    }
    .insp-wrap {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 600px) {
    nav {
        padding: 0 20px;
    }
    .nav-links {
        display: none;
    }
    .content,
    .filters-bar {
        padding-left: 16px;
        padding-right: 16px;
    }
    .hero {
        padding: 52px 20px;
    }
    .dest-grid,
    .dest-grid.featured,
    .exp-grid {
        grid-template-columns: 1fr;
    }
    .insp-strip {
        padding: 36px 20px;
    }
}
