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

:root {
    --sand: #f5f0e8;
    --dark: #1a1a18;
    --moss: #4a5e3a;
    --rust: #c4622d;
    --cream: #faf7f2;
    --muted: #7a7670;
    --border: #e2ddd5;
    --gold: #d4a853;
    --sky: #ddeef5;
    --blush: #f5ece6;
    --radius: 1rem;
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.07)
}

html {
    scroll-behavior: smooth
}

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

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.1rem 3rem;
    border-bottom: 1px solid var(--border);
    background: rgba(250, 247, 242, .97);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 500
}

.logo {
    cursor: pointer;
    user-select: none;
    display: flex;
    align-items: center
}

.logo-img {
    height: 38px;
    width: auto;
    display: block
}

nav ul {
    list-style: none;
    display: flex;
    gap: 1.75rem;
    align-items: center
}

nav a {
    text-decoration: none;
    font-size: .82rem;
    font-weight: 500;
    color: var(--muted);
    letter-spacing: .05em;
    text-transform: uppercase;
    padding-bottom: 2px;
    border-bottom: 2px solid transparent;
    transition: all .2s;
    cursor: pointer
}

nav a:hover,
nav a.active-nav {
    color: var(--dark);
    border-bottom-color: var(--rust)
}

.nav-cta {
    background: var(--dark);
    color: var(--cream) !important;
    padding: .5rem 1.25rem;
    border-radius: 2rem;
    font-size: .8rem !important;
    border-bottom: none !important;
    transition: background .2s !important
}

.nav-cta:hover {
    background: var(--moss) !important
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.4rem;
    color: var(--dark)
}

section {
    padding: 4.5rem 3rem
}

.section-tag {
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--rust);
    font-weight: 600;
    margin-bottom: .5rem
}

body h1 {
    font-family: 'Playfair Display', serif;
    font-size: 5.5rem;
    line-height: 1.05;
    letter-spacing: -.04em
}

body h1 em {
    font-style: italic;
    color: var(--moss)
}

body h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.3rem;
    letter-spacing: -.02em
}

body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    letter-spacing: -.01em
}

body h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem
}

.tag-line {
    font-size: .75rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--rust);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: .6rem;
    margin-bottom: 1.25rem
}

.tag-line::before {
    content: '';
    width: 2rem;
    height: 1px;
    background: var(--rust);
    display: inline-block
}

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

.see-all {
    font-size: .82rem;
    color: var(--muted);
    text-decoration: none;
    border-bottom: 1px solid var(--border);
    padding-bottom: 2px;
    cursor: pointer;
    transition: all .2s;
    background: none;
    border-top: none;
    border-left: none;
    border-right: none;
    font-family: 'DM Sans', sans-serif
}

.see-all:hover {
    color: var(--dark);
    border-bottom-color: var(--dark)
}

.btn-primary {
    background: var(--dark);
    color: var(--cream);
    padding: .8rem 1.8rem;
    border-radius: 2rem;
    font-size: .85rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: background .2s, transform .15s;
    display: inline-block;
    font-family: 'DM Sans', sans-serif;
    letter-spacing: .02em
}

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

.btn-outline {
    background: transparent;
    color: var(--dark);
    padding: .8rem 1.8rem;
    border-radius: 2rem;
    font-size: .85rem;
    font-weight: 500;
    cursor: pointer;
    border: 1.5px solid var(--border);
    transition: all .2s;
    font-family: 'DM Sans', sans-serif
}

.btn-outline:hover {
    border-color: var(--dark);
    background: var(--dark);
    color: var(--cream)
}

.btn-ghost {
    color: var(--dark);
    font-size: .88rem;
    font-weight: 400;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: .4rem;
    cursor: pointer;
    background: none;
    border: none;
    font-family: 'DM Sans', sans-serif
}

.btn-ghost::after {
    content: '→';
    transition: transform .2s
}

.btn-ghost:hover::after {
    transform: translateX(4px)
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    background: white;
    color: var(--moss);
    font-size: .7rem;
    font-weight: 700;
    padding: .28rem .65rem;
    border-radius: 2rem;
    text-transform: uppercase;
    letter-spacing: .05em
}

.pill {
    font-size: .72rem;
    padding: .25rem .65rem;
    border-radius: 2rem;
    background: var(--sand);
    color: var(--muted);
    font-weight: 500
}

.pill.solo {
    background: #fef3e8;
    color: #b45309
}

.pill.couple {
    background: #fce7f3;
    color: #9d174d
}

.pill.group {
    background: #e0f2fe;
    color: #0369a1
}

.pill.family {
    background: #dcfce7;
    color: #166534
}

.pill.adventure {
    background: #ede9fe;
    color: #6d28d9
}

.pill.nature {
    background: #d1fae5;
    color: #065f46
}

.pill.heritage {
    background: #fef9c3;
    color: #854d0e
}

.pill.beach {
    background: #e0f7fa;
    color: #0e7490
}

.filter-bar {
    display: flex;
    gap: .6rem;
    flex-wrap: wrap;
    margin-bottom: 2rem
}

.chip {
    padding: .45rem 1rem;
    border-radius: 2rem;
    border: 1.5px solid var(--border);
    font-size: .8rem;
    font-weight: 500;
    cursor: pointer;
    transition: all .2s;
    background: white;
    font-family: 'DM Sans', sans-serif;
    color: var(--muted)
}

.chip:hover,
.chip.on {
    background: var(--dark);
    color: var(--cream);
    border-color: var(--dark)
}

.card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    background: white;
    cursor: pointer;
    transition: transform .2s, box-shadow .2s
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow)
}

.card-img {
    height: 200px;
    position: relative;
    overflow: hidden
}

.card-img svg {
    width: 100%;
    height: 100%;
    display: block
}

.card-body {
    padding: 1.25rem
}

.card-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    margin-bottom: .35rem
}

.card-meta {
    font-size: .78rem;
    color: var(--muted);
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: .7rem
}

.card-price {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark)
}

.card-price small {
    font-size: .72rem;
    font-weight: 400;
    color: var(--muted)
}

.card-pills {
    display: flex;
    gap: .4rem;
    flex-wrap: wrap;
    margin-bottom: .7rem
}

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

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

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem
}

.avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .75rem;
    font-weight: 700;
    color: white;
    flex-shrink: 0
}

#toast {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(80px);
    background: var(--dark);
    color: var(--cream);
    padding: .9rem 1.75rem;
    border-radius: 2rem;
    font-size: .85rem;
    z-index: 9999;
    opacity: 0;
    transition: all .35s;
    pointer-events: none;
    white-space: nowrap;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .2)
}

#toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1
}

footer {
    border-top: 1px solid var(--border);
    padding: 3rem;
    background: var(--dark);
    color: var(--cream)
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2.5rem
}

.footer-brand p {
    font-size: .85rem;
    color: rgba(255, 255, 255, .5);
    line-height: 1.7;
    margin-top: .75rem;
    max-width: 240px
}

.footer-col h5 {
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: rgba(255, 255, 255, .4);
    margin-bottom: 1rem
}

.footer-col a {
    display: block;
    font-size: .85rem;
    color: rgba(255, 255, 255, .65);
    text-decoration: none;
    margin-bottom: .5rem;
    cursor: pointer;
    transition: color .2s
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, .08);
    font-size: .78rem;
    color: rgba(255, 255, 255, .35)
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem
}

.footer-logo {
    cursor: pointer
}

.footer-logo .logo-img {
    filter: brightness(0) invert(1);
    height: 34px
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
    cursor: pointer;
    transition: background .2s;
    color: rgba(255, 255, 255, .6)
}

.social-link:hover {
    background: rgba(255, 255, 255, .1);
    color: var(--cream)
}

.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 88vh;
    border-bottom: 1px solid var(--border)
}

.hero-left {
    padding: 5rem 4rem 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid var(--border)
}

.hero-sub {
    font-size: .98rem;
    color: var(--muted);
    line-height: 1.75;
    max-width: 380px;
    margin-bottom: 2.5rem;
    font-weight: 300
}

.hero-actions {
    display: flex;
    gap: 1rem;
    align-items: center
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border)
}

.stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1
}

.stat-label {
    font-size: .72rem;
    color: var(--muted);
    margin-top: .3rem;
    text-transform: uppercase;
    letter-spacing: .06em
}

.hero-right {
    background: var(--sand);
    display: grid;
    grid-template-rows: 2fr 1fr;
    overflow: hidden
}

.hero-img-main {
    background: linear-gradient(160deg, #c9bfa8, #8b7d6b);
    position: relative;
    display: flex;
    align-items: flex-end
}

.hero-img-main svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%
}

.photo-label {
    background: rgba(255, 255, 255, .92);
    padding: .55rem 1rem;
    border-radius: .5rem;
    font-size: .78rem;
    color: var(--dark);
    font-weight: 500;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: .4rem
}

.hero-mini-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid var(--border)
}

.mini-card {
    padding: 1.5rem;
    border-right: 1px solid var(--border)
}

.mini-card:last-child {
    border-right: none
}

.mini-icon {
    font-size: 1.5rem;
    margin-bottom: .6rem
}

.mini-title {
    font-size: .88rem;
    font-weight: 600;
    margin-bottom: .25rem
}

.mini-desc {
    font-size: .76rem;
    color: var(--muted);
    line-height: 1.5
}

.cat-strip {
    display: flex;
    gap: .75rem;
    padding: 1.25rem 3rem;
    background: white;
    border-bottom: 1px solid var(--border);
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none
}

.cat-strip::-webkit-scrollbar {
    display: none
}

.cat-pill {
    display: flex;
    align-items: center;
    gap: .45rem;
    padding: .5rem 1.1rem;
    border-radius: 2rem;
    border: 1.5px solid var(--border);
    font-size: .8rem;
    font-weight: 500;
    cursor: pointer;
    transition: all .2s;
    white-space: nowrap;
    background: white;
    font-family: 'DM Sans', sans-serif;
    color: var(--dark)
}

.cat-pill:hover,
.cat-pill.active {
    background: var(--dark);
    color: var(--cream);
    border-color: var(--dark)
}

.why-dark {
    background: var(--dark);
    color: var(--cream)
}

.why-dark h2 {
    color: var(--cream)
}

.why-dark .section-tag {
    color: #a89880
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem
}

.why-item {
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: .75rem;
    transition: border-color .2s
}

.why-item:hover {
    border-color: rgba(255, 255, 255, .2)
}

.why-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: rgba(255, 255, 255, .12);
    font-weight: 700;
    margin-bottom: .75rem
}

.why-title {
    font-size: .92rem;
    font-weight: 600;
    margin-bottom: .5rem
}

.why-desc {
    font-size: .78rem;
    color: rgba(255, 255, 255, .45);
    line-height: 1.65
}

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

.trip-main-card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    background: white
}

.trip-stack {
    display: flex;
    flex-direction: column;
    gap: .85rem
}

.trip-mini {
    border: 1px solid var(--border);
    border-radius: .75rem;
    padding: 1.1rem 1.25rem;
    background: white;
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    transition: background .2s
}

.trip-mini:hover {
    background: var(--sand)
}

.trip-mini-ico {
    width: 44px;
    height: 44px;
    border-radius: .5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0
}

.trip-mini-body .nm {
    font-weight: 600;
    font-size: .88rem
}

.trip-mini-body .mt {
    font-size: .74rem;
    color: var(--muted);
    margin-top: .15rem
}

.testi-scroll {
    display: flex;
    gap: 1.25rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: .75rem
}

.testi-scroll::-webkit-scrollbar {
    height: 4px
}

.testi-scroll::-webkit-scrollbar-track {
    background: transparent
}

.testi-scroll::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 2px
}

.testi-card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    background: white;
    flex: 0 0 320px;
    scroll-snap-align: start
}

.stars {
    color: var(--rust);
    font-size: .82rem;
    margin-bottom: .75rem;
    letter-spacing: 2px
}

.testi-text {
    font-size: .86rem;
    line-height: 1.72;
    color: var(--dark);
    font-style: italic;
    margin-bottom: 1.25rem
}

.testi-author {
    display: flex;
    align-items: center;
    gap: .75rem
}

.author-name {
    font-size: .82rem;
    font-weight: 600
}

.author-loc {
    font-size: .72rem;
    color: var(--muted)
}

.dest-hero {
    background: var(--dark);
    color: var(--cream);
    padding: 5rem 3rem 4rem;
    position: relative;
    overflow: hidden
}

.dest-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    max-width: 560px
}

.dest-hero h1 em {
    color: var(--gold)
}

.dest-hero p {
    font-size: .95rem;
    color: rgba(255, 255, 255, .55);
    max-width: 480px;
    line-height: 1.75
}

.dest-hero-bg {
    position: absolute;
    inset: 0;
    opacity: .06;
    background: repeating-linear-gradient(45deg, #fff 0, #fff 1px, transparent 0, transparent 50%) 0/20px 20px
}

.dest-search {
    display: flex;
    gap: .75rem;
    margin-top: 2.5rem;
    max-width: 560px
}

.dest-search input {
    flex: 1;
    padding: .85rem 1.25rem;
    border-radius: 2rem;
    border: 1px solid rgba(255, 255, 255, .2);
    background: rgba(255, 255, 255, .1);
    color: white;
    font-size: .88rem;
    outline: none;
    font-family: 'DM Sans', sans-serif
}

.dest-search input::placeholder {
    color: rgba(255, 255, 255, .4)
}

.dest-search input:focus {
    border-color: rgba(255, 255, 255, .5)
}

.dest-card-v2 {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    background: white;
    cursor: pointer;
    transition: transform .22s, box-shadow .22s;
    display: flex;
    flex-direction: column
}

.dest-card-v2:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, .1)
}

.dest-img-v2 {
    height: 210px;
    position: relative;
    overflow: hidden
}

.dest-img-v2 svg {
    width: 100%;
    height: 100%;
    display: block
}

.dest-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .55) 0%, transparent 55%)
}

.dest-top {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    gap: .4rem
}

.dest-bottom {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end
}

.dest-location {
    color: white;
    font-size: 1rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2
}

.dest-season {
    font-size: .68rem;
    color: rgba(255, 255, 255, .7);
    margin-top: .15rem
}

.dest-body-v2 {
    padding: 1.1rem 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column
}

.dest-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: .5rem
}

.dest-pills {
    display: flex;
    gap: .35rem;
    flex-wrap: wrap;
    margin: 6px 0 10px
}

.dest-price-v2 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark);
    white-space: nowrap
}

.dest-price-v2::before {
    content: "Start from";
    display: block;
    font-size: .6rem;
    font-weight: 600;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .06em;
    line-height: 1;
    margin-bottom: .18rem
}

.dest-price-v2 small {
    font-size: .7rem;
    font-weight: 400;
    color: var(--muted)
}

.dest-duration {
    font-size: .75rem;
    color: var(--muted)
}

.region-tabs {
    display: flex;
    gap: 0;
    border-bottom: 1px solid var(--border);
    margin-bottom: 2.5rem;
    overflow-x: auto
}

.rtab {
    padding: .75rem 1.5rem;
    font-size: .82rem;
    font-weight: 500;
    cursor: pointer;
    color: var(--muted);
    border-bottom: 2px solid transparent;
    transition: all .2s;
    white-space: nowrap;
    background: none;
    border-top: none;
    border-left: none;
    border-right: none;
    font-family: 'DM Sans', sans-serif
}

.rtab:hover,
.rtab.on {
    color: var(--dark);
    border-bottom-color: var(--rust)
}

.trips-page-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 52vh;
    background: var(--sand);
    border-bottom: 1px solid var(--border)
}

.trips-hero-left {
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid var(--border)
}

.trips-hero-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr
}

.trip-hero-cell {
    border-left: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    transition: background .2s
}

.trip-hero-cell:hover {
    background: white
}

.trip-hero-cell:nth-child(1),
.trip-hero-cell:nth-child(2) {
    border-top: none
}

.thc-icon {
    font-size: 2rem;
    margin-bottom: .75rem
}

.thc-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    margin-bottom: .3rem
}

.thc-count {
    font-size: .72rem;
    color: var(--rust);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .05em
}

.trip-card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    background: white;
    transition: transform .22s, box-shadow .22s;
    cursor: pointer
}

.trip-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow)
}

.trip-card-img {
    height: 220px;
    position: relative;
    overflow: hidden
}

.trip-card-img svg {
    width: 100%;
    height: 100%
}

.trip-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .6) 0%, transparent 50%)
}

.trip-card-info {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: 1rem
}

.trip-card-info .tc-date {
    font-size: .7rem;
    color: rgba(255, 255, 255, .75);
    text-transform: uppercase;
    letter-spacing: .07em;
    margin-bottom: .25rem
}

.trip-card-info .tc-name {
    font-family: 'Playfair Display', serif;
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.2
}

.trip-card-body {
    padding: 1.15rem
}

.trip-card-metas {
    display: flex;
    gap: .85rem;
    font-size: .76rem;
    color: var(--muted);
    margin-bottom: .75rem;
    flex-wrap: wrap
}

.trip-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.tc-price {
    font-size: 1.05rem;
    font-weight: 700
}

.tc-price::before {
    content: "Start from";
    display: block;
    font-size: .6rem;
    font-weight: 600;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .06em;
    line-height: 1;
    margin-bottom: .18rem
}

.tc-price small {
    font-size: .7rem;
    font-weight: 400;
    color: var(--muted)
}

.spots {
    font-size: .72rem;
    color: var(--rust);
    font-weight: 600
}

.trip-book-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 0;
    text-align: center
}

.itinerary-section {
    background: var(--sand);
    padding: 4rem 3rem
}

.itin-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 1.25rem
}
.itin-header h2 {
    margin: 0;
}

.itin-item {
    border: 1px solid var(--border);
    border-radius: .75rem;
    overflow: hidden;
    margin-bottom: .75rem;
    background: white
}

.itin-trigger {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.15rem 1.5rem;
    cursor: pointer;
    justify-content: space-between
}

.itin-left {
    display: flex;
    align-items: center;
    gap: 1rem
}

.itin-day {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--border);
    font-weight: 700;
    line-height: 1;
    width: 40px;
    flex-shrink: 0
}

.itin-label {
    font-weight: 600;
    font-size: .92rem
}

.itin-sub {
    font-size: .75rem;
    color: var(--muted);
    margin-top: .1rem
}

.itin-chevron {
    font-size: .85rem;
    color: var(--muted);
    transition: transform .25s
}

.itin-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease, padding .3s
}

.itin-body.open {
    max-height: 300px;
    padding: 0 1.5rem 1.25rem
}

.itin-body p {
    font-size: .84rem;
    color: var(--muted);
    line-height: 1.7
}

.blog-hero {
    padding: 5rem 3rem 3.5rem;
    border-bottom: 1px solid var(--border);
    background: var(--cream)
}

.blog-hero h1 {
    font-size: 3.2rem;
    max-width: 560px;
    margin-bottom: 1rem
}

.blog-hero p {
    color: var(--muted);
    max-width: 480px;
    line-height: 1.75;
    font-size: .95rem
}

.blog-featured {
    display: grid;
    grid-template-columns: 1.7fr 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem
}

.blog-feat {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    background: white;
    cursor: pointer;
    transition: box-shadow .2s
}

.blog-feat:hover {
    box-shadow: var(--shadow)
}

.blog-feat-img {
    height: 280px;
    position: relative;
    overflow: hidden
}

.blog-feat-img svg {
    width: 100%;
    height: 100%
}

.blog-feat-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .7), transparent 55%)
}

.blog-cat-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--rust);
    color: white;
    font-size: .68rem;
    font-weight: 700;
    padding: .28rem .7rem;
    border-radius: 2rem;
    text-transform: uppercase;
    letter-spacing: .05em
}

.blog-feat-body {
    padding: 1.5rem
}

.blog-cat-tag {
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--rust);
    font-weight: 600;
    margin-bottom: .4rem
}

.blog-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    line-height: 1.3;
    margin-bottom: .5rem
}

.blog-title.sm {
    font-size: 1rem
}

.blog-excerpt {
    font-size: .82rem;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: .85rem
}

.blog-footer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .74rem;
    color: var(--muted)
}

.blog-author-mini {
    display: flex;
    align-items: center;
    gap: .5rem
}

.blog-side-stack {
    display: flex;
    flex-direction: column;
    gap: 1rem
}

.blog-side-card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    background: white;
    cursor: pointer;
    display: flex;
    transition: box-shadow .2s
}

.blog-side-card:hover {
    box-shadow: var(--shadow)
}

.blog-side-img {
    width: 100px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden
}

.blog-side-img svg {
    width: 100%;
    height: 100%
}

.blog-side-body {
    padding: 1rem;
    flex: 1
}

.blog-grid-card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    background: white;
    cursor: pointer;
    transition: transform .2s, box-shadow .2s
}

.blog-grid-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow)
}

.blog-grid-img {
    height: 180px;
    position: relative;
    overflow: hidden
}

.blog-grid-img svg {
    width: 100%;
    height: 100%
}

.blog-layout {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 2rem
}

.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem
}

.sidebar-box {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem;
    background: white
}

.sidebar-box h5 {
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--muted);
    margin-bottom: 1rem;
    font-weight: 600
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem
}

.tag-cloud a {
    font-size: .72rem;
    padding: .25rem .65rem;
    border: 1px solid var(--border);
    border-radius: 2rem;
    cursor: pointer;
    color: var(--muted);
    transition: all .2s;
    background: white;
    font-family: 'DM Sans', sans-serif
}

.tag-cloud a:hover {
    background: var(--dark);
    color: var(--cream);
    border-color: var(--dark)
}

.recent-post {
    display: flex;
    gap: .75rem;
    margin-bottom: .85rem;
    cursor: pointer;
    padding-bottom: .85rem;
    border-bottom: 1px solid var(--border)
}

.recent-post:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0
}

.rp-thumb {
    width: 56px;
    height: 56px;
    border-radius: .5rem;
    flex-shrink: 0;
    overflow: hidden
}

.rp-thumb svg {
    width: 100%;
    height: 100%
}

.rp-title {
    font-size: .8rem;
    font-weight: 600;
    line-height: 1.35;
    margin-bottom: .25rem
}

.rp-date {
    font-size: .7rem;
    color: var(--muted)
}

.community-hero {
    background: linear-gradient(135deg, var(--moss), #2d3e24);
    color: var(--cream);
    padding: 5rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden
}

.community-hero h1 {
    font-size: 3.5rem;
    color: var(--cream);
    margin-bottom: 1rem
}

.community-hero h1 em {
    color: var(--gold)
}

.community-hero p {
    color: rgba(255, 255, 255, .65);
    max-width: 480px;
    margin: 0 auto 2rem;
    line-height: 1.75;
    font-size: .95rem
}

.community-hero-bg {
    position: absolute;
    inset: 0;
    opacity: .05;
    background: radial-gradient(circle at 30% 50%, white 0%, transparent 60%), radial-gradient(circle at 70% 20%, white 0%, transparent 40%)
}

.community-stats {
    display: flex;
    justify-content: center;
    gap: 3.5rem;
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, .12)
}

.comm-stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700
}

.comm-stat-label {
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: rgba(255, 255, 255, .5);
    margin-top: .2rem
}

.community-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 2rem;
    padding: 3rem
}

.post-feed {
    display: flex;
    flex-direction: column;
    gap: 1.25rem
}

.post-card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    background: white
}

.post-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem
}

.post-author {
    display: flex;
    align-items: center;
    gap: .75rem
}

.pa-name {
    font-size: .88rem;
    font-weight: 600
}

.pa-info {
    font-size: .72rem;
    color: var(--muted);
    margin-top: .1rem
}

.post-type-badge {
    font-size: .65rem;
    padding: .2rem .6rem;
    border-radius: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em
}

.ptb-story {
    background: #fef3e8;
    color: #b45309
}

.ptb-tip {
    background: #dcfce7;
    color: #166534
}

.ptb-ask {
    background: #e0f2fe;
    color: #0369a1
}

.post-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    margin-bottom: .5rem;
    line-height: 1.35
}

.post-body {
    font-size: .84rem;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: .85rem
}

.post-tags {
    display: flex;
    gap: .4rem;
    flex-wrap: wrap;
    margin-bottom: 1rem
}

.ptag {
    font-size: .7rem;
    padding: .2rem .6rem;
    border-radius: 2rem;
    background: var(--sand);
    color: var(--muted);
    cursor: pointer
}

.ptag:hover {
    background: var(--border)
}

.post-actions {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    padding-top: .75rem;
    border-top: 1px solid var(--border)
}

.paction {
    display: flex;
    align-items: center;
    gap: .35rem;
    font-size: .78rem;
    color: var(--muted);
    cursor: pointer;
    transition: color .2s;
    background: none;
    border: none;
    font-family: 'DM Sans', sans-serif
}

.paction:hover {
    color: var(--dark)
}

.paction.liked {
    color: var(--rust)
}

.comm-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.25rem
}

.cs-box {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem;
    background: white
}

.cs-box h5 {
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--muted);
    margin-bottom: 1rem;
    font-weight: 600
}

.trending-item {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-bottom: .75rem;
    cursor: pointer
}

.trending-item:last-child {
    margin-bottom: 0
}

.tr-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--border);
    width: 20px;
    flex-shrink: 0
}

.tr-tag {
    font-size: .82rem;
    font-weight: 600;
    color: var(--dark);
    transition: color .2s
}

.tr-tag:hover {
    color: var(--rust)
}

.tr-count {
    font-size: .68rem;
    color: var(--muted)
}

.top-member {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-bottom: .85rem
}

.top-member:last-child {
    margin-bottom: 0
}

.tm-name {
    font-size: .82rem;
    font-weight: 600
}

.tm-trips {
    font-size: .7rem;
    color: var(--muted)
}

.buddy-regions {
    display: flex;
    flex-direction: column;
    gap: .4rem
}

.buddy-region {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .6rem .85rem;
    border: 1px solid var(--border);
    border-radius: .5rem;
    cursor: pointer;
    transition: background .2s;
    font-size: .82rem;
    background: var(--sand)
}

.buddy-region:hover {
    background: var(--dark);
    color: var(--cream)
}

.plan-hero {
    background: var(--dark);
    color: var(--cream);
    padding: 5rem 3rem;
    position: relative;
    overflow: hidden
}

.plan-hero h1 {
    font-size: 3.2rem;
    color: var(--cream);
    max-width: 560px;
    margin-bottom: 1rem
}

.plan-hero h1 em {
    color: var(--gold)
}

.plan-hero p {
    color: rgba(255, 255, 255, .5);
    max-width: 440px;
    line-height: 1.75;
    font-size: .95rem
}

.plan-hero-deco {
    position: absolute;
    right: 3rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 8rem;
    opacity: .06
}

.how-it-works {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem
}

.hiw-step {
    text-align: center;
    padding: 2rem 1.25rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: white;
    transition: box-shadow .2s
}

.hiw-step:hover {
    box-shadow: var(--shadow)
}

.hiw-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem
}

.hiw-num {
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--rust);
    font-weight: 700;
    margin-bottom: .4rem
}

.hiw-title {
    font-weight: 700;
    font-size: .95rem;
    margin-bottom: .4rem
}

.hiw-desc {
    font-size: .78rem;
    color: var(--muted);
    line-height: 1.6
}

.plan-form-section {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    padding: 4rem 3rem
}

.plan-form {
    display: flex;
    flex-direction: column;
    gap: 1.15rem
}

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

.fg {
    display: flex;
    flex-direction: column;
    gap: .4rem
}

.fg label {
    font-size: .78rem;
    font-weight: 600;
    color: var(--dark);
    letter-spacing: .02em
}

.fg input,
.fg select,
.fg textarea {
    padding: .75rem 1rem;
    border: 1.5px solid var(--border);
    border-radius: .6rem;
    font-size: .88rem;
    font-family: 'DM Sans', sans-serif;
    background: white;
    color: var(--dark);
    outline: none;
    transition: border-color .2s
}

.fg input:focus,
.fg select:focus,
.fg textarea:focus {
    border-color: var(--moss)
}

.fg textarea {
    height: 100px;
    resize: vertical
}

.plan-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem
}

.ps-box {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    background: white
}

.ps-box h4 {
    margin-bottom: 1rem
}

.contact-item {
    display: flex;
    gap: .85rem;
    align-items: flex-start;
    margin-bottom: 1.1rem
}

.contact-item:last-child {
    margin-bottom: 0
}

.ci-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
    margin-top: .1rem
}

.ci-label {
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--muted);
    margin-bottom: .15rem;
    font-weight: 600
}

.ci-value {
    font-size: .88rem;
    font-weight: 500;
    line-height: 1.4
}

.award-box {
    background: linear-gradient(135deg, var(--dark), #2d3a28);
    border-radius: var(--radius);
    padding: 1.5rem;
    color: var(--cream);
    text-align: center
}

.award-icon {
    font-size: 2.5rem;
    margin-bottom: .75rem
}

.award-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    margin-bottom: .5rem
}

.award-desc {
    font-size: .78rem;
    color: rgba(255, 255, 255, .5);
    line-height: 1.6
}

.about-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 70vh;
    border-bottom: 1px solid var(--border)
}

.about-hero-left {
    padding: 5rem 4rem 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid var(--border)
}

.about-hero-left h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem
}

.about-hero-left p {
    color: var(--muted);
    max-width: 400px;
    line-height: 1.8;
    font-size: .95rem
}

.about-hero-right {
    background: var(--sand);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    position: relative;
    overflow: hidden
}

.about-collage {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .75rem;
    width: 100%
}

.about-collage-cell {
    border-radius: .75rem;
    overflow: hidden;
    border: 1px solid var(--border)
}

.about-hero-new {
    background: var(--dark);
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, .08)
}

.about-hero-bg-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(212, 168, 83, .12) 0%, transparent 60%), radial-gradient(ellipse at 10% 80%, rgba(74, 94, 58, .2) 0%, transparent 50%);
    pointer-events: none
}

.about-hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 5rem 3rem 4.5rem;
    max-width: 1200px;
    margin: 0 auto
}

.about-hero-left-new {
    display: flex;
    flex-direction: column
}

.about-hero-stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, .1)
}

.ahs-item {
    display: flex;
    flex-direction: column;
    gap: .2rem
}

.ahs-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1
}

.ahs-label {
    font-size: .72rem;
    color: rgba(255, 255, 255, .45);
    text-transform: uppercase;
    letter-spacing: .07em
}

.ahs-divider {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, .15)
}

.about-hero-right-new {
    display: flex;
    flex-direction: column;
    gap: 1.25rem
}

.about-visual-card {
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .4)
}

.avc-img {
    height: 220px;
    overflow: hidden
}

.avc-img svg {
    width: 100%;
    height: 100%
}

.avc-label {
    background: rgba(255, 255, 255, .06);
    backdrop-filter: blur(8px);
    padding: .65rem 1rem;
    font-size: .78rem;
    color: rgba(255, 255, 255, .6);
    border-top: 1px solid rgba(255, 255, 255, .08)
}

.about-mini-cards {
    display: flex;
    flex-direction: column;
    gap: .65rem
}

.amc-card {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: .75rem;
    padding: .85rem 1rem;
    display: flex;
    align-items: center;
    gap: .85rem;
    transition: background .2s
}

.amc-card:hover {
    background: rgba(255, 255, 255, .09)
}

.amc-icon {
    font-size: 1.3rem;
    flex-shrink: 0
}

.amc-title {
    font-size: .82rem;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: .15rem
}

.amc-desc {
    font-size: .74rem;
    color: rgba(255, 255, 255, .45)
}

.about-collage-cell svg {
    width: 100%;
    height: 100%;
    display: block
}

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

.team-card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    background: white;
    text-align: center
}

.team-photo {
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    background: var(--sand)
}

.team-body {
    padding: 1.25rem
}

.team-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    margin-bottom: .2rem
}

.team-role {
    font-size: .74rem;
    color: var(--rust);
    text-transform: uppercase;
    letter-spacing: .06em;
    font-weight: 600;
    margin-bottom: .5rem
}

.founder-section {
    background: var(--sand)
}

.founder-card {
    max-width: 820px;
    margin: 0 auto;
    background: white;
    border: 1px solid var(--border);
    border-radius: 1.25rem;
    display: flex;
    gap: 3rem;
    align-items: center;
    padding: 3rem;
    box-shadow: 0 8px 40px rgba(0, 0, 0, .06)
}

.founder-avatar {
    position: relative;
    flex-shrink: 0
}

.founder-avatar-inner {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--moss), var(--rust));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    position: relative;
    z-index: 2
}

.founder-avatar-ring {
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px dashed var(--gold);
    opacity: .5;
    animation: spin 18s linear infinite
}

@keyframes spin {
    to {
        transform: rotate(360deg)
    }
}

.founder-tag {
    font-size: .68rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--rust);
    font-weight: 700;
    margin-bottom: .4rem
}

.founder-name {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: .85rem;
    line-height: 1.1
}

.founder-bio {
    font-size: .88rem;
    color: var(--muted);
    line-height: 1.85;
    max-width: 480px;
    margin-bottom: 1.25rem
}

.founder-chips {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem
}

.founder-chip {
    font-size: .74rem;
    background: var(--sand);
    border: 1px solid var(--border);
    border-radius: 2rem;
    padding: .3rem .85rem;
    color: var(--dark)
}

.team-desc {
    font-size: .78rem;
    color: var(--muted);
    line-height: 1.55
}

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

.value-item {
    padding: 2rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: white
}

.value-icon {
    font-size: 2rem;
    margin-bottom: 1rem
}

.value-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    margin-bottom: .5rem
}

.value-desc {
    font-size: .82rem;
    color: var(--muted);
    line-height: 1.65
}

/* Gallery */
.gallery-hero {
    background: var(--dark);
    padding: 4.5rem 3rem 3.5rem;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, .07)
}

.gallery-hero-bg {
    position: absolute;
    inset: 0;
    opacity: .05;
    background: radial-gradient(circle at 15% 60%, #d4a853 0%, transparent 50%), radial-gradient(circle at 80% 25%, #4a5e3a 0%, transparent 45%)
}

.gallery-hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px
}

.gallery-hero .tag-line {
    color: var(--gold)
}

.gallery-hero h1 {
    color: var(--cream)
}

.gallery-hero h1 em {
    color: var(--gold)
}

.gallery-hero-desc {
    color: rgba(255, 255, 255, .48);
    max-width: 460px;
    line-height: 1.8;
    font-size: .92rem;
    margin-top: .75rem
}

.gallery-filter-bar {
    padding: 1.25rem 3rem;
    background: white;
    border-bottom: 1px solid var(--border);
    display: flex;
    gap: .6rem;
    flex-wrap: wrap;
    align-items: center
}

.gallery-filter-label {
    font-size: .75rem;
    color: var(--muted);
    font-weight: 500;
    margin-right: .25rem
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .85rem;
    grid-auto-rows: 210px;
    grid-auto-flow: dense;
    padding: 1.5rem 3rem 3rem
}

.g-item {
    border-radius: .85rem;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    background: #e0dbd3
}

.g-item svg {
    width: 100%;
    height: 100%;
    display: block;
    transition: transform .45s ease
}

.g-item:hover svg {
    transform: scale(1.04)
}

.g-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .62) 0%, transparent 50%);
    transition: opacity .25s
}

.g-item:hover .g-item-overlay {
    opacity: .85
}

.g-item-label {
    position: absolute;
    bottom: .9rem;
    left: 1rem;
    right: 1rem
}

.g-item-loc {
    font-family: 'Playfair Display', serif;
    color: white;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2
}

.g-item-tag {
    font-size: .65rem;
    color: rgba(255, 255, 255, .65);
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-top: .15rem
}

.g-item-hover-info {
    position: absolute;
    top: 1rem;
    right: 1rem;
    opacity: 0;
    transition: opacity .25s
}

.g-item:hover .g-item-hover-info {
    opacity: 1
}

.g-tall {
    grid-row: span 2
}

/* Dark page hero (policy / faq / cancellation) */
.page-hero-dark {
    background: var(--dark);
    padding: 4rem 3rem 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, .07)
}

.page-hero-dark h1 {
    color: var(--cream);
    font-size: 2.8rem;
    margin-bottom: .75rem
}

.page-hero-dark .tag-line {
    color: var(--gold)
}

.page-hero-meta {
    color: rgba(255, 255, 255, .45);
    font-size: .88rem
}

.page-hero-desc {
    color: rgba(255, 255, 255, .45);
    max-width: 480px;
    line-height: 1.75;
    font-size: .92rem
}

/* Two-column policy/faq/cancellation layout */
.policy-layout {
    display: grid;
    grid-template-columns: 1fr 260px;
    gap: 3rem;
    padding: 3rem;
    max-width: 1100px;
    margin: 0 auto
}

.sticky-sidebar {
    position: sticky;
    top: 80px;
    align-self: start;
    display: flex;
    flex-direction: column;
    gap: 1rem
}

.sidebar-card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem;
    background: white
}

.sidebar-card-center {
    text-align: center
}

.sidebar-h5 {
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--muted);
    margin-bottom: .85rem;
    font-weight: 600
}

.sidebar-link {
    display: block;
    font-size: .82rem;
    color: var(--dark);
    text-decoration: none;
    padding: .4rem 0;
    border-bottom: 1px solid var(--border)
}

.sidebar-link:last-child,
.sidebar-link-last {
    border-bottom: none
}

.sidebar-cta-box {
    background: linear-gradient(135deg, var(--moss), #1a2812);
    border-radius: var(--radius);
    padding: 1.5rem;
    color: white;
    text-align: center
}

.cta-icon {
    font-size: 1.8rem;
    margin-bottom: .5rem
}

.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: .4rem
}

.cta-desc {
    font-size: .76rem;
    color: rgba(255, 255, 255, .55);
    line-height: 1.65;
    margin-bottom: 1rem
}

.btn-ghost-light {
    background: rgba(255, 255, 255, .15) !important;
    border: 1px solid rgba(255, 255, 255, .25) !important
}

.contact-box {
    background: white;
    border: 1px solid var(--border);
    border-radius: .75rem;
    padding: 1.25rem;
    margin-top: .75rem;
    display: flex;
    flex-direction: column;
    gap: .6rem
}

.contact-box-line {
    font-size: .85rem
}

/* Policy sections */
.policy-section {
    margin-bottom: 2.5rem
}

.policy-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: .85rem;
    padding-bottom: .5rem;
    border-bottom: 1px solid var(--border)
}

.policy-section p,
.policy-section li {
    font-size: .88rem;
    color: var(--muted);
    line-height: 1.85;
    margin-bottom: .65rem
}

.policy-section ul {
    padding-left: 1.25rem;
    list-style: disc
}

.policy-section li {
    margin-bottom: .35rem
}

.policy-highlight {
    background: var(--sand);
    border-left: 3px solid var(--moss);
    border-radius: 0 .5rem .5rem 0;
    padding: 1rem 1.25rem;
    margin: 1.25rem 0;
    font-size: .85rem;
    color: var(--dark);
    line-height: 1.75
}

/* FAQ */
.faq-item {
    border: 1px solid var(--border);
    border-radius: .75rem;
    overflow: hidden;
    margin-bottom: .65rem;
    background: white
}

.faq-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.1rem 1.4rem;
    cursor: pointer;
    gap: 1rem;
    user-select: none
}

.faq-trigger:hover {
    background: var(--sand)
}

.faq-q {
    font-weight: 600;
    font-size: .92rem;
    color: var(--dark);
    line-height: 1.4
}

.faq-chevron {
    font-size: .8rem;
    color: var(--muted);
    transition: transform .25s;
    flex-shrink: 0
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height .38s ease, padding .28s
}

.faq-body.open {
    max-height: 400px;
    padding: 0 1.4rem 1.25rem
}

.faq-body p {
    font-size: .85rem;
    color: var(--muted);
    line-height: 1.8
}

.faq-body ul {
    padding-left: 1.1rem;
    list-style: disc;
    margin-top: .5rem
}

.faq-body li {
    font-size: .85rem;
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: .2rem
}

.faq-cat-label {
    font-size: .68rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--rust);
    font-weight: 700;
    margin: 2rem 0 .85rem;
    display: flex;
    align-items: center;
    gap: .6rem
}

.faq-cat-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border)
}

/* Cancellation tiers */
.cancel-tier {
    border: 1px solid var(--border);
    border-radius: .75rem;
    overflow: hidden;
    margin-bottom: .75rem
}

.cancel-tier-header {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    background: var(--dark);
    color: var(--cream);
    padding: .65rem 1.25rem;
    font-size: .72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .06em
}

.cancel-tier-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    padding: .85rem 1.25rem;
    border-bottom: 1px solid var(--border);
    align-items: center;
    background: white
}

.cancel-tier-row:last-child {
    border-bottom: none
}

.cancel-tier-row:hover {
    background: var(--sand)
}

.tier-window {
    font-size: .88rem;
    font-weight: 600;
    color: var(--dark)
}

.tier-refund {
    font-size: .88rem;
    font-weight: 700
}

.tier-refund.full {
    color: #166534
}

.tier-refund.partial {
    color: #b45309
}

.tier-refund.none {
    color: var(--rust)
}

.tier-note {
    font-size: .75rem;
    color: var(--muted)
}

.wa-fab {
    position: fixed;
    bottom: 1.75rem;
    right: 1.75rem;
    z-index: 999;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,.45);
    transition: transform .2s, box-shadow .2s;
    text-decoration: none;
}

.wa-fab:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37,211,102,.6);
}

.wa-fab svg {
    width: 30px;
    height: 30px;
    fill: white;
}

@media(min-width:1280px) {
    section:not(.hero):not(.trips-page-hero):not(.about-hero) {
        padding-left: max(3rem, calc((100% - 1200px)/2));
        padding-right: max(3rem, calc((100% - 1200px)/2));
    }
}

@media(max-width:900px) {
    nav {
        padding: 1rem 1.5rem
    }

    nav ul {
        display: none
    }

    .hamburger {
        display: block
    }

    nav ul.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--cream);
        padding: 1rem 1.5rem;
        border-bottom: 1px solid var(--border);
        gap: 1rem;
        z-index: 500
    }

    body h1 {
        font-size: 3.4rem
    }

    body h2 {
        font-size: 1.9rem
    }

    section {
        padding: 3rem 1.5rem
    }

    .hero,
    .trips-page-hero,
    .about-hero {
        grid-template-columns: 1fr
    }

    .hero-right,
    .trips-hero-right,
    .about-hero-right {
        display: none
    }

    .about-hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 3.5rem 1.5rem 3rem
    }

    .about-hero-right-new {
        display: none
    }

    .founder-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.75rem;
        padding: 2rem 1.5rem
    }

    .founder-bio {
        max-width: 100%
    }

    .founder-chips {
        justify-content: center
    }

    .grid-3,
    .grid-4,
    .grid-2,
    .why-grid,
    .how-it-works,
    .team-grid,
    .values-grid {
        grid-template-columns: 1fr
    }

    .trips-row,
    .blog-featured,
    .blog-layout,
    .community-layout,
    .plan-form-section {
        grid-template-columns: 1fr
    }

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

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

    .community-stats {
        flex-wrap: wrap;
        gap: 2rem
    }

    .region-tabs {
        padding-bottom: .5rem
    }

    .dest-hero h1 {
        font-size: 2.5rem
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .g-tall {
        grid-row: span 1
    }

    .policy-layout {
        grid-template-columns: 1fr
    }

    /* Hero layout & stats */
    .hero-left,
    .about-hero-left {
        padding: 3rem 1.5rem 2.5rem
    }

    .trips-hero-left {
        padding: 2.5rem 1.5rem
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 1.25rem;
        margin-top: 1.75rem;
        padding-top: 1.5rem
    }

    /* Page-level hero divs (not <section>, so generic section rule doesn't apply) */
    .plan-hero,
    .community-hero {
        padding: 3rem 1.5rem 2.5rem
    }

    .plan-hero h1,
    .community-hero h1 {
        font-size: 2.2rem
    }

    .dest-hero {
        padding: 3rem 1.5rem 2.5rem
    }

    .blog-hero {
        padding: 3rem 1.5rem 2.5rem
    }

    .blog-hero h1 {
        font-size: 2.4rem
    }

    .page-hero-dark {
        padding: 3rem 1.5rem 2.5rem
    }

    /* Sections with explicit padding (class specificity wins over element selector) */
    .itinerary-section {
        padding: 3rem 1.5rem
    }

    .plan-form-section {
        padding: 2.5rem 1.5rem
    }

    .community-layout {
        padding: 2.5rem 1.5rem
    }

    /* Gallery */
    .gallery-hero {
        padding: 3rem 1.5rem 2.5rem
    }

    .gallery-filter-bar {
        padding: .85rem 1.5rem
    }

    .gallery-grid {
        padding: .85rem 1.5rem 2rem
    }

    /* Policy/FAQ/Cancel layout */
    .policy-layout {
        padding: 2rem 1.5rem
    }

    /* Cat strip & footer */
    .cat-strip {
        padding: .85rem 1.5rem
    }

    footer {
        padding: 2.5rem 1.5rem
    }

    .footer-inner {
        gap: 2rem
    }
}

@media(max-width:600px) {
    .gallery-grid {
        grid-template-columns: 1fr
    }

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

    body h1 {
        font-size: 2.6rem
    }

    body h2 {
        font-size: 1.7rem
    }

    .hero-stats>div {
        flex: 1 1 40%;
        min-width: 120px
    }

    .community-stats {
        gap: 1.25rem
    }

    .community-stats>div {
        flex: 1 1 40%
    }

    .plan-hero h1,
    .community-hero h1,
    .blog-hero h1 {
        font-size: 1.9rem
    }

    .page-hero-dark h1 {
        font-size: 2rem
    }

    nav {
        padding: .85rem 1.25rem
    }

    footer {
        padding: 2rem 1rem
    }

    .footer-inner {
        gap: 1.25rem
    }

    .footer-bottom {
        flex-direction: column;
        gap: .5rem;
        text-align: center
    }
}

/* ── Trip detail pages ── */
.trip-detail-hero {
    position: relative;
    height: 480px;
    overflow: hidden;
}
.trip-detail-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.trip-detail-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,.1) 0%, rgba(0,0,0,.6) 100%);
}
.trip-detail-hero-content {
    position: absolute;
    bottom: 2.5rem;
    left: 3rem;
    color: white;
}
.trip-detail-hero-content h1 {
    color: white;
    font-size: 3.5rem;
}
.trip-detail-hero-meta {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
    font-size: .88rem;
    color: rgba(255,255,255,.85);
}
.detail-overview {
    background: white;
    border-bottom: 1px solid var(--border);
    padding: 1.25rem 3rem;
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    align-items: center;
}
.detail-overview-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}
.detail-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 2.5rem;
    padding: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media(max-width:900px) {
    .trip-detail-hero { height: 340px; }
    .trip-detail-hero-content { left: 1.5rem; bottom: 1.5rem; }
    .trip-detail-hero-content h1 { font-size: 2.4rem; }
    .trip-detail-hero-meta { gap: .6rem; font-size: .82rem; }
    .detail-overview { padding: 1rem 1.5rem; gap: 1.25rem; }
    .detail-overview-divider { display: none; }
    .detail-layout { grid-template-columns: 1fr; padding: 1.5rem; gap: 1.5rem; }
    .plan-sidebar { position: static !important; }
}
@media(max-width:600px) {
    .trip-detail-hero { height: 260px; }
    .trip-detail-hero-content h1 { font-size: 1.9rem; }
    .trip-detail-hero-meta { font-size: .78rem; gap: .5rem; }
    .detail-layout { padding: 1rem; }
    .detail-overview { padding: .85rem 1rem; }
}

