:root {
    --ink: #0f3f4b;
    --muted: #6b7280;
    --line: #e5dfd1;
    --paper: #ffffff;
    --wash: #faf6ee;
    --sand: #f4ede0;
    --champagne: #faf3e0;
    --teal: #2a9fb5;
    --teal-dark: #0f3f4b;
    --coral: #c9a961;
    --gold: #c9a961;
    --gold-soft: #e8d5a3;
    --navy: #0a2e37;
    --green: #2d6a4f;
    --serif: 'Playfair Display', Georgia, serif;
    --sans: 'DM Sans', Arial, Helvetica, sans-serif;
    --shadow: 0 18px 48px rgba(15, 63, 75, 0.14);
    --shadow-soft: 0 8px 24px rgba(15, 63, 75, 0.1);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background:
        linear-gradient(180deg, rgba(250, 243, 224, 0.82), rgba(250, 246, 238, 0.96) 420px),
        var(--wash);
    font-family: var(--sans);
    line-height: 1.55;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--teal-dark);
    text-decoration: none;
}

::selection {
    color: #082f39;
    background: var(--gold-soft);
}

img {
    display: block;
    max-width: 100%;
}

input,
select,
textarea,
button {
    font: inherit;
}

input,
select,
textarea {
    transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

a,
button,
.tour-card,
.package-card,
.detail-panel,
.payment-card,
.channel-card,
.review-card {
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, color 180ms ease, background 180ms ease;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
    outline: 3px solid rgba(201, 169, 97, 0.58);
    outline-offset: 3px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 14px 5vw;
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(12px);
    box-shadow: 0 12px 34px rgba(10, 46, 55, 0.08);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--ink);
}

.brand small {
    display: block;
    color: var(--muted);
    font-size: 0.78rem;
}

.brand-mark {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    color: #fff;
    background: var(--teal);
    border-radius: 8px;
    font-weight: 800;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 18px;
}

.site-nav a {
    color: var(--ink);
    font-weight: 700;
}

.language-selector {
    min-width: 150px;
}

.language-selector label {
    gap: 4px;
    color: var(--ink);
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.language-selector select {
    min-height: 40px;
    padding: 7px 28px 7px 10px;
    font-size: 0.86rem;
    font-weight: 800;
}

.footer-language {
    margin-top: 18px;
}

.footer-language label {
    color: rgba(255, 255, 255, 0.78);
}

.nav-admin {
    padding: 8px 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
}

.nav-toggle {
    display: none;
    padding: 8px 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper);
}

.hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 390px;
    align-items: end;
    min-height: 680px;
    padding: 96px 5vw 56px;
    overflow: hidden;
    background: var(--navy);
}

.hero-media {
    position: absolute;
    inset: 0;
}

.hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(10, 35, 47, 0.78), rgba(10, 35, 47, 0.38) 55%, rgba(10, 35, 47, 0.24));
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content,
.quick-book {
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 780px;
    color: #fff;
}

.eyebrow {
    margin: 0 0 10px;
    color: var(--coral);
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
}

.hero-content .eyebrow {
    color: #ffd77c;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    margin-bottom: 18px;
    font-size: 4rem;
    line-height: 1.02;
}

h2 {
    font-size: 2rem;
    line-height: 1.18;
}

h3 {
    font-size: 1.25rem;
}

.hero-copy {
    max-width: 640px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.18rem;
}

.hero-actions,
.form-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.button,
button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 16px;
    border: 0;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 800;
    letter-spacing: 0.01em;
    will-change: transform;
}

.button.primary,
button.primary {
    color: #fff;
    background: var(--coral);
}

.button.secondary {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.55);
}

.quick-book,
.booking-summary,
.confirmation-panel,
.login-card,
.admin-panel,
.waiver-copy,
.contact-grid article {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.quick-book {
    display: grid;
    gap: 14px;
    padding: 22px;
}

label {
    display: grid;
    gap: 7px;
    color: var(--ink);
    font-weight: 800;
}

input,
select,
textarea {
    width: 100%;
    min-height: 46px;
    padding: 10px 12px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(15, 63, 75, 0.2);
    border-radius: 8px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

input:hover,
select:hover,
textarea:hover {
    border-color: rgba(201, 169, 97, 0.58);
}

input:focus,
select:focus,
textarea:focus {
    background: #fff;
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(201, 169, 97, 0.14);
}

textarea {
    resize: vertical;
}

.fine-print {
    margin: 0;
    color: var(--muted);
    font-size: 0.88rem;
}

.section,
.booking-layout,
.waiver-layout {
    padding: 72px 5vw;
}

.section {
    content-visibility: auto;
    contain-intrinsic-size: 720px;
}

.section-head {
    max-width: 760px;
    margin-bottom: 28px;
}

.tour-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.tour-grid.wide {
    grid-template-columns: 1fr;
}

.tour-card {
    overflow: hidden;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 8px;
}

.tour-card-image {
    position: relative;
    display: block;
    overflow: hidden;
    color: #fff;
}

.tour-card-image img,
.tour-card img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    transition: transform 420ms ease, filter 420ms ease;
}

.tour-image-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: grid;
    align-content: end;
    gap: 8px;
    padding: 18px;
    background: linear-gradient(180deg, rgba(6, 33, 41, 0), rgba(6, 33, 41, 0.84));
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 260ms ease, transform 260ms ease;
}

.tour-image-overlay strong,
.tour-image-overlay small,
.tour-image-overlay em {
    display: block;
}

.tour-image-overlay strong {
    color: #fff;
    font-family: var(--serif);
    font-size: 1.08rem;
    line-height: 1.2;
}

.tour-image-overlay small {
    color: var(--gold-soft);
    font-weight: 900;
}

.tour-image-overlay em {
    justify-self: start;
    padding: 8px 12px;
    color: var(--navy);
    background: var(--gold-soft);
    border-radius: 999px;
    font-style: normal;
    font-weight: 900;
}

.tour-card:hover .tour-card-image img,
.tour-card:focus-within .tour-card-image img {
    transform: scale(1.08);
    filter: saturate(1.08) contrast(1.05);
}

.tour-card:hover .tour-image-overlay,
.tour-card:focus-within .tour-image-overlay {
    opacity: 1;
    transform: translateY(0);
}

.tour-card:hover {
    border-color: rgba(201, 169, 97, 0.68);
    box-shadow: var(--shadow);
}

.tour-card > div {
    padding: 18px;
}

.tour-card.horizontal {
    display: grid;
    grid-template-columns: 330px minmax(0, 1fr);
}

.tour-card.horizontal img {
    height: 100%;
    aspect-ratio: auto;
}

.tour-location {
    margin-bottom: 8px;
    color: var(--teal-dark);
    font-weight: 800;
    font-size: 0.88rem;
}

.tour-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: 16px;
}

.tour-actions {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.clean-list {
    padding-left: 18px;
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.package-card {
    padding: 20px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
}

.package-card strong {
    display: block;
    margin: 12px 0;
    color: var(--teal-dark);
}

.answer-snapshot-section {
    background: #fff;
}

.answer-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.answer-grid article,
.intent-card {
    min-height: 100%;
}

.answer-grid article {
    padding: 22px;
    background: var(--champagne);
    border: 1px solid rgba(201, 169, 97, 0.34);
    border-radius: 8px;
}

.answer-grid strong {
    display: block;
    margin-bottom: 8px;
    color: var(--teal-dark);
    font-size: 1.08rem;
}

.search-intent-section {
    background: #eef8f7;
}

.intent-card {
    display: grid;
    align-content: start;
    gap: 8px;
}

.intent-card .button {
    justify-self: start;
    margin-top: 6px;
}

.split-band {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1fr);
    gap: 32px;
    background: #eaf4f5;
}

.steps {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.steps div {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    font-weight: 700;
}

.steps span {
    display: inline-grid;
    place-items: center;
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    color: #fff;
    background: var(--teal);
    border-radius: 999px;
}

.proof-section {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(280px, 1fr);
    gap: 32px;
}

.proof-grid {
    display: grid;
    gap: 14px;
}

.proof-grid article {
    padding: 18px;
    background: #fff;
    border: 1px solid var(--line);
    border-left: 5px solid var(--gold);
    border-radius: 8px;
}

.page-hero {
    position: relative;
    overflow: hidden;
    padding: 76px 5vw 38px;
    background: #fff;
    border-bottom: 1px solid var(--line);
}

.page-hero::before {
    inset: 0;
    background: linear-gradient(135deg, rgba(250, 243, 224, 0.78), rgba(255, 255, 255, 0.28));
}

.page-hero > * {
    position: relative;
    z-index: 1;
}

.page-hero.compact {
    max-width: none;
}

.page-hero h1,
.page-hero p {
    max-width: 800px;
}

.tour-detail-hero {
    position: relative;
    min-height: 560px;
    display: grid;
    align-items: end;
    padding: 96px 5vw 56px;
    color: #fff;
    background-position: center;
    background-size: cover;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(10, 35, 47, 0.78), rgba(10, 35, 47, 0.38));
}

.tour-detail-content {
    position: relative;
    z-index: 1;
    max-width: 860px;
}

.tour-detail-content p {
    max-width: 720px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.08rem;
}

.tour-detail-hover {
    position: absolute;
    right: 5vw;
    bottom: 42px;
    z-index: 2;
    display: grid;
    gap: 10px;
    width: min(280px, calc(100vw - 10vw));
    padding: 16px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(232, 213, 163, 0.76);
    border-radius: 8px;
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 260ms ease, transform 260ms ease;
}

.tour-detail-hover strong {
    color: var(--ink);
}

.tour-detail-hero:hover .tour-detail-hover,
.tour-detail-hero:focus-within .tour-detail-hover {
    opacity: 1;
    transform: translateY(0);
}

.facts-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    background: var(--line);
    border-bottom: 1px solid var(--line);
}

.facts-row div {
    padding: 20px 5vw;
    background: #fff;
}

.facts-row span {
    display: block;
    color: var(--muted);
    font-weight: 800;
    font-size: 0.82rem;
    text-transform: uppercase;
}

.facts-row strong {
    display: block;
    margin-top: 6px;
}

.detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 24px;
    align-items: start;
}

.detail-panel,
.detail-columns article {
    padding: 24px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
}

.booking-side {
    position: sticky;
    top: 90px;
    display: grid;
    gap: 14px;
}

.fast-contact-panel {
    display: grid;
    gap: 14px;
    margin-top: 18px;
    padding: 16px;
    background: var(--champagne);
    border: 1px solid rgba(201, 169, 97, 0.36);
    border-radius: 8px;
}

.fast-contact-panel strong {
    display: block;
    color: var(--ink);
    font-size: 1.05rem;
}

.fast-contact-panel p {
    margin: 4px 0 0;
    color: var(--muted);
}

.fast-contact-links {
    display: grid;
    gap: 8px;
}

.fast-contact-links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 48px;
    padding: 10px 12px;
    color: #fff;
    background: var(--navy);
    border-radius: 8px;
}

.fast-contact-links span,
.fast-contact-links small {
    display: block;
}

.fast-contact-links span {
    font-weight: 900;
}

.fast-contact-links small {
    color: rgba(255, 255, 255, 0.72);
    text-align: right;
}

.tour-conversion-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    padding: 18px 5vw;
    background: var(--navy);
}

.tour-conversion-strip span,
.market-trust-list span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 8px 12px;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    font-size: 0.86rem;
    font-weight: 900;
}

.conversion-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(300px, 0.6fr);
    gap: 24px;
    align-items: start;
}

.price-guide-panel p {
    max-width: 760px;
}

.price-table {
    display: grid;
    margin-top: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
}

.price-table div {
    display: grid;
    grid-template-columns: minmax(90px, 1.2fr) minmax(110px, 1.6fr) minmax(110px, 1.6fr);
    gap: 10px;
    align-items: center;
    padding: 14px 16px;
    background: #fff;
    border-bottom: 1px solid var(--line);
}

.price-table div:nth-child(odd) {
    background: var(--champagne);
}

.price-table div:last-child {
    border-bottom: 0;
}

.price-table strong,
.price-table span {
    color: var(--ink);
    font-weight: 900;
}

.price-table em {
    color: var(--muted);
    font-style: normal;
}

.urgency-panel {
    display: grid;
    gap: 14px;
    background: linear-gradient(145deg, #fff, #f8f0df);
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.pill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.pill-list span {
    display: inline-flex;
    padding: 8px 11px;
    color: var(--teal-dark);
    background: #e0f2f3;
    border-radius: 999px;
    font-weight: 800;
    font-size: 0.9rem;
}

.section-tint {
    background: #eaf4f5;
}

.market-trust-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.timeline-list {
    display: grid;
    gap: 12px;
}

.timeline-list div {
    display: grid;
    grid-template-columns: 130px minmax(0, 1fr);
    gap: 16px;
    align-items: start;
    padding: 16px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
}

.timeline-list span {
    color: var(--coral);
    font-weight: 900;
}

.timeline-list p {
    margin: 0;
}

.detail-columns {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.booking-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    align-items: start;
    gap: 24px;
}

.booking-form {
    padding: 24px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.span-2 {
    grid-column: 1 / -1;
}

.check-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 18px 0;
    font-weight: 500;
}

.check-row input {
    width: 18px;
    min-height: 18px;
    margin-top: 4px;
}

.booking-summary {
    position: sticky;
    top: 90px;
    padding: 22px;
}

.booking-summary dl,
.confirmation-panel dl {
    display: grid;
    gap: 12px;
    margin: 0 0 18px;
}

.booking-summary dl div,
.confirmation-panel dl div {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--line);
}

dt {
    color: var(--muted);
    font-weight: 700;
}

dd {
    margin: 0;
    font-weight: 800;
    text-align: right;
}

.narrow {
    max-width: 860px;
    margin: 0 auto;
}

.confirmation-panel {
    padding: 24px;
}

.waiver-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 420px;
    align-items: start;
    gap: 24px;
}

.waiver-copy {
    padding: 24px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.contact-grid article {
    padding: 24px;
}

.site-footer {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding: 34px 5vw;
    color: #dce7ea;
    background: var(--navy);
}

.site-footer a {
    display: block;
    color: #fff;
}

/* ─── WhatsApp floating button ─── */
.whatsapp-float {
    position: fixed;
    right: 18px;
    bottom: 90px;
    z-index: 31;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    color: #fff;
    background: #25D366;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
    text-decoration: none;
    font-family: var(--sans);
    font-size: 0.875rem;
    font-weight: 600;
    white-space: nowrap;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    animation: whatsapp-pulse 2.8s ease-in-out infinite;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
    transform: scale(1.06);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.6);
    color: #fff;
}

.whatsapp-float-label {
    display: inline;
}

@keyframes whatsapp-pulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45); }
    50%       { box-shadow: 0 4px 32px rgba(37, 211, 102, 0.75); }
}

@media (max-width: 430px) {
    .whatsapp-float {
        padding: 11px 13px;
    }
    .whatsapp-float-label {
        display: none;
    }
}

.chat-widget {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 30;
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-end;
    gap: 10px;
}

.cookie-consent {
    position: fixed;
    left: 18px;
    right: 18px;
    bottom: 18px;
    z-index: 70;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    max-width: 980px;
    margin: 0 auto;
    padding: 16px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(201, 169, 97, 0.42);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.cookie-consent p {
    margin: 4px 0 0;
}

.cookie-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.chat-open {
    color: #fff;
    background: var(--teal);
    box-shadow: var(--shadow);
}

.chat-panel {
    width: min(360px, calc(100vw - 36px));
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.chat-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px;
    color: #fff;
    background: var(--navy);
}

.chat-head button {
    min-height: 34px;
    color: #fff;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.4);
}

.chat-label {
    padding: 12px;
}

.chat-log {
    max-height: 230px;
    overflow: auto;
    padding: 0 12px;
}

.chat-form {
    display: flex;
    gap: 8px;
    padding: 12px;
    border-top: 1px solid var(--line);
}

.chat-form button {
    color: #fff;
    background: var(--teal);
}

.login-body {
    display: grid;
    min-height: 100vh;
    place-items: center;
    padding: 24px;
}

.login-card {
    display: grid;
    gap: 14px;
    width: min(420px, 100%);
    padding: 28px;
}

.notice.error {
    padding: 10px 12px;
    color: #8f2018;
    background: #ffe9e6;
    border-radius: 8px;
}

.admin-body {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    min-height: 100vh;
    background: #eef3f5;
}

.admin-sidebar {
    position: sticky;
    top: 0;
    height: 100vh;
    padding: 20px;
    background: #102434;
}

.admin-brand {
    color: #fff;
    margin-bottom: 24px;
}

.admin-brand small {
    color: #b8c7d1;
}

.admin-sidebar nav {
    display: grid;
    gap: 8px;
}

.admin-sidebar nav a {
    padding: 11px 12px;
    color: #edf5f7;
    border-radius: 8px;
}

.admin-sidebar nav a:hover {
    background: rgba(255,255,255,0.1);
}

.admin-main {
    padding: 26px;
}

.admin-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 22px;
}

.admin-preview-tools {
    display: flex;
    align-items: center;
    gap: 14px;
}

.admin-language {
    min-width: 190px;
}

.metric-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 22px;
}

.metric-grid article {
    padding: 20px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
}

.metric-grid span {
    display: block;
    color: var(--muted);
    font-weight: 700;
}

.metric-grid strong {
    display: block;
    margin-top: 8px;
    font-size: 1.7rem;
}

.admin-panel {
    padding: 20px;
    margin-bottom: 22px;
}

.translation-form {
    display: grid;
    gap: 16px;
}

.translation-preview-form {
    align-items: end;
}

.translation-preview-output {
    margin-top: 18px;
    padding: 18px;
    background: var(--wash);
    border: 1px solid var(--line);
    border-radius: 8px;
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.security-grid article {
    padding: 16px;
    background: var(--wash);
    border: 1px solid var(--line);
    border-radius: 8px;
}

.panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
}

.panel-head h2 {
    margin: 0;
}

.panel-head input {
    max-width: 360px;
}

.panel-actions,
.export-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
}

.panel-actions input {
    min-width: min(280px, 100%);
}

.admin-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.inline-delete {
    display: inline-flex;
    margin-left: 8px;
}

.inline-delete button {
    min-height: 34px;
    padding: 6px 10px;
    color: #a83232;
    background: #fff3f3;
    border: 1px solid #f3caca;
}

.table-wrap {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 760px;
}

th,
td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid var(--line);
    vertical-align: top;
}

th {
    color: var(--muted);
    font-size: 0.82rem;
    text-transform: uppercase;
}

.status {
    display: inline-flex;
    padding: 5px 9px;
    color: var(--teal-dark);
    background: #e0f2f3;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 800;
}

.inline-form {
    display: grid;
    grid-template-columns: 170px 180px auto;
    gap: 8px;
}

.inline-form button {
    color: #fff;
    background: var(--teal);
}

.report-panel {
    max-width: 980px;
}

@media (max-width: 980px) {
    .hero,
    .booking-layout,
    .waiver-layout,
    .split-band,
    .proof-section,
    .contact-grid,
    .detail-grid,
    .conversion-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
        padding-top: 80px;
    }

    h1 {
        font-size: 2.7rem;
    }

    .tour-grid,
    .metric-grid,
    .security-grid,
    .answer-grid,
    .facts-row,
    .detail-columns {
        grid-template-columns: 1fr 1fr;
    }

    .tour-card.horizontal {
        grid-template-columns: 1fr;
    }

    .booking-summary {
        position: static;
    }

    .booking-side {
        position: static;
    }

    .admin-body {
        grid-template-columns: 1fr;
    }

    .admin-sidebar {
        position: static;
        height: auto;
    }

    .admin-sidebar nav {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .site-header {
        align-items: flex-start;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .site-nav {
        position: absolute;
        top: 70px;
        right: 5vw;
        display: none;
        width: min(280px, 90vw);
        padding: 14px;
        background: #fff;
        border: 1px solid var(--line);
        border-radius: 8px;
        box-shadow: var(--shadow);
    }

    .site-nav[data-open] {
        display: grid;
    }

    .hero {
        padding: 72px 5vw 32px;
    }

    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.55rem;
    }

    .tour-grid,
    .metric-grid,
    .security-grid,
    .package-grid,
    .answer-grid,
    .facts-row,
    .detail-columns,
    .steps,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .timeline-list div {
        grid-template-columns: 1fr;
    }

    .span-2 {
        grid-column: auto;
    }

    .site-footer,
    .admin-topbar,
    .panel-head,
    .tour-meta {
        flex-direction: column;
        align-items: flex-start;
    }

    .admin-sidebar nav,
    .inline-form,
    .admin-form-grid,
    .admin-preview-tools {
        grid-template-columns: 1fr;
        display: grid;
        width: 100%;
    }

    .admin-main {
        padding: 16px;
    }
}

/* CebuOKTravel.shop luxury theme integration */
.announcement-bar {
    overflow: hidden;
    color: rgba(255, 255, 255, 0.86);
    background: var(--navy);
    font-size: 0.78rem;
    font-weight: 800;
}

.announcement-track {
    display: inline-flex;
    gap: 34px;
    min-width: max-content;
    padding: 9px 0;
    animation: marquee 32s linear infinite;
}

.announcement-track span {
    position: relative;
    white-space: nowrap;
}

.announcement-track span::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -20px;
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 2px;
    transform: translateY(-50%) rotate(45deg);
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.site-header {
    top: 0;
    background: rgba(250, 246, 238, 0.96);
    border-bottom-color: rgba(201, 169, 97, 0.28);
}

.brand-logo {
    width: 54px;
    height: 54px;
    object-fit: contain;
}

.brand strong,
.site-footer strong {
    font-family: var(--serif);
    font-size: 1.5rem;
    font-weight: 600;
}

.brand small {
    color: #b78e36;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.site-nav a:hover {
    color: #b78e36;
}

h1,
h2 {
    font-family: var(--serif);
    letter-spacing: 0;
}

.button.primary,
button.primary {
    color: #082f39;
    background: linear-gradient(135deg, var(--gold), var(--gold-soft));
    box-shadow: inset 0 -2px 0 rgba(88, 64, 18, 0.16), 0 10px 24px rgba(201, 169, 97, 0.22);
}

.button.primary:hover,
button.primary:hover {
    transform: translateY(-2px);
}

.button.secondary.dark {
    color: var(--ink);
    border-color: var(--ink);
}

.luxury-hero {
    grid-template-columns: minmax(0, 1fr) 430px;
    min-height: 720px;
    background: var(--navy);
}

.hero-media img {
    filter: saturate(1.05) contrast(1.08);
    transition: opacity 900ms ease, transform 8s ease;
}

.hero-media::after {
    background:
        linear-gradient(90deg, rgba(6, 33, 41, 0.92), rgba(15, 63, 75, 0.58) 55%, rgba(15, 63, 75, 0.2)),
        linear-gradient(0deg, rgba(6, 33, 41, 0.42), rgba(42, 159, 181, 0.08));
}

.hero-content h1 {
    max-width: 780px;
    font-size: clamp(3.25rem, 7vw, 6.8rem);
    font-weight: 600;
}

.hero-content h1 em {
    color: var(--gold-soft);
    font-style: italic;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    max-width: 680px;
    margin-top: 30px;
}

.hero-stats div {
    padding-top: 14px;
    border-top: 1px solid rgba(232, 213, 163, 0.48);
}

.hero-stats strong,
.hero-stats span {
    display: block;
}

.hero-stats strong {
    color: #fff;
    font-size: 1.65rem;
}

.hero-stats span {
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.quick-book {
    background: rgba(255, 255, 255, 0.94);
    border-color: rgba(232, 213, 163, 0.76);
}

.quick-book h2 {
    font-style: italic;
}

.live-ticker {
    overflow: hidden;
    color: var(--champagne);
    background: linear-gradient(90deg, var(--ink), #1a5c6e);
    border-top: 1px solid rgba(232, 213, 163, 0.28);
    border-bottom: 1px solid rgba(232, 213, 163, 0.28);
}

.ticker-track {
    display: inline-flex;
    gap: 34px;
    min-width: max-content;
    padding: 13px 0;
    animation: marquee 38s linear infinite;
}

.ticker-track span {
    white-space: nowrap;
}

.ticker-track strong {
    color: var(--gold-soft);
}

.centered {
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.reviews-section {
    background: var(--sand);
}

.reviews-carousel {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.reviews-carousel.full {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.review-card {
    display: grid;
    gap: 14px;
    padding: 24px;
    background: #fff;
    border: 1px solid rgba(201, 169, 97, 0.32);
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
}

.review-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.review-stars {
    color: var(--gold);
    letter-spacing: 0.08em;
}

.review-quote {
    color: var(--ink);
    font-family: var(--serif);
    font-size: 1.04rem;
    line-height: 1.65;
}

.review-tour {
    justify-self: start;
    padding: 6px 11px;
    color: var(--ink);
    background: var(--champagne);
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 900;
}

.review-meta {
    display: flex;
    gap: 12px;
    align-items: center;
}

.review-avatar {
    display: inline-grid;
    place-items: center;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    color: #fff;
    background: var(--ink);
    border-radius: 50%;
    font-weight: 900;
}

.review-meta strong,
.review-meta small,
.review-meta em {
    display: block;
}

.review-meta small {
    color: var(--muted);
}

.review-meta em {
    color: var(--green);
    font-size: 0.78rem;
    font-style: normal;
    font-weight: 900;
}

.center-action {
    display: flex;
    justify-content: center;
    margin-top: 28px;
}

#review-toast-container {
    position: fixed;
    left: 18px;
    bottom: 86px;
    z-index: 60;
    display: grid;
    gap: 10px;
    width: min(340px, calc(100vw - 36px));
}

.review-toast {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 12px;
    align-items: center;
    padding: 14px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(201, 169, 97, 0.42);
    border-radius: 8px;
    box-shadow: var(--shadow);
    transform: translateY(16px);
    opacity: 0;
    animation: toastIn 300ms ease forwards;
}

.review-toast.hide {
    animation: toastOut 260ms ease forwards;
}

.review-toast-icon {
    display: inline-grid;
    place-items: center;
    width: 36px;
    height: 36px;
    color: var(--ink);
    background: var(--gold);
    border-radius: 50%;
    font-weight: 900;
}

.review-toast strong,
.review-toast span {
    display: block;
}

.review-toast span {
    color: var(--muted);
    font-size: 0.86rem;
}

@keyframes toastIn {
    to { transform: translateY(0); opacity: 1; }
}

@keyframes toastOut {
    to { transform: translateY(16px); opacity: 0; }
}

.footer-brand-block {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.footer-logo {
    width: 74px;
    flex: 0 0 74px;
    height: auto;
    object-fit: contain;
}

.site-footer {
    color: #eaf4f5;
    background: #082832;
}

.site-footer p {
    color: rgba(255, 255, 255, 0.74);
}

.site-footer .language-selector select {
    background: rgba(255, 255, 255, 0.92);
}

.luxury-page-hero {
    background: linear-gradient(135deg, var(--navy), var(--ink));
    color: #fff;
}

.luxury-page-hero p {
    color: rgba(255, 255, 255, 0.8);
}

.luxury-hero::before,
.tour-detail-hero::before,
.page-hero::before {
    content: "";
    position: absolute;
    pointer-events: none;
}

.luxury-hero::before,
.tour-detail-hero::before {
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(250, 243, 224, 0.08), rgba(8, 40, 50, 0.2)),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0, rgba(255, 255, 255, 0.035) 1px, transparent 1px, transparent 92px);
}

.hero-content,
.quick-book,
.tour-detail-content,
.tour-detail-hover {
    z-index: 2;
}

.quick-book,
.booking-form,
.booking-summary,
.detail-panel,
.package-card,
.tour-card,
.review-card,
.payment-card,
.channel-card,
.policy-content article,
.contact-grid article {
    border-color: rgba(201, 169, 97, 0.3);
    box-shadow: 0 22px 54px rgba(10, 46, 55, 0.1);
}

.quick-book {
    padding: 26px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 243, 224, 0.9));
    box-shadow: 0 28px 70px rgba(6, 33, 41, 0.28);
}

.quick-book h2,
.booking-summary h2,
.detail-panel h2 {
    line-height: 1.08;
}

.booking-form,
.waiver-form {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 243, 224, 0.82));
}

.booking-summary {
    background:
        linear-gradient(180deg, #ffffff, rgba(250, 243, 224, 0.82));
}

.booking-summary dl {
    padding: 14px;
    background: rgba(15, 63, 75, 0.045);
    border: 1px solid rgba(201, 169, 97, 0.2);
    border-radius: 8px;
}

.price-table,
.comparison-table,
.faq-list {
    box-shadow: 0 18px 42px rgba(10, 46, 55, 0.06);
}

.faq-item summary {
    transition: color 180ms ease, padding-left 180ms ease;
}

.faq-item[open] summary,
.faq-item summary:hover {
    color: var(--teal-dark);
}

.faq-item[open] summary {
    padding-left: 10px;
}

.tour-card,
.package-card,
.detail-panel,
.review-card,
.payment-card,
.channel-card {
    position: relative;
}

.tour-card::after,
.package-card::after,
.detail-panel::after,
.review-card::after,
.payment-card::after,
.channel-card::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    border: 1px solid rgba(255, 255, 255, 0.54);
    border-radius: inherit;
}

.tour-card:hover,
.package-card:hover,
.payment-card:hover,
.channel-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 76px rgba(10, 46, 55, 0.16);
}

.tour-card-image::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(8, 40, 50, 0.1));
    opacity: 0;
    transition: opacity 260ms ease;
}

.tour-card:hover .tour-card-image::after,
.tour-card:focus-within .tour-card-image::after {
    opacity: 1;
}

.answer-grid article,
.intent-card {
    box-shadow: 0 18px 42px rgba(10, 46, 55, 0.08);
}

.facts-row strong,
.tour-meta strong,
.price-table span,
.booking-summary dd {
    letter-spacing: 0;
}

.chat-open {
    box-shadow: 0 16px 36px rgba(10, 46, 55, 0.22);
}

.chat-panel,
.cookie-consent {
    border: 1px solid rgba(201, 169, 97, 0.34);
    box-shadow: 0 26px 64px rgba(10, 46, 55, 0.18);
}

.site-footer {
    background:
        linear-gradient(180deg, #0a2e37, #082832);
}

.site-footer::before {
    content: "";
    display: block;
    height: 1px;
    margin: -64px -5vw 64px;
    background: linear-gradient(90deg, transparent, rgba(232, 213, 163, 0.7), transparent);
}

@media (max-width: 980px) {
    .luxury-hero,
    .reviews-carousel,
    .reviews-carousel.full {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .announcement-track {
        gap: 28px;
    }

    .brand-logo {
        width: 42px;
        height: 42px;
    }

    .brand strong {
        font-size: 1.08rem;
    }

    .brand small {
        font-size: 0.62rem;
        letter-spacing: 0.11em;
    }

    .luxury-hero {
        padding-top: 56px;
    }

    .hero-content h1 {
        font-size: clamp(2.7rem, 15vw, 4.2rem);
    }

    .hero-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    #review-toast-container {
        left: 12px;
        bottom: 76px;
        width: calc(50vw - 18px);
    }
}

.section-head.centered {
    max-width: 760px;
    margin: 0 auto 44px;
    text-align: center;
}

.section-head h2 em,
.payment-section h2 em,
.contact-channel-section h2 em,
.faq-section h2 em,
.comparison-section h2 em {
    color: var(--gold);
    font-family: var(--serif);
    font-style: italic;
    font-weight: 500;
}

.table-shell {
    overflow-x: auto;
    border: 1px solid rgba(201, 169, 97, 0.24);
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
}

/* Climate / data tables (used on best-time-to-visit-cebu.php) */
.data-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
    margin-top: 1.5rem;
}

.data-table {
    width: 100%;
    min-width: 600px;
    border-collapse: collapse;
    font-size: 0.91rem;
    background: rgba(255, 255, 255, 0.72);
}

.data-table th {
    padding: 11px 14px;
    background: var(--navy);
    color: #fff;
    font-weight: 700;
    text-align: left;
    white-space: nowrap;
    border-bottom: 2px solid var(--gold);
}

.data-table td {
    padding: 9px 14px;
    border-bottom: 1px solid var(--line);
    vertical-align: middle;
}

.data-table tbody tr:nth-child(odd) {
    background: rgba(250, 246, 238, 0.6);
}

.data-table tbody tr:hover {
    background: rgba(201, 169, 97, 0.1);
}

.comparison-table {
    width: 100%;
    min-width: 820px;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.72);
}

.comparison-table th,
.comparison-table td {
    padding: 18px 22px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    text-align: left;
}

.comparison-table th:last-child,
.comparison-table td:last-child {
    border-right: 0;
}

.comparison-table thead th {
    color: #fff;
    background: var(--navy);
    font-family: var(--serif);
    font-style: italic;
    font-weight: 700;
}

.comparison-table tbody th {
    color: #051b22;
    font-weight: 900;
}

.comparison-table tr:last-child th,
.comparison-table tr:last-child td {
    border-bottom: 0;
}

.comparison-table .positive {
    color: #008c34;
    font-weight: 900;
}

.comparison-table .negative {
    color: #cf3c3c;
}

.comparison-table .neutral {
    color: #bd850e;
}

.process-grid,
.payment-grid,
.channel-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.process-grid article,
.payment-card,
.channel-card {
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(201, 169, 97, 0.28);
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
}

.process-grid article {
    display: grid;
    gap: 12px;
    padding: 28px;
}

.process-grid span {
    color: var(--gold);
    font-family: var(--serif);
    font-size: 2.4rem;
    font-style: italic;
    line-height: 1;
}

.process-grid h3,
.payment-card h3 {
    margin-bottom: 4px;
}

.payment-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.payment-grid.compact {
    margin-top: 18px;
}

.payment-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
}

.payment-icon,
.channel-icon {
    display: inline-grid;
    place-items: center;
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    color: var(--navy);
    background: linear-gradient(135deg, var(--gold-soft), #fff7df);
    border: 1px solid rgba(201, 169, 97, 0.44);
    border-radius: 50%;
    font-size: 0.74rem;
    font-weight: 900;
}

.payment-card p,
.channel-card p {
    margin: 0;
    color: var(--muted);
}

.policy-note {
    margin-top: 22px;
    padding: 20px 22px;
    color: #061d24;
    background: rgba(201, 169, 97, 0.12);
    border-left: 3px solid var(--gold);
    border-radius: 0 8px 8px 0;
}

.policy-note p {
    margin: 8px 0 0;
}

.channel-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

.channel-card {
    display: grid;
    justify-items: center;
    gap: 8px;
    min-height: 184px;
    padding: 28px 18px;
    color: var(--ink);
    text-align: center;
}

.channel-card small {
    color: var(--teal);
    font-weight: 700;
}

.faq-list {
    max-width: 920px;
    margin: 0 auto;
    border-top: 1px solid var(--line);
}

.faq-item {
    border-bottom: 1px solid var(--line);
}

.faq-item summary {
    position: relative;
    display: block;
    padding: 24px 44px 24px 0;
    cursor: pointer;
    color: #061d24;
    font-family: var(--serif);
    font-size: 1.2rem;
    font-style: italic;
    font-weight: 700;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 24px;
    color: var(--gold);
    font-family: var(--sans);
    font-size: 1.4rem;
    font-style: normal;
}

.faq-item[open] summary::after {
    content: "-";
}

.faq-item p {
    max-width: 780px;
    margin: 0 0 24px;
    color: var(--muted);
}

.policy-hero {
    min-height: auto;
    display: block;
    padding-top: 82px;
    padding-bottom: 72px;
}

.policy-hero > div,
.policy-content {
    max-width: 980px;
    margin: 0 auto;
}

.policy-hero h1 {
    margin-bottom: 12px;
    font-family: var(--serif);
}

.policy-content {
    display: grid;
    gap: 20px;
}

.policy-content article {
    padding: 24px;
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(201, 169, 97, 0.24);
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
}

.inline-button {
    margin-top: 8px;
}

.site-footer {
    display: block;
    padding: 64px 5vw 30px;
    color: #eaf4f5;
    background: #082832;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(280px, 380px) minmax(0, 1fr);
    gap: 56px;
    align-items: start;
    max-width: 1360px;
    margin: 0 auto;
}

.footer-brand-block {
    align-items: flex-start;
    min-width: 0;
}

.footer-brand-block strong,
.footer-column h2 {
    color: #fff;
    font-family: var(--serif);
}

.footer-brand-block strong {
    display: block;
    font-size: 1.8rem;
    line-height: 1.1;
}

.footer-brand-block small {
    display: block;
    margin: 10px 0 18px;
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.28em;
    text-transform: uppercase;
}

.footer-contact-list {
    display: grid;
    gap: 10px;
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
}

.footer-nav-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(150px, 1fr));
    gap: 34px 46px;
    min-width: 0;
}

.footer-column {
    display: grid;
    align-content: start;
    gap: 10px;
    min-width: 0;
}

.footer-column h2 {
    margin: 0 0 10px;
    font-size: 1.2rem;
    font-style: italic;
}

.site-footer a {
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.35;
}

.site-footer a:hover {
    color: var(--gold-soft);
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons a {
    display: inline-grid;
    place-items: center;
    width: 46px;
    height: 46px;
    color: #fff;
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50%;
    font-size: 0.78rem;
    font-weight: 900;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 18px;
    max-width: 1360px;
    margin: 44px auto 0;
    padding-top: 24px;
    color: rgba(255, 255, 255, 0.64);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.88rem;
}

.trust-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    max-width: 1360px;
    margin: 34px auto 0;
}

.trust-strip span {
    padding: 8px 11px;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(232, 213, 163, 0.24);
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 900;
}

.footer-bottom nav {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

@media (max-width: 1100px) {
    .channel-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-nav-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 860px) {
    .process-grid,
    .payment-grid,
    .payment-grid.compact {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-nav-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .section-head.centered {
        margin-bottom: 28px;
    }

    .channel-grid {
        grid-template-columns: 1fr;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 14px 16px;
    }

    .policy-hero {
        padding-top: 58px;
        padding-bottom: 54px;
    }

    .footer-brand-block {
        display: grid;
    }

    .footer-nav-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* Mobile and tablet UX refinements */
:focus-visible {
    outline: 3px solid rgba(201, 169, 97, 0.72);
    outline-offset: 3px;
}

body {
    overflow-x: hidden;
}

img {
    height: auto;
}

label {
    display: grid;
    gap: 7px;
    font-weight: 800;
}

input,
select,
textarea {
    min-height: 48px;
    font-size: 16px;
}

.button,
button,
.site-nav a,
.footer-column a,
.footer-contact-list a {
    min-height: 44px;
}

.tour-card,
.review-card,
.payment-card,
.channel-card,
.package-card,
.policy-content article {
    content-visibility: auto;
    contain-intrinsic-size: 280px;
}

.table-shell,
.table-wrap {
    -webkit-overflow-scrolling: touch;
    scrollbar-color: var(--gold) rgba(201, 169, 97, 0.16);
}

.table-shell {
    scroll-snap-type: x proximity;
}

.comparison-table th,
.comparison-table td {
    scroll-snap-align: start;
}

@media (max-width: 1120px) {
    .site-header {
        align-items: center;
        gap: 14px;
        padding: 12px 4vw;
    }

    .brand {
        min-width: 0;
    }

    .brand span {
        min-width: 0;
    }

    .brand strong,
    .brand small {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .nav-toggle {
        display: inline-flex;
        flex: 0 0 auto;
        align-items: center;
        justify-content: center;
        min-width: 70px;
    }

    .site-nav {
        position: fixed;
        top: 82px;
        left: 4vw;
        right: 4vw;
        z-index: 35;
        display: none;
        width: auto;
        max-height: calc(100dvh - 102px);
        overflow-y: auto;
        padding: 12px;
        background: rgba(255, 255, 255, 0.98);
        border: 1px solid var(--line);
        border-radius: 8px;
        box-shadow: var(--shadow);
    }

    .site-nav[data-open] {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .site-nav a {
        display: flex;
        align-items: center;
        padding: 10px 12px;
        background: var(--wash);
        border-radius: 8px;
    }

    .site-nav .nav-admin {
        grid-column: 1 / -1;
        justify-content: center;
        background: var(--navy);
        color: #fff;
    }

    .header-language {
        order: 3;
        width: 100%;
    }

    .header-language label {
        grid-template-columns: auto minmax(0, 1fr);
        align-items: center;
    }

    .luxury-hero {
        gap: 24px;
        min-height: auto;
        padding: 72px 4vw 38px;
    }

    .quick-book {
        width: min(100%, 720px);
    }

    .tour-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .channel-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .announcement-bar {
        display: none;
    }

    .site-header {
        top: 0;
    }

    .site-nav {
        top: 72px;
    }

    .site-nav[data-open] {
        grid-template-columns: 1fr;
    }

    .luxury-hero,
    .hero {
        padding: 44px 4vw 26px;
    }

    .hero-content h1 {
        font-size: 2.45rem;
        line-height: 1.05;
    }

    .hero-copy {
        font-size: 1rem;
    }

    .hero-actions,
    .form-actions,
    .tour-actions,
    .button-row {
        display: grid;
        width: 100%;
        grid-template-columns: 1fr;
    }

    .hero-actions .button,
    .form-actions .button,
    .form-actions button,
    .quick-book .button,
    .tour-actions .button,
    .button-row .button {
        width: 100%;
    }

    .tour-conversion-strip {
        justify-content: flex-start;
        padding-inline: 4vw;
    }

    .tour-conversion-strip span,
    .market-trust-list span {
        width: 100%;
        justify-content: center;
        text-align: center;
        border-radius: 8px;
    }

    .price-table div {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .hero-stats {
        gap: 10px;
        margin-top: 22px;
    }

    .hero-stats div {
        padding-top: 10px;
    }

    .hero-stats strong {
        font-size: 1.25rem;
    }

    .hero-stats span {
        font-size: 0.62rem;
        letter-spacing: 0.08em;
    }

    .quick-book,
    .booking-form,
    .booking-summary,
    .detail-panel,
    .policy-content article {
        padding: 16px;
    }

    .section,
    .booking-layout,
    .waiver-layout {
        padding: 48px 4vw;
    }

    .page-hero {
        padding: 52px 4vw 28px;
    }

    .tour-grid,
    .metric-grid,
    .facts-row,
    .detail-columns,
    .package-grid,
    .process-grid,
    .payment-grid,
    .payment-grid.compact,
    .channel-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .tour-card.horizontal {
        grid-template-columns: 1fr;
    }

    .tour-card.horizontal img {
        height: auto;
        aspect-ratio: 16 / 10;
    }

    .tour-image-overlay {
        position: static;
        color: var(--ink);
        background: var(--champagne);
        opacity: 1;
        transform: none;
    }

    .tour-image-overlay strong {
        color: var(--ink);
    }

    .tour-image-overlay em {
        background: var(--gold);
    }

    .tour-detail-hover {
        position: relative;
        right: auto;
        bottom: auto;
        width: 100%;
        margin-top: 20px;
        opacity: 1;
        transform: none;
    }

    .payment-card {
        padding: 16px;
    }

    .channel-card {
        min-height: 0;
        padding: 22px 16px;
    }

    .faq-item summary {
        padding: 20px 38px 20px 0;
        font-size: 1.05rem;
    }

    .faq-item summary::after {
        top: 18px;
    }

    .comparison-table {
        min-width: 720px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 13px 14px;
        font-size: 0.92rem;
    }

    .footer-bottom,
    .footer-bottom nav {
        display: grid;
        grid-template-columns: 1fr;
    }

    .chat-widget {
        left: 12px;
        right: 12px;
        bottom: 12px;
    }

    .cookie-consent {
        left: 12px;
        right: 12px;
        bottom: 12px;
        display: grid;
    }

    .cookie-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .chat-open {
        align-self: flex-end;
        width: auto;
    }

    .chat-panel {
        width: 100%;
        max-height: calc(100dvh - 92px);
    }

    .chat-log {
        max-height: 42dvh;
    }

    .chat-form {
        display: grid;
        grid-template-columns: 1fr;
    }

    #review-toast-container {
        display: none;
    }
}

@media (max-width: 430px) {
    .brand-logo {
        width: 38px;
        height: 38px;
    }

    .brand strong {
        font-size: 1rem;
    }

    .brand small {
        display: none;
    }

    .nav-toggle {
        min-width: 64px;
        padding-inline: 10px;
    }

    .header-language label {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 2.15rem;
    }

    .hero-stats {
        grid-template-columns: 1fr 1fr;
    }

    .payment-card {
        gap: 12px;
    }

    .payment-icon,
    .channel-icon {
        width: 40px;
        height: 40px;
    }
}

/* Final mobile alignment pass */
@media (max-width: 900px) {
    .site-header {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
        gap: 10px 12px;
        padding: 10px 4vw;
    }

    .brand {
        min-width: 0;
    }

    .brand span {
        min-width: 0;
    }

    .brand strong,
    .brand small {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .nav-toggle {
        grid-column: 2;
        grid-row: 1;
        min-height: 42px;
        min-width: 72px;
    }

    .header-language {
        grid-column: 1 / -1;
        order: initial;
        min-width: 0;
        width: 100%;
    }

    .header-language label {
        display: grid;
        grid-template-columns: auto minmax(0, 1fr);
        gap: 8px;
        align-items: center;
    }

    .header-language select {
        width: 100%;
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 8px);
        left: 4vw;
        right: 4vw;
        width: auto;
        max-height: calc(100dvh - 128px);
    }

    .luxury-hero,
    .hero {
        align-items: stretch;
        gap: 22px;
        padding: 44px 4vw 30px;
    }

    .hero-content,
    .section-head,
    .section-head.centered {
        max-width: none;
    }

    .hero-content h1 {
        font-size: 3rem;
        line-height: 1.02;
    }

    .hero-copy {
        max-width: 620px;
    }

    .quick-book {
        width: 100%;
        max-width: none;
        justify-self: stretch;
    }

    .tour-grid,
    .reviews-carousel,
    .reviews-carousel.full,
    .process-grid,
    .payment-grid,
    .payment-grid.compact,
    .channel-grid,
    .package-grid,
    .conversion-grid,
    .detail-grid,
    .detail-columns,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .tour-card {
        display: grid;
    }

    .tour-card > div,
    .review-card,
    .payment-card,
    .channel-card,
    .detail-panel,
    .package-card {
        min-width: 0;
    }

    .tour-meta,
    .panel-head,
    .panel-actions,
    .export-actions,
    .admin-topbar {
        align-items: stretch;
    }

    .tour-meta a,
    .tour-meta .button,
    .panel-actions a,
    .export-actions a,
    .export-actions button {
        justify-content: center;
    }

    .comparison-table {
        min-width: 680px;
    }
}

@media (max-width: 640px) {
    .site-header {
        gap: 8px 10px;
    }

    .brand-logo {
        width: 40px;
        height: 40px;
    }

    .brand strong {
        font-size: 1.06rem;
        line-height: 1.05;
    }

    .brand small {
        font-size: 0.58rem;
        letter-spacing: 0.08em;
    }

    .site-nav {
        top: calc(100% + 8px);
        max-height: calc(100dvh - 128px);
    }

    .site-nav[data-open] {
        grid-template-columns: 1fr;
    }

    .site-nav a {
        justify-content: center;
        text-align: center;
    }

    .header-language label {
        grid-template-columns: 1fr;
    }

    .section,
    .booking-layout,
    .waiver-layout {
        padding: 42px 4vw;
    }

    .section-head,
    .section-head.centered {
        margin-bottom: 24px;
        text-align: left;
    }

    .section-head h2,
    .payment-section h2,
    .contact-channel-section h2,
    .faq-section h2,
    .comparison-section h2 {
        font-size: 2rem;
        line-height: 1.08;
    }

    .luxury-hero,
    .hero {
        padding: 34px 4vw 26px;
    }

    .hero-content h1 {
        font-size: 2.45rem;
        line-height: 1.04;
    }

    .hero-actions,
    .form-actions,
    .tour-actions,
    .button-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .hero-actions .button,
    .form-actions .button,
    .form-actions button,
    .tour-actions .button,
    .button-row .button,
    .quick-book .button,
    .quick-book button {
        width: 100%;
    }

    .hero-stats,
    .facts-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-stats div,
    .facts-row div {
        min-width: 0;
    }

    .quick-book,
    .booking-form,
    .booking-summary,
    .detail-panel,
    .review-card,
    .payment-card,
    .channel-card,
    .package-card,
    .policy-content article {
        padding: 16px;
    }

    .tour-card > div {
        padding: 16px;
    }

    .tour-meta {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .tour-meta a {
        display: inline-flex;
        min-height: 42px;
        align-items: center;
        justify-content: center;
        padding: 9px 12px;
        border: 1px solid var(--line);
        border-radius: 8px;
        background: var(--wash);
        font-weight: 900;
    }

    .tour-image-overlay {
        gap: 6px;
        padding: 14px 16px;
    }

    .payment-card {
        grid-template-columns: 44px minmax(0, 1fr);
        align-items: start;
    }

    .payment-icon,
    .channel-icon {
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }

    .channel-card {
        text-align: center;
    }

    .review-meta {
        align-items: flex-start;
    }

    .price-table div {
        padding: 14px;
    }

    .fast-contact-links a {
        display: grid;
        grid-template-columns: 1fr;
        justify-items: start;
    }

    .fast-contact-links small {
        text-align: left;
    }

    .timeline-list div {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .faq-item summary {
        padding-right: 42px;
        line-height: 1.28;
    }

    .footer-grid,
    .footer-nav-grid,
    .footer-bottom,
    .footer-bottom nav {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .footer-bottom nav a {
        display: inline-flex;
        align-items: center;
        min-height: 34px;
    }

    .cookie-consent {
        bottom: 76px;
        max-height: calc(100dvh - 116px);
        overflow-y: auto;
    }

    .chat-widget {
        z-index: 80;
    }

    .admin-body {
        display: grid;
        grid-template-columns: 1fr;
    }

    .admin-sidebar {
        position: static;
        height: auto;
        padding: 14px;
    }

    .admin-sidebar nav {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .admin-sidebar nav a {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 42px;
        text-align: center;
    }

    .admin-main {
        padding: 14px;
    }

    .admin-topbar,
    .admin-preview-tools,
    .panel-head,
    .panel-actions,
    .export-actions,
    .inline-form,
    .admin-form-grid {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
    }

    .table-wrap {
        margin-inline: -14px;
        padding-inline: 14px;
    }

    table {
        min-width: 660px;
    }
}

@media (max-width: 430px) {
    .brand {
        gap: 8px;
    }

    .brand-logo {
        width: 36px;
        height: 36px;
    }

    .brand strong {
        font-size: 1rem;
    }

    .hero-content h1 {
        font-size: 2.18rem;
    }

    .hero-stats,
    .facts-row {
        grid-template-columns: 1fr;
    }

    .tour-conversion-strip span,
    .market-trust-list span {
        min-height: 40px;
    }

    .payment-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .payment-icon {
        margin-inline: auto;
    }

    .review-meta {
        display: grid;
        grid-template-columns: auto minmax(0, 1fr);
    }
}

[dir="rtl"] body {
    text-align: right;
}

[dir="rtl"] .site-header,
[dir="rtl"] .hero-actions,
[dir="rtl"] .form-actions,
[dir="rtl"] .tour-meta,
[dir="rtl"] .review-meta,
[dir="rtl"] .footer-bottom {
    direction: rtl;
}

[dir="rtl"] .comparison-table th,
[dir="rtl"] .comparison-table td {
    text-align: right;
}

[dir="rtl"] .policy-note {
    border-left: 0;
    border-right: 3px solid var(--gold);
    border-radius: 8px 0 0 8px;
}

/* Tour hero mobile / tablet */
@media (max-width: 760px) {
    .tour-detail-hero,
    .seo-landing-hero {
        min-height: 420px;
        padding: 60px 5vw 40px;
        align-items: end;
    }

    .tour-detail-content h1 {
        font-size: 1.85rem;
        line-height: 1.1;
    }

    .tour-detail-content p {
        font-size: 0.97rem;
    }

    .tour-detail-hover {
        display: none;
    }
}

@media (max-width: 480px) {
    .tour-detail-hero,
    .seo-landing-hero {
        min-height: 360px;
        padding: 48px 4vw 32px;
    }

    .tour-detail-content h1 {
        font-size: 1.65rem;
    }
}

/* Comparison table inside article — used on moalboal guide */
article .price-table {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

/* Facts row — 2-col on tablet, 1-col below 480px */
@media (max-width: 480px) {
    .facts-row {
        grid-template-columns: 1fr 1fr;
    }
}

/* Author byline */
.author-byline {
    font-size: 0.82rem;
    opacity: 0.72;
    margin-top: 0.75rem;
    font-style: normal;
}

/* Tour conversion strip — wraps cleanly on tablet */
@media (max-width: 900px) and (min-width: 481px) {
    .tour-conversion-strip {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        padding: 16px 4vw;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
    }
}
