/**
 * Hotel page v2 — Airbnb-inspired minimalist system.
 *
 * Standalone CSS. Zero dependency on hotel-single.css (v1).
 * Token-based, mobile-first, CSS-only motion.
 * Typography rules live in @layer utilities to match type-overrides.css
 * cascade layer — otherwise the site's global h1/h2/h3 !important rules
 * (declared inside utilities) beat our unlayered !important rules.
 *
 * @package PCA\Hotels_V2
 * @since 4.0.0
 */

@layer utilities {

/* ============================================================
   0. Local semantic tokens (scoped so they don't leak site-wide)
   ============================================================ */
.hv2 {
    /* Surfaces */
    --hv2-bg:         #ffffff;
    --hv2-ink:        #222222;
    --hv2-ink-soft:   #717171;
    --hv2-line:       #ebebeb;
    --hv2-line-strong: #dddddd;
    --hv2-surface:    #f7f7f7;

    /* Accents */
    --hv2-accent:     #ff6b35;  /* PCA signature orange, used sparingly */
    --hv2-accent-ink: #e25526;
    --hv2-trust:      #008489;  /* deep ocean teal — for proof signals only */

    /* Typography */
    --hv2-display:    "Plus Jakarta Sans", "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    --hv2-body:       "Inter", -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing (4px grid) */
    --hv2-s-1: 4px;
    --hv2-s-2: 8px;
    --hv2-s-3: 12px;
    --hv2-s-4: 16px;
    --hv2-s-5: 24px;
    --hv2-s-6: 32px;
    --hv2-s-7: 48px;
    --hv2-s-8: 64px;
    --hv2-s-9: 96px;
    --hv2-s-10: 128px;

    /* Radius */
    --hv2-r-sm:  8px;
    --hv2-r-md:  12px;
    --hv2-r-lg:  16px;
    --hv2-r-xl:  24px;
    --hv2-r-pill: 999px;

    /* Shadow (ambient + lift) */
    --hv2-sh-1: 0 1px 2px rgba(0, 0, 0, 0.04);
    --hv2-sh-2: 0 2px 6px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
    --hv2-sh-3: 0 4px 12px rgba(0, 0, 0, 0.08), 0 2px 4px rgba(0, 0, 0, 0.05);
    --hv2-sh-hover: 0 8px 24px rgba(0, 0, 0, 0.12);

    /* Container */
    --hv2-max: 1280px;
    --hv2-gutter-mobile: 24px;
    --hv2-gutter-desktop: 48px;

    /* Motion */
    --hv2-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ============================================================
   1. Base + reset for v2 scope
   (high-specificity resets to beat parent theme typography leaks)
   ============================================================ */
body.pca-hotel-v2 {
    background: var(--hv2-bg);
    color: var(--hv2-ink);
    font-family: var(--hv2-body);
    font-size: 16px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Nuke inherited Poppins from parent theme — anything inside .hv2 defaults to our body font */
body.pca-hotel-v2 .hv2,
body.pca-hotel-v2 .hv2 p,
body.pca-hotel-v2 .hv2 li,
body.pca-hotel-v2 .hv2 span,
body.pca-hotel-v2 .hv2 a,
body.pca-hotel-v2 .hv2 button,
body.pca-hotel-v2 .hv2 article,
body.pca-hotel-v2 .hv2 h1,
body.pca-hotel-v2 .hv2 h2,
body.pca-hotel-v2 .hv2 h3,
body.pca-hotel-v2 .hv2 h4 {
    font-family: var(--hv2-body);
}

/* Display elements (headings + headline-style copy) use Plus Jakarta Sans */
body.pca-hotel-v2 .hv2 .hv2-header__title,
body.pca-hotel-v2 .hv2 .hv2-answer__lede,
body.pca-hotel-v2 .hv2 .hv2-section-head__title,
body.pca-hotel-v2 .hv2 .hv2-faq__title,
body.pca-hotel-v2 .hv2 .hv2-faq__q,
body.pca-hotel-v2 .hv2 .hv2-pickup__title,
body.pca-hotel-v2 .hv2 .hv2-pickup__eyebrow,
body.pca-hotel-v2 .hv2 .hv2-card__title,
body.pca-hotel-v2 .hv2 .hv2-card__badge,
body.pca-hotel-v2 .hv2 .hv2-mosaic__caption,
body.pca-hotel-v2 .hv2 .hv2-stickybar__cta {
    font-family: var(--hv2-display);
}

.hv2,
.hv2 * {
    box-sizing: border-box;
}

.hv2 img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Card/mosaic images fill their absolutely-positioned container.
   Uses !important because parent theme's unlayered `img { height: auto }`
   beats our @layer utilities rule by CSS cascade layer precedence. */
img.hv2-card__img,
.hv2-mosaic__tile > img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center;
}

.hv2 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s var(--hv2-ease);
}

.hv2 button {
    font-family: inherit;
    cursor: pointer;
    border: 0;
    background: transparent;
    color: inherit;
}

.hv2 :focus-visible {
    outline: 2px solid var(--hv2-ink);
    outline-offset: 2px;
    border-radius: 6px;
}

/* ============================================================
   2. Container
   ============================================================ */
.hv2__container {
    max-width: var(--hv2-max);
    margin-inline: auto;
    padding-inline: var(--hv2-gutter-mobile);
}

@media (min-width: 768px) {
    .hv2__container {
        padding-inline: var(--hv2-gutter-desktop);
    }
}

/* ============================================================
   3. Breadcrumb — minimal editorial trail
   Scoped with body.pca-hotel-v2 + !important to beat Bootstrap link styles.
   ============================================================ */
body.pca-hotel-v2 .hv2 .hv2-crumb {
    padding-block: var(--hv2-s-4) var(--hv2-s-3);
}

body.pca-hotel-v2 .hv2 .hv2-crumb ol {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    align-items: center;
    gap: 0;
    min-height: 20px;
}

body.pca-hotel-v2 .hv2 .hv2-crumb ol::-webkit-scrollbar { display: none; }

body.pca-hotel-v2 .hv2 .hv2-crumb li {
    display: inline-flex;
    align-items: center;
    margin: 0 !important;
    padding: 0 !important;
    white-space: nowrap;
    font-size: 12px !important;
    line-height: 1.4 !important;
    color: var(--hv2-ink-soft) !important;
    font-weight: 400 !important;
    letter-spacing: 0 !important;
    font-family: var(--hv2-body);
}

/* Chevron separator ›  — thinner, more editorial than bullet dots */
body.pca-hotel-v2 .hv2 .hv2-crumb li + li::before {
    content: "/";
    display: inline-block;
    margin-inline: 8px;
    color: var(--hv2-line-strong);
    font-weight: 400;
    transform: none;
    background: transparent;
    width: auto;
    height: auto;
    border-radius: 0;
}

body.pca-hotel-v2 .hv2 .hv2-crumb a {
    color: var(--hv2-ink-soft) !important;
    text-decoration: none !important;
    transition: color 0.15s var(--hv2-ease);
    font-weight: 400 !important;
    font-size: 12px !important;
    font-family: var(--hv2-body) !important;
    padding: 2px 0 !important;
    background: transparent !important;
    border: 0 !important;
}

body.pca-hotel-v2 .hv2 .hv2-crumb a:hover,
body.pca-hotel-v2 .hv2 .hv2-crumb a:focus-visible {
    color: var(--hv2-ink) !important;
    text-decoration: underline !important;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    outline: none;
}

body.pca-hotel-v2 .hv2 .hv2-crumb li[aria-current="page"] {
    color: var(--hv2-ink) !important;
    font-weight: 500 !important;
}

/* Mobile: hide brand + "Excursions" levels to save horizontal room; truncate current */
@media (max-width: 640px) {
    body.pca-hotel-v2 .hv2 .hv2-crumb li:nth-child(1),
    body.pca-hotel-v2 .hv2 .hv2-crumb li:nth-child(2) {
        display: none;
    }
    /* After hiding first 2, the 3rd li's ::before separator isn't needed anymore */
    body.pca-hotel-v2 .hv2 .hv2-crumb li:nth-child(3)::before {
        display: none;
    }
    body.pca-hotel-v2 .hv2 .hv2-crumb li[aria-current="page"] {
        max-width: 70vw;
        overflow: hidden;
        text-overflow: ellipsis;
        display: inline-block;
    }
}

/* ============================================================
   4. Header (title + meta line, Airbnb-style)
   ============================================================ */
.hv2-header {
    padding-block: var(--hv2-s-4) var(--hv2-s-5);
}

body.pca-hotel-v2 .hv2 .hv2-header__title {
    font-size: clamp(30px, 5vw, 40px) !important;
    font-weight: 700 !important;
    line-height: 1.1 !important;
    letter-spacing: -0.02em;
    color: var(--hv2-ink);
    margin: 0 0 var(--hv2-s-2);
}

.hv2-header__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--hv2-s-2) var(--hv2-s-3);
    font-size: 14px;
    color: var(--hv2-ink);
}

.hv2-header__meta-item {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.hv2-header__meta-dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--hv2-ink-soft);
    opacity: 0.6;
}

.hv2-header__rating {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-weight: 600;
}

.hv2-header__rating::before {
    content: "★";
    color: var(--hv2-ink);
    font-size: 15px;
}

.hv2-header__rating-count {
    color: var(--hv2-ink-soft);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
    font-weight: 400;
}

.hv2-header__location {
    color: var(--hv2-ink-soft);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
}

/* ============================================================
   5. Photo mosaic (hero)
   ============================================================ */
.hv2-mosaic {
    position: relative;
    border-radius: var(--hv2-r-lg);
    overflow: hidden;
}

/* Mobile: 2-tile split (1 big + 1 small stacked) for photo density */
.hv2-mosaic__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 240px 140px;
    gap: 4px;
}

.hv2-mosaic__tile {
    position: relative;
    overflow: hidden;
    background: var(--hv2-surface);
}

.hv2-mosaic__tile:nth-child(1) {
    grid-column: 1 / -1;
}

.hv2-mosaic__tile img {
    position: absolute;
    inset: 0;
    transition: transform 0.5s var(--hv2-ease);
}

.hv2-mosaic__tile:hover img {
    transform: scale(1.04);
}

/* Hide tiles 4 & 5 on mobile (showing first 3 = 1 big + 2 split) */
.hv2-mosaic__tile:nth-child(n+4) { display: none; }

/* Tablet/Desktop: Airbnb 5-tile grid (1 big + 4 small) */
@media (min-width: 768px) {
    .hv2-mosaic__grid {
        grid-template-columns: 2fr 1fr 1fr;
        grid-template-rows: 1fr 1fr;
        gap: 8px;
        height: 440px;
    }
    .hv2-mosaic__tile:nth-child(1) {
        grid-row: span 2;
        grid-column: 1;
    }
    .hv2-mosaic__tile:nth-child(n+4) {
        display: block;
    }
    .hv2-mosaic__tile:nth-child(1) { border-top-left-radius: var(--hv2-r-lg); border-bottom-left-radius: var(--hv2-r-lg); }
    .hv2-mosaic__tile:nth-child(3) { border-top-right-radius: var(--hv2-r-lg); }
    .hv2-mosaic__tile:nth-child(5) { border-bottom-right-radius: var(--hv2-r-lg); }
}

/* Subtle bottom fade on the big tile so the caption pill reads well */
.hv2-mosaic__tile:nth-child(1)::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 40%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.35) 100%);
    pointer-events: none;
    z-index: 1;
}

.hv2-mosaic__caption {
    position: absolute;
    left: 20px;
    bottom: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.97);
    color: var(--hv2-ink);
    padding: 10px 16px;
    border-radius: var(--hv2-r-pill);
    font-size: 13px;
    font-weight: 600;
    box-shadow: var(--hv2-sh-3);
    z-index: 2;
    backdrop-filter: blur(8px);
    font-family: var(--hv2-display);
}

.hv2-mosaic__caption::before {
    content: "";
    display: inline-block;
    width: 14px;
    height: 14px;
    background: var(--hv2-accent);
    mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'><path d='M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z'/></svg>") center / contain no-repeat;
    -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'><path d='M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z'/></svg>") center / contain no-repeat;
}

/* ============================================================
   6. Answer strip — "N tours with pickup from X, from $Y"
   The direct answer to the search query.
   ============================================================ */
.hv2-answer {
    padding-block: var(--hv2-s-8);
    border-block-end: 1px solid var(--hv2-line);
}

.hv2-answer__row {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--hv2-s-6);
    align-items: start;
}

@media (min-width: 900px) {
    .hv2-answer__row {
        grid-template-columns: minmax(0, 1.6fr) minmax(280px, 1fr);
        gap: var(--hv2-s-7);
    }
}

body.pca-hotel-v2 .hv2 .hv2-answer__lede {
    font-size: clamp(24px, 3.2vw, 32px) !important;
    font-weight: 600 !important;
    line-height: 1.2 !important;
    letter-spacing: -0.02em;
    color: var(--hv2-ink);
    margin: 0;
    max-width: 24ch;
}

body.pca-hotel-v2 .hv2 .hv2-answer__sub {
    margin-top: var(--hv2-s-3);
    font-size: 15px !important;
    font-weight: 400 !important;
    line-height: 1.6 !important;
    color: var(--hv2-ink-soft);
    max-width: 60ch;
    letter-spacing: 0;
}

@media (min-width: 900px) {
    body.pca-hotel-v2 .hv2 .hv2-answer__lede { max-width: 20ch; }
}

.hv2-answer__lede strong {
    color: var(--hv2-accent-ink);
    font-weight: 600;
}

.hv2-answer__sub {
    margin-top: var(--hv2-s-3);
    font-size: 15px;
    color: var(--hv2-ink-soft);
    line-height: 1.6;
    max-width: 60ch;
}

.hv2-answer__facts {
    display: flex;
    flex-direction: column;
    gap: var(--hv2-s-4);
    list-style: none;
    margin: 0;
    padding: var(--hv2-s-5);
    background: var(--hv2-surface);
    border-radius: var(--hv2-r-lg);
    border: 1px solid var(--hv2-line);
    position: relative;
}

@media (min-width: 900px) {
    .hv2-answer__facts {
        position: sticky;
        top: var(--hv2-s-6);
    }
}

.hv2-answer__fact {
    display: flex;
    align-items: flex-start;
    gap: var(--hv2-s-3);
    font-size: 14px;
    color: var(--hv2-ink);
}

.hv2-answer__fact svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    padding: 4px;
    background: var(--hv2-trust);
    color: #fff;
    border-radius: 50%;
    margin-top: 2px;
    stroke-width: 3;
}

.hv2-answer__fact strong {
    font-weight: 600;
}

/* ============================================================
   6.5 Trust bar — answers "Is this operator reliable?" in 2 seconds
   Thin, quiet, above the grid. Not decorative — functional.
   ============================================================ */
.hv2-trustbar {
    padding-block: var(--hv2-s-5);
    border-block-end: 1px solid var(--hv2-line);
}

body.pca-hotel-v2 .hv2 .hv2-trustbar__list {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--hv2-s-3) var(--hv2-s-5);
    justify-items: start;
    align-items: center;
}

@media (min-width: 768px) {
    body.pca-hotel-v2 .hv2 .hv2-trustbar__list {
        grid-template-columns: repeat(4, auto);
        justify-items: start;
        justify-content: space-between;
        gap: var(--hv2-s-6);
    }
}

body.pca-hotel-v2 .hv2 .hv2-trustbar__item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px !important;
    font-weight: 400 !important;
    line-height: 1.3 !important;
    color: var(--hv2-ink);
    font-family: var(--hv2-body);
    margin: 0 !important;
    padding: 0 !important;
}

body.pca-hotel-v2 .hv2 .hv2-trustbar__item svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--hv2-trust);
    stroke-width: 2.1;
}

body.pca-hotel-v2 .hv2 .hv2-trustbar__item strong {
    font-weight: 600 !important;
    color: var(--hv2-ink);
}

/* Hero price meta */
body.pca-hotel-v2 .hv2 .hv2-header__meta-price strong {
    color: var(--hv2-ink);
    font-weight: 600 !important;
}

/* ============================================================
   7. Filter chips bar (horizontal scroll on mobile)
   ============================================================ */
.hv2-chips {
    padding-block: var(--hv2-s-5);
    border-block-end: 1px solid var(--hv2-line);
    position: sticky;
    top: 0;
    background: var(--hv2-bg);
    z-index: 10;
}

.hv2-chips__row {
    display: flex;
    gap: var(--hv2-s-3);
    overflow-x: auto;
    scrollbar-width: none;
    padding-bottom: 2px;
}

.hv2-chips__row::-webkit-scrollbar { display: none; }

.hv2-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    background: transparent;
    border: 1px solid var(--hv2-line-strong);
    border-radius: var(--hv2-r-pill);
    font-size: 13px;
    font-weight: 500;
    color: var(--hv2-ink);
    white-space: nowrap;
    cursor: pointer;
    transition: border-color 0.18s var(--hv2-ease), background 0.18s var(--hv2-ease);
}

.hv2-chip:hover,
.hv2-chip:focus-visible {
    border-color: var(--hv2-ink);
}

.hv2-chip[aria-pressed="true"] {
    background: var(--hv2-ink);
    color: var(--hv2-bg);
    border-color: var(--hv2-ink);
}

/* ============================================================
   8. Tour grid (Airbnb listing style — photo-first, minimal chrome)
   ============================================================ */
.hv2-grid-section {
    padding-block: var(--hv2-s-7);
}

.hv2-section-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: var(--hv2-s-4);
    margin-bottom: var(--hv2-s-5);
    flex-wrap: wrap;
}

body.pca-hotel-v2 .hv2 .hv2-section-head__title {
    font-size: clamp(22px, 2.8vw, 26px) !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    letter-spacing: -0.015em;
    color: var(--hv2-ink);
    margin: 0;
}

.hv2-section-head__link {
    font-size: 14px;
    color: var(--hv2-ink);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    font-weight: 500;
}

.hv2-section-head__link:hover {
    color: var(--hv2-accent-ink);
}

.hv2-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--hv2-s-5) var(--hv2-s-4);
}

@media (min-width: 560px) {
    .hv2-grid { grid-template-columns: 1fr 1fr; gap: var(--hv2-s-6) var(--hv2-s-4); }
}

@media (min-width: 880px) {
    .hv2-grid { grid-template-columns: 1fr 1fr 1fr; }
}

@media (min-width: 1140px) {
    .hv2-grid { grid-template-columns: 1fr 1fr 1fr 1fr; }
}

/* Tour card — Airbnb-like: photo, 3 lines of text, price bold, no chrome */
.hv2-card {
    display: flex;
    flex-direction: column;
    gap: var(--hv2-s-3);
    color: var(--hv2-ink);
    position: relative;
    transition: transform 0.2s var(--hv2-ease);
}

.hv2-card:hover {
    transform: translateY(-2px);
}

.hv2-card:hover .hv2-card__media {
    box-shadow: var(--hv2-sh-hover);
}

.hv2-card__media {
    transition: box-shadow 0.25s var(--hv2-ease);
}

.hv2-card__media {
    position: relative;
    aspect-ratio: 1 / 1;
    border-radius: var(--hv2-r-lg);
    overflow: hidden;
    background: var(--hv2-surface);
}

.hv2-card__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--hv2-ease);
}

.hv2-card:hover .hv2-card__img {
    transform: scale(1.035);
}

body.pca-hotel-v2 .hv2 .hv2-card__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    background: #fff;
    color: var(--hv2-ink);
    padding: 6px 12px;
    border-radius: var(--hv2-r-pill);
    font-size: 12px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    letter-spacing: -0.005em;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    pointer-events: none;
}

.hv2-card__body {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hv2-card__top {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: var(--hv2-s-3);
}

body.pca-hotel-v2 .hv2 .hv2-card__title {
    font-size: 15px !important;
    font-weight: 600 !important;
    line-height: 1.35 !important;
    letter-spacing: -0.005em;
    color: var(--hv2-ink);
    margin: 0 !important;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: calc(15px * 1.35 * 2);
}

body.pca-hotel-v2 .hv2 .hv2-card__rating {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-size: 13px !important;
    font-weight: 600 !important;
    color: var(--hv2-ink);
    flex-shrink: 0;
    letter-spacing: 0;
}

.hv2-card__rating::before {
    content: "★";
    font-size: 14px;
}

body.pca-hotel-v2 .hv2 .hv2-card__sub {
    font-size: 13px !important;
    font-weight: 500 !important;
    line-height: 1.4 !important;
    color: var(--hv2-ink-soft);
    letter-spacing: 0;
    margin: 0 !important;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.hv2-card__sub::before {
    content: "";
    width: 12px;
    height: 12px;
    background: currentColor;
    mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><circle cx='12' cy='12' r='10'/><polyline points='12 6 12 12 16 14'/></svg>") center / contain no-repeat;
    -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><circle cx='12' cy='12' r='10'/><polyline points='12 6 12 12 16 14'/></svg>") center / contain no-repeat;
    flex-shrink: 0;
    opacity: 0.7;
}

body.pca-hotel-v2 .hv2 .hv2-card__price {
    margin: 4px 0 0 !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    line-height: 1.4 !important;
    color: var(--hv2-ink);
    letter-spacing: 0;
}

body.pca-hotel-v2 .hv2 .hv2-card__price-num {
    font-size: 14px !important;
    font-weight: 700 !important;
    color: var(--hv2-ink);
}

body.pca-hotel-v2 .hv2 .hv2-card__price-suffix {
    font-size: 13px !important;
    font-weight: 400 !important;
    color: var(--hv2-ink-soft);
}

/* Full-card link overlay */
.hv2-card__link {
    position: absolute;
    inset: 0;
    z-index: 1;
    border-radius: var(--hv2-r-lg);
}

.hv2-card__link:focus-visible {
    outline: 2px solid var(--hv2-ink);
    outline-offset: 4px;
}

/* ============================================================
   8.5 Grid footer CTA ("Browse all excursions")
   Sits at the end of the tour grid. Visual bridge between
   curated grid and full catalog. Not an upsell — a reassurance.
   ============================================================ */
.hv2-grid-cta {
    margin-top: var(--hv2-s-7);
    padding: var(--hv2-s-6) var(--hv2-s-5);
    background: var(--hv2-surface);
    border-radius: var(--hv2-r-lg);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--hv2-s-4);
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .hv2-grid-cta {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: var(--hv2-s-6);
        padding: var(--hv2-s-7) var(--hv2-s-6);
    }
}

.hv2-grid-cta__body {
    flex: 1;
    min-width: 0;
}

body.pca-hotel-v2 .hv2 .hv2-grid-cta__eyebrow {
    font-size: 12px !important;
    font-weight: 600 !important;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--hv2-accent-ink);
    margin: 0 0 8px !important;
    font-family: var(--hv2-display);
}

body.pca-hotel-v2 .hv2 .hv2-grid-cta__title {
    font-family: var(--hv2-display) !important;
    font-size: clamp(20px, 2.4vw, 24px) !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    letter-spacing: -0.015em;
    color: var(--hv2-ink);
    margin: 0 0 6px !important;
}

body.pca-hotel-v2 .hv2 .hv2-grid-cta__desc {
    font-size: 14px !important;
    font-weight: 400 !important;
    line-height: 1.5 !important;
    color: var(--hv2-ink-soft);
    margin: 0 !important;
    max-width: 54ch;
}

.hv2-grid-cta__btn {
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    padding: 14px 22px !important;
    background: var(--hv2-ink);
    color: #fff !important;
    border-radius: var(--hv2-r-pill);
    font-family: var(--hv2-display);
    font-size: 15px !important;
    font-weight: 600 !important;
    line-height: 1 !important;
    text-decoration: none !important;
    white-space: nowrap;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.14);
    transition: transform 0.22s var(--hv2-ease), box-shadow 0.22s var(--hv2-ease), background 0.18s var(--hv2-ease);
    flex-shrink: 0;
}

.hv2-grid-cta__btn:hover,
.hv2-grid-cta__btn:focus-visible {
    background: var(--hv2-accent) !important;
    color: #fff !important;
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.28);
    text-decoration: none !important;
    outline: none;
}

.hv2-grid-cta__btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.22s var(--hv2-ease);
    flex-shrink: 0;
}

.hv2-grid-cta__btn:hover svg {
    transform: translateX(4px);
}

/* ============================================================
   9. Pickup card + map (2-col on desktop)
   ============================================================ */
.hv2-pickup-section {
    padding-block: var(--hv2-s-8);
    border-block-start: 1px solid var(--hv2-line);
}

.hv2-pickup {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--hv2-s-5);
    align-items: stretch;
}

@media (min-width: 900px) {
    .hv2-pickup { grid-template-columns: 1fr 1fr; gap: var(--hv2-s-6); }
}

.hv2-pickup__body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: var(--hv2-s-4);
}

.hv2-pickup__eyebrow {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--hv2-trust);
    margin: 0;
}

body.pca-hotel-v2 .hv2 .hv2-pickup__title {
    font-family: var(--hv2-display) !important;
    font-size: clamp(22px, 3vw, 28px) !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    letter-spacing: -0.015em;
    color: var(--hv2-ink);
    margin: 0;
}

.hv2-pickup__desc {
    font-size: 15px;
    color: var(--hv2-ink-soft);
    line-height: 1.6;
    margin: 0;
}

.hv2-pickup__steps {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: var(--hv2-s-3);
    counter-reset: pickup-step;
}

.hv2-pickup__step {
    counter-increment: pickup-step;
    display: flex;
    gap: var(--hv2-s-3);
    align-items: flex-start;
}

.hv2-pickup__step::before {
    content: counter(pickup-step);
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: var(--hv2-accent);
    color: #fff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 14px;
    font-weight: 700;
    font-family: var(--hv2-display);
    box-shadow: 0 2px 6px rgba(255, 107, 53, 0.3);
}

.hv2-pickup__step-body {
    flex: 1;
}

.hv2-pickup__step-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--hv2-ink);
    margin: 0 0 2px;
}

.hv2-pickup__step-text {
    font-size: 14px;
    color: var(--hv2-ink-soft);
    margin: 0;
    line-height: 1.5;
}

.hv2-pickup__map {
    position: relative;
    aspect-ratio: 16 / 10;
    border-radius: var(--hv2-r-lg);
    overflow: hidden;
    background: var(--hv2-surface);
    box-shadow: var(--hv2-sh-2);
}

.hv2-pickup__map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hv2-pickup__map-link {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: #fff;
    color: var(--hv2-ink);
    padding: 10px 16px;
    border-radius: var(--hv2-r-pill);
    font-size: 13px;
    font-weight: 600;
    box-shadow: var(--hv2-sh-2);
}

.hv2-pickup__map-link:hover {
    box-shadow: var(--hv2-sh-hover);
}

/* ============================================================
   10. FAQ (Airbnb-style: borderless, generous, divider lines)
   ============================================================ */
.hv2-faq {
    padding-block: var(--hv2-s-8);
    border-block-start: 1px solid var(--hv2-line);
}

body.pca-hotel-v2 .hv2 .hv2-faq__title {
    font-family: var(--hv2-display) !important;
    font-size: clamp(24px, 3vw, 28px) !important;
    font-weight: 700 !important;
    letter-spacing: -0.015em;
    margin: 0 0 var(--hv2-s-5);
    color: var(--hv2-ink);
}

.hv2-faq__list {
    display: grid;
    gap: 0;
    max-width: 820px;
}

.hv2-faq__item {
    border-block-start: 1px solid var(--hv2-line);
}

.hv2-faq__item:last-child {
    border-block-end: 1px solid var(--hv2-line);
}

body.pca-hotel-v2 .hv2 .hv2-faq__q {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--hv2-s-4);
    padding: var(--hv2-s-5) 0;
    font-family: var(--hv2-display) !important;
    font-size: 17px !important;
    font-weight: 600 !important;
    line-height: 1.35 !important;
    color: var(--hv2-ink);
    text-align: left;
    background: transparent;
    border: 0;
    cursor: pointer;
}

.hv2-faq__q svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform 0.28s var(--hv2-ease);
    color: var(--hv2-ink);
}

.hv2-faq__q[aria-expanded="true"] svg {
    transform: rotate(135deg);
}

.hv2-faq__a {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s var(--hv2-ease);
}

.hv2-faq__q[aria-expanded="true"] + .hv2-faq__a {
    max-height: 800px;
}

.hv2-faq__a-inner {
    padding-block: 0 var(--hv2-s-5);
    font-size: 15px;
    line-height: 1.6;
    color: var(--hv2-ink);
}

.hv2-faq__a-inner p { margin: 0 0 var(--hv2-s-3); }
.hv2-faq__a-inner p:last-child { margin-bottom: 0; }
.hv2-faq__a-inner ul {
    list-style: disc;
    padding-left: 20px;
    margin: var(--hv2-s-3) 0;
}
.hv2-faq__a-inner li { margin-bottom: 6px; }
.hv2-faq__a-inner strong { font-weight: 600; }

/* ============================================================
   11. Reviews strip (Airbnb review card — quote-led)
   ============================================================ */
.hv2-reviews {
    padding-block: var(--hv2-s-8);
    border-block-start: 1px solid var(--hv2-line);
}

.hv2-reviews__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--hv2-s-5) var(--hv2-s-6);
}

@media (min-width: 880px) {
    .hv2-reviews__grid { grid-template-columns: 1fr 1fr; }
}

.hv2-review {
    display: flex;
    flex-direction: column;
    gap: var(--hv2-s-3);
}

.hv2-review__stars {
    font-size: 14px;
    color: var(--hv2-ink);
    letter-spacing: 2px;
}

.hv2-review__body {
    font-size: 15px;
    line-height: 1.6;
    color: var(--hv2-ink);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hv2-review__meta {
    display: flex;
    align-items: center;
    gap: var(--hv2-s-3);
    font-size: 14px;
    color: var(--hv2-ink-soft);
}

.hv2-review__author {
    font-weight: 600;
    color: var(--hv2-ink);
}

/* ============================================================
   12. Related hotels rail
   ============================================================ */
.hv2-related {
    padding-block: var(--hv2-s-8);
    border-block-start: 1px solid var(--hv2-line);
}

.hv2-related__wrap {
    position: relative;
}

.hv2-related__rail {
    display: flex;
    gap: var(--hv2-s-3);
    overflow-x: auto;
    scrollbar-width: none;
    padding-bottom: 4px;
    scroll-snap-type: x proximity;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.hv2-related__rail::-webkit-scrollbar { display: none; }

/* Desktop scroll chevrons — hidden on mobile (touch users swipe) */
.hv2-related__nav {
    display: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--hv2-line-strong);
    color: var(--hv2-ink);
    cursor: pointer;
    z-index: 3;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.18s var(--hv2-ease), box-shadow 0.18s var(--hv2-ease), opacity 0.18s var(--hv2-ease);
    align-items: center;
    justify-content: center;
    padding: 0;
}

.hv2-related__nav svg {
    width: 18px;
    height: 18px;
}

.hv2-related__nav:hover {
    transform: translateY(-50%) scale(1.06);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.14);
}

.hv2-related__nav:active {
    transform: translateY(-50%) scale(0.98);
}

.hv2-related__nav[hidden] {
    display: none !important;
}

.hv2-related__nav--prev { left: -18px; }
.hv2-related__nav--next { right: -18px; }

/* Show chevrons only on desktop */
@media (min-width: 900px) {
    .hv2-related__nav { display: inline-flex; }

    /* Subtle edge fades so chips appear to "disappear" under the chevrons */
    .hv2-related__wrap::before,
    .hv2-related__wrap::after {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        width: 40px;
        pointer-events: none;
        z-index: 2;
        transition: opacity 0.25s var(--hv2-ease);
    }
    .hv2-related__wrap::before {
        left: 0;
        background: linear-gradient(to right, var(--hv2-bg) 0%, rgba(255, 255, 255, 0) 100%);
        opacity: 0;
    }
    .hv2-related__wrap::after {
        right: 0;
        background: linear-gradient(to left, var(--hv2-bg) 0%, rgba(255, 255, 255, 0) 100%);
        opacity: 1;
    }
    .hv2-related__wrap[data-at-start="false"]::before { opacity: 1; }
    .hv2-related__wrap[data-at-end="true"]::after { opacity: 0; }
}

body.pca-hotel-v2 .hv2 .hv2-related__chip {
    flex-shrink: 0;
    scroll-snap-align: start;
    display: inline-flex !important;
    align-items: center;
    padding: 10px 16px !important;
    background: var(--hv2-surface) !important;
    border: 1px solid var(--hv2-line) !important;
    border-radius: var(--hv2-r-pill) !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    line-height: 1.2 !important;
    color: var(--hv2-ink) !important;
    text-decoration: none !important;
    white-space: nowrap;
    transition: border-color 0.18s var(--hv2-ease), background 0.18s var(--hv2-ease), color 0.18s var(--hv2-ease);
}

body.pca-hotel-v2 .hv2 .hv2-related__chip:hover,
body.pca-hotel-v2 .hv2 .hv2-related__chip:focus-visible {
    border-color: var(--hv2-ink) !important;
    background: var(--hv2-bg) !important;
    color: var(--hv2-ink) !important;
    text-decoration: none !important;
}

/* Terminal chip: the "see all hotels" destination marker at the end of the rail.
   Visually distinct from regular chips — dark ink background, white text, arrow icon. */
body.pca-hotel-v2 .hv2 .hv2-related__chip--all {
    gap: 8px;
    padding-inline: 16px 18px !important;
    background: var(--hv2-ink) !important;
    border-color: var(--hv2-ink) !important;
    color: #fff !important;
    font-weight: 600 !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.14);
    transition: transform 0.22s var(--hv2-ease), box-shadow 0.22s var(--hv2-ease), background 0.18s var(--hv2-ease);
}

body.pca-hotel-v2 .hv2 .hv2-related__chip--all svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    transition: transform 0.22s var(--hv2-ease);
}

body.pca-hotel-v2 .hv2 .hv2-related__chip--all:hover,
body.pca-hotel-v2 .hv2 .hv2-related__chip--all:focus-visible {
    background: var(--hv2-accent) !important;
    border-color: var(--hv2-accent) !important;
    color: #fff !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(255, 107, 53, 0.28);
}

body.pca-hotel-v2 .hv2 .hv2-related__chip--all:hover svg {
    transform: translateX(3px);
}

/* ============================================================
   13. Footer strip + legal
   ============================================================ */
.hv2-foot {
    padding-block: var(--hv2-s-7) var(--hv2-s-5);
    border-block-start: 1px solid var(--hv2-line);
    margin-top: var(--hv2-s-6);
    font-size: 13px;
    color: var(--hv2-ink-soft);
}

/* ============================================================
   14. Sticky bottom CTA (mobile only)
   Appears after 40% scroll if no card clicked.
   Hooked by JS or CSS scroll anchor — for now, always visible on mobile.
   ============================================================ */
.hv2-stickybar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 12px 20px calc(12px + env(safe-area-inset-bottom));
    background: var(--hv2-bg);
    border-top: 1px solid var(--hv2-line);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--hv2-s-4);
    z-index: 50;
    transform: translateY(100%);
    transition: transform 0.3s var(--hv2-ease);
}

.hv2-stickybar.is-visible {
    transform: translateY(0);
}

@media (min-width: 768px) {
    .hv2-stickybar { display: none; }
}

.hv2-stickybar__label {
    font-size: 14px;
    font-weight: 500;
    color: var(--hv2-ink);
}

.hv2-stickybar__price {
    font-weight: 700;
}

.hv2-stickybar__cta {
    padding: 12px 18px;
    background: var(--hv2-ink);
    color: var(--hv2-bg);
    border-radius: var(--hv2-r-pill);
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

.hv2-stickybar__cta:hover {
    background: var(--hv2-accent-ink);
}

/* ============================================================
   15. Utility: visually hidden (a11y)
   ============================================================ */
.hv2-vh {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ============================================================
   16. Entrance motion (CSS-only)
   ============================================================ */
@keyframes hv2-fade-up {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hv2-anim {
    opacity: 0;
    animation: hv2-fade-up 0.5s var(--hv2-ease) forwards;
    animation-delay: var(--hv2-delay, 0s);
}

@media (prefers-reduced-motion: reduce) {
    .hv2-anim,
    .hv2-card__img,
    .hv2-mosaic__tile img {
        animation: none;
        transition: none;
        transform: none;
        opacity: 1;
    }
}

/* ============================================================
   17. Print (keep it simple — first 3 cards + contact)
   ============================================================ */
@media print {
    .hv2-stickybar,
    .hv2-chips,
    .hv2-related { display: none; }
    .hv2-grid > * + * + * + * { display: none; }
}


/* ============================================================
   18. Legal notice (injected via wp_footer) — tone it down for v2
   ============================================================ */
body.pca-hotel-v2 .pca-legal-notice {
    text-align: center;
    padding: 16px 20px 28px;
    margin: 0;
}

body.pca-hotel-v2 .pca-legal-notice small {
    font-size: 10px !important;
    line-height: 1.5;
    letter-spacing: 0.01em;
    color: #b8b8b8 !important;
    font-family: var(--hv2-body);
    font-weight: 400;
    opacity: 0.85;
}

} /* end @layer utilities */
