:root {
    --gt-cream: #f6f3ee;
    --gt-surface: #ffffff;
    --gt-ink: #162126;
    --gt-muted: #5f6b72;
    --gt-line: #e7e1d7;
    --gt-brand: #0b3e45;
    --gt-teal: #0f5f66;
    --gt-aqua: #4db6ac;
    --gt-sand: #d6b36a;
}

html { scroll-behavior: smooth; }
body {
    background:
        radial-gradient(circle at 10% 12%, rgba(77, 182, 172, 0.07), transparent 24rem),
        radial-gradient(circle at 92% 16%, rgba(214, 179, 106, 0.11), transparent 22rem),
        var(--gt-cream);
}

.site-shell { position: relative; }
.site-shell::before {
    content: "";
    position: fixed;
    left: -12rem;
    bottom: -8rem;
    width: 40rem;
    height: 40rem;
    pointer-events: none;
    opacity: .12;
    background-image:
        linear-gradient(rgba(11,62,69,.12) 1px, transparent 1px),
        linear-gradient(90deg, rgba(11,62,69,.12) 1px, transparent 1px);
    background-size: 40px 40px;
    transform: rotate(-8deg);
    mask-image: radial-gradient(circle, #000, transparent 70%);
}
[x-cloak] { display: none !important; }

.text-balance { text-wrap: balance; }

.mock-map {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .45;
    background-image:
        radial-gradient(circle at 12% 30%, rgba(15,95,102,.05), transparent 12rem),
        radial-gradient(circle at 88% 14%, rgba(214,179,106,.09), transparent 12rem);
}
.mock-map::before,
.mock-map::after {
    content: "";
    position: absolute;
    inset: auto;
    background-repeat: no-repeat;
    opacity: .85;
}
.mock-map::before {
    left: -2rem;
    top: 5rem;
    width: 18rem;
    height: 18rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 300' fill='none'%3E%3Cpath d='M-14 206C45 184 66 251 114 240C182 224 182 136 240 136C269 136 284 144 314 122' stroke='%23E2C890' stroke-width='2' stroke-dasharray='7 10'/%3E%3Ccircle cx='114' cy='240' r='4.5' fill='%23D6B36A'/%3E%3Cpath d='M244 120l18 7-16 10 3-8-5-9z' fill='%230F5F66' fill-opacity='.35'/%3E%3C/svg%3E");
}
.mock-map::after {
    right: -3rem;
    top: 8rem;
    width: 20rem;
    height: 20rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 360 360' fill='none'%3E%3Cpath d='M357 104C286 112 285 194 236 197C156 201 137 274 82 278' stroke='%23E2C890' stroke-width='2' stroke-dasharray='7 10'/%3E%3Ccircle cx='236' cy='197' r='4.5' fill='%23D6B36A'/%3E%3Cpath d='M76 278c0-8 6-14 14-14s14 6 14 14-6 14-14 14-14-6-14-14z' stroke='%230F5F66' stroke-opacity='.22'/%3E%3C/svg%3E");
}

.glass-panel {
    background: rgba(255,255,255,.88);
    border: 1px solid rgba(231,225,215,.95);
    box-shadow: 0 18px 55px rgba(17, 30, 34, 0.08);
    backdrop-filter: blur(12px);
}
.panel-soft {
    background: rgba(255,255,255,.94);
    border: 1px solid rgba(231,225,215,.92);
    box-shadow: 0 10px 40px rgba(17, 30, 34, 0.07);
}
.section-card {
    background: rgba(255,255,255,.92);
    border: 1px solid rgba(231,225,215,.9);
    box-shadow: 0 8px 26px rgba(17,30,34,.05);
}

.brand-kicker {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    border-radius: 999px;
    border: 1px solid rgba(214,179,106,.45);
    background: rgba(255,255,255,.78);
    color: var(--gt-brand);
    padding: .45rem .85rem;
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.photo-card,
.tour-photo,
.banner-photo {
    position: relative;
    overflow: hidden;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.photo-card::before,
.tour-photo::before,
.banner-photo::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,.06), rgba(0,0,0,.58));
}
.tour-photo::before { background: linear-gradient(180deg, rgba(0,0,0,.04), rgba(0,0,0,.5)); }
.banner-photo::before { background: linear-gradient(180deg, rgba(0,0,0,.02), rgba(0,0,0,.5)); }
.photo-card > *, .tour-photo > *, .banner-photo > * { position: relative; z-index: 1; }

.icon-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 1rem;
    border: 1px solid rgba(231,225,215,.95);
    background: #fff;
    color: var(--gt-brand);
    box-shadow: 0 4px 10px rgba(17, 30, 34, 0.04);
}

.step-pill {
    display: grid;
    place-items: center;
    width: 2rem;
    height: 2rem;
    border-radius: 999px;
    border: 1px solid rgba(207, 223, 221, 1);
    background: #fff;
    color: #79939a;
    font-size: .75rem;
    font-weight: 800;
    transition: all .2s ease;
}
.step-pill.is-active {
    background: var(--gt-teal);
    border-color: var(--gt-teal);
    color: white;
    box-shadow: 0 10px 24px rgba(15,95,102,.22);
}
.step-pill.is-done {
    background: rgba(232,245,244,.95);
    border-color: rgba(167,213,209,.95);
    color: var(--gt-teal);
}

.choice-tile {
    position: relative;
    border: 1px solid rgba(231,225,215,.95);
    background: #fff;
    border-radius: 1.1rem;
    padding: 1rem .75rem;
    text-align: center;
    transition: .18s ease;
}
.choice-tile:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(17,30,34,.06);
}
.choice-tile.is-selected {
    border-color: rgba(15,95,102,.7);
    box-shadow: 0 12px 28px rgba(15,95,102,.10);
    background: linear-gradient(180deg, rgba(232,245,244,.75), #fff);
}
.choice-tile .checkmark {
    position: absolute;
    top: .5rem;
    right: .5rem;
    display: none;
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 999px;
    background: var(--gt-teal);
    color: #fff;
    font-size: .72rem;
    place-items: center;
}
.choice-tile.is-selected .checkmark { display: grid; }

.gt-range {
    width: 100%;
    height: 6px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(77,182,172,.22), rgba(15,95,102,.22));
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}
.gt-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 999px;
    background: #fff;
    border: 4px solid var(--gt-teal);
    box-shadow: 0 4px 12px rgba(15,95,102,.20);
}
.gt-range::-moz-range-thumb {
    width: 18px; height: 18px; border-radius: 999px; background: #fff; border: 4px solid var(--gt-teal);
}

.preview-day { border: 1px solid rgba(231,225,215,.9); border-radius: 1rem; background: #fff; overflow: hidden; }
.preview-thumb {
    width: 4rem; height: 4rem; border-radius: .85rem; flex-shrink: 0; background-size: cover; background-position: center;
}
.mini-guide-avatar {
    width: 2.75rem; height: 2.75rem; border-radius: 999px; display: grid; place-items: center; background: var(--gt-brand); color: #fff; font-weight: 800;
}

.grid-scroll {
    scrollbar-width: thin;
    scrollbar-color: rgba(15,95,102,.26) rgba(245,235,212,.5);
}
.grid-scroll::-webkit-scrollbar { width: 10px; height: 10px; }
.grid-scroll::-webkit-scrollbar-track { background: rgba(245,235,212,.5); border-radius: 999px; }
.grid-scroll::-webkit-scrollbar-thumb { background: rgba(15,95,102,.26); border-radius: 999px; }

.metric-card {
    border: 1px solid rgba(231,225,215,.95);
    background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(250,248,245,.96));
    border-radius: 1.4rem;
    padding: 1.25rem;
}

.soft-outline {
    border: 1px solid rgba(231,225,215,.95);
    background: #fff;
}

.home-section-title {
    display: flex;
    align-items: center;
    gap: .5rem;
    color: var(--gt-brand);
    font-weight: 700;
    font-size: 1.125rem;
}
.home-section-title::before {
    content: "✦";
    color: var(--gt-sand);
}

.flow-line {
    position: relative;
}
.flow-line::before {
    content: "";
    position: absolute;
    left: 10%;
    right: 10%;
    top: 1.7rem;
    height: 2px;
    border-top: 2px dashed rgba(214,179,106,.7);
}

@media (max-width: 1024px) {
    .flow-line::before { display: none; }
}
