/* ============================================================
 * PACKAGES DETAIL — per-day package page (2026-05-24 design).
 *
 * Sections:
 *   1. Hero (full-bleed image, left-aligned text + 3 pills)
 *   2. Trip Facts strip (4 facts + price/CTA card)
 *   3. What's Included (6 bordered cards)
 *   4. Day-by-Day Itinerary (timeline with thumbnail + accordion)
 *   5. Recommended Vehicles (carousel of 4 fleet tiles)
 *   6. Optional Add-Ons (5 cards)
 *   7. Final CTA bar (gold-bordered, full-width)
 *
 * Dark/gold, Cormorant headings, Manrope body.
 * ============================================================ */

:root {
    --pkgd-bg:         #050505;
    --pkgd-bg-2:       #0C0C0C;
    --pkgd-bg-3:       #141414;
    --pkgd-border:     rgba(212, 175, 55, 0.22);
    --pkgd-border-soft:rgba(255, 255, 255, 0.06);
    --pkgd-gold:       #D4AF37;
    --pkgd-gold-soft:  #E5C866;
    --pkgd-text:       #F5F5F5;
    --pkgd-text-mut:   #A8A8A8;
}

.pkgd-shell { background: var(--pkgd-bg); color: var(--pkgd-text); }

/* Shared icon-opacity standard (per feedback_lucide_icon_opacity). */
.pkgd-shell picture.aat-icon img,
.pkgd-shell .aat-icon img,
.pkgd-shell svg.lucide { opacity: 0.55; }
.pkgd-shell .pkgd-btn svg.lucide,
.pkgd-shell .pkgd-btn picture.aat-icon img { opacity: 1; }
.pkgd-shell .aat-icon img[src*="/wifi-"] { opacity: 0.40; filter: brightness(0.9); }

/* Shared button styles (mirror hub for parity). */
.pkgd-btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 16px 30px; font-size: 12px; font-weight: 700;
    letter-spacing: 0.22em; text-transform: uppercase;
    border-radius: 4px; transition: all 0.25s ease; cursor: pointer;
    text-decoration: none;
}
.pkgd-btn svg { width: 14px; height: 14px; }
.pkgd-btn-primary {
    background: linear-gradient(135deg, #D4AF37 0%, #B8902A 100%);
    color: #0A0A0A; border: 1px solid #D4AF37;
}
.pkgd-btn-primary:hover { transform: translateY(-1px); box-shadow: 0 10px 30px rgba(212,175,55,0.35); }
.pkgd-btn-ghost {
    background: rgba(255,255,255,0.04);
    color: #fff; border: 1px solid rgba(255,255,255,0.30);
    backdrop-filter: blur(6px);
}
.pkgd-btn-ghost:hover { border-color: var(--pkgd-gold); color: var(--pkgd-gold); }

.pkgd-kicker {
    color: var(--pkgd-gold); font-size: 11px; font-weight: 800;
    letter-spacing: 0.32em; text-transform: uppercase;
    display: inline-block; margin-bottom: 14px;
}

/* ============================================================
 * 1. HERO
 * ============================================================ */
.pkgd-hero {
    position: relative;
    margin-top: -145px;
    aspect-ratio: 1672 / 820;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    overflow: hidden;
    isolation: isolate;
    background: #000;
}
.pkgd-hero-bg {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    display: block; z-index: 0;
}
.pkgd-hero-bg img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center top;
    display: block;
}
.pkgd-hero-inner {
    max-width: 1320px; width: 100%;
    margin: 0 auto;
    padding: 145px 24px 0;
    position: relative; z-index: 1;
    text-align: left;
}
.pkgd-hero-inner > * { max-width: 620px; }
.pkgd-hero-kicker {
    color: var(--pkgd-gold);
    font-size: 12px; font-weight: 800;
    letter-spacing: 0.32em; text-transform: uppercase;
    margin-bottom: 22px;
    text-shadow: 0 1px 4px rgba(0,0,0,0.9), 0 0 14px rgba(0,0,0,0.6);
}
.pkgd-hero-title {
    font-family: var(--font-heading, 'Cormorant Garamond', serif);
    font-weight: 500;
    font-size: clamp(40px, 5.4vw, 72px);
    line-height: 1.05;
    letter-spacing: -0.01em;
    color: #fff;
    margin: 0 0 22px;
    text-shadow:
        0 2px 4px rgba(0,0,0,0.95),
        0 4px 14px rgba(0,0,0,0.85),
        0 8px 32px rgba(0,0,0,0.7),
        0 0 50px rgba(0,0,0,0.55);
}
.pkgd-hero-lede {
    color: #F0F0F0;
    font-size: 15px; line-height: 1.65;
    max-width: 520px;
    margin: 0 0 24px;
    text-shadow:
        0 1px 2px rgba(0,0,0,0.95),
        0 2px 8px rgba(0,0,0,0.9),
        0 0 24px rgba(0,0,0,0.65);
}
.pkgd-hero-pills {
    display: flex; gap: 10px; flex-wrap: wrap;
}
.pkgd-pill {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(10,10,10,0.75);
    border: 1px solid var(--pkgd-border);
    padding: 8px 16px;
    border-radius: 999px;
    color: #F0F0F0;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.02em;
    backdrop-filter: blur(8px);
}
.pkgd-pill .pkgd-pill-icon {
    width: 16px; height: 16px;
    display: inline-flex; align-items: center; justify-content: center;
    color: var(--pkgd-gold);
}
.pkgd-pill .pkgd-pill-icon svg,
.pkgd-pill .pkgd-pill-icon img { width: 16px; height: 16px; }

/* ============================================================
 * 2. TRIP FACTS STRIP (sits half on hero)
 * ============================================================ */
.pkgd-trip-facts {
    position: relative; z-index: 3;
    max-width: 1280px;
    margin: -70px auto 0;
    padding: 24px 32px;
    background: var(--pkgd-bg-2);
    border: 1px solid var(--pkgd-border);
    border-radius: 8px;
    display: grid;
    grid-template-columns: repeat(4, 1fr) 1.2fr;
    gap: 8px;
    align-items: center;
    box-shadow: 0 22px 50px rgba(0,0,0,0.45);
}
.pkgd-fact {
    display: flex; align-items: center; gap: 14px;
    padding: 6px 18px;
    border-right: 1px solid var(--pkgd-border-soft);
}
.pkgd-fact-icon {
    flex: 0 0 36px;
    width: 36px; height: 36px;
    color: var(--pkgd-gold);
    display: flex; align-items: center; justify-content: center;
}
.pkgd-fact-icon svg,
.pkgd-fact-icon img { width: 26px; height: 26px; }
.pkgd-fact-label {
    color: var(--pkgd-gold);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-bottom: 2px;
}
.pkgd-fact-value {
    color: #F0F0F0;
    font-size: 13.5px;
    font-weight: 600;
    line-height: 1.3;
}
.pkgd-price-cell {
    padding: 4px 22px;
    text-align: left;
    border-left: 1px solid var(--pkgd-border);
}
.pkgd-price-label {
    color: var(--pkgd-gold);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-bottom: 2px;
}
.pkgd-price-value {
    color: #fff;
    font-family: var(--font-heading, 'Cormorant Garamond', serif);
    font-size: 24px;
    font-weight: 500;
    line-height: 1.1;
}
.pkgd-price-note {
    color: var(--pkgd-text-mut);
    font-size: 11px;
    margin-bottom: 10px;
}
.pkgd-price-cta {
    display: inline-flex; align-items: center; gap: 8px;
    background: linear-gradient(135deg, #D4AF37 0%, #B8902A 100%);
    color: #0A0A0A;
    padding: 10px 18px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    text-decoration: none;
}
.pkgd-price-cta:hover { transform: translateY(-1px); box-shadow: 0 8px 20px rgba(212,175,55,0.35); }

/* ============================================================
 * 3. WHAT'S INCLUDED (6 bordered cards)
 * ============================================================ */
.pkgd-included {
    padding: 80px 24px 60px;
    text-align: center;
}
.pkgd-included-head {
    text-align: center;
    margin-bottom: 40px;
}
.pkgd-section-title {
    font-family: var(--font-heading, 'Cormorant Garamond', serif);
    font-weight: 500;
    font-size: clamp(28px, 3.4vw, 42px);
    line-height: 1.15;
    color: #fff;
    margin: 0;
}
.pkgd-included-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}
.pkgd-included-card {
    background: var(--pkgd-bg-2);
    border: 1px solid var(--pkgd-border-soft);
    border-radius: 6px;
    padding: 28px 18px 24px;
    text-align: center;
    transition: border-color 0.25s ease, transform 0.25s ease;
}
.pkgd-included-card:hover {
    border-color: var(--pkgd-border);
    transform: translateY(-2px);
}
.pkgd-included-icon {
    width: 48px; height: 48px;
    margin: 0 auto 14px;
    color: var(--pkgd-gold);
    display: flex; align-items: center; justify-content: center;
}
.pkgd-included-icon svg,
.pkgd-included-icon img { width: 38px; height: 38px; }
.pkgd-included-title {
    color: #F5F5F5;
    font-size: 13.5px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 10px;
}
.pkgd-included-sub {
    color: var(--pkgd-text-mut);
    font-size: 12px;
    line-height: 1.55;
}

/* ============================================================
 * 4. DAY-BY-DAY ITINERARY (timeline)
 * ============================================================ */
.pkgd-days {
    padding: 40px 24px 80px;
}
.pkgd-days-head {
    text-align: center;
    margin-bottom: 40px;
}
.pkgd-days-list {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    padding-left: 28px;
}
/* Vertical timeline rail */
.pkgd-days-list::before {
    content: "";
    position: absolute;
    left: 14px; top: 12px; bottom: 12px;
    width: 1px;
    background: var(--pkgd-border);
}
.pkgd-day {
    position: relative;
    margin-bottom: 14px;
    background: var(--pkgd-bg-2);
    border: 1px solid var(--pkgd-border-soft);
    border-radius: 8px;
    overflow: hidden;
    transition: border-color 0.25s ease;
    /* <details> as block container; child rows handle their own layout. */
    display: block;
}
.pkgd-day:hover { border-color: var(--pkgd-border); }

/* <summary> as the visible day row — own grid, drops the native disclosure
   triangle, takes the full width of the parent <details>. */
.pkgd-day-row {
    display: grid;
    grid-template-columns: 96px 240px 1fr 44px;
    align-items: stretch;
    cursor: pointer;
    list-style: none;
}
.pkgd-day-row::-webkit-details-marker { display: none; }
.pkgd-day-row::marker { content: ""; display: none; }
/* Timeline dot */
.pkgd-day::before {
    content: "";
    position: absolute;
    left: -22px;
    top: 50%;
    width: 9px; height: 9px;
    border-radius: 50%;
    background: var(--pkgd-gold);
    transform: translate(-50%, -50%);
    box-shadow: 0 0 0 4px rgba(212,175,55,0.18);
}
.pkgd-day-num {
    background: rgba(0,0,0,0.25);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    padding: 18px 6px;
    border-right: 1px solid var(--pkgd-border-soft);
}
.pkgd-day-num-label {
    color: var(--pkgd-gold);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-bottom: 4px;
}
.pkgd-day-num-value {
    font-family: var(--font-heading, 'Cormorant Garamond', serif);
    color: var(--pkgd-gold);
    font-size: 36px;
    font-weight: 500;
    line-height: 1;
}
.pkgd-day-thumb {
    overflow: hidden;
    aspect-ratio: 240 / 110;
    background: #000;
}
.pkgd-day-thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}
.pkgd-day-body {
    padding: 18px 22px;
    display: flex; flex-direction: column;
    justify-content: center;
    min-width: 0;
}
.pkgd-day-title {
    color: #F5F5F5;
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 6px;
}
.pkgd-day-summary {
    color: var(--pkgd-text-mut);
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
}
.pkgd-day-chev {
    display: flex; align-items: center; justify-content: center;
    color: var(--pkgd-gold);
    padding: 0 8px;
}
.pkgd-day-chev svg { width: 18px; height: 18px; transition: transform 0.25s ease; }
.pkgd-day[open] .pkgd-day-chev svg { transform: rotate(180deg); }

/* Expanded details panel — mirrors the events-calendar expand pattern
   (.lec-event-expand / .lec-expand-inner) so the visual language stays
   consistent across the site. 3-col grid on desktop: image | body | CTA. */
.pkgd-day-expand {
    grid-column: 1 / -1;
    background: rgba(212, 175, 55, 0.04);
    border-top: 1px solid rgba(212, 175, 55, 0.14);
    display: none;
}
.pkgd-day[open] .pkgd-day-expand { display: block; }
.pkgd-day-expand-inner {
    padding: 26px 24px 30px;
}
.pkgd-day-expand-body { min-width: 0; }
.pkgd-day-expand-title {
    font-family: var(--font-heading, 'Cormorant Garamond', serif);
    font-size: 22px;
    font-weight: 500;
    color: #fff;
    margin: 0 0 10px;
}
.pkgd-day-expand-desc {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    line-height: 1.55;
    margin: 0 0 18px;
}
.pkgd-day-expand-sub-h {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--pkgd-gold);
    margin: 0 0 10px;
    display: inline-flex; align-items: center; gap: 6px;
}
.pkgd-day-expand-sub-ic svg { opacity: 1; }
.pkgd-day-landmarks {
    list-style: none; padding: 0; margin: 0;
    display: grid;
    gap: 18px;
}
.pkgd-day-landmark {
    border-left: 2px solid var(--pkgd-border);
    padding: 4px 0 4px 14px;
}
.pkgd-day-landmark-head {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
    flex-wrap: wrap;
}
.pkgd-day-landmark-ic {
    color: var(--pkgd-gold);
    display: inline-flex;
}
.pkgd-day-landmark-ic svg { opacity: 1; width: 14px; height: 14px; }
.pkgd-day-landmark-name {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
}
.pkgd-day-landmark-reach {
    color: var(--pkgd-gold);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.04em;
    background: rgba(212, 175, 55, 0.10);
    border: 1px solid var(--pkgd-border-soft);
    padding: 3px 8px;
    border-radius: 999px;
    margin-left: auto;
}
.pkgd-day-landmark-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    line-height: 1.6;
    margin: 0;
}
.pkgd-day-expand-cta { display: flex; flex-direction: column; gap: 12px; align-items: stretch; }
.pkgd-day-cta-primary {
    background: var(--pkgd-gold);
    color: #0a0a0a;
    border: 0;
    padding: 12px 18px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.pkgd-day-cta-primary svg { opacity: 1; }
.pkgd-day-cta-primary:hover { transform: translateY(-1px); box-shadow: 0 10px 24px rgba(212, 175, 55, 0.3); }
.pkgd-day-cta-arrow { display: inline-flex; }

/* ============================================================
 * 5. RECOMMENDED VEHICLES CAROUSEL
 * ============================================================ */
.pkgd-vehicles {
    padding: 40px 24px 80px;
    background: var(--pkgd-bg-2);
}
.pkgd-vehicles-head { text-align: center; margin-bottom: 36px; }
.pkgd-vehicles-shell {
    max-width: 1320px;
    margin: 0 auto;
    position: relative;
}
.pkgd-vehicles-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.pkgd-vehicle {
    background: var(--pkgd-bg-3);
    border: 1px solid var(--pkgd-border-soft);
    border-radius: 8px;
    padding: 20px 18px 22px;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.25s ease, transform 0.25s ease;
    position: relative;
}
.pkgd-vehicle:hover {
    border-color: var(--pkgd-border);
    transform: translateY(-2px);
}
.pkgd-vehicle.is-popular { border-color: var(--pkgd-border); }
.pkgd-vehicle-flag {
    position: absolute;
    top: -10px; left: 18px;
    background: linear-gradient(135deg, #D4AF37 0%, #B8902A 100%);
    color: #0A0A0A;
    font-size: 9px; font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: 3px;
}
.pkgd-vehicle-img {
    aspect-ratio: 16 / 9;
    margin: 8px 0 14px;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}
.pkgd-vehicle-img img {
    max-width: 100%; max-height: 100%;
    object-fit: contain;
}
.pkgd-vehicle-name {
    text-align: center;
    color: #F5F5F5;
    font-size: 14px;
    font-weight: 700;
    margin: 0 0 12px;
}
.pkgd-vehicle-amenities {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--pkgd-border-soft);
    padding-top: 12px;
    gap: 10px;
}
.pkgd-vehicle-amenity {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--pkgd-text-mut);
    font-size: 11px;
}
.pkgd-vehicle-amenity svg,
.pkgd-vehicle-amenity img { width: 14px; height: 14px; color: var(--pkgd-gold); }
.pkgd-vehicle-price {
    color: var(--pkgd-gold);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
}

/* Carousel arrows */
.pkgd-vehicles-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(10,10,10,0.8);
    border: 1px solid var(--pkgd-border);
    color: var(--pkgd-gold);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    z-index: 2;
}
.pkgd-vehicles-arrow.is-prev { left: -50px; }
.pkgd-vehicles-arrow.is-next { right: -50px; }
.pkgd-vehicles-arrow svg { width: 16px; height: 16px; }

/* ============================================================
 * 6. OPTIONAL ADD-ONS (5 cards)
 * ============================================================ */
.pkgd-addons {
    padding: 40px 24px 80px;
}
.pkgd-addons-head { text-align: center; margin-bottom: 36px; }
.pkgd-addons-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}
.pkgd-addon {
    background: var(--pkgd-bg-2);
    border: 1px solid var(--pkgd-border-soft);
    border-radius: 6px;
    padding: 18px 16px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    text-align: left;
    transition: border-color 0.25s ease;
}
.pkgd-addon:hover { border-color: var(--pkgd-border); }
.pkgd-addon-icon {
    flex: 0 0 32px;
    width: 32px; height: 32px;
    color: var(--pkgd-gold);
    display: flex; align-items: center; justify-content: center;
}
.pkgd-addon-icon svg,
.pkgd-addon-icon img { width: 24px; height: 24px; }
.pkgd-addon-label {
    color: #F0F0F0;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 4px;
}
.pkgd-addon-sub {
    color: var(--pkgd-text-mut);
    font-size: 11.5px;
    line-height: 1.45;
}

/* ============================================================
 * 7. FINAL CTA BAR
 * ============================================================ */
.pkgd-final {
    padding: 40px 24px 80px;
}
.pkgd-final-bar {
    max-width: 1280px;
    margin: 0 auto;
    background: var(--pkgd-bg-2);
    border: 1px solid var(--pkgd-gold);
    border-radius: 8px;
    padding: 32px 36px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 36px;
    align-items: center;
}
.pkgd-final-phone-ico {
    width: 56px; height: 56px;
    border-radius: 50%;
    border: 1.5px solid var(--pkgd-gold);
    color: var(--pkgd-gold);
    display: flex; align-items: center; justify-content: center;
}
.pkgd-final-phone-ico svg,
.pkgd-final-phone-ico img { width: 28px; height: 28px; }
.pkgd-final-copy h3 {
    font-family: var(--font-heading, 'Cormorant Garamond', serif);
    font-weight: 500;
    font-size: 22px;
    line-height: 1.2;
    color: #fff;
    margin: 0 0 6px;
}
.pkgd-final-copy p {
    color: var(--pkgd-text-mut);
    font-size: 13px;
    margin: 0;
}
.pkgd-final-bullets {
    list-style: none; padding: 0; margin: 12px 0 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 24px;
}
.pkgd-final-bullets li {
    display: flex; align-items: center; gap: 8px;
    color: #D8D8D8;
    font-size: 12.5px;
}
.pkgd-final-bullets svg {
    width: 14px; height: 14px;
    color: var(--pkgd-gold);
}
.pkgd-final-ctas {
    display: flex; flex-direction: column; gap: 12px;
    align-items: stretch;
    min-width: 240px;
}
.pkgd-final-ctas .pkgd-btn { justify-content: center; }

/* ============================================================
 * RESPONSIVE
 * ============================================================ */
@media (max-width: 1100px) {
    .pkgd-trip-facts {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .pkgd-fact { border-right: none; border-bottom: 1px solid var(--pkgd-border-soft); padding-bottom: 14px; }
    .pkgd-price-cell { grid-column: span 2; border-left: none; border-top: 1px solid var(--pkgd-border); padding-top: 16px; text-align: center; }
    .pkgd-included-grid { grid-template-columns: repeat(3, 1fr); }
    .pkgd-day { grid-template-columns: 80px 200px 1fr 110px 28px; }
    .pkgd-day-expand-inner { grid-template-columns: 1fr; }
    .pkgd-day-expand-cta { flex-direction: row; }
    .pkgd-vehicles-grid { grid-template-columns: repeat(2, 1fr); }
    .pkgd-vehicles-arrow { display: none; }
    .pkgd-addons-grid { grid-template-columns: repeat(2, 1fr); }
    .pkgd-final-bar { grid-template-columns: 1fr; text-align: center; }
    .pkgd-final-phone-ico { margin: 0 auto; }
    .pkgd-final-bullets { grid-template-columns: 1fr; justify-items: start; max-width: 320px; margin-left: auto; margin-right: auto; }
}
@media (max-width: 700px) {
    .pkgd-hero {
        aspect-ratio: 853 / 1200;
        min-height: 560px;
        justify-content: flex-start;
    }
    .pkgd-hero-bg img { content: url("/assets/img/custom/packages/v2/pkg-hero-v2-mobile.webp"); }
    .pkgd-hero-inner { padding: 220px 20px 40px; }
    .pkgd-hero-inner > * { max-width: 100%; }
    .pkgd-hero-title { font-size: clamp(34px, 10vw, 52px); }
    .pkgd-included-grid { grid-template-columns: repeat(2, 1fr); }

    /* Day row on mobile — stacked compact layout:
       Row A: [num | body | chev]
       Row B: [full-width thumbnail]
       Row C: [hours strip]                                            */
    .pkgd-day-row {
        grid-template-columns: 64px 1fr 36px;
        grid-template-areas:
            "num body chev"
            "thumb thumb thumb";
        align-items: stretch;
    }
    .pkgd-day-num { grid-area: num; padding: 14px 4px; }
    .pkgd-day-num-value { font-size: 28px; }
    .pkgd-day-thumb { grid-area: thumb; aspect-ratio: 16/9; border-top: 1px solid var(--pkgd-border-soft); }
    .pkgd-day-body { grid-area: body; padding: 14px 16px; }
    .pkgd-day-title { font-size: 14px; }
    .pkgd-day-summary { font-size: 12px; -webkit-line-clamp: 2; display: -webkit-box; -webkit-box-orient: vertical; overflow: hidden; }
    .pkgd-day-chev { grid-area: chev; }

    .pkgd-day-landmarks { grid-template-columns: 1fr; }
    .pkgd-day-expand-inner { grid-template-columns: 1fr; padding: 18px; gap: 18px; }
    .pkgd-day-expand-cta { flex-direction: column; }

    /* Vehicles 2×2 on mobile (owner directive). */
    .pkgd-vehicles-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .pkgd-vehicle { padding: 14px 12px 16px; }
    .pkgd-vehicle-name { font-size: 12.5px; }
    .pkgd-vehicle-amenities { gap: 6px; flex-wrap: wrap; }
    .pkgd-vehicle-amenity { font-size: 10.5px; }

    /* Add-ons 2×n on mobile (more scannable than full-width single column). */
    .pkgd-addons-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .pkgd-addon { padding: 14px 12px; gap: 10px; }
    .pkgd-addon-icon { flex: 0 0 26px; width: 26px; height: 26px; }
    .pkgd-addon-icon svg, .pkgd-addon-icon img { width: 20px; height: 20px; }
    .pkgd-addon-label { font-size: 12px; }
    .pkgd-addon-sub { font-size: 11px; }

    .pkgd-trip-facts { padding: 20px 18px; }
}
