/* ==========================================================================
   Budva Canyoning — design system
   Black · white · stone · turquoise water. No framework, no dependencies.
   ========================================================================== */

/* --------------------------------------------------------------- 1. tokens */
:root {
    /* neutrals */
    --ink:        #0b0c0c;
    --ink-2:      #15181a;
    --ink-3:      #1f2325;
    --stone-800:  #2b2f30;
    --stone-600:  #565b5d;
    --stone-500:  #6f7476;
    --stone-400:  #9ba1a2;
    --stone-300:  #c6c9c8;
    --stone-200:  #e2e4e2;
    --stone-100:  #f1f1ef;
    --stone-50:   #f8f8f6;
    --paper:      #ffffff;

    /* accent — canyon water.
       Contrast measured, not guessed:
         --aqua        on white  5.0:1   ·  white on --aqua  5.0:1   (AA text + buttons)
         --aqua-bright on --ink 10.6:1   (dark sections only — fails on white) */
    --aqua:        #0a7d78;
    --aqua-deep:   #076560;
    --aqua-bright: #38d6cb;
    --aqua-wash:   #e9f5f4;

    /* type */
    --f-display: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    --f-text:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;

    --t-hero:  clamp(2.9rem, 11vw, 7.5rem);
    --t-h1:    clamp(2.2rem, 6.2vw, 4.5rem);
    --t-h2:    clamp(1.8rem, 4.4vw, 3.1rem);
    --t-h3:    clamp(1.15rem, 2.2vw, 1.5rem);
    --t-lead:  clamp(1.05rem, 1.7vw, 1.35rem);
    --t-body:  1.0625rem;
    --t-small: 0.875rem;
    --t-micro: 0.75rem;

    /* space */
    --s-1: 0.25rem; --s-2: 0.5rem;  --s-3: 0.75rem; --s-4: 1rem;
    --s-5: 1.5rem;  --s-6: 2rem;    --s-7: 3rem;    --s-8: 4rem;
    --s-9: 6rem;    --s-10: 8rem;   --s-11: 12rem;

    --section:      clamp(4.5rem, 11vw, 9.5rem);
    --gutter:       clamp(1.25rem, 5vw, 3.5rem);
    --wrap:         78rem;
    --wrap-narrow:  46rem;

    /* shape */
    --r-sm: 8px;
    --r:    16px;
    --r-lg: 24px;
    --r-xl: 32px;
    --r-full: 999px;

    --shadow: 0 1px 2px rgba(11, 12, 12, .04), 0 8px 24px rgba(11, 12, 12, .06);
    --shadow-lift: 0 2px 4px rgba(11, 12, 12, .05), 0 18px 48px rgba(11, 12, 12, .12);

    --ease: cubic-bezier(.22, .61, .36, 1);
    --nav-h: 68px;
}

/* --------------------------------------------------------------- 2. reset */
*, *::before, *::after { box-sizing: border-box; }

html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--nav-h) + 1rem);
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--f-text);
    font-size: var(--t-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

img, video, iframe { max-width: 100%; display: block; }
img { height: auto; }

h1, h2, h3, h4 {
    font-family: var(--f-display);
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.04;
    margin: 0;
    text-wrap: balance;
}

p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }

a { color: inherit; text-decoration: none; }

button { font: inherit; color: inherit; border: 0; background: none; cursor: pointer; }

:focus-visible {
    outline: 2px solid var(--aqua);
    outline-offset: 3px;
    border-radius: var(--r-sm);
}

.skip-link {
    position: absolute; left: -9999px; top: 0; z-index: 200;
    background: var(--ink); color: #fff; padding: .75rem 1.25rem; border-radius: 0 0 var(--r-sm) 0;
}
.skip-link:focus { left: 0; }

.icon { flex: none; }

.sr-only {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* -------------------------------------------------------------- 3. layout */
.wrap {
    width: 100%;
    max-width: var(--wrap);
    margin-inline: auto;
    padding-inline: var(--gutter);
}
.wrap--narrow { max-width: var(--wrap-narrow); }

.section { padding-block: var(--section); }
.section--tight { padding-block: clamp(3rem, 7vw, 5.5rem); }
.section--flush-top { padding-top: 0; }

.section--dark   { background: var(--ink);      color: #fff; }
.section--ink2   { background: var(--ink-2);    color: #fff; }
.section--stone  { background: var(--stone-50); }

.section--dark .muted,
.section--ink2 .muted { color: var(--stone-400); }

.muted { color: var(--stone-600); }

.rule { height: 1px; background: var(--stone-200); border: 0; margin: 0; }
.section--dark .rule { background: rgba(255, 255, 255, .12); }

/* section heading block */
.head { max-width: 44rem; }
.head--center { margin-inline: auto; text-align: center; }

.eyebrow {
    display: inline-flex; align-items: center; gap: .5rem;
    font-family: var(--f-display);
    font-size: var(--t-micro);
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--aqua);
    margin-bottom: var(--s-4);
}
.section--dark .eyebrow,
.section--ink2 .eyebrow { color: var(--aqua-bright); }

/* Over photography the accent cannot be relied on — the rule stays aqua, the
   label goes white so it is legible whatever the image does behind it. */
.hero .eyebrow { color: rgba(255, 255, 255, .92); }
.hero .eyebrow::before { background: var(--aqua-bright); opacity: 1; }

.eyebrow::before {
    content: ''; width: 1.75rem; height: 1px; background: currentColor; opacity: .7;
}

.h2 { font-size: var(--t-h2); }
.h3 { font-size: var(--t-h3); font-weight: 700; letter-spacing: -0.015em; }

.lead {
    font-size: var(--t-lead);
    line-height: 1.55;
    color: var(--stone-600);
    margin-top: var(--s-5);
    max-width: 40rem;
    text-wrap: pretty;
}
.section--dark .lead, .section--ink2 .lead { color: var(--stone-300); }

/* ------------------------------------------------------------- 4. buttons */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
    font-family: var(--f-display);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: -0.01em;
    padding: 1.05rem 1.9rem;
    border-radius: var(--r-full);
    border: 1px solid transparent;
    transition: transform .25s var(--ease), background-color .25s var(--ease),
                color .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
    will-change: transform;
    white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
    background: var(--aqua);
    color: #fff;
    box-shadow: 0 8px 24px rgba(10, 125, 120, .3);
}
.btn--primary:hover { background: var(--aqua-deep); box-shadow: 0 12px 32px rgba(10, 125, 120, .36); }

.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: var(--stone-800); }

.btn--ghost {
    background: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .45);
    color: #fff;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.btn--ghost:hover { background: rgba(255, 255, 255, .2); border-color: #fff; }

.btn--outline { border-color: var(--stone-300); color: var(--ink); }
.btn--outline:hover { border-color: var(--ink); }

.btn--sm { padding: .7rem 1.25rem; font-size: .9375rem; }
.btn--lg { padding: 1.2rem 2.4rem; font-size: 1.0625rem; }
.btn--block { width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: var(--s-3); margin-top: var(--s-7); }

/* text link with arrow */
.tlink {
    display: inline-flex; align-items: center; gap: .45rem;
    font-family: var(--f-display); font-weight: 700;
    color: var(--aqua);
    border-bottom: 1px solid transparent;
    transition: border-color .2s var(--ease), gap .2s var(--ease);
}
.tlink:hover { border-color: currentColor; gap: .75rem; }
.section--dark .tlink { color: var(--aqua-bright); }

/* ----------------------------------------------------------------- 5. nav */
.nav {
    position: fixed; inset: 0 0 auto 0; z-index: 100;
    height: var(--nav-h);
    transition: background-color .35s var(--ease), box-shadow .35s var(--ease),
                border-color .35s var(--ease);
    border-bottom: 1px solid transparent;
}
.nav__inner {
    height: var(--nav-h);
    max-width: var(--wrap);
    margin-inline: auto;
    padding-inline: var(--gutter);
    display: flex; align-items: center; gap: var(--s-5);
}

.nav__brand { display: flex; align-items: center; gap: .6rem; margin-right: auto; }
.nav__brand img { width: 40px; height: 40px; }
.nav__brand-text {
    font-family: var(--f-display); font-size: .9375rem; font-weight: 500;
    letter-spacing: -0.01em; color: #fff; white-space: nowrap;
}
.nav__brand-text strong { font-weight: 800; }

.nav__links { display: none; gap: var(--s-5); }
.nav__link {
    font-family: var(--f-display); font-size: .9375rem; font-weight: 600;
    color: rgba(255, 255, 255, .82);
    padding-block: .4rem;
    position: relative;
    transition: color .2s var(--ease);
}
.nav__link::after {
    content: ''; position: absolute; left: 0; right: 100%; bottom: 0; height: 1.5px;
    background: currentColor; transition: right .28s var(--ease);
}
.nav__link:hover, .nav__link.is-active { color: #fff; }
.nav__link:hover::after, .nav__link.is-active::after { right: 0; }

.nav__actions { display: flex; align-items: center; gap: var(--s-3); }
.nav__wa {
    display: none; width: 40px; height: 40px; border-radius: var(--r-full);
    align-items: center; justify-content: center;
    color: #fff; border: 1px solid rgba(255, 255, 255, .3);
    transition: background-color .2s var(--ease), border-color .2s var(--ease);
}
.nav__wa:hover { background: rgba(255, 255, 255, .14); border-color: #fff; }
.nav__cta { display: none; }

/* solid state (after scroll, or on light pages) */
.nav.is-solid {
    background: rgba(255, 255, 255, .88);
    backdrop-filter: saturate(180%) blur(18px);
    -webkit-backdrop-filter: saturate(180%) blur(18px);
    border-bottom-color: var(--stone-200);
}
.nav.is-solid .nav__brand-text { color: var(--ink); }
.nav.is-solid .nav__link { color: var(--stone-600); }
.nav.is-solid .nav__link:hover, .nav.is-solid .nav__link.is-active { color: var(--ink); }
.nav.is-solid .nav__wa { color: var(--ink); border-color: var(--stone-300); }
.nav.is-solid .nav__wa:hover { background: var(--stone-100); border-color: var(--ink); }
.nav.is-solid .nav__burger span { background: var(--ink); }

/* burger */
.nav__burger {
    width: 42px; height: 42px; border-radius: var(--r-full);
    display: grid; place-content: center; gap: 6px;
}
.nav__burger span {
    display: block; width: 22px; height: 1.75px; border-radius: 2px; background: #fff;
    transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.nav__burger[aria-expanded="true"] span:first-child { transform: translateY(3.9px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:last-child  { transform: translateY(-3.9px) rotate(-45deg); }

/* mobile panel */
.nav__panel {
    position: fixed; inset: var(--nav-h) 0 auto 0;
    background: rgba(11, 12, 12, .97);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    padding: var(--s-6) var(--gutter) var(--s-7);
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    max-height: calc(100dvh - var(--nav-h));
    overflow-y: auto;
}
.nav__panel[hidden] { display: none; }
.nav__panel nav { display: grid; gap: 2px; }
.nav__panel-link {
    font-family: var(--f-display); font-size: 1.6rem; font-weight: 700; letter-spacing: -0.02em;
    color: #fff; padding: .7rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, .09);
}
.nav__panel-link--cta {
    display: flex; align-items: center; justify-content: space-between;
    color: var(--aqua-bright); border-bottom: 0; margin-top: var(--s-3);
}
.nav__panel-foot {
    display: flex; flex-wrap: wrap; gap: var(--s-5);
    margin-top: var(--s-6); padding-top: var(--s-5);
    border-top: 1px solid rgba(255, 255, 255, .09);
    font-size: var(--t-small); color: var(--stone-300);
}
.nav__panel-foot a { display: inline-flex; align-items: center; gap: .5rem; }

body.nav-open { overflow: hidden; }

/* ---------------------------------------------------------------- 6. hero */
.hero {
    position: relative;
    min-height: 100svh;
    display: flex; flex-direction: column; justify-content: flex-end;
    color: #fff;
    overflow: hidden;
    isolation: isolate;
}
.hero--page { min-height: min(76svh, 720px); }

.hero__media {
    position: absolute; inset: 0; z-index: -2;
}
.hero__media img, .hero__media video {
    width: 100%; height: 100%; object-fit: cover;
}
/* Two layers: a top scrim so the nav stays legible, and a deeper bottom scrim
   so the headline block holds contrast over bright rock and water. */
.hero__media::after {
    content: ''; position: absolute; inset: 0;
    background:
        linear-gradient(180deg,
            rgba(11, 12, 12, .60) 0%,
            rgba(11, 12, 12, .14) 26%,
            rgba(11, 12, 12, .30) 48%,
            rgba(11, 12, 12, .66) 74%,
            rgba(11, 12, 12, .93) 100%);
}

.hero__body {
    width: 100%; max-width: var(--wrap); margin-inline: auto;
    /* Small bottom padding on purpose: it drops the headline block toward the
       base of the frame so more of the photograph stays visible above it. */
    padding: 0 var(--gutter) clamp(1.1rem, 2.4vw, 2rem);
}
.hero__title {
    font-size: var(--t-hero);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: .93;
    max-width: 18ch;
}
.hero--page .hero__title { font-size: var(--t-h1); }

.hero__sub {
    font-size: var(--t-lead);
    color: rgba(255, 255, 255, .88);
    margin-top: var(--s-5);
    max-width: 34ch;
    text-wrap: pretty;
}

.hero__scroll {
    display: none;
    position: absolute; left: 50%; bottom: 1.25rem; transform: translateX(-50%);
    color: rgba(255, 255, 255, .55);
    animation: bob 2.6s var(--ease) infinite;
}
@keyframes bob { 0%,100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 6px); } }

/* fact strip under hero */
.facts {
    border-top: 1px solid rgba(255, 255, 255, .16);
    background: rgba(11, 12, 12, .35);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
}
.facts__inner {
    max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter);
    display: grid; grid-template-columns: repeat(2, 1fr);
}
.facts__item {
    padding: var(--s-4) 0;
    display: flex; flex-direction: column; gap: 2px;
}
.facts__item + .facts__item { border-left: 1px solid rgba(255, 255, 255, .14); padding-left: var(--s-4); }
.facts__item:nth-child(3) { border-left: 0; padding-left: 0; }
.facts__item:nth-child(-n+2) { border-bottom: 1px solid rgba(255, 255, 255, .14); }
.facts__k {
    font-size: var(--t-micro); letter-spacing: .14em; text-transform: uppercase;
    color: rgba(255, 255, 255, .75);
}
.facts__v {
    font-family: var(--f-display); font-weight: 700; font-size: .9375rem;
    color: #fff; letter-spacing: -0.01em;
}

/* ------------------------------------------------------------ 7. features */
.feats {
    /* Two columns from the smallest screen up — a six-item single column was a
       long scroll on a phone. */
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px;
    background: var(--stone-200);
    border-block: 1px solid var(--stone-200);
    margin-top: var(--s-8);
}
.section--dark .feats, .section--ink2 .feats {
    background: rgba(255, 255, 255, .12);
    border-color: rgba(255, 255, 255, .12);
}
.feat {
    background: var(--paper);
    padding: var(--s-5) var(--s-4) var(--s-6);
    display: flex; flex-direction: column; gap: var(--s-3);
}
.section--dark .feat, .section--ink2 .feat { background: var(--ink); }
.feat__icon { color: var(--aqua); }
.section--dark .feat__icon { color: var(--aqua-bright); }
.feat__t { font-family: var(--f-display); font-weight: 700; font-size: 1.0625rem; letter-spacing: -0.015em; }
.feat__n { font-size: var(--t-small); color: var(--stone-500); text-wrap: pretty; }
.section--dark .feat__n { color: var(--stone-400); }

/* --------------------------------------------------------------- 8. split */
.split {
    display: grid; gap: var(--s-6);
    align-items: center;
}
.split__media { position: relative; border-radius: var(--r-lg); overflow: hidden; }
.split__media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.split--tall .split__media img { aspect-ratio: 3 / 4; }

/* --------------------------------------------------------------- 9. story */
.story { display: grid; }
.story__item {
    position: relative;
    min-height: min(88svh, 780px);
    display: flex; align-items: flex-end;
    color: #fff;
    overflow: hidden;
    isolation: isolate;
}
.story__item img {
    position: absolute; inset: 0; z-index: -2;
    width: 100%; height: 100%; object-fit: cover;
    transform: scale(1.04);
    transition: transform 1.4s var(--ease);
}
.story__item.is-in img { transform: scale(1); }
.story__item::after {
    content: ''; position: absolute; inset: 0; z-index: -1;
    background: linear-gradient(180deg, rgba(11,12,12,.15) 0%, rgba(11,12,12,.05) 40%, rgba(11,12,12,.8) 100%);
}
.story__body {
    width: 100%; max-width: var(--wrap); margin-inline: auto;
    padding: var(--s-7) var(--gutter);
}
.story__item:nth-child(even) .story__body { text-align: right; }
.story__item:nth-child(even) .story__line { margin-left: auto; }
.story__item:nth-child(even) .eyebrow::before { display: none; }
.story__k {
    font-family: var(--f-display); font-size: var(--t-micro); font-weight: 700;
    letter-spacing: .18em; text-transform: uppercase; color: var(--aqua-bright);
}
.story__line {
    font-family: var(--f-display); font-weight: 700;
    font-size: clamp(1.6rem, 4.6vw, 2.9rem);
    letter-spacing: -0.03em; line-height: 1.1;
    margin-top: var(--s-3); max-width: 22ch;
    text-wrap: balance;
}

/* ----------------------------------------------------------- 10. included */
/* Hairlines live on the items, not as a background showing through 1px gaps.
   An incomplete last row therefore renders as empty space rather than a grey
   hole — the grid stays correct whatever number of items config provides. */
.incl {
    display: grid; grid-template-columns: repeat(2, 1fr);
    margin-top: var(--s-7);
    border-top: 1px solid var(--stone-200);
    border-left: 1px solid var(--stone-200);
}
.incl__i {
    padding: var(--s-5) var(--s-4);
    display: flex; flex-direction: column; align-items: center; gap: var(--s-3);
    text-align: center;
    border-right: 1px solid var(--stone-200);
    border-bottom: 1px solid var(--stone-200);
}
.incl__i .icon { color: var(--aqua); }
.incl__l { font-family: var(--f-display); font-weight: 600; font-size: .9375rem; letter-spacing: -0.01em; }

/* ------------------------------------------------------------ 11. timeline */
.tl { margin-top: var(--s-7); border-top: 1px solid var(--stone-200); }
.section--dark .tl { border-color: rgba(255,255,255,.12); }
.tl__i {
    display: grid; gap: var(--s-2);
    padding: var(--s-5) 0;
    border-bottom: 1px solid var(--stone-200);
}
.section--dark .tl__i { border-color: rgba(255,255,255,.12); }
.tl__time {
    font-family: var(--f-display); font-weight: 700; font-size: .9375rem;
    color: var(--aqua); letter-spacing: .02em;
    font-variant-numeric: tabular-nums;
}
.section--dark .tl__time { color: var(--aqua-bright); }
.tl__t { font-family: var(--f-display); font-weight: 700; font-size: 1.125rem; letter-spacing: -0.015em; }
.tl__b { color: var(--stone-600); font-size: var(--t-small); max-width: 46ch; }
.section--dark .tl__b { color: var(--stone-400); }

/* --------------------------------------------------------------- 12. list */
.checks { display: grid; gap: var(--s-3); margin-top: var(--s-6); }
.checks li { display: flex; gap: var(--s-3); align-items: flex-start; }
.checks .icon { color: var(--aqua); margin-top: 3px; }
.section--dark .checks .icon { color: var(--aqua-bright); }

.deflist { display: grid; gap: 1px; background: var(--stone-200); margin-top: var(--s-6); border-radius: var(--r); overflow: hidden; }
.deflist__i { background: var(--paper); padding: var(--s-4) var(--s-5); display: grid; gap: 2px; }
.deflist__l { font-family: var(--f-display); font-weight: 700; font-size: 1rem; }
.deflist__n { font-size: var(--t-small); color: var(--stone-600); }

/* --------------------------------------------------------------- 13. price */
.prices { display: grid; gap: var(--s-4); margin-top: var(--s-7); }
.price {
    border: 1px solid var(--stone-200);
    border-radius: var(--r-lg);
    padding: var(--s-6);
    display: grid; gap: var(--s-3);
    background: var(--paper);
    transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.price:hover { border-color: var(--stone-400); box-shadow: var(--shadow); }
.price--feature { border-color: var(--ink); box-shadow: var(--shadow-lift); }
.price__tag {
    /* justify-self, not align-self: grid items stretch on the inline axis, so
       align-self left the pill spanning the whole card. */
    justify-self: start;
    font-size: var(--t-micro); font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
    color: var(--aqua-deep); background: var(--aqua-wash);
    padding: .35rem .7rem; border-radius: var(--r-full);
}
.price__n { font-family: var(--f-display); font-weight: 700; font-size: 1.25rem; letter-spacing: -0.02em; }
.price__v { font-family: var(--f-display); font-weight: 800; font-size: clamp(2.4rem, 7vw, 3.4rem); letter-spacing: -0.04em; line-height: 1; }
.price__v small { font-size: .875rem; font-weight: 600; color: var(--stone-500); letter-spacing: 0; }
.price__meta { font-size: var(--t-small); color: var(--stone-600); }

/* ------------------------------------------------------------- 13b. shuttle */
.shuttle { display: grid; gap: var(--s-4); margin-top: var(--s-7); }
.shuttle__run {
    border: 1px solid var(--stone-200);
    border-radius: var(--r-lg);
    padding: var(--s-5);
    background: var(--paper);
}
.section--dark .shuttle__run,
.section--ink2 .shuttle__run {
    background: var(--ink-2);
    border-color: rgba(255, 255, 255, .14);
}
.shuttle__name {
    font-family: var(--f-display); font-weight: 700; font-size: 1.0625rem;
    letter-spacing: -0.015em; margin-bottom: var(--s-4);
}
.shuttle__stops { display: grid; gap: 0; }
.shuttle__stops li {
    display: flex; align-items: baseline; justify-content: space-between; gap: var(--s-4);
    padding: .6rem 0;
    border-bottom: 1px solid var(--stone-200);
}
.section--dark .shuttle__stops li { border-color: rgba(255, 255, 255, .1); }
.shuttle__stop { font-size: .9375rem; color: var(--stone-600); }
.section--dark .shuttle__stop { color: var(--stone-300); }
.shuttle__time {
    font-family: var(--f-display); font-weight: 700; font-size: 1.0625rem;
    letter-spacing: -0.01em; font-variant-numeric: tabular-nums;
}
.shuttle__return {
    display: flex; align-items: center; gap: .5rem;
    margin-top: var(--s-4);
    font-size: var(--t-small); color: var(--stone-500);
}
.shuttle__return .icon { color: var(--aqua); }
.section--dark .shuttle__return { color: var(--stone-400); }
.section--dark .shuttle__return .icon { color: var(--aqua-bright); }
.shuttle__return strong { color: var(--ink); font-family: var(--f-display); }
.section--dark .shuttle__return strong { color: #fff; }

.footer__shuttle {
    margin-top: var(--s-4);
    font-size: var(--t-small); color: var(--stone-400);
}
.footer__shuttle strong {
    display: block; color: #fff; font-family: var(--f-display); font-weight: 600;
    margin-bottom: 2px;
}
.footer__shuttle a { color: var(--stone-300); border-bottom: 1px solid rgba(255,255,255,.2); }
.footer__shuttle a:hover { color: #fff; }

/* ------------------------------------------------------------- 14. reviews */
.rating {
    display: flex; flex-direction: column; align-items: center; gap: var(--s-3);
    text-align: center;
}
.rating__v { font-family: var(--f-display); font-weight: 800; font-size: clamp(3.4rem, 12vw, 5.5rem); line-height: 1; letter-spacing: -0.05em; }
.rating__stars { display: flex; gap: .2rem; color: #f5b933; }
.rating__stars .icon { fill: currentColor; stroke: none; }
.rating__n { font-size: var(--t-small); color: var(--stone-500); }

.revgrid { display: grid; gap: var(--s-4); margin-top: var(--s-8); }
.rev {
    border: 1px solid var(--stone-200); border-radius: var(--r-lg);
    padding: var(--s-5); display: grid; gap: var(--s-3);
    background: var(--paper);
}
.rev__stars { display: flex; gap: .15rem; color: #f5b933; }
.rev__stars .icon { fill: currentColor; stroke: none; }
.rev__t { text-wrap: pretty; }
.rev__who { font-size: var(--t-small); color: var(--stone-500); display: flex; gap: .5rem; align-items: center; }
.rev__who strong { color: var(--ink); font-weight: 600; }

.photostrip {
    display: grid; grid-auto-flow: column; grid-auto-columns: 62%;
    gap: var(--s-3); margin-top: var(--s-7);
    overflow-x: auto; scroll-snap-type: x mandatory;
    padding-bottom: var(--s-3);
    scrollbar-width: thin;
}
.photostrip > * { scroll-snap-align: start; }
.photostrip img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--r); }

/* ----------------------------------------------------------------- 15. faq */
.faqcat + .faqcat { margin-top: var(--s-8); }
.faqcat__h {
    font-family: var(--f-display); font-size: var(--t-micro); font-weight: 700;
    letter-spacing: .18em; text-transform: uppercase; color: var(--stone-500);
    padding-bottom: var(--s-3); border-bottom: 1px solid var(--stone-200);
}
.qa { border-bottom: 1px solid var(--stone-200); }
.qa__q {
    width: 100%; text-align: left;
    display: flex; align-items: flex-start; justify-content: space-between; gap: var(--s-4);
    padding: var(--s-5) 0;
    font-family: var(--f-display); font-weight: 700; font-size: 1.0625rem; letter-spacing: -0.015em;
}
.qa__q .icon { color: var(--aqua); transition: transform .3s var(--ease); margin-top: 2px; }
.qa__q[aria-expanded="true"] .icon { transform: rotate(180deg); }
.qa__a {
    display: grid; grid-template-rows: 0fr;
    transition: grid-template-rows .35s var(--ease);
}
.qa__a > div { overflow: hidden; }
.qa.is-open .qa__a { grid-template-rows: 1fr; }
.qa__a p { color: var(--stone-600); padding-bottom: var(--s-5); max-width: 60ch; text-wrap: pretty; }

/* ------------------------------------------------------------- 16. gallery */
.gal {
    columns: 2;
    column-gap: var(--s-3);
    margin-top: var(--s-7);
}
.gal__i {
    break-inside: avoid;
    margin-bottom: var(--s-3);
    position: relative;
    display: block;
    border-radius: var(--r);
    overflow: hidden;
    background: var(--stone-100);
}
.gal__i img {
    width: 100%; height: auto; display: block;
    transition: transform .7s var(--ease), opacity .5s var(--ease);
}
.gal__i:hover img { transform: scale(1.035); }
.gal__play {
    position: absolute; inset: 0; display: grid; place-content: center;
    background: rgba(11, 12, 12, .28);
    color: #fff;
    transition: background-color .3s var(--ease);
}
.gal__i:hover .gal__play { background: rgba(11, 12, 12, .12); }
.gal__play span {
    width: 62px; height: 62px; border-radius: var(--r-full);
    border: 1.5px solid rgba(255, 255, 255, .8);
    display: grid; place-content: center;
    background: rgba(11, 12, 12, .3);
    backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}

/* ----------------------------------------------------------- 17. lightbox */
.lightbox {
    position: fixed; inset: 0; z-index: 200;
    background: rgba(8, 9, 9, .96);
    display: grid; place-items: center;
    padding: clamp(1rem, 4vw, 3rem);
    opacity: 0;
    transition: opacity .3s var(--ease);
}
.lightbox[hidden] { display: none; }
.lightbox.is-open { opacity: 1; }
.lightbox__stage { margin: 0; display: grid; gap: var(--s-4); justify-items: center; max-width: 100%; }
.lightbox__media { max-width: min(96vw, 1500px); }
.lightbox__media img {
    max-height: 82svh; width: auto; max-width: 100%;
    border-radius: var(--r); object-fit: contain;
}
.lightbox__media iframe {
    width: min(92vw, 1200px); aspect-ratio: 16 / 9; height: auto;
    border: 0; border-radius: var(--r);
}
.lightbox__caption { color: var(--stone-400); font-size: var(--t-small); text-align: center; }
.lightbox__close, .lightbox__nav {
    position: absolute; z-index: 2;
    width: 48px; height: 48px; border-radius: var(--r-full);
    display: grid; place-content: center;
    color: #fff; font-size: 1.75rem; line-height: 1;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .16);
    transition: background-color .2s var(--ease);
}
.lightbox__close:hover, .lightbox__nav:hover { background: rgba(255, 255, 255, .2); }
.lightbox__close { top: 1rem; right: 1rem; }
.lightbox__nav--prev { left: 1rem; top: 50%; transform: translateY(-50%); }
.lightbox__nav--next { right: 1rem; top: 50%; transform: translateY(-50%); }
body.lb-open { overflow: hidden; }

/* ------------------------------------------------------------- 18. bigcta */
.bigcta {
    position: relative; isolation: isolate;
    min-height: min(80svh, 720px);
    display: grid; place-items: center;
    text-align: center; color: #fff;
    padding: var(--section) var(--gutter);
    overflow: hidden;
}
.bigcta img, .bigcta video {
    position: absolute; inset: 0; z-index: -2;
    width: 100%; height: 100%; object-fit: cover;
}
.bigcta::after {
    content: ''; position: absolute; inset: 0; z-index: -1;
    background: linear-gradient(180deg, rgba(11,12,12,.55), rgba(11,12,12,.72));
}
.bigcta__t {
    font-size: clamp(2.2rem, 7.5vw, 5rem); font-weight: 800; letter-spacing: -0.04em; line-height: 1;
    max-width: 20ch;
}
.bigcta__s { font-size: var(--t-lead); color: rgba(255,255,255,.86); margin-top: var(--s-5); max-width: 40ch; margin-inline: auto; }
.bigcta .btn-row { justify-content: center; }

/* -------------------------------------------------------------- 19. video */
.videoframe {
    position: relative; border-radius: var(--r-lg); overflow: hidden;
    background: var(--ink); aspect-ratio: 16 / 9;
    margin-top: var(--s-7);
}
.videoframe img { width: 100%; height: 100%; object-fit: cover; }
.videoframe button {
    position: absolute; inset: 0; display: grid; place-content: center;
    background: rgba(11,12,12,.3); color: #fff;
    transition: background-color .3s var(--ease);
}
.videoframe button:hover { background: rgba(11,12,12,.15); }
.videoframe button span {
    width: 76px; height: 76px; border-radius: var(--r-full);
    border: 1.5px solid rgba(255,255,255,.85);
    display: grid; place-content: center;
    background: rgba(11,12,12,.35);
    backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
    transition: transform .3s var(--ease);
}
.videoframe button:hover span { transform: scale(1.06); }

/* --------------------------------------------------------------- 20. forms */
.form { display: grid; gap: var(--s-5); }
.field { display: grid; gap: .45rem; }
.field label, .legend {
    font-family: var(--f-display); font-weight: 600; font-size: .9375rem; letter-spacing: -0.01em;
}
.field__hint { font-size: var(--t-small); color: var(--stone-500); }

input[type=text], input[type=email], input[type=tel], input[type=date],
input[type=number], select, textarea {
    width: 100%;
    font: inherit; font-size: 1rem;
    color: var(--ink);
    background: var(--paper);
    border: 1px solid var(--stone-300);
    border-radius: var(--r);
    padding: .9rem 1rem;
    transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
    -webkit-appearance: none; appearance: none;
}
input::placeholder, textarea::placeholder { color: var(--stone-400); }
input:focus, select:focus, textarea:focus {
    outline: 0;
    border-color: var(--aqua);
    box-shadow: 0 0 0 3px rgba(14, 139, 134, .16);
}
input[type=date] { min-height: 3.15rem; }
textarea { resize: vertical; min-height: 7rem; }
select {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23565b5d' stroke-width='1.5' stroke-linecap='round'><path d='M6 9.5l6 6 6-6'/></svg>");
    background-repeat: no-repeat; background-position: right 1rem center;
    padding-right: 2.75rem;
}

.grid2 { display: grid; gap: var(--s-5); }

.seg { display: grid; gap: var(--s-3); }
.seg__opt {
    position: relative;
    border: 1px solid var(--stone-300); border-radius: var(--r);
    padding: var(--s-4) var(--s-5);
    display: grid; gap: 2px;
    cursor: pointer;
    transition: border-color .2s var(--ease), background-color .2s var(--ease);
}
.seg__opt:hover { border-color: var(--stone-400); }
.seg__opt input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.seg__opt:has(input:checked) { border-color: var(--ink); background: var(--stone-50); }
.seg__opt:has(input:focus-visible) { outline: 2px solid var(--aqua); outline-offset: 2px; }
.seg__t { font-family: var(--f-display); font-weight: 700; display: flex; justify-content: space-between; gap: var(--s-4); }
.seg__n { font-size: var(--t-small); color: var(--stone-600); }

.chips { display: flex; flex-wrap: wrap; gap: var(--s-2); }
.chip {
    position: relative;
    border: 1px solid var(--stone-300); border-radius: var(--r-full);
    padding: .55rem 1.1rem; font-size: .9375rem; cursor: pointer;
    transition: border-color .2s var(--ease), background-color .2s var(--ease), color .2s var(--ease);
}
.chip input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.chip:has(input:checked) { background: var(--ink); border-color: var(--ink); color: #fff; }
.chip:has(input:focus-visible) { outline: 2px solid var(--aqua); outline-offset: 2px; }

.stepper { display: inline-flex; align-items: center; gap: var(--s-2); }
.stepper button {
    width: 46px; height: 46px; border-radius: var(--r-full);
    border: 1px solid var(--stone-300); display: grid; place-content: center;
    transition: border-color .2s var(--ease), background-color .2s var(--ease);
}
.stepper button:hover { border-color: var(--ink); background: var(--stone-50); }
.stepper input {
    width: 4.5rem; text-align: center; font-family: var(--f-display); font-weight: 700; font-size: 1.125rem;
    -moz-appearance: textfield;
}
.stepper input::-webkit-outer-spin-button, .stepper input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.guest {
    border: 1px solid var(--stone-200); border-radius: var(--r-lg);
    padding: var(--s-5); display: grid; gap: var(--s-4);
    background: var(--stone-50);
}
.guest__h {
    font-family: var(--f-display); font-weight: 700; font-size: var(--t-micro);
    letter-spacing: .16em; text-transform: uppercase; color: var(--stone-500);
}
.guests { display: grid; gap: var(--s-4); }

.total {
    position: sticky; bottom: 0; z-index: 5;
    background: var(--paper);
    border-top: 1px solid var(--stone-200);
    padding-block: var(--s-4);
    display: flex; align-items: center; justify-content: space-between; gap: var(--s-4);
    flex-wrap: wrap;
}
.total__v { font-family: var(--f-display); font-weight: 800; font-size: 1.75rem; letter-spacing: -0.03em; }
.total__k { font-size: var(--t-small); color: var(--stone-500); }

.notice {
    border: 1px solid var(--stone-200); border-left: 3px solid var(--aqua);
    background: var(--aqua-wash);
    border-radius: var(--r-sm);
    padding: var(--s-4) var(--s-5);
    font-size: var(--t-small);
    color: var(--stone-800);
}
.error { color: #b4232a; font-size: var(--t-small); }

.hp { position: absolute; left: -9999px; }

/* ------------------------------------------------------------- 21. contact */
.cards { display: grid; gap: var(--s-4); margin-top: var(--s-7); }
.card {
    border: 1px solid var(--stone-200); border-radius: var(--r-lg);
    padding: var(--s-5);
    display: flex; align-items: center; gap: var(--s-4);
    transition: border-color .25s var(--ease), transform .25s var(--ease);
}
.card:hover { border-color: var(--ink); transform: translateY(-2px); }
.card__i {
    width: 46px; height: 46px; border-radius: var(--r-full); flex: none;
    display: grid; place-content: center;
    background: var(--stone-100); color: var(--ink);
}
.card__k { font-size: var(--t-small); color: var(--stone-500); }
.card__v { font-family: var(--f-display); font-weight: 700; letter-spacing: -0.015em; }

.map {
    margin-top: var(--s-7); border-radius: var(--r-lg); overflow: hidden;
    border: 1px solid var(--stone-200); background: var(--stone-100);
}
.map iframe { width: 100%; height: clamp(300px, 45vw, 460px); border: 0; display: block; }

/* -------------------------------------------------------------- 22. bookbar */
.bookbar {
    position: fixed; z-index: 90; inset: auto 0 0 0;
    display: flex; align-items: center; justify-content: space-between; gap: var(--s-4);
    padding: .75rem var(--gutter);
    padding-bottom: max(.75rem, env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, .94);
    backdrop-filter: saturate(180%) blur(18px); -webkit-backdrop-filter: saturate(180%) blur(18px);
    border-top: 1px solid var(--stone-200);
    transform: translateY(110%);
    transition: transform .4s var(--ease);
}
.bookbar.is-in { transform: translateY(0); }
.bookbar__info { display: grid; }
.bookbar__info strong { font-family: var(--f-display); font-weight: 800; font-size: 1.0625rem; letter-spacing: -0.02em; }
.bookbar__info span { font-size: var(--t-micro); color: var(--stone-500); }

/* -------------------------------------------------------------- 23. footer */
.footer { background: var(--ink); color: #fff; padding-block: var(--s-8) var(--s-6); }
.footer__top { display: grid; gap: var(--s-7); padding-bottom: var(--s-7); }
.footer__brand img { border-radius: var(--r-sm); }
.footer__claim { font-family: var(--f-display); font-weight: 700; margin-top: var(--s-3); letter-spacing: -0.02em; }
.footer__meta { font-size: var(--t-small); color: var(--stone-400); }
.footer__h {
    font-family: var(--f-display); font-size: var(--t-micro); font-weight: 700;
    letter-spacing: .18em; text-transform: uppercase; color: var(--stone-400);
    margin-bottom: var(--s-4);
}
.footer__col ul { display: grid; gap: .6rem; }
.footer__col a { font-size: .9375rem; color: var(--stone-300); transition: color .2s var(--ease); }
.footer__col a:hover { color: #fff; }
.footer__contact a { display: inline-flex; align-items: center; gap: .55rem; }
.footer__social { display: flex; gap: var(--s-3); margin-top: var(--s-5); }
.footer__social a {
    width: 42px; height: 42px; border-radius: var(--r-full);
    display: grid; place-content: center;
    border: 1px solid rgba(255, 255, 255, .16); color: #fff;
    transition: background-color .2s var(--ease), border-color .2s var(--ease);
}
.footer__social a:hover { background: rgba(255, 255, 255, .12); border-color: rgba(255,255,255,.4); }
.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding-top: var(--s-5);
    display: grid; gap: var(--s-2);
    font-size: var(--t-small); color: var(--stone-400);
}
.footer__bottom a { color: var(--stone-300); border-bottom: 1px solid rgba(255,255,255,.2); }
.footer__bottom a:hover { color: #fff; }

/* --------------------------------------------------------- 24. breadcrumbs */
.crumbs {
    display: flex; flex-wrap: wrap; align-items: center; gap: .4rem;
    font-size: var(--t-small); color: var(--stone-500);
    padding-top: calc(var(--nav-h) + var(--s-5));
}
.crumbs a { color: var(--stone-600); }
.crumbs a:hover { color: var(--ink); text-decoration: underline; }
.crumbs .icon { color: var(--stone-300); }
.crumbs [aria-current] { color: var(--ink); }

/* ------------------------------------------------------------- 25. article */
.prose { max-width: 42rem; }
.prose > * + * { margin-top: var(--s-5); }
.prose h2 { font-size: clamp(1.5rem, 3.4vw, 2.1rem); margin-top: var(--s-8); }
.prose h3 { font-size: 1.25rem; font-weight: 700; margin-top: var(--s-6); }
.prose p { color: var(--stone-800); text-wrap: pretty; }
.prose ul { display: grid; gap: var(--s-3); }
.prose ul li { display: flex; gap: var(--s-3); }
.prose ul li::before { content: '—'; color: var(--aqua); flex: none; }
.prose a { color: var(--aqua); border-bottom: 1px solid currentColor; }
.prose figure { margin: var(--s-7) 0; }
.prose figure img { border-radius: var(--r-lg); width: 100%; }
.prose figcaption { font-size: var(--t-small); color: var(--stone-500); margin-top: var(--s-3); }

.related { display: grid; gap: var(--s-3); margin-top: var(--s-7); }
.related a {
    display: flex; align-items: center; justify-content: space-between; gap: var(--s-4);
    padding: var(--s-4) var(--s-5);
    border: 1px solid var(--stone-200); border-radius: var(--r);
    font-family: var(--f-display); font-weight: 600;
    transition: border-color .2s var(--ease), transform .2s var(--ease);
}
.related a:hover { border-color: var(--ink); transform: translateX(3px); }

/* ------------------------------------------------------------ 26. reveals */
[data-reveal] {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .8s var(--ease), transform .8s var(--ease);
}
[data-reveal].is-in { opacity: 1; transform: none; }
[data-reveal="fade"] { transform: none; }
[data-reveal="scale"] { transform: scale(.97); }
[data-reveal].is-in { transform: none; }
[data-reveal-delay="1"] { transition-delay: .08s; }
[data-reveal-delay="2"] { transition-delay: .16s; }
[data-reveal-delay="3"] { transition-delay: .24s; }
[data-reveal-delay="4"] { transition-delay: .32s; }
[data-reveal-delay="5"] { transition-delay: .4s; }

/* --------------------------------------------------------- 27. breakpoints */
@media (min-width: 34em) {
    .facts__inner { grid-template-columns: repeat(4, 1fr); }
    .facts__item:nth-child(-n+2) { border-bottom: 0; }
    .facts__item:nth-child(3) { border-left: 1px solid rgba(255, 255, 255, .14); padding-left: var(--s-4); }
    .facts__item { padding-block: var(--s-5); }
    .gal { columns: 2; column-gap: var(--s-4); }
    .gal__i { margin-bottom: var(--s-4); }
}

@media (min-width: 48em) {
    :root { --nav-h: 76px; }
    .feats { grid-template-columns: repeat(2, 1fr); }
    .prices { grid-template-columns: repeat(2, 1fr); }
    .revgrid { grid-template-columns: repeat(2, 1fr); }
    .cards { grid-template-columns: repeat(2, 1fr); }
    .grid2 { grid-template-columns: repeat(2, 1fr); }
    .split { grid-template-columns: 1fr 1fr; gap: var(--s-8); }
    .split--reverse .split__media { order: 2; }
    .tl__i { grid-template-columns: 7rem 1fr; gap: var(--s-5); align-items: start; }
    .tl__time { padding-top: 3px; }
    .footer__top { grid-template-columns: 1.4fr 1fr 1fr; }
    .photostrip { grid-auto-columns: 34%; }
    .hero__scroll { display: block; }
    .bookbar { display: none; }
}

@media (min-width: 62em) {
    .nav__links { display: flex; }
    .nav__cta { display: inline-flex; }
    .nav__wa { display: flex; }
    .nav__burger { display: none; }
    .feats { grid-template-columns: repeat(3, 1fr); }
    .shuttle { grid-template-columns: repeat(3, 1fr); }
    /* Five children — brand, Explore, Plan, Guides, Contact. With four columns
       the Contact block wrapped onto a row of its own. */
    .footer__top { grid-template-columns: 1.35fr .85fr .85fr .95fr 1.3fr; }
    .incl { grid-template-columns: repeat(4, 1fr); }
    .gal { columns: 3; }
    .revgrid { grid-template-columns: repeat(3, 1fr); }
    .cards { grid-template-columns: repeat(3, 1fr); }
    .photostrip { grid-auto-columns: 24%; }
    .deflist { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 82em) {
    .gal { columns: 4; }
}

/* ---------------------------------------------------- 28. motion + print */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .001ms !important;
    }
    [data-reveal] { opacity: 1; transform: none; }
}

@media print {
    .nav, .bookbar, .footer__social, .lightbox { display: none !important; }
    body { color: #000; background: #fff; }
    .hero { min-height: auto; color: #000; }
    .hero__media { display: none; }
}
