/* ─────────────────────────────────────────
   DESTINATION TEMPLATE STYLES v2
   Golf Travel People - Country/Destination Pages
───────────────────────────────────────── */

/* ─────────────────────────────────────────
   DESIGN TOKENS
───────────────────────────────────────── */
:root {
    --dest-green: #008d36;
    --dest-mid: #6ba439;
    --dest-yellow: #fec803;
    --dest-forest: #375543;
    --dest-ink: #1a3322;
    --dest-muted: rgba(26,51,34,0.50);
    --dest-rule: rgba(26,51,34,0.10);
    --dest-sand: #faf7f2;
    --dest-border: #e4dfd6;
    --dest-r: 6px;
    --dest-rlg: 12px;
    --dest-max: 1200px;
}

/* ─────────────────────────────────────────
   BASE
───────────────────────────────────────── */
.dest-page {
    font-family: 'Jost', sans-serif;
    font-weight: 300;
    color: var(--dest-ink);
    line-height: 1.6;
}

/* ─────────────────────────────────────────
   HERO (v2 - Centered)
───────────────────────────────────────── */
.dest-hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 120px 0 100px;
}

.dest-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    animation: destHzoom 20s ease-in-out infinite alternate;
}

@keyframes destHzoom {
    from { transform: scale(1.07); }
    to { transform: scale(1.0) translate(-0.6%, 0.3%); }
}

.dest-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(to bottom,
            rgba(5,15,8,.40) 0%,
            rgba(5,15,8,.15) 28%,
            rgba(5,15,8,.42) 58%,
            rgba(5,15,8,.84) 100%),
        radial-gradient(ellipse at center, transparent 40%, rgba(5,15,8,.28) 100%);
}

.dest-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 2rem;
    max-width: 860px;
    animation: destHfade 1.2s ease forwards;
}

@keyframes destHfade {
    from { opacity: 0; transform: translateY(22px); }
    to { opacity: 1; transform: translateY(0); }
}

.dest-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    font-size: 0.72rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--dest-yellow);
    margin-bottom: 1.5rem;
}

.dest-hero-eyebrow::before,
.dest-hero-eyebrow::after {
    content: '';
    display: block;
    width: 36px;
    height: 1px;
    background: var(--dest-yellow);
}

.dest-hero-h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3.2rem, 7vw, 6.2rem);
    font-weight: 300;
    line-height: 1.08;
    color: #ffffff;
    margin-bottom: 1.4rem;
    letter-spacing: -0.01em;
}

.dest-hero-h1 em {
    font-style: italic;
    color: var(--dest-yellow);
}

.dest-hero-sub {
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    line-height: 1.75;
    color: rgba(237,233,224,0.78);
    max-width: 560px;
    margin: 0 auto 2.5rem;
}

.dest-hero-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.dest-btn-primary {
    background: var(--dest-forest);
    color: #fff;
    font-family: 'Jost', sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.9rem 2.2rem;
    border: none;
    cursor: pointer;
    transition: background .2s, transform .15s;
    display: inline-block;
    text-decoration: none;
}

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

.dest-btn-ghost {
    border: 1px solid rgba(255,255,255,.55);
    color: #fff;
    background: transparent;
    font-family: 'Jost', sans-serif;
    font-size: 0.82rem;
    font-weight: 300;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.9rem 2.2rem;
    cursor: pointer;
    display: inline-block;
    transition: border-color .2s, background .2s;
    text-decoration: none;
}

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

/* Hero Stats Bar */
.dest-hero-stats {
    position: relative;
    z-index: 2;
    display: inline-flex;
    gap: 0;
    justify-content: center;
    border: 1px solid rgba(237,233,224,0.15);
    background: rgba(10,13,9,0.55);
    backdrop-filter: blur(6px);
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.dest-h-stat {
    padding: 1rem 1.8rem;
    border-right: 1px solid rgba(237,233,224,0.1);
    text-align: center;
}

.dest-h-stat:last-child {
    border-right: none;
}

.dest-h-stat strong {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.7rem;
    font-weight: 400;
    color: var(--dest-yellow);
    line-height: 1.1;
}

.dest-h-stat span {
    font-size: 0.7rem;
    letter-spacing: 0.07em;
    color: rgba(237,233,224,0.65);
}

/* Hero Breadcrumb */
.dest-hero-breadcrumb {
    position: absolute;
    bottom: 1.5rem;
    left: 3rem;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(237,233,224,0.45);
}

.dest-hero-breadcrumb a {
    color: rgba(237,233,224,0.45);
    text-decoration: none;
    transition: color 0.2s;
}

.dest-hero-breadcrumb a:hover {
    color: var(--dest-yellow);
}

.dest-hero-breadcrumb span {
    color: rgba(237,233,224,0.25);
}

.dest-hero-breadcrumb strong {
    color: rgba(237,233,224,0.7);
    font-weight: 400;
}

/* Scroll Cue */
.dest-scroll-cue {
    position: absolute;
    bottom: 1.5rem;
    right: 3rem;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.45rem;
}

.dest-scroll-cue span {
    font-size: 0.6rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(237,233,224,0.35);
}

.dest-scroll-line {
    width: 1px;
    height: 44px;
    background: linear-gradient(to bottom, transparent, var(--dest-forest));
    animation: destSp 2s ease-in-out infinite;
}

@keyframes destSp {
    0%,100% { opacity: 0.4; }
    50% { opacity: 1; }
}

/* ─────────────────────────────────────────
   TRUST BAR
───────────────────────────────────────── */
.dest-trust-bar {
    background: var(--dest-yellow);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.4rem;
    padding: 0.72rem 2rem;
    flex-wrap: wrap;
}

.dest-trust-bar span {
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--dest-forest);
}

.dest-trust-bar span::before {
    content: '◆  ';
    font-size: 0.38rem;
    opacity: 0.5;
}

/* ─────────────────────────────────────────
   SHARED SECTION CHROME
───────────────────────────────────────── */
.dest-sec {
    padding: 5.5rem 0;
}

.dest-sec-inner {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 32px;
}

.dest-sec-white { background: #ffffff; }
.dest-sec-sand { background: var(--dest-sand); }
.dest-sec-forest { background: var(--dest-forest); }

.dest-eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--dest-yellow);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.dest-eyebrow::before {
    content: '';
    display: block;
    width: 22px;
    height: 1px;
    background: var(--dest-yellow);
}

.dest-eyebrow-green {
    color: var(--dest-green);
}

.dest-eyebrow-green::before {
    background: var(--dest-green);
}

.dest-stitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3.2vw, 2.9rem);
    font-weight: 300;
    line-height: 1.18;
    color: var(--dest-ink);
}

.dest-stitle em {
    font-style: italic;
    color: var(--dest-mid);
}

.dest-stitle-white {
    color: #ffffff;
}

.dest-stitle-white em {
    color: var(--dest-yellow);
}

.dest-sdesc {
    font-size: 0.95rem;
    line-height: 1.78;
    color: var(--dest-muted);
    max-width: 520px;
    margin-top: 0.6rem;
}

.dest-sec-hd {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

/* ─────────────────────────────────────────
   SCROLL REVEAL
───────────────────────────────────────── */
.dest-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .6s ease, transform .6s ease;
}

.dest-reveal.vis {
    opacity: 1;
    transform: translateY(0);
}

.dest-reveal-2 {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .6s ease .14s, transform .6s ease .14s;
}

.dest-reveal-2.vis {
    opacity: 1;
    transform: translateY(0);
}

.dest-reveal-3 {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .6s ease .26s, transform .6s ease .26s;
}

.dest-reveal-3.vis {
    opacity: 1;
    transform: translateY(0);
}

/* ─────────────────────────────────────────
   REGIONS (v2 - Expand Panels)
───────────────────────────────────────── */
.dest-region-intro {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.dest-region-panels {
    display: flex;
    gap: 3px;
    height: 400px;
}

.dest-rp {
    flex: 1;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: flex 0.45s ease;
    min-width: 58px;
    text-decoration: none;
    display: block;
}

.dest-rp:hover {
    flex: 4.2;
}

.dest-rp img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.52) saturate(0.8);
    transition: filter 0.4s;
}

.dest-rp:hover img {
    filter: brightness(0.7) saturate(1.05);
}

.dest-rp-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.2rem 1.4rem 1.5rem;
    background: linear-gradient(to top, rgba(5,12,8,0.97) 0%, rgba(5,12,8,0.7) 55%, transparent 100%);
}

.dest-rp-flag {
    position: absolute;
    top: 0.8rem;
    left: 0.9rem;
    font-size: 0.6rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    font-family: 'Jost', sans-serif;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    opacity: 1;
    transition: opacity 0.3s;
}

.dest-rp:hover .dest-rp-flag {
    opacity: 0;
}

.dest-rp-tag {
    display: inline-block;
    font-size: 0.58rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    background: var(--dest-yellow);
    color: var(--dest-ink);
    font-weight: 500;
    padding: 0.18rem 0.55rem;
    margin-bottom: 0.55rem;
    width: fit-content;
    opacity: 0;
    transform: translateY(4px);
    transition: opacity 0.3s 0.1s, transform 0.3s 0.1s;
}

.dest-rp:hover .dest-rp-tag {
    opacity: 1;
    transform: translateY(0);
}

.dest-rp-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.45rem;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-shadow: 0 1px 6px rgba(0,0,0,0.9);
}

.dest-rp-courses {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.75);
    margin-top: 0.35rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s 0.08s, opacity 0.35s;
    opacity: 0;
    white-space: nowrap;
    text-shadow: 0 1px 3px rgba(0,0,0,0.7);
}

.dest-rp:hover .dest-rp-courses {
    max-height: 44px;
    opacity: 1;
}

.dest-rp-cta {
    display: inline-block;
    margin-top: 0.9rem;
    border: 1px solid rgba(237,233,224,0.35);
    color: #ffffff;
    padding: 0.42rem 1rem;
    font-size: 0.66rem;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    text-decoration: none;
    opacity: 0;
    transform: translateY(5px);
    transition: all 0.3s 0.15s;
}

.dest-rp:hover .dest-rp-cta {
    opacity: 1;
    transform: translateY(0);
}

.dest-rp-cta:hover {
    background: var(--dest-yellow);
    border-color: var(--dest-yellow);
    color: var(--dest-ink);
}

/* ─────────────────────────────────────────
   WHY DESTINATION
───────────────────────────────────────── */
.dest-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 3rem;
    border: 1px solid rgba(255,255,255,.2);
}

.dest-wc {
    padding: 2.4rem;
    border-right: 1px solid rgba(255,255,255,.2);
    background: rgba(255,255,255,.1);
    position: relative;
    overflow: hidden;
    border-top: 3px solid transparent;
    transition: all .22s;
}

.dest-wc:last-child {
    border-right: none;
}

.dest-wc:hover {
    background: rgba(255,255,255,.2);
    border-top-color: var(--dest-yellow);
}

.dest-wc-bg {
    font-family: 'Cormorant Garamond', serif;
    font-size: 6rem;
    font-weight: 300;
    line-height: 1;
    color: rgba(255,255,255,.06);
    position: absolute;
    top: 1rem;
    right: 1.4rem;
    pointer-events: none;
}

.dest-wc-ico {
    margin-bottom: 1rem;
}

.dest-wc-ico svg {
    width: 28px;
    height: 28px;
}

.dest-wc-t {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 400;
    color: #fff;
    margin-bottom: 0.65rem;
}

.dest-wc-b {
    font-size: 0.86rem;
    line-height: 1.78;
    color: rgba(255,255,255,.77);
}

/* ─────────────────────────────────────────
   HOTELS (v2 - Overlay Cards)
───────────────────────────────────────── */
.dest-feat-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.dest-flt-row {
    display: flex;
    gap: 0.45rem;
    margin-bottom: 2.2rem;
    flex-wrap: wrap;
    align-items: center;
}

.dest-flt-lbl {
    font-size: 0.67rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--dest-muted);
    margin-right: 0.4rem;
}

.dest-flt-btn {
    font-family: 'Jost', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.38rem 0.9rem;
    border: 1px solid var(--dest-rule);
    background: none;
    color: var(--dest-muted);
    cursor: pointer;
    transition: all 0.2s;
}

.dest-flt-btn:hover {
    border-color: var(--dest-mid);
    color: var(--dest-ink);
}

.dest-flt-btn.on {
    border-color: var(--dest-yellow);
    color: var(--dest-ink);
    background: rgba(254,200,3,0.1);
}

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

.dest-hc {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: #ffffff;
}

.dest-hc.hidden {
    display: none;
}

.dest-hc img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    filter: brightness(0.68);
    transition: transform 0.55s ease, filter 0.3s;
}

.dest-hc:hover img {
    transform: scale(1.05);
    filter: brightness(0.84);
}

.dest-ho {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5,20,10,0.92) 0%, rgba(5,20,10,0.55) 38%, rgba(5,20,10,0.1) 62%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
}

.dest-htag {
    display: inline-block;
    font-size: 0.58rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    background: var(--dest-yellow);
    color: var(--dest-ink);
    font-weight: 500;
    padding: 0.2rem 0.58rem;
    margin-bottom: 0.6rem;
    width: fit-content;
}

.dest-hstars {
    font-size: 0.68rem;
    color: var(--dest-yellow);
    letter-spacing: 0.04em;
    margin-bottom: 0.25rem;
}

.dest-hname {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 0.25rem;
    line-height: 1.2;
    color: #ffffff;
}

.dest-hmeta {
    font-size: 0.73rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 0.35rem;
}

.dest-hfeats {
    font-size: 0.68rem;
    color: rgba(255,255,255,0.55);
}

.dest-hbtn {
    display: inline-block;
    margin-top: 0.85rem;
    border: 1px solid rgba(237,233,224,0.35);
    color: #ffffff;
    background: transparent;
    padding: 0.42rem 1rem;
    font-family: 'Jost', sans-serif;
    font-size: 0.66rem;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    opacity: 0;
    transform: translateY(5px);
    transition: all 0.3s;
    width: fit-content;
}

.dest-hc:hover .dest-hbtn {
    opacity: 1;
    transform: translateY(0);
}

.dest-hbtn:hover {
    background: var(--dest-yellow);
    border-color: var(--dest-yellow);
    color: var(--dest-ink);
}

/* ─────────────────────────────────────────
   WHEN TO GO
───────────────────────────────────────── */
.dest-when-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 2.5rem;
}

.dest-month-rows {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.dest-mb-row {
    display: flex;
    align-items: center;
    padding: 0.65rem 0;
    border-bottom: 1px solid var(--dest-rule);
}

.dest-mb-row:last-child {
    border-bottom: none;
}

.dest-mb-name {
    width: 90px;
    font-size: 0.82rem;
    font-weight: 400;
    color: var(--dest-ink);
}

.dest-mb-track {
    flex: 1;
    height: 8px;
    background: rgba(26,51,34,.06);
    border-radius: 4px;
    overflow: hidden;
}

.dest-mb-fill {
    height: 100%;
    border-radius: 4px;
    transition: width .6s ease;
}

.dest-mb-fill.peak { background: var(--dest-green); }
.dest-mb-fill.good { background: var(--dest-mid); }
.dest-mb-fill.ok { background: var(--dest-yellow); }
.dest-mb-fill.low { background: #c8c3bb; }

.dest-mb-tag {
    width: 68px;
    flex-shrink: 0;
    text-align: right;
    font-size: 0.65rem;
    letter-spacing: .05em;
    padding: 0.72rem 0;
}

.dest-mb-tag.peak { color: var(--dest-green); }
.dest-mb-tag.good { color: var(--dest-mid); }
.dest-mb-tag.ok { color: #8a6e00; }
.dest-mb-tag.low { color: var(--dest-muted); }

.dest-when-notes {
    padding-top: 0.25rem;
}

.dest-wni {
    padding: 1.4rem 0;
    border-bottom: 1px solid var(--dest-rule);
}

.dest-wni:last-child {
    border-bottom: none;
}

.dest-wni-season {
    font-size: 0.66rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--dest-yellow);
    margin-bottom: 0.35rem;
}

.dest-wni-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--dest-ink);
    margin-bottom: 0.4rem;
}

.dest-wni-body {
    font-size: 0.85rem;
    line-height: 1.76;
    color: var(--dest-muted);
}

/* ─────────────────────────────────────────
   EXPERT QUOTE
───────────────────────────────────────── */
.dest-expert-layout {
    display: grid;
    grid-template-columns: 1fr 1.65fr;
    gap: 4rem;
    align-items: center;
}

.dest-expert-img {
    position: relative;
    border-radius: var(--dest-rlg);
    overflow: hidden;
}

.dest-expert-img img {
    width: 100%;
    aspect-ratio: 6/3;
    object-fit: cover;
    display: block;
    filter: brightness(.84) saturate(.92);
}

.dest-expert-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(55,85,67,.96) 0%, transparent 100%);
    padding: 2.5rem 1.5rem 1.2rem;
    font-size: 0.7rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255,255,255,.65);
}

.dest-expert-caption strong {
    display: block;
    color: #fff;
    font-weight: 400;
    font-size: 0.82rem;
    margin-bottom: 0.2rem;
}

.dest-qmark {
    font-family: 'Cormorant Garamond', serif;
    font-size: 5rem;
    line-height: .58;
    color: var(--dest-yellow);
    opacity: .65;
    margin-bottom: 1.4rem;
    display: block;
}

.dest-expert-quote {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: clamp(1.28rem, 2vw, 1.6rem);
    font-weight: 300;
    line-height: 1.62;
    color: var(--dest-ink);
    margin-bottom: 1.4rem;
}

.dest-expert-attrib {
    font-size: 0.72rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--dest-yellow);
}

.dest-expert-attrib span {
    color: var(--dest-muted);
    margin-left: .5rem;
    font-weight: 300;
}

/* ─────────────────────────────────────────
   COURSES
───────────────────────────────────────── */
.dest-courses-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3px;
    margin-top: 2.5rem;
}

.dest-ccard {
    background: var(--dest-sand);
    padding: 1.8rem 1.6rem;
    border-top: 3px solid transparent;
    transition: border-color .2s, background .2s, transform .2s;
    cursor: pointer;
    display: block;
    text-decoration: none;
    color: inherit;
}

.dest-ccard:hover {
    border-top-color: var(--dest-yellow);
    background: #f2eee4;
    transform: translateY(-3px);
}

.dest-ccard-flag {
    font-size: 1.8rem;
    margin-bottom: 0.85rem;
    display: block;
}

.dest-ccard-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.12rem;
    font-weight: 400;
    color: var(--dest-ink);
    margin-bottom: 2px;
    line-height: 1.2;
}

.dest-ccard-region {
    font-size: 0.68rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--dest-green);
    margin-bottom: 0.65rem;
}

.dest-ccard-body {
    font-size: 0.82rem;
    line-height: 1.72;
    color: var(--dest-muted);
    margin-bottom: 0.85rem;
}

.dest-ccard-tags {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}

.dest-ctag {
    font-size: 0.62rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    border: 1px solid var(--dest-rule);
    color: var(--dest-muted);
    padding: 2px 7px;
}

/* ─────────────────────────────────────────
   TESTIMONIALS
───────────────────────────────────────── */
.dest-test-sec {
    position: relative;
    width: 100%;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.dest-tv {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.dest-tv img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%;
    display: block;
    filter: saturate(.58) brightness(.38);
}

.dest-tv::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to bottom, transparent 0%, rgba(5,20,8,.78) 50%, rgba(5,20,8,.97) 100%);
    z-index: 1;
}

.dest-tc-wrap {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5.5rem 3rem 2rem;
}

.dest-tc-slide {
    display: none;
    max-width: 800px;
    text-align: center;
}

.dest-tc-slide.on {
    display: block;
    animation: destFi .42s ease;
}

@keyframes destFi {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.dest-qm {
    font-family: 'Cormorant Garamond', serif;
    font-size: 7.5rem;
    line-height: .55;
    color: var(--dest-yellow);
    opacity: .82;
    margin-bottom: 1.5rem;
    display: block;
}

.dest-qt {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: clamp(1.45rem, 2.5vw, 2.1rem);
    font-weight: 300;
    line-height: 1.5;
    color: #fff;
    margin-bottom: 1.5rem;
    letter-spacing: .01em;
}

.dest-qa {
    font-size: 0.72rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--dest-yellow);
    font-weight: 500;
}

.dest-qa span {
    color: rgba(255,255,255,.42);
    margin-left: .55rem;
    font-weight: 300;
}

.dest-tc-nav {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    gap: 8px;
    padding-bottom: 2rem;
}

.dest-tc-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,.22);
    border: none;
    cursor: pointer;
    transition: background .2s, transform .2s;
}

.dest-tc-dot.on {
    background: var(--dest-yellow);
    transform: scale(1.3);
}

.dest-tstats {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    background: var(--dest-yellow);
    width: 100%;
}

.dest-ts {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.8rem 1rem;
    border-right: 1px solid rgba(255,255,255,.22);
    transition: background .2s;
}

.dest-ts:last-child {
    border-right: none;
}

.dest-ts:hover {
    background: #f5c000;
}

.dest-ts strong {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.6rem;
    font-weight: 300;
    color: var(--dest-forest);
    line-height: 1;
    margin-bottom: .28rem;
}

.dest-ts span {
    font-size: 0.66rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(26,51,34,.68);
}

/* ─────────────────────────────────────────
   HOW IT WORKS
───────────────────────────────────────── */
.dest-how-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 3rem;
    border: 1px solid rgba(255,255,255,.18);
}

.dest-hstep {
    padding: 2.2rem;
    border-right: 1px solid rgba(255,255,255,.18);
    background: rgba(255,255,255,.09);
    position: relative;
    transition: background .2s;
}

.dest-hstep:last-child {
    border-right: none;
}

.dest-hstep:hover {
    background: rgba(255,255,255,.17);
}

.dest-hstep-n {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.2rem;
    font-weight: 300;
    line-height: 1;
    color: rgba(254,200,3,.52);
    margin-bottom: .9rem;
    display: block;
}

.dest-hstep-t {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.18rem;
    font-weight: 400;
    color: #fff;
    margin-bottom: .6rem;
}

.dest-hstep-b {
    font-size: 0.84rem;
    line-height: 1.76;
    color: rgba(255,255,255,.73);
}

/* ─────────────────────────────────────────
   CTA
───────────────────────────────────────── */
.dest-cta-sec {
    background: var(--dest-sand);
    padding: 5.5rem 0;
    text-align: center;
    border-top: 1px solid var(--dest-border);
}

.dest-cta-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .9rem;
    font-size: 0.7rem;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--dest-yellow);
    margin-bottom: 1.4rem;
}

.dest-cta-eyebrow::before,
.dest-cta-eyebrow::after {
    content: '';
    display: block;
    width: 28px;
    height: 1px;
    background: var(--dest-yellow);
}

.dest-cta-h {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 3.8vw, 3.5rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--dest-ink);
    margin-bottom: .9rem;
}

.dest-cta-h em {
    font-style: italic;
    color: var(--dest-mid);
}

.dest-cta-sub {
    font-size: .96rem;
    line-height: 1.75;
    color: var(--dest-muted);
    max-width: 480px;
    margin: 0 auto 2.2rem;
}

.dest-cta-btns {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.dest-btn-cta-gold {
    background: var(--dest-yellow);
    color: var(--dest-forest);
    font-family: 'Jost', sans-serif;
    font-size: .8rem;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 13px 28px;
    border: none;
    cursor: pointer;
    transition: background .2s, transform .15s;
    display: inline-block;
}

.dest-btn-cta-gold:hover {
    background: #f5c000;
    transform: translateY(-2px);
}

.dest-btn-cta-ol {
    border: 1px solid rgba(26,51,34,.28);
    color: var(--dest-ink);
    background: transparent;
    font-family: 'Jost', sans-serif;
    font-size: .8rem;
    font-weight: 300;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 12px 24px;
    cursor: pointer;
    display: inline-block;
    transition: border-color .2s;
    text-decoration: none;
}

.dest-btn-cta-ol:hover {
    border-color: var(--dest-ink);
}

.dest-cta-note {
    font-size: .74rem;
    color: var(--dest-muted);
    margin-top: 1.1rem;
}

/* ─────────────────────────────────────────
   MODAL
───────────────────────────────────────── */
.dest-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(5,15,8,.85);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(4px);
}

.dest-modal-overlay.open {
    display: flex;
}

.dest-modal {
    background: #fff;
    border-radius: var(--dest-rlg);
    max-width: 480px;
    width: 100%;
    padding: 3rem 2.5rem;
    position: relative;
    animation: destModalIn .3s ease;
}

@keyframes destModalIn {
    from { opacity: 0; transform: scale(0.95) translateY(10px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.dest-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--dest-muted);
    cursor: pointer;
    line-height: 1;
    transition: color .2s;
}

.dest-modal-close:hover {
    color: var(--dest-ink);
}

.dest-modal-step {
    display: none;
    text-align: center;
}

.dest-modal-step.active {
    display: block;
    animation: destStepIn .25s ease;
}

@keyframes destStepIn {
    from { opacity: 0; transform: translateX(10px); }
    to { opacity: 1; transform: translateX(0); }
}

.dest-modal-icon {
    font-size: 3rem;
    margin-bottom: 1.2rem;
}

.dest-modal-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--dest-ink);
    margin-bottom: 0.6rem;
}

.dest-modal-sub {
    font-size: 0.92rem;
    color: var(--dest-muted);
    line-height: 1.6;
    margin-bottom: 1.8rem;
}

.dest-modal-form {
    text-align: left;
    margin-bottom: 1.5rem;
}

.dest-modal-field {
    margin-bottom: 1rem;
}

.dest-modal-field label {
    display: block;
    font-size: 0.72rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--dest-muted);
    margin-bottom: 0.4rem;
}

.dest-modal-field input,
.dest-modal-field select {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid var(--dest-border);
    border-radius: var(--dest-r);
    font-family: 'Jost', sans-serif;
    font-size: 0.95rem;
    color: var(--dest-ink);
    transition: border-color .2s;
}

.dest-modal-field input:focus,
.dest-modal-field select:focus {
    outline: none;
    border-color: var(--dest-green);
}

.dest-modal-btn-primary {
    width: 100%;
    background: var(--dest-forest);
    color: #fff;
    font-family: 'Jost', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 14px 24px;
    border: none;
    border-radius: var(--dest-r);
    cursor: pointer;
    transition: background .2s;
    margin-bottom: 0.8rem;
}

.dest-modal-btn-primary:hover {
    background: var(--dest-green);
}

.dest-modal-btn-ghost {
    width: 100%;
    background: none;
    border: 1px solid var(--dest-border);
    color: var(--dest-muted);
    font-family: 'Jost', sans-serif;
    font-size: 0.8rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 12px 24px;
    border-radius: var(--dest-r);
    cursor: pointer;
    transition: border-color .2s, color .2s;
}

.dest-modal-btn-ghost:hover {
    border-color: var(--dest-ink);
    color: var(--dest-ink);
}

.dest-modal-btn-back {
    background: none;
    border: none;
    color: var(--dest-muted);
    font-family: 'Jost', sans-serif;
    font-size: 0.75rem;
    letter-spacing: .06em;
    cursor: pointer;
    margin-top: 0.5rem;
    transition: color .2s;
}

.dest-modal-btn-back:hover {
    color: var(--dest-ink);
}

.dest-modal-trust {
    font-size: 0.72rem;
    color: var(--dest-muted);
    margin-top: 1rem;
}

.dest-modal-confirm-details {
    text-align: left;
    background: var(--dest-sand);
    padding: 1.2rem 1.4rem;
    border-radius: var(--dest-r);
    margin: 1.5rem 0;
}

.dest-modal-confirm-details p {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--dest-ink);
    margin-bottom: 0.6rem;
}

.dest-modal-confirm-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dest-modal-confirm-details li {
    font-size: 0.82rem;
    color: var(--dest-muted);
    padding: 0.3rem 0;
    padding-left: 1.2rem;
    position: relative;
}

.dest-modal-confirm-details li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--dest-green);
}

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 1000px) {
    .dest-region-panels {
        height: 320px;
    }
    
    .dest-hotel-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .dest-courses-grid,
    .dest-how-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .dest-hstep {
        border-bottom: 1px solid rgba(255,255,255,.12);
    }
    
    .dest-why-grid {
        grid-template-columns: 1fr;
    }
    
    .dest-wc {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,.15);
    }
    
    .dest-wc:last-child {
        border-bottom: none;
    }
    
    .dest-when-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .dest-expert-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .dest-expert-img img {
        aspect-ratio: 16/9;
    }
    
    .dest-hero-stats {
        min-width: 320px;
    }
}

@media (max-width: 680px) {
    .dest-sec {
        padding: 3.8rem 0;
    }
    
    .dest-sec-inner {
        padding: 0 20px;
    }
    
    .dest-hero {
        padding: 100px 0 80px;
    }
    
    .dest-hero-stats {
        margin: 2rem 1rem 0;
        flex-wrap: wrap;
    }
    
    .dest-h-stat {
        flex: 1 1 50%;
        padding: 0.8rem;
        border-bottom: 1px solid rgba(237,233,224,0.1);
    }
    
    .dest-h-stat:nth-child(2) {
        border-right: none;
    }
    
    .dest-h-stat:nth-child(3),
    .dest-h-stat:nth-child(4) {
        border-bottom: none;
    }
    
    .dest-region-panels {
        flex-direction: column;
        height: auto;
    }
    
    .dest-rp {
        height: 180px;
        min-width: auto;
    }
    
    .dest-rp:hover {
        flex: 1;
    }
    
    .dest-rp-flag {
        writing-mode: horizontal-tb;
    }
    
    .dest-rp-tag,
    .dest-rp-courses,
    .dest-rp-cta {
        opacity: 1;
        transform: translateY(0);
        max-height: none;
    }
    
    .dest-hotel-grid,
    .dest-courses-grid,
    .dest-how-grid {
        grid-template-columns: 1fr;
    }
    
    .dest-hero-breadcrumb {
        display: none;
    }
    
    .dest-scroll-cue {
        display: none;
    }
    
    .dest-modal {
        padding: 2rem 1.5rem;
    }
}
.dest-qmark,
.dest-qm {
    display: none;
}