/* =====================================================================
   Andaman Abilasha Holidays — Public Site Stylesheet
   Design tokens: lagoon teal ink, sun-bleached sand, turquoise + coral accents
   Signature element: "boarding pass" ticket-style package cards
   ===================================================================== */

:root {
    --ink: #0E2A28;
    --ink-soft: #3E5C58;
    --sand: #F6F1E4;
    --sand-deep: #EDE4CE;
    --turquoise: #16A398;
    --turquoise-deep: #0C7B72;
    --coral: #FF6B4A;
    --coral-deep: #E85A3B;
    --paper: #FFFDF8;
    --line: rgba(14,42,40,.14);

    --font-display: 'Fraunces', Georgia, serif;
    --font-body: 'Work Sans', -apple-system, sans-serif;
    --font-mono: 'IBM Plex Mono', monospace;
}

* { box-sizing: border-box; }

body {
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--sand);
    margin: 0;
}

h1, h2, h3, .display {
    font-family: var(--font-display);
    color: var(--ink);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -0.01em;
}

a { color: inherit; text-decoration: none; }

.container-xl { max-width: 1180px; margin: 0 auto; padding: 0 20px; }
@media (max-width: 768px) {
    .container-xl { padding-left: 16px !important; padding-right: 16px !important; }
    .row { --bs-gutter-x: 0.75rem; }
    .pkg-grid, .photo-grid-4, .gallery-hub-grid { padding-left: 4px; padding-right: 4px; box-sizing: border-box; }
}

.site-header {
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    position: sticky; top: 0; z-index: 100;
}
.site-header .inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 20px; max-width: 1180px; margin: 0 auto; }
.site-header .logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; }
.site-header .logo img { height: 90px; }
.site-nav { display: flex; gap: 28px; align-items: center; }
.site-nav a { font-size: .95rem; font-weight: 500; color: var(--ink-soft); transition: color .15s; }
.site-nav a:hover, .site-nav a.active { color: var(--turquoise-deep); }
.btn-cta {
    background: var(--coral); color: #fff !important; padding: 10px 22px; border-radius: 999px;
    font-weight: 600; font-size: .92rem; transition: background .15s, transform .15s; display: inline-block;
}
.btn-cta:hover { background: var(--coral-deep); transform: translateY(-1px); color: #fff !important; }
.btn-outline {
    border: 1.5px solid var(--ink); padding: 9px 20px; border-radius: 999px; font-weight: 600; font-size: .92rem;
    transition: all .15s; display: inline-block;
}
.btn-outline:hover { background: var(--ink); color: var(--sand) !important; }

.hero {
    position: relative; background: linear-gradient(160deg, var(--turquoise-deep), var(--turquoise) 60%, #3FC4B8);
    color: #fff; padding: 90px 20px 130px;
    overflow: hidden;
}
.hero .eyebrow { font-family: var(--font-mono); text-transform: uppercase; letter-spacing: .12em; font-size: .78rem; opacity: .85; }
.hero h1 { font-size: clamp(2.4rem, 5vw, 4rem); color: #fff; max-width: 640px; margin: 14px 0 18px; font-style: italic; }
.hero p.lead { font-size: 1.15rem; max-width: 520px; opacity: .92; margin-bottom: 28px; }
.hero-wave { position: absolute; bottom: -1px; left: 0; width: 100%; line-height: 0; }

.section { padding: 70px 0; }
.section-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 32px; flex-wrap: wrap; gap: 12px; }
.section-head .eyebrow { font-family: var(--font-mono); text-transform: uppercase; letter-spacing: .12em; font-size: .78rem; color: var(--coral-deep); }
.section-head h2 { font-size: 2rem; margin: 6px 0 0; }

.ticket-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 26px; }

.ticket-card {
    background: var(--paper);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(14,42,40,.08);
    transition: transform .18s ease, box-shadow .18s ease;
    display: flex; flex-direction: column;
}
.ticket-card:hover { transform: translateY(-5px); box-shadow: 0 16px 36px rgba(14,42,40,.14); }

.ticket-photo { position: relative; height: 190px; background-size: cover; background-position: center; }
.ticket-photo .stamp {
    position: absolute; top: 14px; right: 14px; background: rgba(14,42,40,.85); color: #fff;
    font-family: var(--font-mono); font-size: .72rem; padding: 5px 10px; border-radius: 6px; letter-spacing: .04em;
}
.ticket-photo .category-tag {
    position: absolute; top: 14px; left: 14px; background: var(--coral); color: #fff;
    font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em;
    padding: 4px 10px; border-radius: 999px;
}

.ticket-body { padding: 18px 20px 8px; flex-grow: 1; }
.ticket-body h3 { font-size: 1.2rem; margin: 0 0 8px; }
.ticket-body p { color: var(--ink-soft); font-size: .92rem; margin: 0; }

.ticket-perforation {
    position: relative; height: 1px; margin: 16px 20px 0; border-top: 2px dashed var(--line);
}
.ticket-perforation::before, .ticket-perforation::after {
    content: ''; position: absolute; top: -8px; width: 16px; height: 16px; background: var(--sand); border-radius: 50%;
}
.ticket-perforation::before { left: -28px; }
.ticket-perforation::after { right: -28px; }

.ticket-footer { display: flex; justify-content: space-between; align-items: center; padding: 14px 20px 18px; }
.ticket-footer .price { font-family: var(--font-mono); font-weight: 700; font-size: 1.05rem; color: var(--turquoise-deep); }
.ticket-footer .price small { font-family: var(--font-body); font-weight: 400; color: var(--ink-soft); font-size: .75rem; }
.ticket-footer a { font-weight: 600; font-size: .88rem; color: var(--coral-deep); }

.place-card { border-radius: 14px; overflow: hidden; background: var(--paper); box-shadow: 0 8px 24px rgba(14,42,40,.07); transition: transform .18s; }
.place-card:hover { transform: translateY(-4px); }
.place-card img { width: 100%; height: 170px; object-fit: cover; }
.place-card .body { padding: 16px 18px; }
.place-card h3 { font-size: 1.05rem; margin: 0 0 4px; }
.place-card p { color: var(--ink-soft); font-size: .88rem; margin: 0; }

.testimonial-card { background: var(--paper); border-radius: 14px; padding: 22px; box-shadow: 0 8px 24px rgba(14,42,40,.06); height: 100%; }
.testimonial-card .stars { color: var(--coral); letter-spacing: 2px; margin-bottom: 10px; }
.testimonial-card p.review { font-style: italic; color: var(--ink-soft); }
.testimonial-card .who { display: flex; align-items: center; gap: 10px; margin-top: 14px; }
.testimonial-card .who img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }

.itinerary-day { display: flex; gap: 18px; padding: 18px 0; border-bottom: 1px dashed var(--line); }
.itinerary-day:last-child { border-bottom: none; }
.itinerary-day .day-num {
    font-family: var(--font-mono); font-weight: 700; color: var(--turquoise-deep);
    font-size: .85rem; min-width: 60px;
}
.itinerary-day h4 { margin: 0 0 4px; font-size: 1.05rem; }
.itinerary-day p { color: var(--ink-soft); font-size: .92rem; margin: 0; }

.cta-band { background: var(--ink); color: var(--sand); padding: 60px 0; border-radius: 24px; text-align: center; margin: 20px; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(246,241,228,.8); max-width: 480px; margin: 10px auto 26px; }

.site-footer { background: var(--ink); color: rgba(246,241,228,.85); padding: 56px 0 24px; margin-top: 40px; }
.site-footer h5 { color: #fff; font-family: var(--font-display); font-size: 1.1rem; margin-bottom: 14px; }
.site-footer a { color: rgba(246,241,228,.75); font-size: .9rem; }
.site-footer a:hover { color: var(--coral); }
.site-footer .bottom { border-top: 1px solid rgba(246,241,228,.15); margin-top: 34px; padding-top: 18px; font-size: .82rem; color: rgba(246,241,228,.55); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }

.text-turquoise { color: var(--turquoise-deep); }
.bg-sand-deep { background: var(--sand-deep); }
.badge-cat { background: var(--sand-deep); color: var(--ink-soft); font-size: .75rem; padding: 4px 10px; border-radius: 999px; font-weight: 600; }

@media (max-width: 768px) {
    .site-nav { display: none; }
    .hero { padding: 60px 20px 90px; }
    .cta-band { margin: 20px 10px; }
}

/* =====================================================================
   Phase 2 additions — mobile menu, hero slider, 4-col grids, lightbox,
   simple package cards, gallery hub, about page
   ===================================================================== */

.nav-toggle { display: none; background: none; border: none; font-size: 1.6rem; color: var(--ink); cursor: pointer; }
@media (max-width: 900px) {
    .nav-toggle { display: block; }
    .site-nav {
        display: none; position: fixed; top: 0; right: 0; bottom: 0; width: 78%; max-width: 320px;
        background: var(--paper); flex-direction: column; align-items: flex-start; gap: 4px;
        padding: 80px 24px 24px; box-shadow: -8px 0 30px rgba(0,0,0,.15); z-index: 200;
    }
    .site-nav.open { display: flex; }
    .site-nav a { padding: 10px 0; width: 100%; border-bottom: 1px solid var(--line); }
    .site-nav a.btn-cta { border: none; margin-top: 12px; text-align: center; }
    .nav-overlay { display: none; position: fixed; inset: 0; background: rgba(14,42,40,.4); z-index: 190; }
    .nav-overlay.open { display: block; }
}

.hero-slider { position: relative; height: 560px; overflow: hidden; }
.hero-slide {
    position: absolute; inset: 0; background-size: cover; background-position: center;
    opacity: 0; transition: opacity 1s ease; display: flex; align-items: center;
}
.hero-slide.active { opacity: 1; }
.hero-slide::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(14,42,40,.75), rgba(14,42,40,.25) 60%, rgba(14,42,40,.1)); }
.hero-slide .slide-content { position: relative; z-index: 2; color: #fff; padding: 0 20px; max-width: 1180px; margin: 0 auto; width: 100%; }
.hero-slide h1 { color: #fff; font-style: italic; font-size: clamp(2.2rem, 4.6vw, 3.6rem); max-width: 600px; margin: 14px 0 20px; text-shadow: 0 2px 20px rgba(0,0,0,.3); }
.hero-dots { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 3; }
.hero-dots button { width: 9px; height: 9px; border-radius: 50%; border: none; background: rgba(255,255,255,.45); cursor: pointer; padding: 0; }
.hero-dots button.active { background: #fff; width: 22px; border-radius: 5px; transition: width .25s; }
.hero-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 3; background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.4); color: #fff; width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 1.2rem; }
.hero-arrow:hover { background: rgba(255,255,255,.3); }
.hero-arrow.prev { left: 20px; } .hero-arrow.next { right: 20px; }
@media (max-width: 768px) {
    .hero-slider { height: 460px; }
    .hero-arrow { display: none; }
    .hero-slide .slide-content .d-flex.gap-3 { flex-direction: column; align-items: flex-start; gap: 10px !important; }
    .hero-slide .btn-cta, .hero-slide .btn-outline { font-size: .82rem; padding: 9px 18px; white-space: nowrap; }
}

.pkg-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
@media (max-width: 1024px) { .pkg-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px) { .pkg-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; } }
@media (max-width: 576px) { .pkg-grid { grid-template-columns: 1fr; } }

.pkg-card { background: var(--paper); border-radius: 12px; overflow: hidden; box-shadow: 0 6px 18px rgba(14,42,40,.08); transition: transform .18s; display: block; }
.pkg-card:hover { transform: translateY(-4px); }
.pkg-card .img { height: 160px; background-size: cover; background-position: center; position: relative; }
.pkg-card .img .stamp { position: absolute; bottom: 8px; right: 8px; background: rgba(14,42,40,.85); color: #fff; font-family: var(--font-mono); font-size: .68rem; padding: 4px 8px; border-radius: 5px; }
.pkg-card .body { padding: 12px 14px 16px; }
.pkg-card h3 { font-size: .98rem; margin: 0 0 4px; line-height: 1.25; }
.pkg-card .meta { font-size: .78rem; color: var(--ink-soft); display: flex; justify-content: space-between; align-items: center; }
.pkg-card .meta .price { font-family: var(--font-mono); font-weight: 700; color: var(--turquoise-deep); }

.gallery-hub-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 1024px) { .gallery-hub-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px) { .gallery-hub-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .gallery-hub-grid { grid-template-columns: 1fr; gap: 22px; } }

.gallery-hub-card { position: relative; border-radius: 14px; overflow: hidden; height: 200px; display: block; }
.gallery-hub-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.gallery-hub-card:hover img { transform: scale(1.06); }
.gallery-hub-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(14,42,40,.75), rgba(14,42,40,0) 55%); }
.gallery-hub-card .label { position: absolute; bottom: 14px; left: 16px; z-index: 2; color: #fff; font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; }
.gallery-hub-card .count { position: absolute; top: 12px; right: 12px; z-index: 2; background: rgba(255,255,255,.9); color: var(--ink); font-size: .7rem; font-weight: 700; padding: 3px 9px; border-radius: 999px; }

.photo-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
@media (max-width: 768px) { .photo-grid-4 { grid-template-columns: repeat(2, 1fr); } }
.photo-grid-4 img { width: 100%; height: 160px; object-fit: cover; border-radius: 10px; cursor: pointer; transition: opacity .15s; }
.photo-grid-4 img:hover { opacity: .85; }

.lightbox-overlay { position: fixed; inset: 0; background: rgba(6,20,19,.94); z-index: 999; display: none; align-items: center; justify-content: center; }
.lightbox-overlay.open { display: flex; }
.lightbox-overlay img { max-width: 88vw; max-height: 82vh; border-radius: 8px; box-shadow: 0 20px 60px rgba(0,0,0,.5); }
.lightbox-close { position: absolute; top: 20px; right: 26px; color: #fff; font-size: 2rem; cursor: pointer; background: none; border: none; line-height: 1; }
.lightbox-nav { position: absolute; top: 50%; transform: translateY(-50%); color: #fff; font-size: 2.2rem; cursor: pointer; background: none; border: none; padding: 10px 16px; opacity: .8; }
.lightbox-nav:hover { opacity: 1; }
.lightbox-nav.prev { left: 6px; } .lightbox-nav.next { right: 6px; }
.lightbox-counter { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,.8); font-family: var(--font-mono); font-size: .8rem; }

.incl-excl-list { list-style: none; padding: 0; margin: 0; }
.incl-excl-list li { padding: 6px 0 6px 26px; position: relative; font-size: .92rem; color: var(--ink-soft); }
.incl-list li::before { content: '✓'; position: absolute; left: 0; color: var(--turquoise-deep); font-weight: 700; }
.excl-list li::before { content: '✕'; position: absolute; left: 0; color: var(--coral-deep); font-weight: 700; }

.get-quote-btn {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    background: #25D366; color: #fff; padding: 14px 24px; border-radius: 10px;
    font-weight: 700; font-size: 1rem; width: 100%; border: none; cursor: pointer; transition: background .15s;
}
.get-quote-btn:hover { background: #1fb457; color: #fff; }

.about-hero { padding: 60px 0 20px; }
.about-checks { list-style: none; padding: 0; margin: 20px 0; }
.about-checks li { padding: 8px 0 8px 30px; position: relative; font-weight: 600; }
.about-checks li::before { content: '✓'; position: absolute; left: 0; top: 8px; width: 20px; height: 20px; background: var(--coral); color: #fff; border-radius: 50%; font-size: .7rem; display: flex; align-items: center; justify-content: center; }

/* =====================================================================
   Phase 3 additions — page banner, footer redesign, SEO block,
   hotels, hero carousel with title/desc, why-choose/mission-vision/team
   ===================================================================== */

/* Global overflow safety net */
html, body { overflow-x: hidden; max-width: 100%; }
img { max-width: 100%; height: auto; }

/* Page banner (below nav, every public page) */
.page-banner {
    height: 280px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.page-banner::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,30,28,.55), rgba(10,30,28,.8)); pointer-events: none; }
.page-banner-overlay { position: relative; z-index: 2; width: 100%; text-align: center; }
.page-banner-overlay h1 { color: #fff; margin: 0; text-shadow: 0 2px 16px rgba(0,0,0,.5); font-size: 3rem; }
.page-banner-overlay .badge-cat { display: inline-block; }
@media (max-width: 768px) {
    .page-banner { height: 150px; }
    .page-banner-overlay h1 { font-size: 1.9rem; }
}

/* Footer pills for destinations */
.footer-pill {
    background: rgba(246,241,228,.1);
    border: 1px solid rgba(246,241,228,.2);
    padding: 5px 12px;
    border-radius: 999px;
    font-size: .82rem !important;
}
.footer-pill:hover { background: rgba(246,241,228,.2); }

/* SEO content block */
.seo-block { background: var(--paper); }
.seo-block h2 { font-size: 1.5rem; }
.seo-content p { color: var(--ink-soft); font-size: .95rem; max-width: 900px; }
.seo-keywords { display: flex; flex-wrap: wrap; gap: 8px; }
.seo-tag { background: var(--sand-deep); color: var(--ink-soft); font-size: .78rem; padding: 5px 12px; border-radius: 999px; }

/* Why Choose Us cards */
.why-choose-card { background: var(--paper); border-radius: 14px; padding: 28px 24px; box-shadow: 0 8px 24px rgba(14,42,40,.06); height: 100%; }
.why-choose-card .icon-circle { width: 56px; height: 56px; border-radius: 50%; background: var(--sand-deep); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; color: var(--turquoise-deep); }
.why-choose-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.why-choose-card p { color: var(--ink-soft); font-size: .9rem; margin: 0; }

/* Vision & Mission */
.vm-card { background: var(--paper); border-radius: 14px; padding: 28px; box-shadow: 0 8px 24px rgba(14,42,40,.06); border-top: 3px solid var(--turquoise); height: 100%; }
.vm-card.mission { border-top-color: var(--coral); }
.vm-card h3 { display: flex; align-items: center; gap: 10px; font-size: 1.25rem; }
.vm-card ul { list-style: none; padding: 0; margin: 16px 0 0; }
.vm-card ul li { padding: 6px 0 6px 26px; position: relative; font-size: .9rem; color: var(--ink-soft); }
.vm-card ul li::before { content: '✓'; position: absolute; left: 0; color: var(--coral); font-weight: 700; }

/* Team */
.team-tabs { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 32px; }
.team-tabs button { border: none; background: var(--sand-deep); padding: 8px 18px; border-radius: 999px; font-size: .85rem; font-weight: 600; cursor: pointer; color: var(--ink-soft); }
.team-tabs button.active { background: var(--coral); color: #fff; }
.team-card { text-align: center; }
.team-card img { width: 130px; height: 130px; border-radius: 50%; object-fit: cover; border: 4px solid var(--paper); box-shadow: 0 6px 18px rgba(14,42,40,.12); margin-bottom: 12px; }
.team-card h4 { font-size: 1.05rem; margin: 0 0 2px; }
.team-card p { color: var(--ink-soft); font-size: .85rem; margin: 0; }

/* Hero carousel with per-slide title/description (homepage) */
.hero-slide .slide-content .eyebrow { display: block; }

/* Contact page form polish */
.contact-form-card .form-label { font-weight: 600; font-size: .88rem; margin-bottom: 6px; }
.contact-form-card .form-control, .contact-form-card .form-select {
    border-radius: 8px; border: 1px solid var(--line); padding: 10px 14px; font-family: var(--font-body);
}
.contact-form-card .form-control:focus, .contact-form-card .form-select:focus {
    border-color: var(--turquoise); box-shadow: 0 0 0 .2rem rgba(22,163,152,.15);
}

/* Hotels */
.hotel-card { background: var(--paper); border-radius: 14px; overflow: hidden; box-shadow: 0 8px 24px rgba(14,42,40,.08); transition: transform .18s; }
.hotel-card:hover { transform: translateY(-4px); }
.hotel-card .img-wrap { position: relative; height: 200px; }
.hotel-card .img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.hotel-card .badge-pill { position: absolute; top: 12px; right: 12px; background: var(--coral); color: #fff; font-size: .72rem; font-weight: 700; padding: 5px 12px; border-radius: 999px; }
.hotel-card .body { padding: 16px 18px; }
.hotel-card h3 { font-size: 1.1rem; margin-bottom: 6px; }
.hotel-card p { color: var(--ink-soft); font-size: .88rem; margin: 0; }

/* Content pages (Terms/Privacy/Cancellation) */
.legal-content h3 { font-size: 1.2rem; margin-top: 28px; margin-bottom: 10px; }
.legal-content p, .legal-content li { color: var(--ink-soft); font-size: .95rem; line-height: 1.7; }
.legal-content ul { padding-left: 20px; }

/* =====================================================================
   Phase 4 additions — testimonial carousel with avatar fallback
   ===================================================================== */

.review-carousel { position: relative; padding: 0 48px; }
.review-track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.review-track::-webkit-scrollbar { display: none; height: 0; }
.review-slide {
    flex: 0 0 calc(33.333% - 11px);
    min-width: 0;
    scroll-snap-align: start;
}
@media (max-width: 1024px) { .review-slide { flex-basis: calc(50% - 8px); } }
@media (max-width: 768px) {
    .review-slide { flex-basis: 100%; }
    .review-carousel { padding: 0 8px; }
    .review-carousel .testimonial-card { padding: 16px; }
    .review-carousel .review { font-size: .88rem; line-height: 1.5; }
}

.review-carousel .testimonial-card { display: flex; flex-direction: column; }
.review-carousel .review { flex-grow: 1; }

.avatar-fallback {
    width: 40px; height: 40px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-weight: 700; font-size: .95rem; flex-shrink: 0;
}

.review-arrow {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line);
    background: var(--paper); display: flex; align-items: center; justify-content: center;
    cursor: pointer; font-size: 1.3rem; color: var(--ink); z-index: 5;
    box-shadow: 0 4px 12px rgba(14,42,40,.1);
}
.review-arrow:hover { background: var(--sand-deep); }
.review-arrow.prev { left: 6px; }
.review-arrow.next { right: 6px; }

.review-dots { display: flex; justify-content: center; gap: 8px; margin-top: 24px; }
.review-dots button {
    width: 9px; height: 9px; border-radius: 50%; border: none;
    background: var(--sand-deep); cursor: pointer; padding: 0;
}
.review-dots button.active { background: var(--turquoise-deep); width: 22px; border-radius: 5px; transition: width .25s; }

/* =====================================================================
   Phase 5 additions — responsive banner/logo heights, gallery sidebar,
   about image sizing, admin-managed image galleries per item
   ===================================================================== */

.about-hero-img { max-height: 550px; }
@media (max-width: 768px) { .about-hero-img { max-height: 320px; } }

@media (max-width: 768px) {
    .site-header .logo img { height: 60px; }
}

/* Gallery destination detail — sidebar list of other destinations */
.gallery-sidebar { position: sticky; top: 90px; }
.gallery-sidebar h5 { font-family: var(--font-display); font-size: 1.1rem; margin-bottom: 14px; }
.gallery-sidebar-list { display: flex; flex-direction: column; gap: 12px; }
.gallery-sidebar-list a {
    display: flex; align-items: center; gap: 10px; padding: 8px 10px; border-radius: 8px;
    font-size: .9rem; color: var(--ink-soft); transition: background .15s;
}
.gallery-sidebar-list a.active, .gallery-sidebar-list a:hover { background: var(--sand-deep); color: var(--ink); }
.gallery-sidebar-list img { width: 36px; height: 36px; border-radius: 6px; object-fit: cover; flex-shrink: 0; }
