/* ═══════════════════════════════════════════════════════════
   SKYRISE TOURS — Editorial / ad-style local tour page
   ═══════════════════════════════════════════════════════════ */

/* Story image grid */
.story-image-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 1rem;
    min-height: 360px;
}
.story-img {
    border-radius: var(--card-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.story-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease-out);
}
.story-img:hover img { transform: scale(1.03); }
.story-img--main {
    grid-row: 1 / 3;
    grid-column: 1 / 2;
}
.story-img--accent {
    grid-row: 2 / 3;
    grid-column: 2 / 3;
    transform: translateY(-1.5rem);
    border: 4px solid var(--bg);
}

@media (min-width: 992px) {
    .story-image-grid { min-height: 480px; }
    .story-img--accent { transform: translateY(-2.5rem); }
}

/* Culture image stack */
.culture-image-stack {
    position: relative;
    min-height: 360px;
}
.culture-img {
    border-radius: var(--card-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    position: absolute;
}
.culture-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.culture-img--front {
    width: 65%;
    height: 75%;
    top: 0;
    left: 0;
    z-index: 2;
}
.culture-img--back {
    width: 60%;
    height: 70%;
    bottom: 0;
    right: 0;
    z-index: 1;
    border: 4px solid var(--bg);
}

@media (min-width: 992px) {
    .culture-image-stack { min-height: 480px; }
    .culture-img--front { width: 60%; height: 80%; }
    .culture-img--back { width: 55%; height: 75%; }
}

.culture-fact {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: var(--card-radius);
    box-shadow: var(--shadow-sm);
}
.culture-fact__icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 124, 145, 0.10);
    color: var(--accent);
    flex-shrink: 0;
}

/* Curated experience frame */
.curated-image-frame {
    position: relative;
    border-radius: var(--card-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    min-height: 320px;
}
.curated-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 320px;
}
.curated-image-badge {
    position: absolute;
    bottom: 1.25rem;
    left: 1.25rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1rem;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--border-light);
    border-radius: 50rem;
    font-weight: 600;
    color: var(--text);
    box-shadow: var(--shadow-md);
}
.curated-checklist li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0;
    color: var(--text-secondary);
}

/* Venue cards */
.venue-card {
    position: relative;
    border-radius: var(--card-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.35s var(--ease-out), box-shadow 0.35s ease;
    height: 100%;
    min-height: 240px;
}
.venue-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.venue-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}
.venue-card__caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.25rem;
    background: linear-gradient(transparent, rgba(0, 20, 30, 0.82));
    color: #ffffff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
}
.venue-card__caption .letterspace {
    display: inline-block;
    letter-spacing: 0.08em;
    font-weight: 700;
    font-size: 0.8rem;
    background: rgba(0, 0, 0, 0.45);
    padding: 0.35rem 0.6rem;
    border-radius: 6px;
    text-shadow: none;
}
.venue-card__caption h3,
.venue-card__caption p {
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.45);
}
.venue-card--large { min-height: 420px; }
.venue-card--tall { min-height: 420px; }
.venue-card--small { min-height: 240px; }

@media (min-width: 992px) {
    .venue-card--large { min-height: 520px; }
    .venue-card--tall { min-height: 520px; }
}

.text-white-75 { color: rgba(255, 255, 255, 0.75) !important; }
.text-white-80 { color: rgba(255, 255, 255, 0.80) !important; }

/* ═══════════════════════════════════════════════════════════
   Pricing — launch & regular group rates
   ═══════════════════════════════════════════════════════════ */
.pricing-anchor {
    display: inline-block;
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    color: var(--accent-dark);
    background: rgba(0, 124, 145, 0.08);
    border: 1px dashed rgba(0, 124, 145, 0.40);
    border-radius: 50rem;
    padding: 0.55rem 1.5rem;
}

.pricing-card {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: var(--card-radius);
    box-shadow: var(--shadow-sm);
    padding: 1.75rem;
    height: 100%;
    transition: transform 0.35s var(--ease-out), box-shadow 0.35s ease, border-color 0.35s ease;
}
.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.pricing-card--highlight {
    border-color: rgba(0, 124, 145, 0.35);
    box-shadow: var(--shadow-md);
}
.pricing-card__head { margin-bottom: 1.25rem; }
.pricing-card__badge {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--accent);
    background: rgba(0, 124, 145, 0.08);
    border-radius: 50rem;
    padding: 0.3rem 0.8rem;
}
.pricing-rows {
    list-style: none;
    margin: 0;
    padding: 0;
}
.pricing-rows li {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem 0.25rem;
    border-bottom: 1px solid var(--border-light);
    color: var(--text-secondary);
    font-size: 1.05rem;
}
.pricing-rows li:last-child { border-bottom: 0; }
.pricing-rows__price {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text);
    font-variant-numeric: tabular-nums;
}
.pricing-card--highlight .pricing-rows__price { color: var(--accent-dark); }
.pricing-card__note {
    margin: 1.25rem 0 0;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ════════════════════════════════════════════════════════════
   What to Bring
   ════════════════════════════════════════════════════════════ */
.bring-item {
    text-align: center;
    padding: 1.5rem 1rem;
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: var(--card-radius);
    box-shadow: var(--shadow-sm);
    height: 100%;
    transition: transform 0.35s var(--ease-out), box-shadow 0.35s ease;
}
.bring-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.bring-item__icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 0.75rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 124, 145, 0.08);
    color: var(--accent);
    font-size: 1.35rem;
}
.bring-item__label {
    display: block;
    font-weight: 600;
    color: var(--text);
    font-size: 0.95rem;
    line-height: 1.3;
}

/* ════════════════════════════════════════════════════════════
   Community — supporting local businesses
   ════════════════════════════════════════════════════════════ */
.community-badge {
    width: 84px;
    height: 84px;
    margin: 0 auto 1.25rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(232, 122, 82, 0.12);
    color: var(--accent-coral);
    font-size: 2.1rem;
}
.community-point {
    padding: 0.55rem 1.1rem;
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 50rem;
    box-shadow: var(--shadow-sm);
    font-weight: 600;
    color: var(--text-secondary);
}


