/* ==========================================================================
   places.css  —  JungleNearMe /places.php
   Reference: Nat Hab "place" detail + Backroads region detail
   ========================================================================== */

/* Hero split ---------------------------------------------------------- */
.place-hero {
    padding: 32px 0 56px;
    background: var(--cream-deep);
}
.place-hero__grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    border-radius: 22px;
    overflow: hidden;
    background: var(--card-bg);
    box-shadow: 0 14px 36px rgba(30, 58, 43, 0.1);
    min-height: 500px;
}
.place-hero__media {
    position: relative;
    overflow: hidden;
    min-height: 420px;
}
.place-hero__media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.place-hero__body {
    padding: 56px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--card-bg);
}
.place-hero__eyebrow {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 15px;
    color: var(--marigold);
    display: block;
    margin-bottom: 8px;
}
.place-hero__h1 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(34px, 4.6vw, 58px);
    line-height: 1.05;
    color: var(--forest);
    margin: 0 0 8px;
    letter-spacing: -0.4px;
}
.place-hero__region {
    font-size: 15px;
    font-style: italic;
    color: var(--text-muted);
    margin: 0 0 18px;
}
.place-hero__region i { color: var(--marigold); margin-right: 5px; }
.place-hero__brief {
    font-size: 17px;
    line-height: 1.75;
    color: var(--text);
    margin: 0 0 22px;
}
.place-hero__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    padding: 18px 0 22px;
    border-top: 1px solid rgba(30, 58, 43, 0.1);
    border-bottom: 1px solid rgba(30, 58, 43, 0.1);
    margin-bottom: 22px;
}
.place-hero__stat { display: flex; flex-direction: column; }
.place-hero__stat strong {
    font-family: var(--font-display);
    font-size: 28px;
    color: var(--forest);
    line-height: 1;
    margin-bottom: 3px;
}
.place-hero__stat span {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.place-hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Editorial body ------------------------------------------------------ */
.place-editorial {
    padding: 80px 0;
    background: var(--cream-deep);
}
.place-editorial__inner {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 56px;
    align-items: start;
}
.place-editorial__kicker { position: sticky; top: 100px; }
.place-editorial__eyebrow {
    font-family: var(--font-display);
    font-style: italic;
    color: var(--marigold);
    font-size: 15px;
    display: block;
    margin-bottom: 4px;
}
.place-editorial__title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(28px, 3vw, 38px);
    line-height: 1.15;
    color: var(--forest);
    margin: 0;
}
.place-editorial__body {
    font-size: 17px;
    line-height: 1.85;
    color: var(--text);
}
.place-editorial__body p { margin: 0 0 18px; }
.place-editorial__body h2,
.place-editorial__body h3,
.place-editorial__body h4 {
    font-family: var(--font-display);
    color: var(--forest);
    margin: 28px 0 12px;
}
.place-editorial__body a { color: var(--marigold); text-decoration: underline; }

/* Highlights --------------------------------------------------------- */
.place-highlights {
    padding: 72px 0;
    background: var(--cream);
}
.place-highlights__header { margin-bottom: 36px; max-width: 680px; }
.place-highlights__eyebrow {
    font-family: var(--font-display);
    font-style: italic;
    color: var(--marigold);
    font-size: 15px;
    display: block;
    margin-bottom: 4px;
}
.place-highlights__title {
    font-family: var(--font-display);
    font-size: clamp(26px, 3vw, 36px);
    color: var(--forest);
    margin: 0;
    line-height: 1.15;
}
.place-highlights__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.place-hl {
    padding: 24px 22px;
    background: var(--card-bg);
    border: 1px solid rgba(30, 58, 43, 0.08);
    border-radius: 14px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.place-hl:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(30, 58, 43, 0.08);
}
.place-hl__icon {
    width: 44px; height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(217, 122, 44, 0.12);
    color: var(--marigold);
    font-size: 18px;
    margin-bottom: 14px;
}
.place-hl h4 {
    font-family: var(--font-display);
    font-size: 18px;
    color: var(--forest);
    margin: 0 0 6px;
}
.place-hl p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-muted);
    margin: 0;
}

/* Related packages (Swiper) ------------------------------------------ */
.place-packages {
    padding: 72px 0;
    background: var(--cream-deep);
}
.place-packages__header {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 36px;
}
.place-packages__eyebrow {
    font-family: var(--font-display);
    font-style: italic;
    color: var(--marigold);
    font-size: 15px;
    display: block;
    margin-bottom: 4px;
}
.place-packages__title {
    font-family: var(--font-display);
    font-size: clamp(26px, 3vw, 36px);
    color: var(--forest);
    margin: 0 0 10px;
}
.place-packages__note {
    color: var(--text-muted);
    font-style: italic;
    font-size: 15px;
    margin: 0;
}

.placePkgSwiper { padding-bottom: 44px; position: relative; }
.placePkgSwiper .swiper-slide { height: auto; }
.placePkgSwiper .swiper-slide > .tour-card { height: 100%; }
.placePkgSwiper .swiper-button-next,
.placePkgSwiper .swiper-button-prev {
    color: var(--cream);
    background: var(--forest);
    width: 42px; height: 42px;
    border-radius: 50%;
    top: 40%;
}
.placePkgSwiper .swiper-button-next:hover,
.placePkgSwiper .swiper-button-prev:hover { background: var(--marigold); }
.placePkgSwiper .swiper-button-next::after,
.placePkgSwiper .swiper-button-prev::after { font-size: 15px; font-weight: 700; }
.placePkgSwiper .swiper-pagination-bullet-active { background: var(--marigold); }

.place-no-packages {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-muted);
    font-style: italic;
}

/* Plan CTA (forest band) ---------------------------------------------- */
.place-cta {
    padding: 72px 0;
    background: var(--forest);
    color: var(--cream);
}
.place-cta__inner {
    display: grid;
    grid-template-columns: 1.3fr auto;
    gap: 40px;
    align-items: center;
}
.place-cta__eyebrow {
    font-family: var(--font-display);
    font-style: italic;
    color: var(--marigold);
    font-size: 15px;
    display: block;
    margin-bottom: 6px;
}
.place-cta__title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(28px, 3vw, 40px);
    line-height: 1.15;
    color: var(--cream);
    margin: 0 0 10px;
}
.place-cta__copy {
    color: rgba(245, 241, 232, 0.85);
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
    max-width: 560px;
}
.place-cta__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

/* Breakpoints -------------------------------------------------------- */
@media (max-width: 1199px) {
    .place-hero__body { padding: 42px 36px; }
    .place-editorial__inner { grid-template-columns: 240px 1fr; gap: 36px; }
    .place-highlights__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
    .place-hero__grid { grid-template-columns: 1fr; min-height: 0; }
    .place-hero__media { min-height: 280px; }
    .place-hero__body { padding: 36px 28px; }
    .place-editorial { padding: 60px 0; }
    .place-editorial__inner { grid-template-columns: 1fr; gap: 18px; }
    .place-editorial__kicker { position: static; }
    .place-cta__inner { grid-template-columns: 1fr; }
    .place-cta__actions { justify-content: flex-start; }
}
@media (max-width: 767px) {
    .place-hero { padding: 24px 0 44px; }
    .place-hero__h1 { font-size: 32px; }
    .place-hero__stats { gap: 18px; }
    .place-highlights { padding: 56px 0; }
    .place-highlights__grid { grid-template-columns: 1fr; gap: 14px; }
    .place-packages { padding: 56px 0; }
    .place-cta { padding: 56px 0; }
    .place-cta__actions > .btn-marigold,
    .place-cta__actions > .btn-ghost-forest {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
}
@media (max-width: 480px) {
    .place-hero__body { padding: 28px 22px; }
    .place-hero__brief { font-size: 15px; }
    .place-hero__stat strong { font-size: 22px; }
    .place-editorial__body { font-size: 16px; }
    .place-editorial__body p { margin-bottom: 14px; }
}
