:root {
    --ink: #15251c;
    --muted: #5a6b62;
    --line: #e2d9c8;
    --paper: #f3ebe0;
    --cream: #f8f3ea;
    --white: #fffcf6;
    --deep: #0c3328;
    --emerald: #1b5c45;
    --palm: #2a7a55;
    --teal: #1a6d6a;
    --gold: #c49a3c;
    --gold-soft: #e8d5a3;
    --sunset: #b85a32;
    --header: #0a241c;
    --shadow: 0 24px 60px rgba(10, 36, 28, .10);
    --radius: 4px;
    --radius-lg: 18px;
    --font-display: "Fraunces", "Cormorant Garamond", Georgia, serif;
    --font-body: "Figtree", Outfit, system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; }
body {
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--cream);
    line-height: 1.65;
    font-size: 16.5px;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 {
    font-family: var(--font-display);
    line-height: 1.08;
    letter-spacing: -0.018em;
    margin: 0 0 .4em;
    font-weight: 500;
    font-variation-settings: "opsz" 72, "SOFT" 30, "WONK" 1;
}
h1 { font-size: clamp(2.6rem, 6.2vw, 5.1rem); }
h2 { font-size: clamp(1.9rem, 3.2vw, 2.85rem); }
h3 { font-size: 1.42rem; }
h1 em, h2 em { font-style: italic; font-weight: 500; color: inherit; }
p { margin: 0 0 1rem; }
.container { width: min(1200px, calc(100% - 48px)); margin: 0 auto; }

.skip-link {
    position: absolute; left: 12px; top: -48px; z-index: 80;
    background: var(--gold); color: #1a1508; padding: 8px 14px; font-weight: 600;
}
.skip-link:focus { top: 12px; }
.sr-only {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

/* Header */
.site-header {
    position: sticky; top: 0; z-index: 40;
    background: rgba(10, 36, 28, .92);
    backdrop-filter: blur(18px) saturate(1.1);
    border-bottom: 0;
    box-shadow: inset 0 -3px 0 var(--gold), inset 0 -5px 0 #f8f3ea, inset 0 -7px 0 var(--gold);
}
.site-header.is-scrolled {
    box-shadow: 0 10px 32px rgba(0,0,0,.16), inset 0 -3px 0 var(--gold), inset 0 -5px 0 #f8f3ea, inset 0 -7px 0 var(--gold);
}
.is-home .site-header.over-hero {
    position: fixed; left: 0; right: 0;
    background: linear-gradient(180deg, rgba(6,20,16,.55), transparent);
    backdrop-filter: none;
    border-bottom-color: transparent;
    box-shadow: none;
}
.is-home .site-header.over-hero.is-scrolled {
    background: rgba(10, 36, 28, .94);
    backdrop-filter: blur(18px);
    box-shadow: inset 0 -3px 0 var(--gold), inset 0 -5px 0 #f8f3ea, inset 0 -7px 0 var(--gold);
}
.nav { display: flex; align-items: center; justify-content: space-between; min-height: 74px; gap: 16px; }
.logo img { height: 46px; width: auto; }
.menu { display: flex; align-items: center; gap: 22px; color: #f4efe6; font-size: 13.5px; font-weight: 500; letter-spacing: .02em; }
.menu a { position: relative; }
.menu a:not(.btn)::after {
    content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 1px;
    background: var(--gold-soft); transition: right .28s ease;
}
.menu a:not(.btn):hover::after,
.menu a:not(.btn):focus-visible::after,
.menu a.is-current:not(.btn)::after { right: 0; }
.nav-phone {
    font-size: 13px; font-weight: 600; letter-spacing: .02em;
    color: var(--gold-soft) !important; white-space: nowrap;
}
.nav-phone::after { display: none !important; }
.nav-toggle {
    display: none; width: 44px; height: 44px; border: 0; background: transparent;
    position: relative; cursor: pointer; z-index: 42;
}
.nav-toggle span, .nav-toggle span:before, .nav-toggle span:after {
    position: absolute; left: 11px; width: 22px; height: 1.5px; background: #fff; content: "";
    transition: transform .2s ease, top .2s ease, opacity .2s ease;
}
.nav-toggle span { top: 21px; }
.nav-toggle span:before { top: -7px; }
.nav-toggle span:after { top: 7px; }
.nav-toggle.is-open span { background: transparent; }
.nav-toggle.is-open span:before { top: 0; transform: rotate(45deg); }
.nav-toggle.is-open span:after { top: 0; transform: rotate(-45deg); }
.nav-scrim { display: none; }

.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 13px 22px; border-radius: 2px; border: 0; font: inherit;
    font-size: 13.5px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
    cursor: pointer; transition: transform .2s ease, background .2s ease, box-shadow .2s ease, color .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:focus-visible, a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
    outline: 2px solid var(--gold); outline-offset: 3px;
}
.btn-primary, .btn-gold {
    background: var(--gold); color: #1a1408;
    box-shadow: 0 10px 24px rgba(196, 154, 60, .22);
}
.btn-primary:hover, .btn-gold:hover { background: #d4ae52; }
.btn-ghost {
    background: transparent; color: #fff;
    border: 1px solid rgba(255,255,255,.55);
    box-shadow: none;
}
.btn-ghost:hover { background: rgba(255,255,255,.1); }
.btn-line {
    background: transparent; color: var(--ink);
    border: 1px solid var(--ink);
}
.btn-line:hover { background: var(--ink); color: #fff; }
.text-link { font-weight: 600; color: var(--emerald); letter-spacing: .02em; }
.text-link:hover { color: var(--sunset); }

/* Hero */
.hero {
    min-height: 92svh; min-height: 92vh;
    position: relative; display: grid; align-items: center; color: #fff; overflow: hidden;
}
.hero-slides, .hero-slide { position: absolute; inset: 0; }
.hero-slide {
    background-size: cover; background-position: center 40%;
    opacity: 0; transform: scale(1.04);
    transition: opacity 1.15s ease;
    will-change: transform, opacity;
}
.hero-slide.is-on { opacity: 1; z-index: 1; }
.hero-slide.is-on.is-zoom { animation: ken 8s ease forwards; }
.hero-slide:nth-child(even).is-on.is-zoom { animation: ken-pan 8s ease forwards; }
.hero-slide:nth-child(3n).is-on.is-zoom { animation: ken-out 8s ease forwards; }
.hero-overlay {
    position: absolute; inset: 0; z-index: 2;
    background:
        linear-gradient(90deg, rgba(8,22,18,.5) 0%, rgba(8,22,18,.16) 46%, transparent 74%),
        linear-gradient(180deg, rgba(8,22,18,.28) 0%, transparent 36%, rgba(8,22,18,.42) 100%);
}
.hero-shine {
    position: absolute; inset: 0; z-index: 2; pointer-events: none;
    background: linear-gradient(108deg, transparent 38%, rgba(255,248,236,.09) 50%, transparent 62%);
    background-size: 220% 100%;
    animation: heroShine 14s ease-in-out infinite;
}
.hero-copy { position: relative; z-index: 3; padding: 108px 0 140px; max-width: 720px; }
.hero-copy h1 { text-wrap: balance; }
.lead { font-size: 1.12rem; max-width: 34em; color: rgba(255,248,236,.88); font-weight: 400; }
.kicker {
    text-transform: uppercase; letter-spacing: .22em; font-size: 11px; font-weight: 600;
    color: var(--emerald); margin-bottom: 14px;
}
.kicker::after {
    content: ""; display: block; width: 36px; height: 1px; background: var(--gold);
    margin-top: 12px;
}
.hero .kicker { color: var(--gold-soft); }
.hero .kicker::after { background: var(--gold-soft); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero-place {
    position: absolute; right: 40px; top: 104px; z-index: 4;
    text-align: right; max-width: 280px;
    padding-right: 18px;
    border-right: 1px solid rgba(212,175,106,.55);
}
.hero-index {
    margin: 0 0 10px; font-size: 11px; letter-spacing: .2em;
    color: rgba(255,248,236,.7); font-weight: 600;
}
.hero-index span { color: var(--gold-soft); }
.hero-place-name {
    margin: 0; font-family: var(--font-display); font-size: 1.85rem;
    font-weight: 500; font-style: italic; line-height: 1.1; letter-spacing: .01em;
}
.hero-place-line {
    margin: 8px 0 0; font-size: 13.5px; color: rgba(255,248,236,.82); line-height: 1.45;
}
.hero-place .hero-cap {
    position: static; margin: 12px 0 0; display: inline-block;
    font-size: 10px; letter-spacing: .18em; text-transform: uppercase;
    color: var(--gold-soft); font-weight: 600;
}
.hero-place.is-in .hero-index,
.hero-place.is-in .hero-place-name,
.hero-place.is-in .hero-place-line,
.hero-place.is-in .hero-cap {
    animation: placeIn .7s ease both;
}
.hero-place.is-in .hero-place-name { animation-delay: .06s; }
.hero-place.is-in .hero-place-line { animation-delay: .12s; }
.hero-place.is-in .hero-cap { animation-delay: .18s; }
.hero-controls {
    position: absolute; left: 28px; bottom: 78px; z-index: 4;
    display: flex; gap: 8px;
}
.hero-arrow {
    pointer-events: auto; width: 48px; height: 48px; padding: 0;
    border-radius: 50%; border: 1px solid rgba(255,255,255,.32);
    background: rgba(8,22,18,.28); color: #fff; font-size: 28px; line-height: 1;
    cursor: pointer; backdrop-filter: blur(10px);
    transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.hero-arrow:hover {
    background: rgba(8,22,18,.5); border-color: var(--gold-soft); transform: scale(1.05);
}
.hero-thumbs {
    position: absolute; left: 50%; bottom: 78px; z-index: 4;
    display: flex; gap: 7px; transform: translateX(-50%);
}
.hero-thumbs button {
    width: 58px; height: 38px; padding: 0; cursor: pointer;
    background-size: cover; background-position: center;
    border: 1px solid rgba(255,255,255,.28);
    opacity: .48; transform: translateY(0);
    transition: opacity .25s ease, transform .25s ease, border-color .25s ease;
}
.hero-thumbs button.is-on {
    opacity: 1; border-color: var(--gold); transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0,0,0,.28);
}
.hero-thumbs button:hover { opacity: .9; }
.hero-progress {
    position: absolute; left: 0; right: 0; bottom: 0; z-index: 5;
    height: 3px; background: rgba(255,255,255,.16);
}
.hero-progress span {
    display: block; height: 100%; width: 0; background: var(--gold);
}
.hero-progress span.is-run { animation: heroBar 8s linear forwards; }

.hero-book {
    position: relative; z-index: 5; margin-top: -48px; margin-bottom: 0;
}
.planner {
    display: grid; grid-template-columns: minmax(220px, 1.2fr) minmax(180px, 1fr) auto;
    gap: 16px; align-items: end;
    padding: 20px 22px;
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}
.planner-note {
    margin: 0;
    font-size: 13.5px;
    color: var(--muted);
    line-height: 1.4;
    padding-bottom: 10px;
}
.planner label { color: var(--ink); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; font-weight: 600; display: grid; gap: 8px; min-width: 220px; flex: 1; }
.planner.light {
    display: flex; flex-wrap: wrap; box-shadow: none; grid-template-columns: none;
}
.planner select, .planner input, input, textarea, select {
    width: 100%; padding: 12px 12px; border-radius: 2px; border: 1px solid var(--line);
    font: inherit; background: #fff; color: var(--ink);
}

.trust { background: var(--deep); color: #f3eee4; }
.trust-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; padding: 0; }
.trust-row div { padding: 22px 18px; border-right: 1px solid rgba(255,255,255,.08); }
.trust-row div:last-child { border-right: 0; }
.trust strong { display: block; font-family: var(--font-display); font-size: 1.2rem; font-weight: 500; }
.trust span { color: rgba(255,255,255,.62); font-size: 13px; }

.section { padding: 96px 0; position: relative; }
.section.soft { background: var(--paper); }
.section-head { margin-bottom: 40px; max-width: 640px; }
.split-head { display: flex; justify-content: space-between; align-items: end; max-width: none; gap: 16px; }
.section-head .muted { font-size: 1.05rem; max-width: 38em; }

.mosaic { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 10px; }
.tile {
    border-radius: 0; background-size: cover; background-position: center;
    position: relative; overflow: hidden; color: #fff; display: flex; align-items: end; padding: 18px;
}
.tile.wide { grid-column: span 2; grid-row: span 2; }
.tile:before { content: ""; position: absolute; inset: 0; background: linear-gradient(transparent 30%, rgba(6,24,18,.78)); }
.tile span { position: relative; }
.tile em { display: block; font-style: normal; opacity: .85; font-size: 13px; }

.place-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 118px;
    gap: 12px;
}
.place-card {
    position: relative; overflow: hidden; color: #fff;
    grid-column: span 3; grid-row: span 2;
}
.place-card:nth-child(1) { grid-column: span 6; grid-row: span 4; }
.place-card:nth-child(2) { grid-column: span 6; grid-row: span 2; }
.place-card:nth-child(3),
.place-card:nth-child(4) { grid-column: span 3; grid-row: span 2; }
.place-card img {
    width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0;
    transition: transform .9s ease;
}
.place-card:hover img { transform: scale(1.06); }
.place-card span {
    position: absolute; left: 0; right: 0; bottom: 0; padding: 22px 20px 18px;
    background: linear-gradient(transparent, rgba(8,22,18,.88));
    z-index: 1;
}
.place-card em {
    display: block; font-style: normal; font-size: 10px; letter-spacing: .16em;
    text-transform: uppercase; color: var(--gold-soft); margin-bottom: 4px;
}
.place-card strong { display: block; font-family: var(--font-display); font-size: clamp(1.35rem, 2vw, 2.1rem); font-weight: 500; }
.place-card small { display: block; opacity: .88; font-size: 13.5px; margin-top: 4px; }
.place-go {
    display: inline-block; margin-top: 10px; font-size: 11px; letter-spacing: .16em;
    text-transform: uppercase; opacity: .75; font-weight: 600;
}

.farther {
    background: var(--deep);
    color: #f4efe6;
    padding: 104px 0;
}
.farther .section-head { max-width: 720px; }
.farther .kicker { color: var(--gold-soft); }
.farther h2 { color: #fff; }
.farther h2 em { color: var(--gold-soft); font-style: italic; }
.farther .muted { color: rgba(244, 239, 230, .7); max-width: 36em; }
.farther .text-link { color: var(--gold-soft); white-space: nowrap; }
.farther .text-link:hover { color: #fff; }
.farther-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 14px;
}
.farther-card {
    position: relative;
    overflow: hidden;
    color: #fff;
    grid-column: span 4;
    min-height: 340px;
    isolation: isolate;
}
.farther-card:nth-child(1),
.farther-card:nth-child(2) {
    grid-column: span 6;
    min-height: 460px;
}
.farther-card img {
    width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0;
    transition: transform 1s ease;
}
.farther-card:hover img { transform: scale(1.06); }
.farther-card::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(8,22,18,.08) 20%, rgba(8,22,18,.82) 100%);
    z-index: 1;
}
.farther-card span {
    position: absolute; left: 0; right: 0; bottom: 0;
    padding: 28px 24px 22px;
    z-index: 2;
}
.farther-card em {
    display: block; font-style: normal; font-size: 10px; letter-spacing: .18em;
    text-transform: uppercase; color: var(--gold-soft); margin-bottom: 8px;
}
.farther-card strong {
    display: block; font-family: var(--font-display); font-weight: 500;
    font-size: clamp(1.6rem, 2.4vw, 2.35rem);
}
.farther-card small {
    display: block; margin-top: 8px; opacity: .88; font-size: 14.5px;
    max-width: 28em; line-height: 1.45;
}
.farther-card b {
    display: inline-block; margin-top: 16px; font-size: 11px; letter-spacing: .16em;
    text-transform: uppercase; font-weight: 650; color: var(--gold-soft);
    border-bottom: 1px solid rgba(232, 213, 163, .35); padding-bottom: 2px;
}
.farther-card:hover b { color: #fff; border-bottom-color: rgba(255,255,255,.55); }

.xp-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 210px;
    gap: 12px;
}
.xp-card { position: relative; overflow: hidden; color: #fff; }
.xp-card.wide { grid-column: span 2; }
.xp-card.tall { grid-row: span 2; }
.xp-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.xp-card:hover img { transform: scale(1.06); }
.xp-card span {
    position: absolute; inset: auto 0 0; padding: 20px;
    background: linear-gradient(transparent, rgba(8,22,18,.86));
}
.xp-card strong { display: block; font-family: var(--font-display); font-size: 1.5rem; font-weight: 500; }
.xp-card small { opacity: .88; }

.story-band { background: var(--cream); }
.story-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 64px; align-items: center; }
.story-photo {
    position: relative;
    min-height: 420px;
    background:
        #16382c
        url("https://images.unsplash.com/photo-1684943093328-cc2c083d9e1b?auto=format&fit=crop&w=1400&q=80")
        center 40% / cover no-repeat;
}
.story-photo::after {
    content: ""; position: absolute; inset: 18px -14px -14px 18px;
    border: 1px solid var(--gold); z-index: 0; pointer-events: none;
}
.story-photo img {
    position: relative; height: 540px; width: 100%;
    object-fit: cover; object-position: center 40%; z-index: 1;
}
.stat-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; margin-top: 32px; background: var(--line); border: 1px solid var(--line); }
.stat-row div { background: var(--white); padding: 18px 16px; }
.stat-row strong { display: block; font-family: var(--font-display); font-size: 1.85rem; color: var(--deep); font-weight: 500; }
.stat-row span { color: var(--muted); font-size: 13px; }

.grid-3, .grid-4 { display: grid; gap: 22px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.card {
    background: var(--white); overflow: hidden;
    box-shadow: 0 1px 0 rgba(18,36,28,.04);
    transition: transform .35s ease, box-shadow .35s ease;
}
.pkg-card { display: flex; flex-direction: column; height: 100%; }
.pkg-card:hover, .card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card-photo { display: block; height: 268px; overflow: hidden; background: #d9d4c8; position: relative; }
.card-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 35%; transition: transform .8s ease; }
.pkg-card:hover .card-photo img, .card:hover .card-photo img { transform: scale(1.06); }
.card-photo.short { height: 180px; }
.chip-days {
    position: absolute; right: 12px; bottom: 12px; z-index: 1;
    background: rgba(10,36,28,.78); color: #fff; font-size: 11px; letter-spacing: .08em;
    text-transform: uppercase; padding: 6px 9px; backdrop-filter: blur(8px);
}
.badge {
    position: absolute; top: 12px; left: 12px; z-index: 1;
    background: var(--gold); color: #1a1508;
    font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
    padding: 6px 9px;
}
.badge-luxury { background: var(--deep); color: var(--gold-soft); }
.badge-family { background: var(--teal); color: #fff; }
.badge-short { background: #fff; color: var(--deep); }
.pkg-points { margin: 0 0 14px; padding: 0; list-style: none; color: var(--muted); font-size: 14px; }
.pkg-points li { padding-left: 14px; position: relative; margin-bottom: 5px; }
.pkg-points li:before { content: ""; position: absolute; left: 0; top: 9px; width: 5px; height: 1px; background: var(--gold); }

.crumbs { display: flex; flex-wrap: wrap; gap: 8px; font-size: 13px; margin: 0 0 16px; opacity: .88; }
.crumbs a { text-decoration: underline; text-underline-offset: 3px; }
.hero-copy .crumbs, .detail-hero .crumbs, .page-hero.has-photo .crumbs { color: #fff; }
.card-body { padding: 20px 20px 22px; display: flex; flex-direction: column; flex: 1; }
.card-body h3 { margin-bottom: .35em; }
.card-body .kicker { font-size: 10px; margin-bottom: 8px; }
.card-body .kicker::after { display: none; }
.meta { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; color: var(--muted); font-size: 13px; margin-top: auto; padding-top: 12px; border-top: 1px solid var(--line); margin-bottom: 12px; }
.meta strong, .price { color: var(--deep); font-size: 1.05rem; font-weight: 700; }
.pkg-cta { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; font-weight: 700; color: var(--emerald); }
.pkg-cta:hover { color: var(--sunset); }
.quiet-card { padding: 0; overflow: hidden; background: var(--white); border: 1px solid var(--line); }
.quiet-card .quiet-body { padding: 20px; }
.quiet-card img { height: 150px; width: 100%; object-fit: cover; }
.quiet-card.fleet-card img { height: 210px; object-position: center; }
.quiet-card p, .quiet-card span { color: var(--muted); margin: 0; }
.quote {
    margin: 0; padding: 28px 24px; background: var(--white);
    border-left: 2px solid var(--gold);
}
.quote p { font-family: var(--font-display); font-size: 1.28rem; line-height: 1.4; font-style: italic; }
.quote cite { color: var(--muted); font-style: normal; font-size: 13px; letter-spacing: .04em; }

.page-hero {
    padding: 56px 0 48px;
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(196,154,60,.14) 0, rgba(196,154,60,.14) 3px, transparent 3px),
        linear-gradient(180deg, #efe6d4, var(--cream));
}
.page-hero::after {
    content: "";
    position: absolute; right: 0; top: 0; bottom: 0;
    width: min(38%, 480px);
    background: url("https://images.unsplash.com/photo-1684943093328-cc2c083d9e1b?auto=format&fit=crop&w=900&q=70") center/cover;
    mask-image: linear-gradient(90deg, transparent, #000 55%);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 55%);
    opacity: .38;
    pointer-events: none;
}
.page-hero.has-photo::after { display: none; }
.page-hero h1 { max-width: 16ch; }
.page-hero p { max-width: 58ch; color: var(--muted); }
.page-hero .container { position: relative; z-index: 1; }
.page-hero.has-photo {
    min-height: 52vh; color: #fff; display: grid; align-items: end;
    background-size: cover; background-position: center;
    padding: 100px 0 56px; position: relative;
}
.page-hero.has-photo::before {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(90deg, rgba(8,22,18,.72), rgba(8,22,18,.28) 70%);
}
.page-hero.has-photo .container { position: relative; z-index: 1; }
.page-hero.has-photo p, .page-hero.has-photo .kicker { color: #efe8d8; }
.filters { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.filters a { padding: 8px 14px; border: 1px solid var(--line); background: #fff; font-size: 13px; }
.filters a.on { background: var(--deep); color: #fff; border-color: var(--deep); }
.detail-hero {
    min-height: 58vh; background-size: cover; background-position: center 30%;
    position: relative; display: grid; align-items: end; color: #fff;
}
.detail-hero .hero-copy { padding: 80px 0 48px; max-width: 820px; }
.detail-hero .hero-overlay {
    background: linear-gradient(180deg, rgba(8,22,18,.2), rgba(6,18,14,.78));
}
.detail-layout { display: grid; grid-template-columns: 1.5fr .82fr; gap: 48px; align-items: start; }
.booking-aside { position: sticky; top: 92px; }
.prose { font-size: 1.05rem; max-width: 720px; }
.prose.narrow { margin: 0 auto; }
.prose a { color: var(--emerald); text-decoration: underline; text-underline-offset: 3px; }
.itinerary details, .prose details { border-top: 1px solid var(--line); padding: 16px 0; }
summary { cursor: pointer; font-weight: 500; font-family: var(--font-display); font-size: 1.2rem; }
.inc-ex { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 20px; }
.enquiry-card, .aside-card {
    background: var(--white); padding: 26px 24px;
    border-top: 2px solid var(--gold);
    box-shadow: var(--shadow);
}
.enquiry-card h3 { font-size: 1.55rem; }
.enquiry-form { display: grid; gap: 12px; }
label { display: grid; gap: 6px; font-size: 12px; font-weight: 600; letter-spacing: .04em; }
.flash { padding: 10px 12px; }
.flash.ok { background: #e5f5ea; }
.flash.err { background: #fdeeee; }
.map-wrap iframe { width: 100%; height: 260px; border: 0; margin-top: 12px; }
.desk-photo { margin: 0 0 28px; }
.desk-photo img { width: 100%; height: 280px; object-fit: cover; object-position: center 40%; }
.detail-meta { font-size: 1.05rem; color: rgba(255,248,236,.9); }
.kasavu {
    height: 8px;
    background: linear-gradient(#c49a3c 0 2px, #f4efe4 2px 6px, #c49a3c 6px 8px);
}
.site-footer { padding-top: 0; }
.site-footer .footer-grid { padding-top: 64px; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.gallery-grid figure { margin: 0; overflow: hidden; background: #fff; }
.gallery-grid img { height: 250px; width: 100%; object-fit: cover; transition: transform .6s ease; }
.gallery-grid figure:hover img { transform: scale(1.05); }
.gallery-grid figcaption { padding: 12px 4px; font-size: 14px; }

.cta {
    background:
        linear-gradient(90deg, rgba(10,36,28,.82), rgba(10,36,28,.4)),
        url("https://images.unsplash.com/photo-1558025638-565ae7710b3f?auto=format&fit=crop&w=1800&q=75") center 40%/cover;
    color: #fff; padding: 100px 0; text-align: left;
}
.cta .container { max-width: 720px; margin-left: auto; margin-right: auto; }
.cta .kicker { color: var(--gold-soft); }
.cta p { color: rgba(255,248,236,.85); }
.site-footer {
    background: #071510; color: #d7dcd7; padding-top: 0;
    border-top: 0;
}
.footer-grid { display: grid; grid-template-columns: 1.45fr .9fr 1fr 1.15fr; gap: 36px; padding-bottom: 48px; }
.footer-grid a, .footer-grid p { display: block; color: #c5ccc5; margin-bottom: 8px; font-size: 14.5px; }
.footer-grid a:hover { color: var(--gold-soft); }
.footer-grid h4 {
    color: var(--gold-soft); font-size: 11px; letter-spacing: .16em; text-transform: uppercase;
    font-family: var(--font-body); font-weight: 600; margin: 0 0 16px;
}
.socials { display: flex; gap: 8px; margin-top: 18px; }
.socials a {
    width: 40px; height: 40px; border: 1px solid rgba(255,255,255,.16);
    display: grid; place-items: center; margin: 0; color: #fff;
}
.socials a:hover { border-color: var(--gold); color: var(--gold-soft); }
.newsletter { display: grid; grid-template-columns: 1fr auto; gap: 8px; margin-top: 8px; }
.newsletter input { background: #0c221c; border-color: rgba(255,255,255,.14); color: #fff; }
.copyright {
    border-top: 1px solid rgba(255,255,255,.07); padding: 16px 0 28px;
    display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
    font-size: 13px; color: #8b928b;
}
.copyright a { color: #c5ccc5; }
.muted { color: var(--muted); }
.inr { font-family: "Noto Sans", "Nirmala UI", "Segoe UI", sans-serif; font-weight: 600; }

.wa-float,
.chat-toggle {
    position: fixed; right: 18px; bottom: 18px; z-index: 50;
    width: 56px; height: 56px; border-radius: 50%; border: 0;
    background: #215c47; color: #fff; display: grid; place-items: center;
    box-shadow: 0 10px 24px rgba(10,36,28,.28); cursor: pointer;
}
.chat-toggle .icon-close { display: none; }
.chat-dock.is-open .chat-toggle { background: var(--deep); }
.chat-dock.is-open .icon-chat { display: none; }
.chat-dock.is-open .icon-close { display: block; }
.chat-dock.is-open .chat-toggle { border-radius: 16px; }
.chat-panel {
    position: fixed; right: 18px; bottom: 84px; z-index: 50;
    width: min(280px, calc(100vw - 36px));
    background: #fffcf6; color: var(--ink);
    padding: 18px 16px 14px;
    box-shadow: var(--shadow);
    border-top: 2px solid var(--gold);
}
.chat-panel[hidden] { display: none !important; }
.chat-panel-kicker {
    font-size: 11px; letter-spacing: .16em; text-transform: uppercase;
    color: var(--emerald); margin: 0 0 4px; font-weight: 600;
}
.chat-panel strong { display: block; font-family: var(--font-display); font-size: 1.25rem; margin-bottom: 12px; font-weight: 500; }
.chat-action {
    display: block; padding: 10px 12px; margin-bottom: 8px;
    background: #f3ebe0; font-weight: 600; font-size: 14px;
}
.chat-action.wa { background: #215c47; color: #fff; }
.chat-action:hover { filter: brightness(1.05); }
.has-tawk .chat-dock { right: auto; left: 18px; }
.has-tawk .chat-panel { right: auto; left: 18px; }
.chat-toggle:hover { transform: translateY(-2px); background: #25d366; }

.reveal { opacity: 0; transform: translateY(16px); transition: opacity .8s ease, transform .8s ease; }
.reveal.is-in { opacity: 1; transform: none; }
.hero-copy .reveal:nth-child(1) { transition-delay: .08s; }
.hero-copy .reveal:nth-child(2) { transition-delay: .18s; }
.hero-copy .reveal:nth-child(3) { transition-delay: .3s; }
.hero-copy .reveal:nth-child(4) { transition-delay: .42s; }

@keyframes ken {
    from { transform: scale(1) translate(0, 0); }
    to { transform: scale(1.12) translate(-1.4%, -1%); }
}
@keyframes ken-pan {
    from { transform: scale(1.1) translate(2%, 0); }
    to { transform: scale(1.1) translate(-2.2%, 1%); }
}
@keyframes ken-out {
    from { transform: scale(1.14); }
    to { transform: scale(1); }
}
@keyframes heroShine {
    0%, 100% { background-position: 120% 0; }
    50% { background-position: -20% 0; }
}
@keyframes heroBar {
    from { width: 0; }
    to { width: 100%; }
}
@keyframes placeIn {
    from { opacity: 0; transform: translateY(14px); }
    to { opacity: 1; transform: none; }
}

@media (max-width: 1100px) {
    .hero-thumbs { display: none; }
    .nav-phone { display: none; }
    .place-grid { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 100px; }
    .place-card:nth-child(1) { grid-column: span 6; grid-row: span 3; }
    .place-card:nth-child(2) { grid-column: span 6; grid-row: span 2; }
    .place-card:nth-child(n+3) { grid-column: span 3; grid-row: span 2; }
}

@media (max-width: 1024px) {
    .farther-card { grid-column: span 6; min-height: 320px; }
    .farther-card:nth-child(1),
    .farther-card:nth-child(2) { min-height: 380px; }
    .xp-grid { grid-template-columns: repeat(2, 1fr); }
    .xp-card.wide { grid-column: span 2; }
    .story-grid, .footer-grid { grid-template-columns: 1fr 1fr; }
    .story-photo img { height: 380px; }
    .newsletter { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
    .container { width: min(1200px, calc(100% - 32px)); }
    .nav-toggle { display: block; }
    .nav-scrim {
        display: none; position: fixed; inset: 0; background: rgba(6,18,14,.58); z-index: 38;
    }
    .nav-scrim[hidden] { display: none !important; }
    body.nav-open .nav-scrim { display: block !important; }
    body.nav-open { overflow: hidden; }
    .menu {
        display: none; position: fixed; inset: 0;
        background: #0a241c; flex-direction: column; padding: 88px 28px 40px;
        align-items: flex-start; gap: 18px; z-index: 41; overflow: auto;
    }
    .menu.open { display: flex; }
    .menu .btn { width: 100%; }
    .trust-row { grid-template-columns: 1fr 1fr; }
    .trust-row div { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.08); }
    .mosaic, .grid-3, .grid-4, .detail-layout, .inc-ex, .footer-grid, .gallery-grid, .story-grid, .xp-grid, .stat-row, .farther-grid {
        grid-template-columns: 1fr;
    }
    .farther-card,
    .farther-card:nth-child(1),
    .farther-card:nth-child(2) {
        grid-column: auto;
        min-height: 300px;
    }
    .farther { padding: 72px 0; }
    .farther .split-head { align-items: flex-start; }
    .place-grid {
        display: flex; overflow-x: auto; scroll-snap-type: x mandatory;
        grid: none; gap: 12px; margin-inline: -16px; padding: 4px 16px 12px;
        -webkit-overflow-scrolling: touch;
    }
    .place-card {
        flex: 0 0 78vw; min-height: 340px; max-height: 340px;
        grid-column: auto !important; grid-row: auto !important;
        scroll-snap-align: start;
    }
    .place-go { opacity: 1; transform: none; }
    .tile.wide, .xp-card.wide, .xp-card.tall { grid-column: auto; grid-row: auto; }
    .xp-grid { grid-auto-rows: 240px; }
    .mosaic { grid-auto-rows: 200px; }
    .hero { min-height: 78svh; align-items: end; }
    .hero-copy { padding: 96px 0 88px; }
    .hero-place { right: 16px; top: 86px; max-width: 58vw; padding-right: 12px; }
    .hero-place-name { font-size: 1.35rem; }
    .hero-place-line { display: none; }
    .hero-thumbs { display: none; }
    .hero-arrow { width: 40px; height: 40px; font-size: 24px; }
    .hero-controls {
        left: 0; right: 0; bottom: auto; top: 50%;
        transform: translateY(-50%);
        justify-content: space-between; padding: 0 10px;
    }
    .hero-book { margin-top: -24px; }
    .planner { grid-template-columns: 1fr; }
    .page-hero::after { width: 46%; opacity: .22; }
    .copyright { flex-direction: column; }
    .story-photo img { height: 280px; }
    .cta { text-align: left; padding: 72px 0; }
    .card-photo { height: 220px; }
    .booking-aside { position: static; }
    .page-hero.has-photo { min-height: 42vh; padding: 88px 0 40px; }
    .btn { min-height: 44px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .reveal, .hero-slide, .place-card img, .xp-card img, .farther-card img, .card-photo img,
    .hero-shine, .hero-progress span, .hero-place.is-in * {
        animation: none !important; transition: none !important;
    }
    .reveal { opacity: 1; transform: none; }
}
