#main-content { padding-top: 90px; }
@media (min-width: 768px) { #main-content { padding-top: 110px; } }
@font-face {
    font-family: 'Nothing You Could Do'; text-transform: none;
    src: url('../font/NothingYouCouldDo/woff2/NothingYouCouldDo-Regular.woff2') format('woff2');
    font-display: swap;
}

:root {
    --teal: #0093a5;
    --teal-soft: rgba(0, 147, 165, 0.08);
    --teal-mint: #5eead4;
    --navy: #0a1f2e;
    --navy-deep: #020e1a;
    --ink: #1e293b;
    --slate: #64748b;
    --slate-light: #94a3b8;
    --line: #e8edf1;
    --line-faint: #f1f4f7;
    --bg: #fafbfc;
    --white: #ffffff;
    --green: #047857;
    --shadow-soft: 0 1px 2px rgba(15, 23, 42, 0.04), 0 8px 24px -12px rgba(15, 23, 42, 0.12);
    --shadow-elevated: 0 2px 4px rgba(15, 23, 42, 0.04), 0 18px 40px -16px rgba(15, 23, 42, 0.22);
    --radius: 14px;
    --radius-lg: 20px;
    --radius-pill: 9999px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Poppins', system-ui, sans-serif;
    color: var(--ink);
    background: var(--bg);
    line-height: 1.6;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ─────────── Preview banner ─────────── */
.preview-banner {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 999;
    background: var(--navy-deep);
    color: var(--white);
    padding: 7px 20px;
    font-size: 11px;
    letter-spacing: 0.05em;
    display: flex; align-items: center; justify-content: space-between;
}
.preview-banner__tag {
    background: var(--teal);
    padding: 2px 8px;
    border-radius: 3px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

/* ─────────── Top nav ─────────── */
.topnav {
    position: sticky; top: 32px;
    z-index: 50;
    background: rgba(250, 251, 252, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--line);
}
.topnav__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 14px 28px;
    display: flex; align-items: center; justify-content: space-between;
    gap: 1rem;
}
.topnav__back {
    display: inline-flex; align-items: center; gap: 0.5rem;
    font-size: 0.8rem; font-weight: 500;
    color: var(--slate);
    transition: color 0.25s;
}
.topnav__back:hover { color: var(--navy); }
.topnav__center {
    display: flex; align-items: center; gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--navy);
    flex: 1;
    justify-content: center;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.topnav__center i { color: var(--teal); font-size: 0.8em; }
.topnav__center b { font-weight: 600; }
.topnav__actions {
    display: inline-flex; gap: 6px;
}
.topnav__icon-btn {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: transparent;
    color: var(--slate);
    border: 1px solid var(--line);
    display: inline-flex; align-items: center; justify-content: center;
    transition: all 0.25s;
    font-size: 0.85em;
}
.topnav__icon-btn:hover { background: var(--white); color: var(--teal); border-color: var(--teal); }

/* ─────────── Hero collage ─────────── */
.hero {
    max-width: 1280px;
    margin: 32px auto 0;
    padding: 1.25rem 1.5rem 0;
}
.hero__grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    grid-template-rows: 220px 220px;
    gap: 6px;
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.hero__img {
    position: relative;
    overflow: hidden;
    background: var(--line);
}
.hero__img:first-child { grid-row: 1 / span 2; }
.hero__img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
}
.hero__img:hover img { transform: scale(1.04); }
.hero__show-all {
    position: absolute;
    bottom: 14px; right: 14px;
    background: var(--white);
    padding: 8px 14px;
    border-radius: var(--radius-pill);
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--navy);
    display: inline-flex; align-items: center; gap: 0.45rem;
    box-shadow: 0 8px 18px -8px rgba(0,0,0,0.25);
    border: 1px solid rgba(255,255,255,0.5);
    cursor: pointer;
    font-family: inherit;
    transition: transform 0.25s, box-shadow 0.25s;
    z-index: 5;
}
.hero__show-all:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px -10px rgba(0,0,0,0.35);
}
@media (max-width: 767px) {
    .hero { padding: 0; margin-top: 32px; }
    .hero__grid { grid-template-columns: 1fr; grid-template-rows: 280px; border-radius: 0; }
    .hero__img:not(:first-child) { display: none; }
}

/* ─────────── Page layout ─────────── */
/* CRITICAL: overflow MUST stay visible on every ancestor of position: sticky
   elements (the .book sidebar + .tabs bar). The site-wide style.css used to
   set body,html { overflow-x:hidden } which silently broke every sticky on the
   live site. We belt-and-braces here at the page level too. */
html, body { overflow-x: clip !important; }
@supports not (overflow-x: clip) { html, body { overflow-x: hidden; } }
#main-content { overflow: visible !important; }
.page {
    max-width: 1280px;
    margin: 0 auto;
    padding: 2.5rem 1.5rem 4rem;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 3.5rem;
    align-items: start;
    overflow: visible;
}
@media (max-width: 1023px) {
    .page { grid-template-columns: 1fr; gap: 1.5rem; padding: 1.5rem 1rem 2rem; }
}

.main { min-width: 0; overflow: visible; }

/* ─────────── Summary header ─────────── */
.summary {
    padding-bottom: 1.6rem;
    margin-bottom: 0;
}
.summary__meta {
    display: inline-flex; align-items: center; gap: 0.6rem;
    margin-bottom: 1rem;
    font-size: 0.75rem;
    color: var(--slate);
    flex-wrap: wrap;
}
.summary__badge {
    background: var(--navy);
    color: var(--white);
    padding: 3px 9px;
    border-radius: 4px;
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}
.summary__rating {
    display: inline-flex; align-items: center; gap: 0.35rem;
    color: var(--navy);
    font-weight: 500;
}
.summary__rating i { color: var(--teal); font-size: 0.8em; }
.summary__dot { color: var(--slate-light); }
.summary__title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.025em;
    color: var(--navy);
    margin-bottom: 0.7rem;
}
.summary__lede {
    font-size: 1rem;
    color: var(--slate);
    max-width: 560px;
    margin-bottom: 1.3rem;
    line-height: 1.65;
}
.summary__chips {
    display: flex; gap: 0.4rem; flex-wrap: wrap;
}
.summary__chip {
    display: inline-flex; align-items: center; gap: 0.4rem;
    padding: 0.4rem 0.85rem;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: var(--radius-pill);
    font-size: 0.74rem;
    color: var(--ink);
    font-weight: 400;
}
.summary__chip i { color: var(--teal); font-size: 0.85em; }

/* ─────────── Tabs ─────────── */
.tabs {
    border-bottom: 1px solid var(--line);
    margin-bottom: 2rem;
    position: sticky;
    top: 89px;
    background: rgba(250, 251, 252, 0.95);
    backdrop-filter: blur(14px) saturate(180%);
    -webkit-backdrop-filter: blur(14px) saturate(180%);
    z-index: 20;
    margin-left: -1.5rem;
    margin-right: -1.5rem;
    padding: 0 1.5rem;
}
.tabs__row {
    display: flex; gap: 2rem;
    overflow-x: auto;
    scrollbar-width: none;
}
.tabs__row::-webkit-scrollbar { display: none; }
.tab {
    background: transparent;
    border: none;
    padding: 1rem 0.1rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--slate);
    border-bottom: 2px solid transparent;
    position: relative;
    transition: color 0.25s;
    white-space: nowrap;
    letter-spacing: -0.005em;
}
.tab:hover { color: var(--navy); }
.tab.is-active {
    color: var(--navy);
    border-bottom-color: var(--teal);
    font-weight: 600;
}
.tab__count {
    display: inline-block;
    margin-left: 4px;
    font-size: 0.7rem;
    color: var(--slate-light);
    font-weight: 400;
}

/* ─────────── Tab panels ─────────── */
.panel { display: none; }
.panel.is-active { display: block; }

.block { padding: 0 0 2.5rem; }
.block__head {
    margin-bottom: 1.3rem;
    display: flex; align-items: baseline; justify-content: space-between; gap: 1rem;
}
.block__title {
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: -0.015em;
    color: var(--navy);
}
.block__title em {
    font-style: italic;
    font-family: 'Nothing You Could Do', cursive; text-transform: none;
    font-weight: 400;
    color: var(--teal);
}
.block__action {
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--teal);
    display: inline-flex; align-items: center; gap: 0.4rem;
    transition: gap 0.3s;
}
.block__action:hover { gap: 0.6rem; }

/* ─────────── Inclusions grid ─────────── */
.inclusions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0.85rem 1.25rem;
}
.inclusion {
    display: flex; align-items: flex-start; gap: 0.85rem;
    padding: 0.5rem 0;
}
.inclusion__icon {
    width: 36px; height: 36px;
    border-radius: 10px;
    background: var(--teal-soft);
    color: var(--teal);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 0.95rem;
    flex-shrink: 0;
}
.inclusion__text { line-height: 1.4; padding-top: 4px; }
.inclusion__text b { display: block; font-size: 0.88rem; font-weight: 600; color: var(--navy); }
.inclusion__text span { font-size: 0.78rem; color: var(--slate); }

/* ─────────── Add-on inclusion variant ─────────── */
.inclusions--addon { margin-top: 0.4rem; }
.inclusion--addon {
    background: linear-gradient(180deg, rgba(94,234,212,0.06), rgba(94,234,212,0.02));
    border: 1px dashed rgba(0, 147, 165, 0.28);
    border-radius: 12px;
    padding: 0.85rem 0.95rem;
}
.inclusion__icon--addon {
    background: #ecfeff !important;
    color: var(--teal) !important;
}
.inclusion--addon .inclusion__text b { color: var(--navy); }
/* :not(.inclusion__addon-chip) so the chip keeps its own white text on teal */
.inclusion--addon .inclusion__text span:not(.inclusion__addon-chip) { color: var(--teal); font-weight: 600; }
.inclusion__addon-chip {
    display: inline-flex; align-items: center;
    gap: 4px;
    margin-left: 8px;
    padding: 2px 8px;
    border-radius: 999px;
    background: var(--teal);
    color: #fff !important;
    font-size: 0.55rem; font-weight: 800;
    letter-spacing: 0.14em; text-transform: uppercase;
    vertical-align: middle;
    line-height: 1.4;
}
.inclusion__addon-chip i { color: #fff; }

/* ───── Toggleable addon card ───── */
.inclusion--toggle {
    display: grid;
    grid-template-columns: 38px 1fr auto;
    align-items: center;
    gap: 0.65rem;
    cursor: pointer;
    position: relative;
    transition: border-color 0.25s, box-shadow 0.25s, background 0.25s, transform 0.25s;
    user-select: none;
}
.inclusion--toggle:hover {
    transform: translateY(-1px);
    border-color: var(--teal);
    box-shadow: 0 8px 20px -12px rgba(0, 147, 165, 0.3);
}
.inclusion--toggle .addon-toggle { position: absolute; opacity: 0; pointer-events: none; }
.inclusion__addon-sub { color: var(--slate-light) !important; font-size: 0.72rem !important; font-weight: 500 !important; }
.inclusion__addon-check {
    width: 28px; height: 28px;
    border-radius: 50%;
    border: 1.5px solid var(--line);
    background: #fff;
    display: inline-flex; align-items: center; justify-content: center;
    color: transparent;
    font-size: 0.75rem;
    transition: all 0.25s;
    flex-shrink: 0;
}
.inclusion--toggle:has(.addon-toggle:checked) {
    background: linear-gradient(180deg, rgba(0,147,165,0.08), rgba(0,147,165,0.03));
    border-color: var(--teal);
    box-shadow: 0 8px 24px -14px rgba(0, 147, 165, 0.45);
}
.inclusion--toggle:has(.addon-toggle:checked) .inclusion__addon-sub { color: var(--teal) !important; font-weight: 700 !important; }
.inclusion--toggle:has(.addon-toggle:checked) .inclusion__addon-check {
    background: var(--teal);
    border-color: var(--teal);
    color: #fff;
}

/* ───── Inline checkout drawer ───── */
.book-drawer {
    position: fixed; top: 0; right: 0; height: 100%;
    width: 100%; max-width: 560px;
    background: #fff;
    z-index: 9999;
    box-shadow: -20px 0 60px -20px rgba(15, 23, 42, 0.4);
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}
.book-drawer.is-open { transform: translateX(0); }
.book-backdrop {
    position: fixed; inset: 0;
    background: rgba(10, 21, 37, 0.55);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 9998;
    opacity: 0; pointer-events: none;
    transition: opacity 0.4s;
}
.book-backdrop.is-open { opacity: 1; pointer-events: auto; }
body.book-drawer-open { overflow: hidden; }
.bd__head {
    position: sticky; top: 0; z-index: 5;
    padding: 1.1rem 1.5rem;
    background: #fff;
    border-bottom: 1px solid var(--line);
    display: flex; align-items: center; justify-content: space-between;
    gap: 1rem;
}
.bd__title { font-size: 1rem; font-weight: 700; color: var(--navy); letter-spacing: -0.01em; }
.bd__title span { color: var(--slate); font-weight: 500; margin-left: 6px; font-size: 0.85rem; }
.bd__close {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: var(--line-faint);
    border: 0;
    color: var(--navy);
    cursor: pointer;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1rem;
    transition: background 0.25s, transform 0.25s;
}
.bd__close:hover { background: var(--line); transform: scale(1.06); }
.bd__body { padding: 1.5rem; flex: 1; }
.bd__section { margin-bottom: 1.5rem; }
.bd__section:last-child { margin-bottom: 0; }
.bd__label {
    display: block;
    font-size: 0.62rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--slate-light);
    margin-bottom: 0.55rem;
}
.bd__summary {
    background: var(--line-faint);
    border-radius: 14px;
    padding: 1rem 1.1rem;
    border: 1px solid var(--line);
}
.bd__summary-row {
    display: flex; justify-content: space-between; align-items: baseline;
    padding: 0.4rem 0;
    border-bottom: 1px solid var(--line);
    font-size: 0.85rem;
}
.bd__summary-row:last-child { border-bottom: 0; padding-bottom: 0; }
.bd__summary-row.bd__summary-total { padding-top: 0.7rem; font-size: 0.95rem; font-weight: 700; }
.bd__summary-row.bd__summary-total b { color: var(--teal); font-size: 1.15rem; }
.bd__summary-row span:first-child { color: var(--slate); }
.bd__summary-row span:last-child, .bd__summary-row b { color: var(--navy); font-weight: 600; }
.bd__summary-row--coupon span,
.bd__summary-row--coupon b {
    color: #047857 !important;
}
.bd__summary-row--coupon b {
    display: inline-flex;
    margin-left: 0.25rem;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.bd__addons-list { font-size: 0.78rem; color: var(--slate); margin-top: 0.3rem; }
.bd__addons-list span { display: inline-block; padding: 1px 8px; margin: 2px 4px 2px 0; background: #ecfeff; color: var(--teal); border-radius: 9999px; font-weight: 600; font-size: 0.72rem; }
.bd__input {
    width: 100%;
    padding: 0.85rem 1rem;
    background: var(--line-faint);
    border: 1.5px solid transparent;
    border-radius: 12px;
    font-size: 0.92rem;
    color: var(--navy);
    font-family: inherit;
    transition: border-color 0.2s, background 0.2s;
}
.bd__input:focus { outline: none; border-color: var(--teal); background: #fff; }
.bd__input::placeholder { color: var(--slate-light); }
.bd__input--select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%2364748b' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}
.bd__grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0.65rem; }
@media (max-width: 480px) { .bd__grid-2 { grid-template-columns: 1fr; } }
.bd__deposit-note {
    display: flex; align-items: flex-start; gap: 0.7rem;
    padding: 0.85rem 1rem;
    background: linear-gradient(180deg, rgba(0,147,165,0.07), rgba(0,147,165,0.03));
    border: 1px solid rgba(0,147,165,0.25);
    border-radius: 12px;
    color: var(--ink);
    font-size: 0.82rem; line-height: 1.5;
}
.bd__deposit-note i { color: var(--teal); font-size: 1rem; margin-top: 2px; flex-shrink: 0; }
.bd__deposit-note b { color: var(--navy); }
.bd__coupon-row { display: flex; gap: 0.5rem; }
.bd__coupon-row .bd__input { flex: 1; }
.bd__coupon-btn {
    padding: 0 1.1rem;
    background: var(--navy);
    color: #fff;
    border: 0;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.78rem;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.25s;
}
.bd__coupon-btn:hover { background: #0a1f2e; }
.bd__coupon-msg {
    font-size: 0.78rem;
    font-weight: 700;
    margin-top: 0.5rem;
    line-height: 1.45;
}
.bd__coupon-msg.is-ok {
    color: #047857;
    background: #ecfdf5;
    border: 1px solid rgba(4, 120, 87, 0.16);
    border-radius: 10px;
    padding: 0.55rem 0.7rem;
}
.bd__coupon-msg.is-err {
    color: #b91c1c;
    background: #fef2f2;
    border: 1px solid rgba(185, 28, 28, 0.14);
    border-radius: 10px;
    padding: 0.55rem 0.7rem;
}
.bd__pay-area {
    margin-top: 1rem;
}
.bd__error {
    background: #fef2f2;
    color: #991b1b;
    padding: 0.65rem 0.85rem;
    border-radius: 10px;
    font-size: 0.8rem;
    margin-bottom: 0.85rem;
    border: 1px solid #fecaca;
}
.bd__error[hidden] { display: none; }
.bd__legal {
    font-size: 0.72rem;
    color: var(--slate-light);
    margin-top: 0.85rem;
    line-height: 1.55;
}
.bd__legal a { color: var(--teal); }

/* ─────────── Gallery modal (categorized) ─────────── */
.gallery-modal {
    position: fixed; inset: 0; z-index: 9999;
    background: rgba(10, 14, 23, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: none;
    flex-direction: column;
}
.gallery-modal.is-open { display: flex; animation: galFadeIn 0.35s ease; }
@keyframes galFadeIn { from { opacity: 0; } to { opacity: 1; } }
.gallery-modal__head {
    flex-shrink: 0;
    padding: 1rem clamp(1rem, 3vw, 2rem);
    display: flex; align-items: center; justify-content: space-between;
    gap: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.gallery-modal__title {
    color: #fff;
    font-size: 1rem; font-weight: 700;
    letter-spacing: -0.01em;
}
.gallery-modal__title span { color: rgba(255,255,255,0.5); font-weight: 500; margin-left: 6px; }
.gallery-modal__close {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    border: 0;
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.25s, transform 0.25s;
}
.gallery-modal__close:hover { background: rgba(255,255,255,0.18); transform: scale(1.06); }
.gallery-modal__tabs {
    flex-shrink: 0;
    display: flex; gap: 0.4rem;
    padding: 0.85rem clamp(1rem, 3vw, 2rem);
    overflow-x: auto;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    scrollbar-width: none;
}
.gallery-modal__tabs::-webkit-scrollbar { display: none; }
.gallery-modal__tab {
    flex-shrink: 0;
    padding: 0.45rem 0.9rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.7);
    border-radius: 999px;
    font-size: 0.72rem; font-weight: 700;
    letter-spacing: 0.08em; text-transform: uppercase;
    cursor: pointer;
    transition: all 0.25s;
    white-space: nowrap;
}
.gallery-modal__tab:hover { color: #fff; border-color: rgba(255,255,255,0.2); }
.gallery-modal__tab.is-active { background: #fff; color: #0a1f2e; border-color: #fff; }
.gallery-modal__tab span {
    margin-left: 6px;
    opacity: 0.65;
    font-size: 0.68rem;
}
.gallery-modal__tab.is-active span { opacity: 0.6; color: #475569; }
.gallery-modal__scroll {
    flex: 1;
    overflow-y: auto;
    padding: clamp(1rem, 2.5vw, 2rem);
    -webkit-overflow-scrolling: touch;
}
.gallery-modal__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: clamp(0.5rem, 1vw, 0.75rem);
    max-width: 1400px;
    margin: 0 auto;
}
.gallery-modal__item {
    aspect-ratio: 4 / 3;
    background: #1e293b;
    border-radius: 10px;
    overflow: hidden;
    cursor: zoom-in;
    transition: transform 0.3s ease;
}
.gallery-modal__item:hover { transform: scale(1.015); }
.gallery-modal__item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s; }
.gallery-modal__item:hover img { transform: scale(1.06); }
.gallery-modal__empty {
    color: rgba(255,255,255,0.5);
    text-align: center;
    padding: 4rem 1rem;
    font-style: italic;
}

/* Lightbox (single image view from within the modal) */
.gallery-lightbox {
    position: fixed; inset: 0; z-index: 10000;
    background: rgba(0, 0, 0, 0.94);
    display: none;
    align-items: center; justify-content: center;
    flex-direction: column;
    padding: 1.5rem;
}
.gallery-lightbox.is-open { display: flex; animation: galFadeIn 0.25s ease; }
.gallery-lightbox__img {
    max-width: 100%;
    max-height: calc(100vh - 130px);
    object-fit: contain;
    border-radius: 6px;
    box-shadow: 0 30px 60px -20px rgba(0,0,0,0.8);
}
.gallery-lightbox__caption {
    color: rgba(255,255,255,0.7);
    font-size: 0.78rem;
    margin-top: 1rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}
.gallery-lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px; height: 52px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.25s, transform 0.25s;
}
.gallery-lightbox__nav:hover { background: rgba(255,255,255,0.18); transform: translateY(-50%) scale(1.06); }
.gallery-lightbox__nav--prev { left: 1.5rem; }
.gallery-lightbox__nav--next { right: 1.5rem; }
.gallery-lightbox__close {
    position: absolute; top: 1.5rem; right: 1.5rem;
    width: 44px; height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    cursor: pointer;
    font-size: 1.1rem;
    display: flex; align-items: center; justify-content: center;
}
.gallery-lightbox__close:hover { background: rgba(255,255,255,0.18); }
@media (max-width: 600px) {
    .gallery-lightbox__nav { width: 44px; height: 44px; }
    .gallery-lightbox__nav--prev { left: 0.5rem; }
    .gallery-lightbox__nav--next { right: 0.5rem; }
}

body.gallery-open { overflow: hidden; }

/* ─────────── Room cards ─────────── */
.rooms {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 0.85rem;
}
.room {
    border: 1.5px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
    background: var(--white);
    cursor: pointer;
}
.room:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-soft);
    border-color: var(--line);
}
.room.is-selected {
    border-color: var(--teal);
    box-shadow: 0 0 0 4px rgba(0,147,165,0.08), 0 1px 2px rgba(15,23,42,0.06), 0 12px 30px -16px rgba(0,147,165,0.30);
}
.room__img {
    height: 150px;
    background: var(--line);
    position: relative;
    overflow: hidden;
}
.room__img img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.35s ease;
}
.room__img img.is-active { opacity: 1; }
.room:hover .room__img img.is-active { transform: scale(1.04); transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.35s ease; }
/* Click-target overlay so the area outside the nav arrows still selects the room */
.room__hit { position: absolute; inset: 0; cursor: pointer; z-index: 1; }
.room__nav {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 30px; height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.94);
    color: var(--navy);
    border: 0;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 0.72rem;
    cursor: pointer;
    z-index: 2;
    opacity: 0; pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease, background 0.25s ease;
    box-shadow: 0 4px 10px rgba(15, 23, 42, 0.18);
}
.room:hover .room__nav { opacity: 1; pointer-events: auto; }
.room__nav:hover { background: #fff; transform: translateY(-50%) scale(1.08); }
.room__nav--prev { left: 8px; }
.room__nav--next { right: 8px; }
.room__count {
    position: absolute;
    bottom: 8px; left: 8px;
    background: rgba(15, 23, 42, 0.7);
    color: #fff;
    padding: 2px 7px;
    border-radius: 9999px;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    z-index: 2;
    pointer-events: none;
}
.room__check {
    position: absolute;
    top: 8px; right: 8px;
    width: 24px; height: 24px;
    background: var(--teal);
    border-radius: 50%;
    display: none;
    align-items: center; justify-content: center;
    color: var(--white);
    font-size: 0.7rem;
}
.room.is-selected .room__check { display: inline-flex; }
.room__body { padding: 0.9rem 1rem 1rem; }
.room__name { font-size: 0.88rem; font-weight: 600; color: var(--navy); margin-bottom: 0.15rem; }
.room__sub { font-size: 0.72rem; color: var(--slate); margin-bottom: 0.5rem; }
.room__price-solo, .room__price-2 { font-size: 0.78rem; font-weight: 600; }
.room__price-solo { color: var(--teal); }
.room__price-2 { color: var(--green); display: none; }
body[data-guests="2"] .room__price-solo, body[data-guests="3"] .room__price-solo,
body[data-guests="4"] .room__price-solo, body[data-guests="5"] .room__price-solo,
body[data-guests="6"] .room__price-solo { display: none; }
body[data-guests="2"] .room__price-2, body[data-guests="3"] .room__price-2,
body[data-guests="4"] .room__price-2, body[data-guests="5"] .room__price-2,
body[data-guests="6"] .room__price-2 { display: inline; }

/* ─────────── Schedule (sticky-scroll) ─────────── */
.sched {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 2.5rem;
    align-items: start;
}
.sched__pin {
    position: sticky;
    top: 180px;
}
.sched__num {
    font-family: 'Nothing You Could Do', cursive; text-transform: none;
    font-size: 1.5rem;
    color: var(--slate-light);
    line-height: 1;
    margin-bottom: 0.6rem;
}
.sched__progress {
    height: 2px;
    background: var(--line);
    border-radius: 999px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    max-width: 220px;
    position: relative;
}
.sched__progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--teal), var(--teal-mint));
    transition: width 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    width: 14%;
}
.sched__day {
    font-size: 0.7rem; font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 0.4rem;
}
.sched__title {
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--navy);
    margin-bottom: 0.7rem;
    letter-spacing: -0.02em;
    transition: opacity 0.3s;
}
.sched__desc {
    font-size: 0.92rem;
    color: var(--slate);
    line-height: 1.65;
    margin-bottom: 1.3rem;
    transition: opacity 0.3s;
}
.sched__acts {
    list-style: none;
    border-left: 1.5px solid var(--line);
    padding-left: 1.3rem;
    transition: opacity 0.3s;
}
.sched__acts li {
    position: relative;
    padding: 0.5rem 0;
    font-size: 0.85rem;
    color: var(--ink);
}
.sched__acts li::before {
    content: '';
    position: absolute;
    left: -1.66rem;
    top: 0.78rem;
    width: 9px; height: 9px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--teal);
    box-shadow: 0 0 0 3px rgba(0,147,165,0.08);
}
.sched__acts li b { color: var(--navy); font-weight: 600; }

.sched__feed {
    display: flex; flex-direction: column;
    gap: 1.4rem;
}
.sched__card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4 / 5;
    max-height: 480px;
    box-shadow: var(--shadow-soft);
    background: var(--line);
}
.sched__card img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 7s ease-out;
}
.sched__card.is-active img { transform: scale(1.08); }
.sched__card-shade {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(2,14,26,0.7) 100%);
}
.sched__card-tag {
    position: absolute; top: 1rem; left: 1rem;
    padding: 5px 12px;
    background: rgba(255,255,255,0.95);
    border-radius: var(--radius-pill);
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--navy);
}
.sched__card-label {
    position: absolute; left: 1.2rem; right: 1.2rem; bottom: 1.2rem;
    color: var(--white);
    text-shadow: 0 2px 6px rgba(0,0,0,0.5);
}
.sched__card-label-day { display: block; font-size: 0.66rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; opacity: 0.85; margin-bottom: 0.3rem; }
.sched__card-label-title { font-size: 1.2rem; font-weight: 700; line-height: 1.15; }

/* Mobile-only inline detail block — hidden on desktop where sticky pin handles it */
.sched__card-mobile { display: none; }

/* ── MOBILE — editorial timeline (≤900px) ──────────────────────────── */
@media (max-width: 900px) {
    .sched {
        display: block;
        gap: 0;
        position: relative;
        padding: 0;
    }
    /* Hide the sticky pin entirely on mobile (it only shows Day 1 which is misleading) */
    .sched__pin { display: none; }

    .sched__feed {
        position: relative;
        padding-left: 2.75rem;
        gap: 2rem;
    }
    /* The grey rail */
    .sched__feed::before {
        content: '';
        position: absolute;
        top: 14px; bottom: 14px;
        left: 1.05rem;
        width: 2px;
        background: linear-gradient(180deg, var(--line) 0%, var(--line) 88%, transparent 100%);
        border-radius: 999px;
        z-index: 0;
    }
    /* Climbing mint progress fill */
    .sched__feed::after {
        content: '';
        position: absolute;
        top: 14px;
        left: 1.05rem;
        width: 2px;
        height: var(--sched-mobile-progress, 0%);
        background: linear-gradient(180deg, var(--teal), #5eead4);
        border-radius: 999px;
        box-shadow: 0 0 10px rgba(94, 234, 212, 0.4);
        transition: height 0.6s cubic-bezier(0.19, 1, 0.22, 1);
        z-index: 1;
    }

    /* Reset desktop card sizing — cards become full-width timeline entries */
    .sched__card {
        aspect-ratio: auto;
        max-height: none;
        background: #fff;
        border: 1px solid var(--line);
        border-radius: 18px;
        overflow: hidden;
        opacity: 0;
        transform: translateY(24px);
        transition: opacity .6s cubic-bezier(.19,1,.22,1),
                    transform .6s cubic-bezier(.19,1,.22,1),
                    box-shadow .4s ease,
                    border-color .4s ease;
    }
    .sched__card.is-in {
        opacity: 1;
        transform: translateY(0);
    }
    .sched__card.is-active {
        border-color: rgba(0,147,165,0.35);
        box-shadow: 0 4px 8px rgba(15,23,42,0.05),
                    0 24px 48px -22px rgba(0,147,165,0.32);
    }

    /* Numbered dot anchored to the rail */
    .sched__card::before {
        content: attr(data-day-num);
        position: absolute;
        top: 14px;
        left: calc(-1.7rem - 11px);
        width: 30px; height: 30px;
        border-radius: 50%;
        background: #fff;
        border: 2px solid #cbd5e1;
        color: #94a3b8;
        font-size: 11px;
        font-weight: 800;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 2;
        box-shadow: 0 2px 6px rgba(15,23,42,0.08);
        transition: all .4s cubic-bezier(.19,1,.22,1);
    }
    .sched__card.is-active::before {
        background: linear-gradient(180deg, var(--teal), #0e7f8c);
        border-color: transparent;
        color: #fff;
        transform: scale(1.12);
        box-shadow:
            0 0 0 5px rgba(94,234,212,0.22),
            0 6px 16px rgba(0,147,165,0.4);
    }

    /* Image area — fixed 4:3 with overlay pill + label */
    .sched__card-media {
        position: relative;
        aspect-ratio: 4 / 3;
        overflow: hidden;
    }
    .sched__card-media img {
        position: absolute; inset: 0;
        width: 100%; height: 100%;
        object-fit: cover;
        transition: transform 7s ease-out;
    }
    .sched__card.is-active .sched__card-media img { transform: scale(1.05); }
    .sched__card-shade {
        position: absolute; inset: 0;
        background: linear-gradient(180deg, transparent 45%, rgba(2,14,26,0.65) 100%);
    }
    .sched__card-tag {
        top: 14px; left: 14px;
        font-size: 0.58rem;
    }
    .sched__card-label {
        left: 14px; right: 14px; bottom: 14px;
    }
    .sched__card-label-title { font-size: 1.05rem; }

    /* Inline mobile detail — shows under the image */
    .sched__card-mobile {
        display: block;
        padding: 1.1rem 1.3rem 1.3rem;
        background: #fff;
    }
    .sched__card-mobile-meta {
        font-size: 0.65rem;
        font-weight: 700;
        letter-spacing: 0.22em;
        text-transform: uppercase;
        color: var(--teal);
        margin-bottom: 0.45rem;
    }
    .sched__card-mobile-title {
        font-size: 1.15rem;
        font-weight: 800;
        color: var(--navy);
        line-height: 1.2;
        margin: 0 0 0.7rem;
        letter-spacing: -0.015em;
    }
    .sched__card-mobile-desc {
        font-family: 'Source Serif 4', Georgia, serif;
        font-size: 0.9rem;
        line-height: 1.6;
        color: var(--slate);
        margin: 0 0 1rem;
    }
    .sched__card-mobile-acts {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        gap: 0.45rem;
        border-top: 1px solid var(--line);
        padding-top: 0.8rem;
    }
    .sched__card-mobile-acts li {
        font-size: 0.82rem;
        color: var(--navy);
        display: flex;
        align-items: center;
        gap: 0.65rem;
        padding: 0.45rem 0.75rem;
        background: rgba(0,147,165,0.05);
        border-radius: 10px;
        line-height: 1.4;
    }
    .sched__card-mobile-acts li b {
        flex-shrink: 0;
        min-width: 64px;
        text-align: center;
        font-size: 0.7rem;
        font-weight: 700;
        color: var(--teal);
        background: #fff;
        border: 1px solid rgba(0,147,165,0.18);
        padding: 3px 9px;
        border-radius: 999px;
        letter-spacing: 0.04em;
    }
}
@media (max-width: 480px) {
    .sched__feed { padding-left: 2.5rem; }
    .sched__feed::before, .sched__feed::after { left: 0.85rem; }
    .sched__card::before {
        width: 26px; height: 26px;
        left: calc(-1.55rem - 10px);
        font-size: 10px;
    }
}

/* ─────────── Reviews ─────────── */
.reviews-summary {
    display: flex; align-items: center; gap: 2rem;
    padding-bottom: 1.6rem;
    margin-bottom: 1.6rem;
    border-bottom: 1px solid var(--line);
    flex-wrap: wrap;
}
.reviews-summary__big {
    text-align: center;
}
.reviews-summary__num {
    font-size: 2.6rem; font-weight: 800; color: var(--navy); line-height: 1; letter-spacing: -0.02em;
}
.reviews-summary__stars { color: var(--teal); font-size: 0.85rem; margin: 0.3rem 0; letter-spacing: 1px; }
.reviews-summary__caption { font-size: 0.74rem; color: var(--slate); font-weight: 500; }
.reviews-summary__bars { flex: 1; min-width: 220px; }
.reviews-summary__bar-row {
    display: grid;
    grid-template-columns: 60px 1fr 30px;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.4rem;
    font-size: 0.75rem;
    color: var(--slate);
}
.reviews-summary__bar-track {
    height: 4px;
    background: var(--line);
    border-radius: 999px;
    overflow: hidden;
}
.reviews-summary__bar-fill {
    height: 100%;
    background: var(--teal);
    border-radius: 999px;
}
.reviews-summary__bar-row b { color: var(--navy); font-weight: 600; }
.reviews-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
}
.review {
    padding: 1.2rem 1.3rem;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}
.review__head { display: flex; align-items: center; gap: 0.7rem; margin-bottom: 0.7rem; }
.review__avatar {
    width: 36px; height: 36px; border-radius: 50%;
    background: linear-gradient(135deg, var(--teal) 0%, var(--teal-mint) 100%);
    color: var(--white); font-weight: 600;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 0.85rem;
}
.review__author { line-height: 1.3; flex: 1; }
.review__name { font-size: 0.82rem; font-weight: 600; color: var(--navy); }
.review__meta { font-size: 0.68rem; color: var(--slate); }
.review__stars { color: var(--teal); font-size: 0.72rem; letter-spacing: 1px; }
.review__quote {
    font-family: Georgia, 'Times New Roman', serif;
    font-style: italic;
    font-size: 0.92rem;
    color: var(--ink);
    line-height: 1.6;
}
.review__via {
    display: inline-flex; align-items: center; gap: 0.3rem;
    margin-top: 0.7rem;
    font-size: 0.65rem;
    color: var(--slate);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 500;
}
.review__via i { color: var(--teal-mint); font-size: 0.85em; }

/* ─────────── Experience tab (Surfing / Activities / Accommodation / Catering / About) ─────────── */
.exp { display: flex; flex-direction: column; gap: 1rem; }
.exp__head { display: flex; align-items: center; gap: 0.85rem; }
.exp__icon {
    width: 44px; height: 44px;
    border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
}
.exp__icon--cyan   { background: #ecfeff; color: var(--teal); }
.exp__icon--orange { background: #fff7ed; color: #c2410c; }
.exp__icon--purple { background: #faf5ff; color: #7e22ce; }
.exp__icon--green  { background: #ecfdf5; color: #047857; }
.exp__title { font-size: 1.25rem; font-weight: 700; color: var(--navy); letter-spacing: -0.01em; }
.exp__title-sm { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 0.75rem; }
.exp__body { font-size: 0.92rem; color: var(--slate); line-height: 1.6; }
.exp__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.55rem; }
.exp__list li { display: flex; align-items: flex-start; gap: 0.65rem; font-size: 0.9rem; color: var(--slate); }
.exp__list li i { color: var(--teal); margin-top: 0.3rem; flex-shrink: 0; font-size: 0.78rem; }
.exp__feat-grid {
    display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem 1.25rem;
    margin-top: 0.25rem;
}
.exp__feat { display: inline-flex; align-items: center; gap: 0.55rem; font-size: 0.86rem; color: var(--slate); font-weight: 500; }
.exp__food {
    background: var(--line-faint);
    border-radius: 16px;
    padding: 1rem 1rem 1.25rem;
    border: 1px solid var(--line-faint);
}
.exp__food-tabs {
    display: flex; justify-content: center; gap: 0.5rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--line);
}
.exp__food-tab {
    padding: 0.6rem 1.2rem;
    background: none; border: 0; border-bottom: 2px solid transparent;
    font-size: 0.82rem; font-weight: 600;
    color: var(--slate-light); cursor: pointer;
    transition: color 0.25s, border-color 0.25s;
    font-family: inherit;
}
.exp__food-tab.is-active { color: var(--navy); border-bottom-color: var(--teal); }
.exp__food-tab:hover:not(.is-active) { color: var(--slate); }
.exp--about { background: var(--line-faint); border: 1px solid var(--line); border-radius: 16px; padding: 1.25rem 1.5rem 1.5rem; }
.exp__about-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 0.65rem 1.5rem; }
.exp__about-row {
    display: flex; align-items: center; justify-content: space-between;
    gap: 0.75rem;
    padding-bottom: 0.55rem;
    border-bottom: 1px solid var(--line);
    font-size: 0.85rem;
}
.exp__about-row span { color: var(--slate); }
.exp__about-row b { color: var(--navy); }
.exp__about-row--full { grid-column: span 2; border-bottom: 0; padding-bottom: 0; }
@media (max-width: 640px) {
    .exp__feat-grid, .exp__about-grid { grid-template-columns: 1fr; }
    .exp__about-row--full { grid-column: span 1; }
}

/* Mosaic — 1 big square (lead) + 4 small */
.exp-mosaic {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 110px;
    gap: 0.5rem;
}
.exp-mosaic__cell { position: relative; overflow: hidden; border-radius: 12px; background: var(--line); }
.exp-mosaic__cell img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s; }
.exp-mosaic__cell:hover img { transform: scale(1.05); }
.exp-mosaic__cell--lead { grid-column: span 2; grid-row: span 2; }
@media (max-width: 700px) {
    /* Clean 2-col layout on mobile: lead spans full width + 16/9 ratio,
       small cells in a 2-col grid below at 4:3. No row-height fight. */
    .exp-mosaic {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: auto;
        gap: 0.55rem;
    }
    .exp-mosaic__cell {
        aspect-ratio: 4 / 3;
        grid-column: span 1;
        grid-row: auto;
    }
    .exp-mosaic__cell--lead {
        grid-column: span 2;
        grid-row: auto;
        aspect-ratio: 16 / 10;
    }
}

/* ─────────── FAQ tab ─────────── */
.pkg-faq { display: flex; flex-direction: column; gap: 0.65rem; }
.pkg-faq__item {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    overflow: hidden;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.pkg-faq__item[open] { border-color: var(--teal); box-shadow: 0 14px 32px -18px rgba(0,147,165,0.3); }
.pkg-faq__summary {
    display: flex; align-items: center; gap: 1rem;
    padding: 1rem 1.25rem;
    cursor: pointer;
    list-style: none;
}
.pkg-faq__summary::-webkit-details-marker { display: none; }
.pkg-faq__num {
    flex-shrink: 0;
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--line-faint);
    color: var(--slate-light);
    display: inline-flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 0.7rem; letter-spacing: 0.05em;
    transition: background 0.3s, color 0.3s;
}
.pkg-faq__item[open] .pkg-faq__num { background: var(--teal); color: #fff; }
.pkg-faq__q { flex: 1; font-size: 0.92rem; font-weight: 600; color: var(--navy); }
.pkg-faq__chev {
    flex-shrink: 0;
    width: 32px; height: 32px;
    border-radius: 50%;
    background: var(--line-faint);
    color: var(--slate);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 0.8rem;
    transition: transform 0.3s, background 0.3s, color 0.3s;
}
.pkg-faq__item[open] .pkg-faq__chev { background: var(--teal); color: #fff; transform: rotate(135deg); }
.pkg-faq__body {
    padding: 0 1.25rem 1.25rem 4rem;
    color: var(--slate);
    font-size: 0.88rem;
    line-height: 1.6;
}
@media (max-width: 540px) {
    .pkg-faq__body { padding-left: 1.25rem; }
}

/* ─────────── Gallery (Experience tab) ─────────── */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
    border-radius: var(--radius);
    overflow: hidden;
}
.gallery-grid__item {
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--line);
    cursor: pointer;
}
.gallery-grid__item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
}
.gallery-grid__item:hover img { transform: scale(1.05); }
.gallery-grid__item:first-child { grid-column: span 2; grid-row: span 2; aspect-ratio: 1; }
@media (max-width: 600px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid__item:first-child { grid-column: span 2; grid-row: span 1; aspect-ratio: 16/9; }
}

/* ─────────── FAQ ─────────── */
.faq details {
    border-bottom: 1px solid var(--line);
    padding: 0;
}
.faq details:first-of-type { border-top: 1px solid var(--line); }
.faq summary {
    list-style: none;
    cursor: pointer;
    padding: 1.1rem 2.5rem 1.1rem 0;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--navy);
    position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
    content: '';
    position: absolute;
    right: 4px; top: 50%;
    transform: translateY(-50%) rotate(0);
    width: 10px; height: 10px;
    border-right: 1.5px solid var(--slate);
    border-bottom: 1.5px solid var(--slate);
    transform-origin: center;
    transform: translateY(-70%) rotate(45deg);
    transition: transform 0.3s ease;
}
.faq details[open] summary::after {
    transform: translateY(-30%) rotate(-135deg);
    border-color: var(--teal);
}
.faq summary:hover { color: var(--teal); }
.faq__body {
    font-size: 0.88rem;
    color: var(--slate);
    padding: 0 1.5rem 1.2rem 0;
    line-height: 1.7;
}

/* ─────────── Map ─────────── */
.map {
    height: 280px;
    border-radius: var(--radius);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
    background: #ecfeff;
}
.map__frame { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.map__caption {
    position: absolute;
    bottom: 14px; left: 14px;
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 7px 14px;
    background: var(--white);
    border-radius: var(--radius-pill);
    font-size: 0.74rem;
    font-weight: 600;
    color: var(--navy);
    box-shadow: var(--shadow-soft);
    text-decoration: none;
    transition: transform 0.25s, box-shadow 0.25s;
    z-index: 2;
}
.map__caption:hover { transform: translateY(-2px); box-shadow: var(--shadow-elevated); color: var(--teal); }
.map__caption i { color: var(--teal); }

/* ─────────── Booking sidebar (minimal) ─────────── */
.book {
    position: sticky;
    top: 96px;
    align-self: start;
}
.book__card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-soft);
}
.book__price-block {
    margin-bottom: 1.3rem;
}

/* Empty state — shown until both check-in + check-out are picked */
.book__price-empty {
    margin-bottom: 1.3rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    padding: 1rem 1rem 1.05rem;
    background: linear-gradient(180deg, rgba(0,147,165,0.05), rgba(0,147,165,0.02));
    border: 1px dashed rgba(0,147,165,0.25);
    border-radius: 14px;
}
.book__price-empty-eyebrow {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -0.01em;
}
.book__price-empty-hint {
    font-size: 0.8rem;
    color: var(--slate);
    line-height: 1.4;
}

/* Toggle visibility based on data-pricing-state */
.book__card[data-pricing-state="empty"] .book__price-block,
.book__card[data-pricing-state="empty"] #bookTotalRow {
    display: none;
}
.book__card[data-pricing-state="priced"] .book__price-empty {
    display: none;
}

.book__price-amount {
    font-size: 2rem;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.025em;
    line-height: 1;
}
.book__price-was {
    display: inline-block;
    margin-left: 0.5rem;
    color: var(--slate-light);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: line-through;
    vertical-align: middle;
}
.book__price-was[hidden] { display: none !important; }
.book__price-save {
    display: inline-block;
    margin-top: 0.4rem;
    padding: 2px 8px;
    background: linear-gradient(180deg, rgba(16,185,129,0.12), rgba(16,185,129,0.05));
    border: 1px solid rgba(16,185,129,0.35);
    color: #047857;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 9999px;
}
.book__price-save[hidden] { display: none !important; }
.book__price-tag {
    display: block;
    margin-top: 0.4rem;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--slate);
}

.book__field {
    display: flex; align-items: center; justify-content: space-between;
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--line);
    gap: 0.5rem;
}
.book__field:last-of-type { border-bottom: none; padding-bottom: 0.4rem; }
.book__field-label {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--slate);
}
.book__field-value {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--navy);
    display: inline-flex; align-items: center; gap: 0.5rem;
}
.book__field-value i { color: var(--slate-light); font-size: 0.78em; transition: transform 0.25s; }
.book__field:hover .book__field-value i { transform: translateY(2px); color: var(--teal); }

.book__stepper { display: inline-flex; align-items: center; gap: 0.55rem; }
.book__stepper button {
    width: 24px; height: 24px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: var(--white);
    color: var(--navy);
    font-size: 0.85rem;
    line-height: 1;
    transition: all 0.2s;
}
.book__stepper button:hover:not(:disabled) { border-color: var(--teal); color: var(--teal); }
.book__stepper button:disabled { opacity: 0.4; cursor: not-allowed; }
.book__stepper-val { font-weight: 600; min-width: 14px; text-align: center; font-size: 0.88rem; }

/* ─────────── Airbnb-style mini calendar ─────────── */
.book__date-trigger {
    width: 100%;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0.85rem 1rem;
    background: #fff;
    border: 1.5px solid var(--line);
    border-radius: 14px;
    cursor: pointer;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
}
.book__date-trigger:hover { border-color: var(--slate-light); }
.book__date-trigger[aria-expanded="true"] {
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(0,147,165,0.10);
}
.book__date-row {
    display: flex; align-items: center; gap: 0.6rem;
    flex: 1; min-width: 0;
}
.book__date-cell {
    display: flex; flex-direction: column;
    min-width: 0; flex: 1;
}
.book__date-label {
    font-size: 0.62rem; font-weight: 700;
    letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--slate-light);
    margin-bottom: 2px;
}
.book__date-value {
    font-size: 0.92rem; font-weight: 600;
    color: var(--navy);
    line-height: 1.2;
}
.book__date-value.is-empty { color: var(--slate-light); font-weight: 500; }
.book__date-arrow {
    flex-shrink: 0;
    width: 1.4rem; height: 1.4rem;
    border-radius: 50%;
    background: rgba(0,147,165,0.10);
    color: var(--teal);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 0.65rem;
}
.book__date-clear {
    width: 1.5rem; height: 1.5rem; border-radius: 50%;
    background: transparent; border: 0;
    color: var(--slate);
    cursor: pointer;
    display: inline-flex; align-items: center; justify-content: center;
    margin-left: 0.4rem;
    transition: background 0.2s ease;
}
.book__date-clear:hover { background: var(--line-soft); color: var(--navy); }

.book__cal {
    margin-top: 0.7rem;
    padding: 1rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: 0 18px 40px -20px rgba(15, 23, 42, 0.18);
}
.book__cal-head {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 0.6rem;
}
.book__cal-nav {
    width: 2rem; height: 2rem; border-radius: 50%;
    background: transparent; border: 1px solid var(--line);
    color: var(--navy);
    cursor: pointer;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 0.7rem;
    transition: background 0.25s ease, border-color 0.25s ease;
}
.book__cal-nav:hover { background: var(--line-soft); border-color: var(--slate-light); }
.book__cal-nav:disabled { opacity: 0.35; cursor: not-allowed; }
.book__cal-month-label {
    font-size: 0.78rem; font-weight: 700;
    color: var(--navy); letter-spacing: 0.04em;
}
.book__cal-months {
    display: flex; flex-direction: column;
    gap: 0.4rem;
}
.book__cal-month {
    /* One month visible in 360px sidebar; user navs forward/back via arrows */
}
.book__cal-month-title {
    text-align: center;
    font-size: 0.78rem; font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.6rem;
    letter-spacing: 0.02em;
}
.book__cal-dow {
    display: grid; grid-template-columns: repeat(7, 1fr);
    margin-bottom: 0.3rem;
}
.book__cal-dow span {
    font-size: 0.62rem; font-weight: 700;
    text-align: center;
    color: var(--slate-light);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.book__cal-grid {
    display: grid; grid-template-columns: repeat(7, 1fr);
    gap: 2px;
}
.book__cal-day {
    aspect-ratio: 1;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 0.82rem; font-weight: 600;
    color: var(--ink);
    background: transparent;
    border: 0;
    border-radius: 9px;
    cursor: pointer;
    user-select: none;
    transition: background 0.18s ease, color 0.18s ease;
    position: relative;
}
.book__cal-day.is-empty {
    pointer-events: none;
    visibility: hidden;
}
.book__cal-day.is-past {
    color: var(--line);
    text-decoration: line-through;
    cursor: not-allowed;
    pointer-events: none;
}
.book__cal-day:not(.is-past):not(.is-empty):hover {
    background: var(--line-soft);
}
.book__cal-day.is-in-range {
    background: rgba(0, 147, 165, 0.08);
    color: var(--teal);
    border-radius: 0;
}
.book__cal-day.is-start { border-radius: 9px 0 0 9px; }
.book__cal-day.is-end   { border-radius: 0 9px 9px 0; }
.book__cal-day.is-start.is-end { border-radius: 9px; }
.book__cal-day.is-selected {
    background: var(--navy);
    color: #fff;
    font-weight: 700;
}
.book__cal-day--err {
    animation: bookCalErr 0.4s ease-out;
    background: #fef2f2 !important;
    color: #dc2626 !important;
}
@keyframes bookCalErr {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-4px); }
    75% { transform: translateX(4px); }
}
.book__cal-hint--warn { color: #dc2626 !important; font-weight: 600; }
.book__cal-footer {
    display: flex; align-items: center; justify-content: space-between;
    margin-top: 0.7rem;
    padding-top: 0.7rem;
    border-top: 1px solid var(--line-soft);
}
.book__cal-hint {
    font-size: 0.72rem; color: var(--slate);
}
.book__cal-close {
    background: var(--navy); color: #fff;
    border: 0; border-radius: 9999px;
    padding: 0.45rem 0.95rem;
    font-size: 0.7rem; font-weight: 700;
    letter-spacing: 0.12em; text-transform: uppercase;
    cursor: pointer;
}
.book__cal-close:hover { background: var(--teal); }

.book__rooms {
    display: flex; gap: 5px;
    margin-top: 0.4rem;
    padding-top: 0.4rem;
}
.book__room {
    flex: 1;
    padding: 0.55rem 0.3rem 0.5rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    text-align: center;
    transition: all 0.25s;
    font-family: inherit;
}
.book__room:hover { border-color: var(--slate-light); }
.book__room.is-selected {
    border-color: var(--teal);
    background: var(--teal-soft);
}
.book__room-name {
    display: block;
    font-size: 0.72rem; font-weight: 600;
    color: var(--navy); margin-bottom: 0.1rem;
}
.book__room-price {
    display: block;
    font-size: 0.63rem; color: var(--slate); font-weight: 500;
}

.book__cta {
    width: 100%;
    margin-top: 1.4rem;
    padding: 0.95rem 1.2rem;
    background: var(--navy);
    color: var(--white);
    border: none;
    border-radius: var(--radius-pill);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    display: inline-flex; align-items: center; justify-content: space-between; gap: 0.5rem;
    transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow: 0 12px 26px -10px rgba(10, 31, 46, 0.55);
}
.book__cta:hover {
    background: var(--teal);
    transform: translateY(-2px);
    box-shadow: 0 18px 36px -14px rgba(0,147,165,0.55);
}
.book__cta-arrow {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: rgba(255,255,255,0.18);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 0.7rem;
    transition: transform 0.4s;
}
.book__cta:hover .book__cta-arrow { transform: rotate(-12deg); }

.book__total {
    margin-top: 1.2rem;
    display: flex; justify-content: space-between; align-items: baseline;
    font-size: 0.82rem;
    color: var(--slate);
}
.book__total b { color: var(--navy); font-weight: 700; font-size: 0.95rem; }
.book__total .book__total-pay { color: var(--teal); font-weight: 500; }

.book__trust {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--line);
    display: flex; flex-direction: column; gap: 0.45rem;
}
.book__trust-item {
    display: inline-flex; align-items: center; gap: 0.55rem;
    font-size: 0.75rem;
    color: var(--slate);
    line-height: 1.3;
}
.book__trust-item i { color: var(--teal); font-size: 0.9em; flex-shrink: 0; }

.book__ask {
    margin-top: 0.8rem;
    text-align: center;
    font-size: 0.72rem;
    color: var(--slate);
}
.book__ask a {
    color: var(--teal);
    font-weight: 600;
    border-bottom: 1px solid currentColor;
    padding-bottom: 1px;
}
@media (max-width: 1023px) {
    .book { position: static; }
}

/* ─────────── Similar ─────────── */
.similar {
    background: linear-gradient(180deg, var(--bg) 0%, #f0f9ff 100%);
    padding: 3.5rem 1.5rem 4.5rem;
    border-top: 1px solid var(--line);
}
.similar__inner { max-width: 1280px; margin: 0 auto; }
.similar__head {
    display: flex; justify-content: space-between; align-items: end;
    margin-bottom: 1.6rem; gap: 1rem; flex-wrap: wrap;
}
.similar__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -0.02em;
}
.similar__title em {
    font-family: 'Nothing You Could Do', cursive; text-transform: none;
    font-style: normal;
    color: var(--teal);
    font-weight: 400;
}
.similar__row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
}
.similar__card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}
.similar__card:hover { transform: translateY(-4px); box-shadow: var(--shadow-elevated); }
.similar__card-img { aspect-ratio: 4 / 3; overflow: hidden; }
.similar__card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s cubic-bezier(0.19, 1, 0.22, 1); }
.similar__card:hover .similar__card-img img { transform: scale(1.05); }
.similar__card-body { padding: 1rem 1.1rem 1.2rem; }
.similar__card-name { font-size: 0.95rem; font-weight: 600; color: var(--navy); margin-bottom: 0.25rem; }
.similar__card-price { font-size: 0.82rem; color: var(--slate); }
.similar__card-price b { color: var(--navy); font-weight: 700; }

/* ─────────── Mobile sticky CTA ─────────── */
.mcta {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 9990;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-top: 1px solid var(--line);
    padding: 0.85rem 1.25rem calc(0.85rem + env(safe-area-inset-bottom));
    display: flex; align-items: center; justify-content: space-between; gap: 0.8rem;
}
body { padding-bottom: calc(80px + env(safe-area-inset-bottom)); }
/* Lift the floating buttons above the sticky CTA on every screen size */
body #whatsapp-float, body #back-to-top {
    bottom: calc(80px + env(safe-area-inset-bottom)) !important;
    z-index: 9999;
}
.mcta__price b { font-size: 1.05rem; font-weight: 800; color: var(--navy); }
.mcta__price span { font-size: 0.68rem; color: var(--slate); display: block; line-height: 1.2; }
.mcta__cta {
    padding: 0.75rem 1.3rem;
    background: var(--navy);
    color: var(--white);
    border-radius: var(--radius-pill);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Empty-state placeholder shown until both dates are picked */
.mcta__price-empty { display: none; flex-direction: column; line-height: 1.2; }
.mcta__price-empty-from { font-size: 0.9rem; font-weight: 800; color: var(--navy); }
.mcta__price-empty-hint { font-size: 0.66rem; color: var(--slate); margin-top: 2px; }

.mcta[data-pricing-state="empty"] .mcta__price { display: none; }
.mcta[data-pricing-state="empty"] .mcta__price-empty { display: flex; }
/* Beefier CTA when dates aren't picked — the action is "tap me to open dates" */
.mcta[data-pricing-state="empty"] .mcta__cta {
    background: var(--teal);
    box-shadow: 0 4px 14px rgba(0,147,165,0.32);
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0s !important; transition: none !important; }
}
