/* ==========================================================================
   Borobudur Package — theme stylesheet
   Minimal luxury · warm sandstone cream + bronze · Playfair Display + Lato
   Layout language after the JHG luxury travel sites (inset rounded hero,
   two-tone headlines, split section heads, pill tabs, soft cards).

   1  Tokens          6  Header & navigation     11 Prose (long-form)
   2  Base            7  Page header & hero       12 Article layout
   3  Typography      8  Section heads & cards    13 Journal & contact
   4  Layout          9  Tickets · tabs · plan    14 Footer & floating UI
   5  Buttons        10  FAQ · planner · CTA      15 Motion · a11y · print
   ========================================================================== */

/* 1 · TOKENS ------------------------------------------------------------- */
:root {
    --cream: #f5efe6;
    --cream-2: #efe6d9;
    --paper: #fbf8f3;
    --white: #fff;
    --ink: #1a1a1a;
    --ink-2: #3d3a36;
    --muted: #6b6259;
    --line: rgba(26, 26, 26, .10);
    --line-strong: rgba(26, 26, 26, .20);

    --bronze: #a8784a;          /* decorative + large display text */
    --bronze-display: #986a3e;  /* two-tone headline tail (>=3:1 on cream & sand) */
    --bronze-d: #8d6238;        /* buttons, icons (5.3:1 with white) */
    --bronze-text: #7b5230;     /* small bronze text (>=5:1 on cream & sand) */
    --bronze-dd: #6f4b28;       /* hover */
    --bronze-l: #d2b08a;        /* accents on dark */
    --black: #111010;
    --dark: #1d1a17;

    --r-xl: 28px;
    --r-lg: 24px;
    --r-md: 16px;
    --r-sm: 12px;

    --shadow-1: 0 1px 2px rgba(26, 26, 26, .04), 0 10px 28px rgba(26, 26, 26, .06);
    --shadow-2: 0 2px 6px rgba(26, 26, 26, .05), 0 22px 50px rgba(26, 26, 26, .12);

    --container: 1216px;
    --gutter: clamp(16px, 4vw, 32px);
    --header-h: 72px;

    --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-sans: 'Lato', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    --ease: cubic-bezier(.2, .7, .2, 1);
}

/* 2 · BASE --------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
    color-scheme: light;
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-h) + 16px);
}
html.bp-lock { overflow: hidden; }

body {
    margin: 0;
    background: var(--cream);
    color: var(--ink-2);
    font-family: var(--font-sans);
    font-size: 1.0625rem;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: clip;
}

img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
p, h1, h2, h3, h4, h5, h6, figure, ul, ol, dl, dd { margin: 0; }
ul, ol { padding: 0; }
a { color: inherit; text-decoration-thickness: .08em; text-underline-offset: .22em; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
a, button, summary, label, input, select, textarea { touch-action: manipulation; -webkit-tap-highlight-color: rgba(141, 98, 56, .18); }
[id] { scroll-margin-top: calc(var(--header-h) + 20px); }
::selection { background: rgba(168, 120, 74, .28); }

:focus-visible { outline: 2px solid var(--bronze-d); outline-offset: 3px; border-radius: 6px; }
:where(.bp-hero__card, .bp-pagehead__card, .bp-cta__card, .bp-planner, .bp-footer) :focus-visible { outline-color: #fff; }

.bp-sr {
    position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden;
    clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; border: 0;
}
.bp-skip {
    position: absolute; left: 12px; top: -80px; z-index: 300; padding: .7rem 1.1rem;
    background: var(--ink); color: #fff; border-radius: 10px; text-decoration: none; font-weight: 700;
    transition: top .2s var(--ease);
}
.bp-skip:focus { top: 12px; }

/* svg icon (sprite <use>) */
.bp-i { width: 1.25em; height: 1.25em; flex: none; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.bp-i--font { font-size: 1.25em; line-height: 1; width: auto; height: auto; }

/* 3 · TYPOGRAPHY --------------------------------------------------------- */
h1, h2, h3, h4, h5 { font-family: var(--font-serif); font-weight: 700; color: var(--ink); text-wrap: balance; letter-spacing: -.005em; }
p, li { text-wrap: pretty; }

.bp-h1 { font-size: clamp(2.1rem, 1.25rem + 3.6vw, 4rem); line-height: 1.06; letter-spacing: -.012em; }
.bp-h1--xl { font-size: clamp(2.3rem, 1.2rem + 4.4vw, 4.125rem); }
.bp-h1--long { font-size: clamp(1.9rem, 1.2rem + 2.7vw, 3.1rem); }
.bp-h2 { font-size: clamp(1.85rem, 1.15rem + 2.7vw, 3rem); line-height: 1.1; letter-spacing: -.012em; }
.bp-h3-lg { font-size: clamp(1.4rem, 1.1rem + 1.2vw, 2rem); line-height: 1.2; }

/* two-tone headline: bold lead + lighter tail */
.bp-t-b { font-weight: 400; }
.bp-h1 .bp-t-a { display: block; }
.bp-h1--ink .bp-t-a, .bp-h2 .bp-t-a { color: var(--ink); }
.bp-h1--ink .bp-t-b, .bp-h2 .bp-t-b { color: var(--bronze-display); }
.bp-h1--light, .bp-h2--light { color: #fff; }
.bp-h1--light .bp-t-a, .bp-h2--light .bp-t-a { color: #fff; }
.bp-h1--light .bp-t-b, .bp-h2--light .bp-t-b { color: #f2eae4; }

.bp-eyebrow {
    display: inline-flex; align-items: center; gap: .8rem;
    font-size: .75rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
    color: var(--bronze-text); margin-bottom: 1rem;
}
.bp-eyebrow::before { content: ''; width: 28px; height: 1px; background: currentColor; }
.bp-eyebrow--light { color: #ecd9c0; }

.bp-lead { font-size: clamp(1.125rem, 1.05rem + .4vw, 1.3125rem); line-height: 1.65; color: var(--ink-2); }
.bp-note { margin-top: 1.5rem; font-size: .9375rem; color: var(--muted); max-width: 46rem; }

/* 4 · LAYOUT ------------------------------------------------------------- */
.bp-container { width: 100%; max-width: calc(var(--container) + var(--gutter) * 2); margin-inline: auto; padding-inline: var(--gutter); }
.bp-container--narrow { max-width: calc(880px + var(--gutter) * 2); }

.bp-section { padding-block: clamp(64px, 8vw, 104px); }
.bp-section--sand { background: var(--cream-2); }
.bp-section--tight-top { padding-top: clamp(36px, 5vw, 64px); }
.bp-section--tight { padding-block: clamp(36px, 5vw, 64px); }

.bp-grid { display: grid; gap: 20px; }
.bp-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.bp-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.bp-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.bp-block { margin-top: clamp(56px, 7vw, 96px); }
.bp-block > .bp-h3-lg { margin-bottom: 28px; }

/* 5 · BUTTONS & LINKS ---------------------------------------------------- */
.bp-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
    min-height: 48px; padding: .75rem 1.5rem; border-radius: 999px;
    border: 1px solid transparent; font-size: .9375rem; font-weight: 700; line-height: 1.2;
    text-decoration: none; text-align: center; cursor: pointer;
    transition: background-color .25s, color .25s, border-color .25s, box-shadow .25s, transform .25s var(--ease);
}
.bp-btn .bp-i { width: 1.15em; height: 1.15em; }
.bp-btn--primary { background: var(--bronze-d); color: #fff; }
.bp-btn--primary:hover { background: var(--bronze-dd); box-shadow: 0 12px 28px rgba(111, 75, 40, .32); transform: translateY(-1px); }
.bp-btn--light { background: #fff; color: var(--ink); }
.bp-btn--light:hover { background: var(--cream); transform: translateY(-1px); box-shadow: 0 12px 28px rgba(0, 0, 0, .2); }
.bp-btn--outline-light { border-color: rgba(255, 255, 255, .55); color: #fff; }
.bp-btn--outline-light:hover { background: rgba(255, 255, 255, .14); border-color: #fff; }
.bp-btn--ghost { border-color: var(--line-strong); color: var(--ink); }
.bp-btn--ghost:hover { border-color: var(--bronze-d); color: var(--bronze-text); }
.bp-btn--sm { min-height: 42px; padding: .5rem 1.15rem; font-size: .875rem; }
.bp-btn--lg { min-height: 56px; padding: .9rem 1.9rem; font-size: 1rem; }
.bp-btn--block { width: 100%; }

.bp-link {
    display: inline-flex; align-items: center; gap: .4rem; font-weight: 700; font-size: .9375rem;
    color: var(--bronze-text); text-decoration: none;
}
.bp-link .bp-i { width: 1.1em; height: 1.1em; transition: transform .25s var(--ease); }
.bp-link:hover .bp-i { transform: translateX(4px); }

.bp-iconbtn {
    display: inline-grid; place-items: center; width: 44px; height: 44px; border-radius: 50%;
    color: var(--ink); transition: background-color .2s;
}
.bp-iconbtn:hover { background: rgba(26, 26, 26, .06); }
.bp-iconbtn .bp-i { width: 24px; height: 24px; }

/* 6 · HEADER & NAVIGATION ------------------------------------------------ */
.bp-header {
    position: sticky; top: 0; z-index: 100;
    border-bottom: 1px solid transparent;
    transition: border-color .3s, box-shadow .3s;
}
/* blur lives on a pseudo-element: backdrop-filter on the header itself would turn it into the
   containing block of the fixed-position mobile drawer */
.bp-header::before {
    content: ''; position: absolute; inset: 0; z-index: -1;
    background: rgba(245, 239, 230, .92);
    -webkit-backdrop-filter: saturate(1.2) blur(14px); backdrop-filter: saturate(1.2) blur(14px);
}
.bp-header.is-scrolled { border-color: var(--line); box-shadow: 0 8px 28px rgba(26, 26, 26, .05); }
.bp-header__bar { display: flex; align-items: center; gap: 24px; height: var(--header-h); }

.bp-brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); flex: none; }
.bp-brand__mark { width: 32px; height: 32px; color: var(--bronze-d); stroke-width: 1.5; }
.bp-brand__name { font-family: var(--font-serif); font-weight: 700; font-size: 1.3rem; letter-spacing: -.005em; line-height: 1; white-space: nowrap; }
.bp-brand__logo { height: 40px; width: auto; max-width: 220px; object-fit: contain; }
.bp-brand--light { color: var(--cream); }
.bp-brand--light .bp-brand__mark { color: var(--bronze-l); }

.bp-header__actions { display: flex; align-items: center; gap: 8px; margin-left: auto; }
.bp-burger { display: none; }

/* panel = inline nav on desktop, off-canvas drawer on mobile */
.bp-panel { display: flex; align-items: center; justify-content: center; flex: 1; min-width: 0; }
.bp-panel__head, .bp-panel__cta { display: none; }

.bp-nav__list { display: flex; align-items: center; gap: 2px; list-style: none; margin: 0; padding: 0; }
.bp-nav__item { position: relative; display: flex; align-items: center; }
.bp-nav__link {
    display: inline-block; padding: 10px 14px; border-radius: 999px; text-decoration: none;
    font-size: .9375rem; color: var(--ink); white-space: nowrap;
    transition: color .2s, background-color .2s;
}
.bp-nav__link:hover,
.bp-nav__item:hover > .bp-nav__link,
.bp-nav__item.is-open > .bp-nav__link { background: var(--cream-2); color: var(--bronze-text); }
.bp-nav__item.is-current > .bp-nav__link,
.bp-nav__item.is-current-ancestor > .bp-nav__link { color: var(--bronze-text); font-weight: 700; }

.bp-nav__toggle {
    display: inline-grid; place-items: center; width: 24px; height: 24px; margin-left: -6px;
    border-radius: 50%; color: var(--muted); transition: color .2s;
}
.bp-nav__toggle:hover, .bp-nav__item:hover > .bp-nav__toggle { color: var(--bronze-text); }
.bp-nav__toggle .bp-i { width: 14px; height: 14px; transition: rotate .25s var(--ease); }
.bp-nav__item.has-children:hover > .bp-nav__toggle .bp-i,
.bp-nav__item.is-open > .bp-nav__toggle .bp-i { rotate: 180deg; }

.bp-nav__sub {
    position: absolute; top: calc(100% + 12px); left: 0; translate: 0 8px; z-index: 60;
    min-width: 280px; list-style: none; margin: 0; padding: 10px;
    background: linear-gradient(180deg, #fffdf8 0%, var(--cream) 130%);
    border: 1px solid rgba(168, 120, 74, .22); border-radius: var(--r-md);
    box-shadow: 0 2px 6px rgba(26, 26, 26, .05), 0 18px 40px rgba(26, 26, 26, .14);
    opacity: 0; visibility: hidden; scale: .97; transform-origin: top left;
    transition: opacity .22s, translate .32s var(--ease), scale .32s var(--ease), visibility .32s;
}
.bp-nav__sub::before { content: ''; position: absolute; inset: -12px 0 auto; height: 12px; } /* hover bridge */
.bp-nav__sub::after {
    content: ''; position: absolute; top: -6px; left: 24px; translate: 0 0;
    width: 14px; height: 14px; rotate: 45deg; border-radius: 3px 0 0 0;
    background: #fffdf8; border-left: 1px solid rgba(168, 120, 74, .22); border-top: 1px solid rgba(168, 120, 74, .22);
}
.bp-nav__item.has-children:hover > .bp-nav__sub,
.bp-nav__item.has-children:focus-within > .bp-nav__sub,
.bp-nav__item.has-children.is-open > .bp-nav__sub {
    opacity: 1; visibility: visible; translate: 0 0; scale: 1; transition-delay: 40ms;
}
.bp-nav__sublink {
    position: relative; display: flex; align-items: center; gap: 12px;
    padding: 10px 12px; border-radius: 10px; text-decoration: none;
    font-size: .9375rem; color: var(--ink);
    transition: background-color .2s, color .2s, box-shadow .2s;
}
.bp-nav__sublink::before {
    content: ''; width: 6px; height: 6px; border-radius: 50%; flex: none;
    background: var(--bronze-l); transition: background-color .2s, scale .2s;
}
.bp-nav__sublink:hover {
    background: #fff; color: var(--bronze-text); box-shadow: inset 0 0 0 1px rgba(168, 120, 74, .16);
}
.bp-nav__sublink:hover::before { background: var(--bronze-d); scale: 1.25; }
.bp-nav__sub .is-current > .bp-nav__sublink { color: var(--bronze-text); font-weight: 700; }
.bp-nav__sub .is-current > .bp-nav__sublink::before { background: var(--bronze-d); }

.bp-scrim {
    position: fixed; inset: 0; z-index: 1; background: rgba(17, 16, 16, .5);
    opacity: 0; transition: opacity .3s;
}
.bp-scrim.is-open { opacity: 1; }
.bp-scrim[hidden] { display: none; }

@media (max-width: 1099px) {
    .bp-header__cta { display: none; }
    .bp-burger { display: inline-grid; }

    .bp-panel {
        position: fixed; z-index: 2; top: 0; right: 0; bottom: 0; width: min(420px, 100%);
        display: flex; flex-direction: column; align-items: stretch; justify-content: flex-start;
        background: var(--cream); overflow-y: auto; overscroll-behavior: contain;
        padding: 0 var(--gutter) max(24px, env(safe-area-inset-bottom));
        transform: translateX(100%); visibility: hidden;
        transition: transform .38s var(--ease), visibility 0s linear .38s;
        box-shadow: -24px 0 60px rgba(0, 0, 0, .18);
    }
    .bp-panel.is-open { transform: none; visibility: visible; transition: transform .38s var(--ease), visibility 0s; }
    .bp-panel__head { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); flex: none; border-bottom: 1px solid var(--line); }
    .bp-panel__title { font-family: var(--font-serif); font-size: 1.15rem; font-weight: 700; color: var(--ink); }
    .bp-panel__cta { display: block; margin-top: auto; padding-top: 24px; }

    .bp-nav { padding-top: 8px; }
    .bp-nav__list { flex-direction: column; align-items: stretch; gap: 0; }
    .bp-nav__item { flex-wrap: wrap; border-bottom: 1px solid var(--line); }
    .bp-nav__link { flex: 1; padding: 16px 0; font-size: 1.0625rem; font-weight: 700; color: var(--ink); white-space: normal; border-radius: 0; }
    .bp-nav__toggle { width: 44px; height: 44px; margin: 0; color: var(--ink); }
    .bp-nav__toggle .bp-i { width: 20px; height: 20px; }
    .bp-nav__sub {
        position: static; translate: none; scale: 1; min-width: 0; width: 100%; box-shadow: none; border: 0; background: transparent;
        padding: 0 0 12px 4px; display: none; opacity: 1; visibility: visible;
    }
    .bp-nav__sub::before, .bp-nav__sub::after { display: none; }
    .bp-nav__sub .bp-nav__sublink::before { display: none; }
    .bp-nav__item.has-children:hover > .bp-nav__sub,
    .bp-nav__item.has-children:focus-within > .bp-nav__sub { translate: none; }
    .bp-nav__item.is-open > .bp-nav__sub { display: block; translate: none; }
    .bp-nav__sublink { padding: 12px 12px; }
}

/* 7 · PAGE HEADER & HERO ------------------------------------------------- */
.bp-cover { width: 100%; height: 100%; object-fit: cover; }
.bp-shade {
    position: absolute; inset: 0;
    background:
        linear-gradient(180deg, rgba(17, 16, 16, .22) 0%, rgba(17, 16, 16, .06) 34%, rgba(17, 16, 16, .78) 100%),
        linear-gradient(90deg, rgba(17, 16, 16, .6) 0%, rgba(17, 16, 16, 0) 72%);
}
.bp-shade--full { background: linear-gradient(180deg, rgba(17, 16, 16, .58), rgba(17, 16, 16, .74)); }

.bp-chip {
    display: inline-flex; align-items: center; gap: .5rem; padding: .5rem 1rem; border-radius: 999px;
    background: #fff; color: var(--ink); font-size: .875rem; line-height: 1.2;
}
.bp-chip .bp-i { width: 1.05em; height: 1.05em; color: var(--bronze-d); }
.bp-chip--float { position: absolute; top: 20px; right: 20px; z-index: 2; box-shadow: 0 8px 24px rgba(0, 0, 0, .18); }

/* home hero */
.bp-hero { padding-top: 16px; }
.bp-hero__card {
    position: relative; isolation: isolate; overflow: hidden; display: flex; align-items: flex-end;
    min-height: clamp(560px, 84vh, 780px); border-radius: var(--r-xl); background: #2a2521; color: #fff;
}
.bp-hero__media { position: absolute; inset: 0; z-index: -1; overflow: hidden; }
.bp-hero__media .bp-cover { animation: bp-zoom 1.8s var(--ease) both; }
.bp-hero__inner { width: 100%; max-width: 900px; padding: clamp(24px, 5vw, 64px); padding-bottom: clamp(88px, 10vw, 136px); }
.bp-hero__lead { max-width: 38rem; margin-top: 1.4rem; font-size: clamp(1rem, .94rem + .35vw, 1.1875rem); line-height: 1.65; color: rgba(255, 255, 255, .9); }
.bp-hero__actions { margin-top: 2rem; }

/* summary card overlapping the hero */
.bp-summary { position: relative; z-index: 3; }
.bp-summary__card {
    max-width: 1120px; margin: -72px auto 0; padding: clamp(24px, 3.6vw, 48px);
    background: var(--paper); border-radius: var(--r-lg); box-shadow: var(--shadow-2);
}
.bp-summary__text { font-family: var(--font-serif); font-weight: 500; font-size: clamp(1.15rem, 1rem + .85vw, 1.65rem); line-height: 1.45; color: var(--ink); }
.bp-summary__trust {
    display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px 32px; list-style: none;
    margin: 28px 0 0; padding: 24px 0 0; border-top: 1px solid var(--line);
}
.bp-summary__trust li { display: flex; gap: 12px; align-items: flex-start; font-size: .9375rem; line-height: 1.5; color: var(--ink-2); }
.bp-summary__trust .bp-i { margin-top: 2px; color: var(--bronze-d); }
.bp-summary__trust strong { color: var(--ink); }

/* inner page header */
.bp-pagehead { padding-top: 16px; }
.bp-pagehead__card {
    position: relative; isolation: isolate; overflow: hidden; display: flex; align-items: flex-end;
    min-height: clamp(400px, 56vh, 560px); border-radius: var(--r-xl); background: #2a2521; color: #fff;
}
.bp-pagehead__media { position: absolute; inset: 0; z-index: -1; overflow: hidden; }
.bp-pagehead__media .bp-cover { animation: bp-zoom 1.8s var(--ease) both; }
.bp-pagehead__inner { width: 100%; max-width: 940px; padding: clamp(24px, 4.5vw, 60px); padding-bottom: clamp(56px, 6vw, 84px); }
.bp-pagehead__sub { max-width: 40rem; margin-top: 1.1rem; font-size: 1.125rem; line-height: 1.6; color: rgba(255, 255, 255, .9); }
.bp-pagehead__meta { margin-top: 1.1rem; font-size: .9375rem; color: rgba(255, 255, 255, .85); }
.bp-pagehead--plain { padding-top: 0; }
.bp-pagehead__plain { padding: clamp(40px, 6vw, 80px) 0 clamp(28px, 4vw, 44px); border-bottom: 1px solid var(--line); max-width: 880px; }
.bp-pagehead__plain .bp-pagehead__sub { color: var(--ink-2); }
.bp-pagehead__plain .bp-pagehead__meta { color: var(--muted); }

.bp-crumbs ol { display: flex; flex-wrap: wrap; align-items: center; gap: .15rem .5rem; list-style: none; margin: 0 0 1.4rem; padding: 0; font-size: .8125rem; color: var(--muted); }
.bp-crumbs li + li::before { content: '/'; margin-right: .5rem; opacity: .55; }
.bp-crumbs a { text-decoration: none; }
.bp-crumbs a:hover { text-decoration: underline; }
.bp-crumbs [aria-current] { color: var(--ink-2); }
.bp-crumbs--light ol { color: rgba(255, 255, 255, .78); }
.bp-crumbs--light [aria-current] { color: #fff; }

/* quick-answer card (overlaps the page header) */
.bp-answer-card {
    position: relative; z-index: 3; display: grid; grid-template-columns: auto 1fr; gap: 18px; align-items: start;
    max-width: 960px; margin: -44px auto 0; padding: clamp(20px, 3vw, 32px) clamp(20px, 3.5vw, 40px);
    background: var(--paper); border-radius: var(--r-lg); box-shadow: var(--shadow-2);
}
.bp-answer-card__icon { width: 28px; height: 28px; margin-top: 2px; color: var(--bronze); }
.bp-answer-card p { font-size: clamp(1.0625rem, 1rem + .3vw, 1.1875rem); line-height: 1.6; color: var(--ink); }

/* 8 · SECTION HEADS & CARDS ---------------------------------------------- */
.bp-sechead { display: grid; gap: 20px 56px; margin-bottom: clamp(36px, 5vw, 64px); }
.bp-sechead--split { grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); align-items: start; }
.bp-sechead--center { text-align: center; justify-items: center; }
.bp-sechead--center .bp-sechead__text { max-width: 44rem; }
.bp-sechead__text > * + * { margin-top: 1em; }
.bp-sechead__text { color: var(--ink-2); max-width: 36rem; padding-top: .35rem; }
.bp-sechead--split .bp-sechead__text { justify-self: end; }

.bp-value__head { display: grid; gap: 10px; max-width: 46rem; margin-bottom: 28px; }
.bp-value__head p { color: var(--ink-2); }
.bp-value { margin-top: clamp(28px, 4vw, 48px); }

.bp-card {
    background: var(--paper); border: 1px solid rgba(26, 26, 26, .05); border-radius: var(--r-lg); padding: 28px;
    transition: transform .35s var(--ease), box-shadow .35s;
}
.bp-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); }
.bp-card__title { font-size: 1.25rem; line-height: 1.25; margin-bottom: .6rem; }
.bp-card p { font-size: .9375rem; line-height: 1.65; color: var(--ink-2); }
.bp-card--row { display: flex; gap: 18px; align-items: flex-start; }
.bp-card--row .bp-tile { margin: 0; }
.bp-card--row > div { min-width: 0; }
.bp-section--sand .bp-card { background: #fff; }

.bp-tile {
    display: inline-grid; place-items: center; flex: none; width: 52px; height: 52px; margin-bottom: 20px;
    border-radius: 16px; background: var(--cream-2); color: var(--bronze-d);
}
.bp-tile .bp-i { width: 24px; height: 24px; }
.bp-section--sand .bp-tile { background: var(--cream); }

/* intro */
.bp-intro__grid { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1fr); gap: clamp(32px, 6vw, 88px); align-items: center; }
.bp-intro__media { aspect-ratio: 4 / 5; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-2); background: var(--cream-2); }
.bp-intro__text > p:first-child { font-family: var(--font-serif); font-size: clamp(1.2rem, 1.05rem + .6vw, 1.5rem); line-height: 1.5; color: var(--ink); font-weight: 500; }
.bp-intro__text > p + p { margin-top: 1.4em; }

/* team + closing */
.bp-team { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(28px, 5vw, 72px); align-items: center; }
.bp-team__media { aspect-ratio: 4 / 3; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-1); background: var(--cream-2); }
.bp-team__text .bp-h3-lg { margin-bottom: 1rem; }
.bp-closing {
    display: grid; gap: 28px; justify-items: start; margin-top: clamp(56px, 7vw, 96px);
    padding: clamp(28px, 4vw, 56px); border-radius: var(--r-xl); background: var(--paper); box-shadow: var(--shadow-1);
}
.bp-closing .bp-prose > * + * { margin-top: 1em; }

/* 9 · TICKETS · TABS · ROUTE --------------------------------------------- */
.bp-tickets { margin-top: clamp(28px, 4vw, 48px); }
.bp-ticket {
    display: flex; flex-direction: column; overflow: hidden; border-radius: var(--r-lg);
    background: #fff; box-shadow: var(--shadow-1); transition: transform .35s var(--ease), box-shadow .35s;
}
.bp-ticket__body { display: flex; flex: 1; flex-direction: column; padding: clamp(24px, 3vw, 40px); }
.bp-ticket__media { aspect-ratio: 16 / 9; overflow: hidden; background: var(--cream-2); }
.bp-ticket__media .bp-cover { transition: transform 1s var(--ease); }
.bp-ticket--media:hover .bp-ticket__media .bp-cover { transform: scale(1.04); }
.bp-ticket:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); }
.bp-ticket__title { font-size: 1.5rem; line-height: 1.2; margin-bottom: .8rem; }
.bp-ticket__text { flex: 1; margin-bottom: 1.75rem; color: var(--ink-2); font-size: 1rem; }
.bp-ticket__price { display: grid; gap: 6px; padding-top: 20px; border-top: 1px solid var(--line); }
.bp-ticket__label { font-size: .8125rem; line-height: 1.45; color: var(--muted); }
.bp-ticket__amount { font-family: var(--font-serif); font-weight: 700; font-size: clamp(2rem, 1.5rem + 2vw, 2.75rem); line-height: 1.05; color: var(--ink); font-variant-numeric: lining-nums tabular-nums; }
.bp-ticket__amount small { font-family: var(--font-sans); font-size: .9375rem; font-weight: 400; color: var(--muted); }
.bp-ticket__note { font-size: .875rem; color: var(--muted); }
.bp-infos { margin-top: clamp(20px, 3vw, 32px); }
.bp-info { padding: clamp(24px, 3vw, 36px); border-radius: var(--r-lg); background: var(--paper); border: 1px solid rgba(26, 26, 26, .05); }
.bp-section--sand .bp-info { background: #fff; }
.bp-info .bp-card__title { font-size: 1.375rem; }
.bp-info .bp-prose { font-size: 1rem; }
.bp-info .bp-prose > * + * { margin-top: 1em; }

/* tabs (FAQ categories + routes) */
.bp-tabs__list { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; }
.bp-faq .bp-tabs__list { justify-content: center; }
.bp-pill {
    display: inline-flex; align-items: center; gap: .55rem; min-height: 44px; padding: .5rem 1.15rem; border-radius: 999px;
    background: #fff; border: 1px solid var(--line); color: var(--ink-2); font-size: .9375rem; line-height: 1.2; white-space: nowrap;
    transition: background-color .2s, color .2s, border-color .2s, transform .2s var(--ease);
}
.bp-pill .bp-i { width: 18px; height: 18px; color: var(--bronze-d); }
.bp-pill:hover { border-color: var(--bronze); transform: translateY(-1px); }
.bp-pill.is-active { background: var(--bronze-d); border-color: var(--bronze-d); color: #fff; }
.bp-pill.is-active .bp-i { color: #fff; }

.bp-tabs__cat { display: flex; align-items: center; gap: .6rem; margin: 0 0 16px; font-size: 1.25rem; color: var(--ink); }
.bp-tabs__cat .bp-i { color: var(--bronze-d); }
.bp-tabs__panel + .bp-tabs__panel { margin-top: 40px; }
/* with JS the tab bar names the category; keep the heading for assistive tech only */
.js [data-bp-tabs] .bp-tabs__cat { position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; }
.js [data-bp-tabs] .bp-tabs__panel + .bp-tabs__panel { margin-top: 0; }
.js [data-bp-tabs]:not(.is-ready) .bp-tabs__panel:not(:first-child) { display: none; }
.bp-tabs__panel[hidden] { display: none; }
.no-js .bp-tabs__list { display: none; }

.bp-route { display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); gap: clamp(24px, 4vw, 56px); align-items: start; }
.bp-route__text > * + * { margin-top: 1.2em; }
.bp-route__media { margin: clamp(20px, 3vw, 32px) 0 0; aspect-ratio: 4 / 3; overflow: hidden; border-radius: var(--r-lg); background: var(--cream-2); box-shadow: var(--shadow-1); }
.bp-route__card { padding: clamp(24px, 3vw, 40px); border-radius: var(--r-lg); background: #fff; box-shadow: var(--shadow-1); }
.bp-route__card .bp-card__title { margin-bottom: 1.4rem; font-size: 1.375rem; }

/* 10 · FAQ · PLANNER · EXPLORE · CTA ------------------------------------- */
.bp-acc { margin-bottom: 12px; background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); transition: border-color .25s, box-shadow .25s; }
.bp-acc[open] { border-color: rgba(168, 120, 74, .6); box-shadow: var(--shadow-1); }
.bp-acc summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 20px 24px; list-style: none; cursor: pointer; border-radius: var(--r-md); }
.bp-acc summary::-webkit-details-marker { display: none; }
.bp-acc__q { font-size: 1.0625rem; line-height: 1.35; font-weight: 600; }
.bp-acc__icon { position: relative; flex: none; width: 36px; height: 36px; border-radius: 50%; background: var(--cream); transition: background-color .25s; }
.bp-acc__icon::before, .bp-acc__icon::after {
    content: ''; position: absolute; left: 50%; top: 50%; width: 12px; height: 1.6px; border-radius: 2px;
    background: var(--bronze-d); translate: -50% -50%; transition: rotate .3s var(--ease);
}
.bp-acc__icon::after { rotate: 90deg; }
.bp-acc[open] .bp-acc__icon { background: var(--cream-2); }
.bp-acc[open] .bp-acc__icon::after { rotate: 0deg; }
.bp-acc__body { margin: 0 24px; padding: 18px 0 24px; border-top: 1px solid var(--line); font-size: 1rem; }
.bp-acc__body > * + * { margin-top: .9em; }
.bp-acc[open] .bp-acc__body { animation: bp-fade .32s var(--ease); }

.bp-planner-sec { padding-block: clamp(32px, 5vw, 56px); }
.bp-planner {
    display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 32px clamp(28px, 5vw, 64px);
    padding: clamp(28px, 5vw, 64px); border-radius: var(--r-xl); background: var(--dark); color: #f2eae4;
}
.bp-planner__intro { align-self: center; }
.bp-planner__intro .bp-h2 { margin-bottom: 1rem; font-size: clamp(1.75rem, 1.2rem + 2vw, 2.6rem); }
.bp-planner__intro p { color: rgba(242, 234, 228, .8); }
.bp-planner__photos { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin-top: clamp(20px, 3vw, 32px); }
.bp-planner__photos figure { margin: 0; overflow: hidden; aspect-ratio: 4 / 5; border-radius: var(--r-md); background: rgba(255, 255, 255, .06); }
.bp-planner__photos figure:nth-child(2) { margin-top: 28px; }
.bp-planner__steps { display: grid; gap: 16px; align-content: start; }
.bp-planner__step { padding: 22px; border-radius: var(--r-md); background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .1); }
.bp-planner__n { margin-bottom: 14px; font-size: .75rem; font-weight: 700; letter-spacing: .16em; color: var(--bronze-l); }
.bp-planner__leg { margin-bottom: 14px; font-weight: 700; color: #fff; }
.bp-select { position: relative; }
.bp-select select {
    width: 100%; padding: .95rem 3rem .95rem 1.1rem; border-radius: 14px; border: 1px solid transparent;
    background: #fff; color: var(--ink); font: inherit; font-size: 1rem; appearance: none; -webkit-appearance: none; cursor: pointer;
}
.bp-select .bp-i { position: absolute; right: 16px; top: 50%; translate: 0 -50%; pointer-events: none; color: var(--ink); }
.bp-checks { display: flex; flex-wrap: wrap; gap: 8px; }
.bp-check { position: relative; }
.bp-check input { position: absolute; opacity: 0; inset: 0; width: 100%; height: 100%; margin: 0; cursor: pointer; }
.bp-check span {
    display: inline-flex; align-items: center; gap: .5rem; padding: .55rem 1.05rem; border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .28); color: #f2eae4; font-size: .9375rem;
    transition: background-color .2s, color .2s, border-color .2s;
}
.bp-check:hover span { border-color: #fff; }
.bp-check input:checked + span { background: var(--bronze-l); border-color: var(--bronze-l); color: var(--ink); font-weight: 700; }
.bp-check input:focus-visible + span { outline: 2px solid #fff; outline-offset: 3px; }
.bp-planner__go { grid-column: 1 / -1; justify-content: flex-start; gap: 1rem; min-height: 72px; padding: 1rem clamp(1.4rem, 3vw, 2.4rem); text-align: left; }
.bp-planner__go > .bp-i:first-child { width: 28px; height: 28px; color: var(--bronze-d); }
.bp-planner__go-text { display: grid; gap: 2px; flex: 1; }
.bp-planner__go-text strong { font-size: 1.0625rem; }
.bp-planner__go-text small { font-size: .8125rem; font-weight: 400; color: var(--muted); }
.bp-planner__go-arrow { display: grid; place-items: center; flex: none; width: 44px; height: 44px; border-radius: 50%; background: var(--cream); transition: background-color .25s, color .25s, transform .25s var(--ease); }
.bp-planner__go:hover .bp-planner__go-arrow { background: var(--bronze-d); color: #fff; transform: translate(2px, -2px); }

.bp-cta__card {
    position: relative; isolation: isolate; overflow: hidden; display: grid; place-items: center; text-align: center;
    min-height: clamp(360px, 44vw, 460px); border-radius: var(--r-xl); background: #2a2521; color: #fff;
}
.bp-cta__media { position: absolute; inset: 0; z-index: -1; }
.bp-cta__inner { max-width: 780px; padding: clamp(32px, 5vw, 64px); }
.bp-cta__text { max-width: 42rem; margin: 1.1rem auto 0; font-size: 1.0625rem; color: rgba(255, 255, 255, .9); }
.bp-cta__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 2rem; }

/* 10b · PHOTOGRAPHY — gallery · band · destinations · article figures ----- */
.bp-gallery-sec { padding-block: clamp(28px, 4vw, 56px); }
.bp-gallery { display: grid; gap: 16px; }
.bp-gallery__item { position: relative; margin: 0; overflow: hidden; border-radius: var(--r-lg); background: var(--cream-2); }
.bp-gallery:focus-visible { outline-offset: 4px; }
.bp-gallery__item .bp-cover { transition: transform 1.1s var(--ease); }
.bp-gallery__item:hover .bp-cover { transform: scale(1.045); }

/* bento — one large tile + small tiles */
.bp-gallery--bento { grid-template-columns: repeat(4, minmax(0, 1fr)); grid-auto-rows: clamp(150px, 17.5vw, 232px); }
.bp-gallery--bento .bp-gallery__item:first-child { grid-column: span 2; grid-row: span 2; }
.bp-gallery--bento.bp-gallery--n4 .bp-gallery__item:last-child { grid-column: span 2; }
.bp-gallery--bento.bp-gallery--n3 { grid-template-columns: repeat(3, minmax(0, 1fr)); grid-auto-rows: clamp(220px, 28vw, 380px); }
.bp-gallery--bento.bp-gallery--n2 { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: clamp(220px, 30vw, 400px); }
.bp-gallery--bento.bp-gallery--n3 .bp-gallery__item:first-child,
.bp-gallery--bento.bp-gallery--n2 .bp-gallery__item:first-child { grid-column: auto; grid-row: auto; }

/* trio — tall left, two stacked right */
.bp-gallery--trio { grid-template-columns: repeat(12, minmax(0, 1fr)); grid-auto-rows: clamp(170px, 19vw, 260px); }
.bp-gallery--trio .bp-gallery__item:nth-child(1) { grid-column: 1 / span 7; grid-row: span 2; }
.bp-gallery--trio .bp-gallery__item:nth-child(n+2) { grid-column: 8 / span 5; }
.bp-gallery--trio.bp-gallery--n2 .bp-gallery__item:nth-child(2) { grid-row: span 2; }

/* strip — staggered portraits */
.bp-gallery--strip { gap: 20px; align-items: start; }
.bp-gallery--strip.bp-gallery--n2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.bp-gallery--strip.bp-gallery--n3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.bp-gallery--strip.bp-gallery--n4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.bp-gallery--strip.bp-gallery--n5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.bp-gallery--strip .bp-gallery__item { aspect-ratio: 3 / 4; }
.bp-gallery--strip .bp-gallery__item:nth-child(even) { margin-top: clamp(20px, 4vw, 56px); }
.bp-gallery--strip { padding-bottom: clamp(20px, 4vw, 56px); }

/* photo band */
.bp-band-sec { padding-block: clamp(16px, 3vw, 40px); }
.bp-band { position: relative; margin: 0; overflow: hidden; aspect-ratio: 21 / 8; min-height: 220px; border-radius: var(--r-xl); background: var(--cream-2); }
.bp-team ~ .bp-band { margin-top: clamp(56px, 7vw, 96px); }

/* destination cards */
.bp-dests { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 16px; margin: 0; padding: 0; list-style: none; }
.bp-dest {
    position: relative; display: block; isolation: isolate; overflow: hidden; aspect-ratio: 3 / 4; height: 100%;
    border-radius: var(--r-lg); background: var(--dark); color: #fff; text-decoration: none;
    transition: transform .4s var(--ease), box-shadow .4s;
}
.bp-dest:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); }
.bp-dest__media { position: absolute; inset: 0; z-index: -2; }
.bp-dest__media .bp-cover { transition: transform 1.1s var(--ease); }
.bp-dest:hover .bp-dest__media .bp-cover { transform: scale(1.07); }
.bp-dest__shade { position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(17, 16, 16, .12) 0%, rgba(17, 16, 16, 0) 32%, rgba(17, 16, 16, .82) 100%); }
.bp-dest__body { position: absolute; inset: auto 0 0 0; display: grid; gap: 4px; padding: 20px; }
.bp-dest__title { font-family: var(--font-serif); font-size: 1.4rem; font-weight: 700; line-height: 1.15; color: #fff; }
.bp-dest__desc { font-size: .875rem; line-height: 1.5; color: rgba(255, 255, 255, .9); }
.bp-dest__go {
    position: absolute; top: 16px; right: 16px; display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%;
    background: #fff; color: var(--ink); transition: background-color .25s, color .25s, transform .3s var(--ease);
}
.bp-dest:hover .bp-dest__go { background: var(--bronze-d); color: #fff; transform: translate(2px, -2px); }
.bp-dest--plain { background: #fff; color: var(--ink); border: 1px solid var(--line); }
.bp-dest--plain .bp-dest__title { color: var(--ink); }
.bp-dest--plain .bp-dest__desc { color: var(--muted); }

/* article figures */
.bp-chapter { display: flow-root; }
.bp-figure { position: relative; margin: 0; overflow: hidden; border-radius: var(--r-lg); background: var(--cream-2); box-shadow: var(--shadow-1); }
.bp-figure--wide { aspect-ratio: 16 / 9; margin: 0 0 clamp(20px, 3vw, 32px); }
.bp-figure--inset-right, .bp-figure--inset-left { width: min(320px, 42%); aspect-ratio: 4 / 5; }
.bp-figure--inset-right { float: right; margin: .35em 0 1.2em clamp(20px, 3vw, 36px); }
.bp-figure--inset-left { float: left; margin: .35em clamp(20px, 3vw, 36px) 1.2em 0; }
.bp-prose > .bp-figure + * { margin-top: 0; }
.bp-prose > .bp-figure--wide { margin: clamp(28px, 4vw, 48px) 0; }
.bp-prose .bp-table-wrap, .bp-prose .bp-dl, .bp-prose .bp-timeline, .bp-prose .bp-days { clear: both; }
.bp-figure-pair { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; margin: clamp(28px, 4vw, 48px) 0; }
.bp-figure-pair .bp-figure { aspect-ratio: 4 / 3; }

/* 11 · PROSE (long-form content) ----------------------------------------- */
.bp-prose { font-size: 1.0625rem; line-height: 1.75; color: var(--ink-2); }
.bp-prose > * + * { margin-top: 1.15em; }
.bp-prose h2 { font-size: clamp(1.5rem, 1.2rem + 1.3vw, 2rem); margin-top: 2em; }
.bp-prose h3 { margin-top: 2em; font-size: clamp(1.25rem, 1.1rem + .6vw, 1.5rem); line-height: 1.3; }
.bp-prose h4 { margin-top: 1.7em; font-size: 1.125rem; }
.bp-prose h3 + *, .bp-prose h4 + * { margin-top: .7em; }
.bp-prose strong { color: var(--ink); font-weight: 700; }
.bp-prose a { color: var(--bronze-text); text-decoration: underline; text-decoration-color: rgba(123, 82, 48, .4); transition: color .2s, text-decoration-color .2s; }
.bp-prose a:hover { color: var(--bronze-dd); text-decoration-color: currentColor; }
.bp-prose blockquote { padding-left: 1.4em; border-left: 3px solid var(--bronze); font-family: var(--font-serif); font-size: 1.25rem; color: var(--ink); }
.bp-prose hr { border: 0; height: 1px; background: var(--line); margin-block: 2.2em; }

.bp-prose ul, .bp-prose ol { list-style: none; margin-top: 1em; }
.bp-prose li { position: relative; padding-left: 1.7em; margin-top: .6em; }
.bp-prose ul > li::before { content: ''; position: absolute; left: .2em; top: .74em; width: 6px; height: 6px; border-radius: 50%; background: var(--bronze); }
.bp-prose ol { counter-reset: bp-li; }
.bp-prose ol > li { counter-increment: bp-li; }
.bp-prose ol > li::before {
    content: counter(bp-li); position: absolute; left: 0; top: .18em; display: grid; place-items: center;
    width: 1.55em; height: 1.55em; border-radius: 50%; background: var(--cream-2); color: var(--bronze-text);
    font-size: .75rem; font-weight: 700; line-height: 1;
}
.bp-prose li > ul, .bp-prose li > ol { margin-top: .5em; }

/* definition list (inclusions, dos & don'ts) */
.bp-dl { display: grid; grid-template-columns: minmax(0, 16rem) minmax(0, 1fr); margin: 1.6em 0; border-top: 1px solid var(--line); }
.bp-dl dt { padding: 16px 24px 16px 0; border-bottom: 1px solid var(--line); font-family: var(--font-serif); font-weight: 700; color: var(--ink); line-height: 1.4; }
.bp-dl dd { margin: 0; padding: 16px 0; border-bottom: 1px solid var(--line); }

/* tables */
.bp-table-wrap {
    margin: 1.8em 0; overflow-x: auto; background: #fff; border: 1px solid var(--line); border-radius: var(--r-md);
    -webkit-overflow-scrolling: touch; overscroll-behavior-x: contain;
}
.bp-table { width: 100%; min-width: 480px; border-collapse: collapse; font-size: .9375rem; line-height: 1.5; }
.bp-table th {
    padding: 14px 18px; text-align: left; white-space: nowrap; background: var(--cream-2); color: var(--ink);
    font-family: var(--font-sans); font-size: .75rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
}
.bp-table td { padding: 14px 18px; border-top: 1px solid var(--line); vertical-align: top; font-variant-numeric: tabular-nums; }
.bp-table td:first-child { color: var(--ink); font-weight: 700; }
.bp-table tbody tr { transition: background-color .2s; }
.bp-table tbody tr:hover { background: rgba(245, 239, 230, .55); }
.bp-table-wrap:focus-visible { outline-offset: 2px; }

/* timeline (schedules) */
.bp-prose .bp-timeline, .bp-timeline { position: relative; list-style: none; margin: 1.6em 0; padding: 0 0 0 26px; }
.bp-timeline::before { content: ''; position: absolute; left: 5px; top: 14px; bottom: 14px; width: 1px; background: linear-gradient(var(--bronze), rgba(168, 120, 74, .18)); }
.bp-prose .bp-timeline > li, .bp-timeline > li {
    position: relative; display: grid; grid-template-columns: 10.5rem minmax(0, 1fr); gap: 4px 18px; margin: 0; padding: 12px 0;
}
.bp-prose .bp-timeline > li::before, .bp-timeline > li::before {
    content: ''; position: absolute; left: -26px; top: 1.2rem; width: 11px; height: 11px; border-radius: 50%;
    background: var(--cream); border: 2px solid var(--bronze);
}
.bp-section--sand .bp-timeline > li::before, .bp-route__card .bp-timeline > li::before { background: #fff; }
.bp-time { color: var(--bronze-text); font-weight: 700; font-size: .9375rem; line-height: 1.6; font-variant-numeric: tabular-nums; }
.bp-sep { display: none; }
.bp-tx { min-width: 0; }

/* days */
.bp-prose .bp-days, .bp-days { list-style: none; margin: 1.6em 0; padding: 0; display: grid; gap: 12px; }
.bp-prose .bp-days > li, .bp-days > li { margin: 0; padding: 18px 22px; border: 1px solid var(--line); border-radius: var(--r-md); background: #fff; }
.bp-prose .bp-days > li::before, .bp-days > li::before { content: none; }
.bp-day { color: var(--bronze-text); font-family: var(--font-serif); font-weight: 700; }
.bp-days--cards { margin: 0; }
.bp-days--cards > li { display: grid; gap: 4px; background: var(--paper); border-color: transparent; }
.bp-day { font-size: .8125rem; letter-spacing: .14em; text-transform: uppercase; font-family: var(--font-sans); }
.bp-day__title { font-family: var(--font-serif); font-size: 1.1875rem; font-weight: 700; color: var(--ink); line-height: 1.3; }
.bp-day__text { font-size: .9375rem; color: var(--ink-2); line-height: 1.65; }

.bp-prose--lg { font-size: 1.125rem; }
.bp-prose--intro > p:first-child { font-size: clamp(1.1875rem, 1.1rem + .4vw, 1.375rem); line-height: 1.65; color: var(--ink); }
.bp-prose .bp-answer { padding: 1em 1.2em; border-left: 3px solid var(--bronze); background: var(--paper); border-radius: 0 var(--r-sm) var(--r-sm) 0; color: var(--ink); font-weight: 700; }
.bp-prose img { border-radius: var(--r-md); }

/* 12 · ARTICLE LAYOUT ---------------------------------------------------- */
.bp-article { display: grid; grid-template-columns: minmax(0, 1fr); justify-items: center; }
.bp-article__main { width: 100%; min-width: 0; max-width: 760px; }
.bp-article--toc { grid-template-columns: 264px minmax(0, 1fr); gap: clamp(32px, 6vw, 88px); justify-items: stretch; align-items: start; }
.bp-article--toc .bp-article__main { max-width: none; }

.bp-toc { position: sticky; top: calc(var(--header-h) + 24px); align-self: start; font-size: .9375rem; }
.bp-toc summary {
    display: flex; align-items: center; justify-content: space-between; padding-bottom: 14px; border-bottom: 1px solid var(--line);
    font-size: .75rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--bronze-text);
    list-style: none; cursor: default;
}
.bp-toc summary::-webkit-details-marker { display: none; }
.bp-toc summary .bp-i { display: none; width: 18px; height: 18px; transition: rotate .25s var(--ease); }
.bp-toc__list { display: grid; gap: 2px; margin: 14px 0 0; padding: 0; list-style: none; max-height: calc(100vh - var(--header-h) - 140px); overflow-y: auto; overscroll-behavior: contain; }
.bp-toc__list a {
    display: grid; grid-template-columns: 2.1rem minmax(0, 1fr); gap: 6px; padding: 8px 10px; border-radius: 10px;
    color: var(--ink-2); line-height: 1.35; text-decoration: none; transition: background-color .2s, color .2s;
}
.bp-toc__list a:hover { background: rgba(255, 255, 255, .7); color: var(--ink); }
.bp-toc__list a[aria-current='true'] { background: #fff; color: var(--ink); font-weight: 700; box-shadow: var(--shadow-1); }
.bp-toc__no { padding-top: .12em; color: var(--bronze-text); font-size: .8125rem; font-weight: 700; font-variant-numeric: tabular-nums; }
.bp-toc__no .bp-i { width: 16px; height: 16px; }

.bp-chapter { margin-top: clamp(40px, 5vw, 64px); padding-top: clamp(36px, 4vw, 56px); border-top: 1px solid var(--line); }
.bp-prose--intro + .bp-chapter { margin-top: clamp(40px, 5vw, 64px); }
.bp-chapter__head { display: grid; gap: 10px; margin-bottom: 24px; }
.bp-chapter__no { font-family: var(--font-serif); font-size: .95rem; font-weight: 600; letter-spacing: .14em; color: var(--bronze-text); }

/* 13 · JOURNAL · CONTACT ------------------------------------------------- */
.bp-journal { display: grid; gap: clamp(28px, 4vw, 56px); }
.bp-journal__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 40px 24px; }
.bp-post-card { display: flex; flex-direction: column; gap: 18px; }
.bp-post-card__media { display: block; overflow: hidden; aspect-ratio: 3 / 2; border-radius: var(--r-lg); background: var(--cream-2); }
.bp-post-card__media .bp-cover { transition: transform .8s var(--ease); }
.bp-post-card:hover .bp-post-card__media .bp-cover { transform: scale(1.04); }
.bp-post-card__meta { display: flex; flex-wrap: wrap; gap: 4px 10px; font-size: .8125rem; color: var(--muted); }
.bp-post-card__title { font-size: 1.375rem; line-height: 1.25; }
.bp-post-card__title a { text-decoration: none; transition: color .2s; }
.bp-post-card__title a:hover { color: var(--bronze-text); }
.bp-post-card__excerpt { flex: 1; font-size: .9375rem; color: var(--ink-2); }
.bp-post-card__body { display: flex; flex: 1; flex-direction: column; gap: 10px; }
.bp-post-card--featured { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr); gap: clamp(24px, 4vw, 56px); align-items: center; padding: clamp(16px, 2vw, 24px); background: var(--paper); border-radius: var(--r-xl); box-shadow: var(--shadow-1); }
.bp-post-card--featured .bp-post-card__media { aspect-ratio: 16 / 10; }
.bp-post-card--featured .bp-post-card__title { font-size: clamp(1.6rem, 1.2rem + 1.6vw, 2.5rem); line-height: 1.15; }
.bp-post-card--featured .bp-post-card__excerpt { flex: none; font-size: 1.0625rem; }
.bp-post-card--featured .bp-post-card__body { padding: clamp(4px, 2vw, 24px) clamp(4px, 2vw, 28px) clamp(4px, 2vw, 24px) 0; }

.bp-pagination { margin-top: clamp(40px, 5vw, 64px); }
.bp-pagination ul, .navigation.pagination ul { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; list-style: none; margin: 0; padding: 0; }
.bp-pagination .page-numbers, .navigation.pagination .page-numbers {
    display: inline-grid; place-items: center; min-width: 44px; min-height: 44px; padding: 0 1rem; border-radius: 999px;
    background: #fff; border: 1px solid var(--line); color: var(--ink-2); text-decoration: none; font-size: .9375rem;
    transition: background-color .2s, color .2s, border-color .2s;
}
.bp-pagination a.page-numbers:hover, .navigation.pagination a.page-numbers:hover { border-color: var(--bronze); }
.bp-pagination .current, .navigation.pagination .current { background: var(--bronze-d); border-color: var(--bronze-d); color: #fff; font-weight: 700; }

.bp-contact { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(32px, 5vw, 72px); align-items: start; }
.bp-contact__list { display: grid; gap: 14px; list-style: none; margin: 0; padding: 0; }
.bp-contact__list li { display: flex; align-items: center; flex-wrap: wrap; gap: 6px 12px; padding: 16px 20px; background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); }
.bp-contact__list a { color: var(--bronze-text); font-weight: 700; word-break: break-word; }
.bp-contact__icon { display: grid; place-items: center; width: 44px; height: 44px; margin-right: 4px; border-radius: 14px; background: var(--cream-2); color: var(--bronze-d); }
.bp-contact__label { font-weight: 700; color: var(--ink); }
.bp-form { display: grid; gap: 20px; padding: clamp(24px, 4vw, 44px); background: #fff; border-radius: var(--r-lg); box-shadow: var(--shadow-1); }
.bp-field label { display: block; margin-bottom: 8px; font-size: .9375rem; font-weight: 700; color: var(--ink); }
.bp-field input, .bp-field textarea {
    width: 100%; padding: .9rem 1.05rem; border: 1px solid var(--line-strong); border-radius: 14px; background: var(--cream);
    color: var(--ink); font: inherit; font-size: 1rem; transition: border-color .2s, background-color .2s;
}
.bp-field textarea { resize: vertical; min-height: 140px; }
.bp-field input:hover, .bp-field textarea:hover { border-color: var(--bronze); }
.bp-field input:focus, .bp-field textarea:focus { border-color: var(--bronze-d); background: #fff; }
.bp-form .bp-btn { justify-self: start; }
.bp-form[aria-busy='true'] .bp-btn { opacity: .7; pointer-events: none; }
.bp-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.bp-alert { padding: 14px 18px; border-radius: 12px; font-size: .9375rem; }
.bp-alert--ok { background: #eef6ee; color: #1f4d2b; border: 1px solid #cfe3d2; }
.bp-alert--err { background: #fbeeee; color: #7a1f1f; border: 1px solid #efcaca; }
.bp-form__status:empty { display: none; }

.bp-results { display: grid; gap: 16px; list-style: none; margin: 0 0 32px; padding: 0; }
.bp-results__item a { display: block; padding: 24px; background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); text-decoration: none; transition: border-color .2s, box-shadow .2s; }
.bp-results__item a:hover { border-color: var(--bronze); box-shadow: var(--shadow-1); }
.bp-results__item h2 { font-size: 1.25rem; margin-bottom: .4rem; }
.bp-notfound { text-align: center; }
.bp-notfound .bp-container { display: grid; justify-items: center; gap: 12px; }
.bp-notfound__mark { width: 56px; height: 56px; color: var(--bronze-d); stroke-width: 1.4; margin-bottom: 8px; }

/* 14 · FOOTER & FLOATING UI ---------------------------------------------- */
.bp-footer { padding-top: clamp(56px, 7vw, 96px); background: var(--black); color: rgba(245, 239, 230, .74); }
.bp-footer__top { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 32px; padding-bottom: 40px; border-bottom: 1px solid rgba(245, 239, 230, .12); }
.bp-footer__statement { max-width: 36rem; margin-top: 18px; font-size: 1.0625rem; color: rgba(245, 239, 230, .8); }
.bp-footer__statement a { color: var(--bronze-l); text-underline-offset: .2em; }
.bp-footer__statement a:hover { color: #fff; }
.bp-footer__follow { display: flex; align-items: center; gap: 16px; }
.bp-footer__follow-label { font-size: .9375rem; }
.bp-social { display: flex; gap: 10px; list-style: none; margin: 0; padding: 0; }
.bp-social a {
    display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; color: var(--cream);
    border: 1px solid rgba(245, 239, 230, .22); transition: background-color .25s, border-color .25s, transform .25s var(--ease);
}
.bp-social a:hover { background: var(--bronze-d); border-color: var(--bronze-d); transform: translateY(-2px); }
.bp-footer__cols { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 36px 24px; padding: 52px 0; }
.bp-footer__h { margin-bottom: 18px; font-family: var(--font-serif); font-size: .8125rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--bronze-l); }
.bp-footer__col ul { display: grid; gap: 11px; list-style: none; margin: 0; padding: 0; }
.bp-footer__col a { color: rgba(245, 239, 230, .8); text-decoration: none; font-size: .9375rem; line-height: 1.4; transition: color .2s; }
.bp-footer__col a:hover { color: #fff; text-decoration: underline; text-underline-offset: .25em; }
.bp-footer__col--contact li { display: flex; gap: 10px; align-items: flex-start; }
.bp-footer__col--contact .bp-i { width: 18px; height: 18px; margin-top: 2px; color: var(--bronze-l); }
.bp-footer__col--contact a { word-break: break-word; }
.bp-footer__bar { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px 24px; padding: 24px 84px 36px 0; border-top: 1px solid rgba(245, 239, 230, .12); font-size: .875rem; }
.bp-footer__legal { display: flex; flex-wrap: wrap; gap: 8px 24px; list-style: none; margin: 0; padding: 0; }
.bp-footer__legal a { color: rgba(245, 239, 230, .74); text-decoration: none; transition: color .2s; }
.bp-footer__legal a:hover { color: #fff; text-decoration: underline; }

.bp-fab {
    position: fixed; z-index: 120; right: max(16px, env(safe-area-inset-right)); bottom: max(16px, env(safe-area-inset-bottom));
    display: grid; place-items: center; width: 58px; height: 58px; border-radius: 50%; background: var(--bronze-d); color: #fff;
    box-shadow: 0 12px 32px rgba(26, 26, 26, .3); transition: transform .3s var(--ease), background-color .25s;
}
.bp-fab:hover { background: var(--bronze-dd); transform: scale(1.06); }
.bp-fab .bp-i { width: 28px; height: 28px; }
.bp-top {
    position: fixed; z-index: 110; right: max(23px, env(safe-area-inset-right)); bottom: calc(max(16px, env(safe-area-inset-bottom)) + 70px);
    display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; background: #fff; color: var(--ink);
    border: 1px solid var(--line); box-shadow: var(--shadow-1); transition: transform .25s var(--ease), background-color .2s;
}
.bp-top:hover { background: var(--cream); transform: translateY(-2px); }
.bp-top[hidden], .bp-cookie[hidden] { display: none; }
html.bp-lock .bp-fab, html.bp-lock .bp-top, html.bp-lock .bp-cookie { visibility: hidden; }

.bp-cookie {
    position: fixed; z-index: 130; left: max(16px, env(safe-area-inset-left)); bottom: max(16px, env(safe-area-inset-bottom));
    display: flex; align-items: center; gap: 16px; width: min(560px, calc(100% - 100px)); padding: 14px 16px 14px 20px;
    background: var(--ink); color: rgba(245, 239, 230, .9); border-radius: var(--r-md); box-shadow: var(--shadow-2); font-size: .875rem; line-height: 1.5;
    animation: bp-fade .4s var(--ease);
}
.bp-cookie p { flex: 1; }
.bp-cookie a { color: var(--bronze-l); }
.bp-cookie a:hover { color: #fff; }
.bp-cookie .bp-btn { flex: none; background: var(--cream); color: var(--ink); }
.bp-cookie .bp-btn:hover { background: #fff; box-shadow: none; }

/* 15 · MOTION · RESPONSIVE · PRINT --------------------------------------- */
@keyframes bp-zoom { from { transform: scale(1.07); } to { transform: scale(1); } }
@keyframes bp-fade { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }
@keyframes bp-show { to { opacity: 1; transform: none; } }

.js .bp-rv { opacity: 0; transform: translateY(16px); transition: opacity .7s ease, transform .8s var(--ease); transition-delay: calc(var(--i, 0) * 80ms); animation: bp-show .01s 3s forwards; }
.js .bp-rv.is-in { opacity: 1; transform: none; animation: none; }

@media (max-width: 1099px) {
    .bp-footer__cols { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 1023px) {
    .bp-dests { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .bp-grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .bp-grid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .bp-journal__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 959px) {
    .bp-sechead--split { grid-template-columns: 1fr; align-items: start; }
    .bp-intro__grid, .bp-team, .bp-route, .bp-planner, .bp-contact, .bp-post-card--featured { grid-template-columns: 1fr; }
    .bp-intro__media { aspect-ratio: 16 / 11; max-height: 420px; }
    .bp-article--toc { grid-template-columns: minmax(0, 1fr); gap: 24px; }
    .bp-toc { position: static; padding: 14px 18px; background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); }
    .bp-toc summary { padding-bottom: 0; border: 0; cursor: pointer; }
    .bp-toc[open] summary { padding-bottom: 12px; border-bottom: 1px solid var(--line); }
    .bp-toc summary .bp-i { display: block; }
    .bp-toc[open] summary .bp-i { rotate: 180deg; }
    .bp-toc__list { max-height: none; }
    .bp-post-card--featured .bp-post-card__body { padding: 4px 4px 12px; }
}
@media (max-width: 767px) {
    :root { --header-h: 64px; }
    /* photography */
    .bp-gallery--bento, .bp-gallery--trio { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: 150px; gap: 12px; }
    .bp-gallery--bento .bp-gallery__item:first-child, .bp-gallery--trio .bp-gallery__item:nth-child(1) { grid-column: 1 / -1; grid-row: span 2; }
    .bp-gallery--bento.bp-gallery--n4 .bp-gallery__item:last-child { grid-column: 1 / -1; }
    .bp-gallery--trio .bp-gallery__item:nth-child(n+2) { grid-column: auto; grid-row: auto; }
    .bp-gallery--trio.bp-gallery--n2 .bp-gallery__item:nth-child(2) { grid-column: 1 / -1; }
    .bp-gallery--bento.bp-gallery--n3 .bp-gallery__item:first-child, .bp-gallery--bento.bp-gallery--n2 .bp-gallery__item:first-child { grid-column: 1 / -1; }
    .bp-gallery--strip, .bp-gallery--strip[class*='bp-gallery--n'] {
        display: flex; gap: 12px; overflow-x: auto; margin-inline: calc(var(--gutter) * -1); padding: 4px var(--gutter) 12px;
        scroll-snap-type: x mandatory; overscroll-behavior-x: contain; scrollbar-width: none;
    }
    .bp-gallery--strip::-webkit-scrollbar { display: none; }
    .bp-gallery--strip .bp-gallery__item { flex: 0 0 62%; scroll-snap-align: start; margin-top: 0 !important; }
    .bp-band { aspect-ratio: 16 / 10; min-height: 0; }
    .bp-dests {
        display: flex; gap: 12px; overflow-x: auto; margin-inline: calc(var(--gutter) * -1); padding: 4px var(--gutter) 12px;
        scroll-snap-type: x mandatory; overscroll-behavior-x: contain; scrollbar-width: none;
    }
    .bp-dests::-webkit-scrollbar { display: none; }
    .bp-dests > li { flex: 0 0 min(68%, 260px); scroll-snap-align: start; }
    .bp-figure--inset-right, .bp-figure--inset-left { float: none; width: 100%; aspect-ratio: 16 / 10; margin: 0 0 1.2em; }
    .bp-figure-pair { grid-template-columns: 1fr; gap: 12px; }
    .bp-planner__photos figure:nth-child(2) { margin-top: 16px; }
    .bp-grid--2, .bp-grid--3, .bp-grid--4 { grid-template-columns: 1fr; }
    .bp-summary__trust { grid-template-columns: 1fr; }
    .bp-summary__card { margin-top: -56px; }
    .bp-hero__card { min-height: clamp(520px, 86svh, 680px); }
    .bp-pagehead__card { min-height: 420px; }
    .bp-chip--float { top: 14px; right: 14px; }
    .bp-answer-card { margin-top: -32px; grid-template-columns: 1fr; gap: 10px; }
    .bp-dl { grid-template-columns: 1fr; }
    .bp-dl dt { padding: 16px 0 2px; border-bottom: 0; }
    .bp-dl dd { padding: 0 0 16px; }
    .bp-prose .bp-timeline > li, .bp-timeline > li { grid-template-columns: 1fr; gap: 2px; }
    .bp-journal__grid { grid-template-columns: 1fr; }
    .bp-footer__cols { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .bp-footer__col--contact { grid-column: 1 / -1; }
    .bp-footer__top { align-items: flex-start; }
    .bp-footer__bar { padding-right: 0; padding-bottom: 88px; }
    .bp-acc summary { padding: 16px 18px; }
    .bp-acc__body { margin: 0 18px; }
    /* pills scroll sideways instead of wrapping into a tall block */
    .bp-faq .bp-tabs__list, .bp-tabs__list { flex-wrap: nowrap; justify-content: flex-start; overflow-x: auto; margin-inline: calc(var(--gutter) * -1); padding: 4px var(--gutter) 8px; scroll-snap-type: x proximity; scrollbar-width: none; }
    .bp-tabs__list::-webkit-scrollbar { display: none; }
    .bp-pill { scroll-snap-align: start; }
    .bp-cookie { width: calc(100% - 96px); flex-wrap: wrap; gap: 10px; }
    .bp-fab { width: 54px; height: 54px; }
    .bp-top { display: none; }
    .bp-table { min-width: 640px; }
    .bp-table td:first-child { min-width: 11.5rem; }
    .bp-planner__go { border-radius: var(--r-lg); min-height: 0; padding: 1rem 1.25rem; }
    .bp-planner__go-arrow { display: none; }
    .bp-brand__name { font-size: 1.15rem; }
}
@media (max-width: 479px) {
    .bp-btn--lg { width: 100%; }
    .bp-card { padding: 22px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
    .js .bp-rv { opacity: 1; transform: none; animation: none; }
}

@media print {
    .bp-header, .bp-scrim, .bp-fab, .bp-top, .bp-cookie, .bp-cta, .bp-planner-sec, .bp-footer__cols, .bp-toc { display: none !important; }
    body { background: #fff; color: #000; font-size: 11pt; }
    .bp-hero__card, .bp-pagehead__card { min-height: 0; background: none; color: #000; }
    .bp-hero__media, .bp-pagehead__media { display: none; }
    .js .bp-rv { opacity: 1; transform: none; }
}
