/* Dubai Safaris — site-level styles built on the bound design system tokens.
   Design-system tokens (colors/typography/spacing) are inlined directly below
   rather than @import'd — @import chains block first paint serially; inlining
   collapses 3 blocking requests into 0. Font import stays external (CDN font). */
@import url("https://fonts.googleapis.com/css2?family=Figtree:wght@400;500;600;700&display=swap");

/* ---------- Color tokens ---------- */
:root {
  --color-primary: #ff385c;
  --color-primary-active: #e00b41;
  --color-primary-disabled: #ffd1da;
  --color-on-primary: #ffffff;
  --color-tier-vip: #460479;
  --color-tier-heritage: #92174d;
  --color-canvas: #ffffff;
  --color-surface-soft: #f7f7f7;
  --color-surface-strong: #f2f2f2;
  --color-hairline: #dddddd;
  --color-hairline-soft: #ebebeb;
  --color-border-strong: #c1c1c1;
  --color-ink: #222222;
  --color-body: #3f3f3f;
  --color-muted: #6a6a6a;
  --color-muted-soft: #929292;
  --color-star-rating: #222222;
  --color-error-text: #c13515;
  --color-error-text-hover: #b32505;
  --color-legal-link: #428bff;
  --color-scrim: rgba(0, 0, 0, 0.5);
  --surface-page: var(--color-canvas);
  --surface-card: var(--color-canvas);
  --text-heading: var(--color-ink);
  --text-body: var(--color-body);
  --text-muted: var(--color-muted);
  --border-default: var(--color-hairline);
}

/* ---------- Typography tokens ---------- */
:root {
  --font-sans: "Figtree", "Circular", -apple-system, system-ui, Roboto, "Helvetica Neue", sans-serif;
  --type-rating-display-size: 64px;  --type-rating-display-weight: 700; --type-rating-display-lh: 1.1;  --type-rating-display-ls: -1px;
  --type-display-xl-size: 28px;      --type-display-xl-weight: 700;     --type-display-xl-lh: 1.43;     --type-display-xl-ls: 0;
  --type-display-lg-size: 22px;      --type-display-lg-weight: 500;     --type-display-lg-lh: 1.18;     --type-display-lg-ls: -0.44px;
  --type-display-md-size: 21px;      --type-display-md-weight: 700;     --type-display-md-lh: 1.43;     --type-display-md-ls: 0;
  --type-display-sm-size: 20px;      --type-display-sm-weight: 600;     --type-display-sm-lh: 1.2;      --type-display-sm-ls: -0.18px;
  --type-title-md-size: 16px;        --type-title-md-weight: 600;       --type-title-md-lh: 1.25;
  --type-title-sm-size: 16px;        --type-title-sm-weight: 500;       --type-title-sm-lh: 1.25;
  --type-body-md-size: 16px;         --type-body-md-weight: 400;        --type-body-md-lh: 1.5;
  --type-body-sm-size: 14px;         --type-body-sm-weight: 400;        --type-body-sm-lh: 1.43;
  --type-caption-size: 14px;         --type-caption-weight: 500;        --type-caption-lh: 1.29;
  --type-caption-sm-size: 13px;      --type-caption-sm-weight: 400;     --type-caption-sm-lh: 1.23;
  --type-badge-size: 11px;           --type-badge-weight: 600;          --type-badge-lh: 1.18;
  --type-micro-label-size: 12px;     --type-micro-label-weight: 700;    --type-micro-label-lh: 1.33;
  --type-uppercase-tag-size: 8px;    --type-uppercase-tag-weight: 700;  --type-uppercase-tag-lh: 1.25; --type-uppercase-tag-ls: 0.32px;
  --type-button-md-size: 16px;       --type-button-md-weight: 500;      --type-button-md-lh: 1.25;
  --type-button-sm-size: 14px;       --type-button-sm-weight: 500;      --type-button-sm-lh: 1.29;
  --type-link-size: 14px;            --type-link-weight: 400;           --type-link-lh: 1.43;
  --type-nav-link-size: 16px;        --type-nav-link-weight: 600;       --type-nav-link-lh: 1.25;
}
body { font-family: var(--font-sans); color: var(--color-ink, #222222); background: var(--color-canvas, #ffffff); margin: 0; -webkit-font-smoothing: antialiased; }
a { color: var(--color-ink, #222222); }
a:hover { color: var(--color-primary-active, #e00b41); }

/* ---------- Spacing / radius / elevation tokens ---------- */
:root {
  --space-xxs: 2px;
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 12px;
  --space-base: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-xxl: 48px;
  --space-section: 64px;
  --rounded-sm: 8px;
  --rounded-md: 14px;
  --rounded-xl: 32px;
  --rounded-full: 9999px;
  --shadow-card: rgba(0,0,0,0.02) 0 0 0 1px, rgba(0,0,0,0.04) 0 2px 6px 0, rgba(0,0,0,0.1) 0 4px 8px 0;
  --container-max: 1280px;
  --container-listing: 1080px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { overflow-x: hidden; max-width: 100%; }
body {
  font-family: var(--font-sans);
  color: var(--color-ink);
  background: var(--color-canvas);
  margin: 0;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
  overflow-wrap: break-word;
}
/* prevent flex/grid children from forcing horizontal overflow */
img, video, iframe, table { max-width: 100%; }
main, section, header, footer, .wrap, .wrap-narrow { min-width: 0; }
img { max-width: 100%; display: block; }
a { color: var(--color-ink); text-decoration: none; }
a:hover { color: var(--color-primary-active); }
h1, h2, h3, h4 { color: var(--color-ink); margin: 0; text-wrap: pretty; letter-spacing: -0.02em; }
p { margin: 0; color: var(--color-body); }
ul, ol { margin: 0; }

/* ---------- Layout ---------- */
.wrap { max-width: var(--container-max); margin: 0 auto; padding: 0 40px; }
.wrap-narrow { max-width: 820px; margin: 0 auto; padding: 0 40px; }
.section { padding: var(--space-section) 0; }
.section-sm { padding: var(--space-xxl) 0; }
.stack-sm > * + * { margin-top: var(--space-md); }
.grid { display: grid; gap: var(--space-lg); }
.eyebrow {
  font-size: var(--type-micro-label-size); font-weight: 700; line-height: var(--type-micro-label-lh);
  text-transform: uppercase; letter-spacing: 0.08em; color: var(--color-primary);
}
.section-head { max-width: 720px; margin-bottom: var(--space-xl); }
.section-head h2 { font-size: 30px; font-weight: 700; line-height: 1.15; }
.section-head p { margin-top: var(--space-sm); font-size: var(--type-body-md-size); color: var(--color-muted); }
.lead { font-size: 18px; line-height: 1.6; color: var(--color-body); }
.muted { color: var(--color-muted); }

/* ---------- Buttons (mirror DS Button) ---------- */
.btn {
  font-family: var(--font-sans); font-size: var(--type-button-md-size);
  font-weight: var(--type-button-md-weight); line-height: var(--type-button-md-lh);
  border: none; border-radius: var(--rounded-sm); padding: 14px 24px; min-height: 48px;
  cursor: pointer; display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  transition: background 150ms ease, box-shadow 150ms ease, color 150ms ease;
}
.btn-primary { background: var(--color-primary); color: var(--color-on-primary); }
.btn-primary:hover { background: var(--color-primary-active); color: var(--color-on-primary); }
.btn-secondary { background: var(--color-canvas); color: var(--color-ink); border: 1px solid var(--color-ink); }
.btn-secondary:hover { background: var(--color-surface-soft); color: var(--color-ink); }
.btn-pill { border-radius: var(--rounded-full); padding: 10px 20px; min-height: 0; font-size: var(--type-button-sm-size); background: var(--color-primary); color: #fff; }
.btn-pill:hover { background: var(--color-primary-active); color: #fff; }
.btn-tertiary { background: transparent; color: var(--color-ink); padding: 4px 2px; min-height: 0; font-weight: 600; }
.btn-tertiary:hover { text-decoration: underline; color: var(--color-ink); }
.btn-lg { padding: 16px 32px; font-size: 17px; }

/* ---------- Header / mega nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60; background: var(--color-canvas);
  border-bottom: 1px solid var(--color-hairline);
}
.nav-topbar { background: var(--color-ink); color: #fff; font-size: 13px; }
.nav-topbar .wrap { display: flex; align-items: center; justify-content: space-between; height: 40px; }
.nav-topbar a { color: #fff; opacity: 0.85; }
.nav-topbar a:hover { color: #fff; opacity: 1; }
.nav-topbar .topbar-contact { display: flex; gap: 20px; align-items: center; }
.nav-topbar .topbar-social { display: flex; gap: 14px; align-items: center; }
.nav-topbar .topbar-social a { display: inline-flex; }
.nav-main { display: flex; align-items: center; justify-content: space-between; height: 78px; }
.brand { font-size: 22px; font-weight: 700; color: var(--color-primary); letter-spacing: -0.4px; display: inline-flex; align-items: center; }
.brand span { color: var(--color-ink); }
.brand-logo { height: 44px; width: auto; display: block; }
.site-footer .brand-logo { height: 40px; }
.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; padding: 0; margin: 0; }
.nav-links > li { position: relative; }
.nav-links > li > a {
  display: inline-flex; align-items: center; gap: 4px; padding: 10px 14px; border-radius: var(--rounded-full);
  font-size: var(--type-nav-link-size); font-weight: 600; color: var(--color-ink); transition: background 150ms ease;
}
.nav-links > li > a:hover { background: var(--color-surface-soft); color: var(--color-ink); }
.nav-links > li > a[aria-current="page"] { color: var(--color-primary); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.chev { width: 15px; height: 15px; }

/* mega dropdown */
.mega {
  position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%) translateY(6px);
  background: #fff; border: 1px solid var(--color-hairline); border-radius: var(--rounded-md);
  box-shadow: var(--shadow-card); padding: var(--space-lg); width: max-content; max-width: 720px;
  opacity: 0; visibility: hidden; transition: opacity 160ms ease, transform 160ms ease; z-index: 70;
}
.nav-links > li:hover .mega, .nav-links > li:focus-within .mega { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.mega-grid { display: grid; grid-template-columns: repeat(2, minmax(210px, 1fr)); gap: 4px 28px; }
.mega-grid.cols-1 { grid-template-columns: 1fr; }
.mega-col-title { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--color-muted); margin: 4px 0 8px; }
.mega a.mega-link { display: block; padding: 8px 10px; border-radius: var(--rounded-sm); font-size: 15px; color: var(--color-ink); font-weight: 500; }
.mega a.mega-link:hover { background: var(--color-surface-soft); color: var(--color-primary-active); }
.mega a.mega-link small { display: block; font-weight: 400; color: var(--color-muted); font-size: 12px; margin-top: 2px; }

/* mobile nav */
.nav-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--color-hairline); border-radius: var(--rounded-full); background: #fff; cursor: pointer; align-items: center; justify-content: center; flex: none; }
.mobile-drawer { display: none; }
@media (max-width: 1100px) {
  .nav-links, .nav-cta .btn { display: none; }
  .nav-toggle { display: inline-flex; }
  .mobile-drawer { display: block; max-height: 0; opacity: 0; overflow: hidden; transition: max-height 280ms ease, opacity 200ms ease; }
  .mobile-drawer.open { max-height: 80vh; opacity: 1; overflow-y: auto; padding: 14px 20px 20px !important; }
  .mobile-drawer a { display: block; padding: 12px 4px; font-size: 16px; font-weight: 600; border-bottom: 1px solid var(--color-hairline-soft); }
  .nav-topbar .wrap { flex-wrap: wrap; height: auto; padding: 8px 0; gap: 8px 16px; }
  .nav-topbar .topbar-contact { flex-wrap: wrap; gap: 10px 16px; }
  .nav-topbar .topbar-contact a:nth-child(2) { display: none; }
}
@media (max-width: 760px) { .nav-topbar { display: none; } .nav-main { height: 66px; } .brand-logo { height: 36px; } }

/* ---------- Breadcrumbs ---------- */
.breadcrumbs { padding: 16px 0; font-size: 13px; color: var(--color-muted); }
.breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; padding: 0; margin: 0; }
.breadcrumbs li { display: flex; gap: 8px; align-items: center; white-space: nowrap; }
.breadcrumbs li::after { content: "›"; color: var(--color-border-strong); }
.breadcrumbs li:last-child::after { content: ""; }
.breadcrumbs a { color: var(--color-muted); }
.breadcrumbs a:hover { color: var(--color-primary-active); }
.breadcrumbs [aria-current="page"] { color: var(--color-ink); font-weight: 500; }

/* ---------- Hero ---------- */
.hero { position: relative; border-radius: var(--rounded-md); overflow: hidden; }
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.15) 35%, rgba(0,0,0,0.68) 100%); }
.hero-inner { position: relative; padding: 64px 56px; color: #fff; max-width: 760px; }
.hero-inner h1 { color: #fff; font-size: 44px; line-height: 1.08; font-weight: 700; }
.hero-inner p { color: rgba(255,255,255,0.92); font-size: 18px; margin-top: 16px; line-height: 1.55; }
.hero-tall .hero-inner { min-height: 520px; display: flex; flex-direction: column; justify-content: flex-end; }
.hero-cta { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 32px; margin-top: 32px; flex-wrap: wrap; }
.hero-stats .stat b { display: block; font-size: 26px; font-weight: 700; color: #fff; }
.hero-stats .stat span { font-size: 13px; color: rgba(255,255,255,0.8); }

/* rating chip */
.rating-chip { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; font-size: 14px; }
.rating-chip svg { width: 15px; height: 15px; }

/* ---------- Image placeholder (replaceable) ---------- */
.ph {
  background:
    radial-gradient(120% 120% at 20% 10%, #f6d9a8 0%, #e9b979 32%, #d68f52 62%, #b5652f 100%);
  position: relative; overflow: hidden;
}
.ph::after {
  content: attr(data-label);
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 16px; color: rgba(60,30,10,0.62); font-size: 12px; font-weight: 600;
  letter-spacing: 0.02em; text-transform: uppercase;
}
figure.media { margin: 0; border-radius: var(--rounded-md); overflow: hidden; background: var(--color-surface-soft); }
figure.media img, figure.media .ph { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Cards ---------- */
.card-grid { display: grid; gap: var(--space-lg); grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }
.tour-card { display: flex; flex-direction: column; border-radius: var(--rounded-md); background: #fff; transition: box-shadow 160ms ease, transform 160ms ease; }
.tour-card:hover { box-shadow: var(--shadow-card); }
.tour-card .thumb { aspect-ratio: 4 / 3; border-radius: var(--rounded-md); overflow: hidden; position: relative; background: var(--color-surface-soft); }
.tour-card .thumb img, .tour-card .thumb .ph { width: 100%; height: 100%; object-fit: cover; }
.badge { position: absolute; top: 12px; left: 12px; background: #fff; color: var(--color-ink); font-size: 12px; font-weight: 600; padding: 6px 10px; border-radius: var(--rounded-full); box-shadow: var(--shadow-card); }
.tour-card .body { padding: 12px 4px 4px; display: flex; flex-direction: column; gap: 4px; }
.tour-card .body .row { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.tour-card h3 { font-size: 16px; font-weight: 600; }
.tour-card .place { font-size: 14px; color: var(--color-muted); }
.tour-card .price { margin-top: 6px; font-size: 15px; font-weight: 600; color: var(--color-ink); }
.tour-card .price span { color: var(--color-muted); font-weight: 400; }

/* category strip */
.cat-strip { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.cat-tile { position: relative; border-radius: var(--rounded-xl); overflow: hidden; aspect-ratio: 3 / 4; color: #fff; display: flex; align-items: flex-end; }
.cat-tile .ph, .cat-tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cat-tile .scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.72) 100%); }
.cat-tile .label { position: relative; padding: 20px; }
.cat-tile .label b { display: block; font-size: 19px; font-weight: 700; }
.cat-tile .label span { font-size: 13px; opacity: 0.9; }
.cat-tile:hover .label b { text-decoration: underline; }

/* ---------- Feature / why-us ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 28px; }
.feature { display: flex; flex-direction: column; gap: 10px; }
.feature .ic { width: 44px; height: 44px; border-radius: var(--rounded-full); background: var(--color-surface-soft); display: flex; align-items: center; justify-content: center; color: var(--color-primary); }
.feature h3 { font-size: 17px; font-weight: 700; }
.feature p { font-size: 15px; color: var(--color-muted); }

/* ---------- Comparison / tables ---------- */
.table-scroll { overflow-x: auto; border: 1px solid var(--color-hairline); border-radius: var(--rounded-md); }
table.compare { width: 100%; border-collapse: collapse; min-width: 640px; }
table.compare th, table.compare td { text-align: left; padding: 16px 18px; border-bottom: 1px solid var(--color-hairline-soft); font-size: 15px; }
table.compare thead th { background: var(--color-surface-soft); font-weight: 700; color: var(--color-ink); font-size: 14px; }
table.compare tbody tr:last-child td { border-bottom: none; }
table.compare td:first-child, table.compare th:first-child { font-weight: 600; }

/* ---------- FAQ ---------- */
.faq { border-top: 1px solid var(--color-hairline); }
.faq details { border-bottom: 1px solid var(--color-hairline); }
.faq summary { cursor: pointer; list-style: none; padding: 22px 46px 22px 0; font-size: 17px; font-weight: 600; position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .mk { position: absolute; right: 6px; top: 50%; transform: translateY(-50%); flex: none; transition: transform 180ms ease; }
.faq details[open] summary .mk { transform: translateY(-50%) rotate(45deg); }
.faq .ans { padding: 0 0 22px; color: var(--color-body); font-size: 15px; line-height: 1.6; max-width: 760px; }

/* ---------- Reviews ---------- */
.review-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.review { border: 1px solid var(--color-hairline); border-radius: var(--rounded-md); padding: 22px; display: flex; flex-direction: column; gap: 12px; }
.review .stars { display: flex; gap: 2px; color: var(--color-ink); }
.review p { font-size: 15px; color: var(--color-body); }
.review .who { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.review .who .av { width: 40px; height: 40px; border-radius: var(--rounded-full); background: var(--color-surface-strong); display: flex; align-items: center; justify-content: center; font-weight: 700; color: var(--color-ink); }
.review .who b { font-size: 14px; display: block; }
.review .who span { font-size: 13px; color: var(--color-muted); }

/* ---------- Callout / booking CTA band ---------- */
.cta-band { background: var(--color-ink); color: #fff; border-radius: var(--rounded-md); padding: 48px; display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-band h2 { color: #fff; font-size: 28px; font-weight: 700; max-width: 620px; }
.cta-band p { color: rgba(255,255,255,0.82); margin-top: 8px; max-width: 560px; }

/* ---------- Prose (blog / static) ---------- */
.prose { max-width: 760px; }
.prose > * + * { margin-top: 20px; }
.prose h2 { font-size: 26px; font-weight: 700; margin-top: 44px; }
.prose h3 { font-size: 20px; font-weight: 700; margin-top: 32px; }
.prose p, .prose li { font-size: 17px; line-height: 1.7; color: var(--color-body); }
.prose ul, .prose ol { padding-left: 22px; }
.prose li + li { margin-top: 8px; }
.prose a { color: var(--color-primary-active); text-decoration: underline; }
.prose blockquote { border-left: 3px solid var(--color-primary); padding-left: 20px; color: var(--color-ink); font-size: 19px; font-style: italic; margin: 8px 0; }
.tldr { background: var(--color-surface-soft); border-radius: var(--rounded-md); padding: 24px 28px; }
.tldr h2 { margin-top: 0; font-size: 18px; }
.tldr ul { margin-top: 10px; }

/* key facts box */
.keyfacts { border: 1px solid var(--color-hairline); border-radius: var(--rounded-md); padding: 8px 20px; }
.keyfacts .kf { display: flex; justify-content: space-between; gap: 16px; padding: 12px 0; border-bottom: 1px solid var(--color-hairline-soft); font-size: 15px; }
.keyfacts .kf:last-child { border-bottom: none; }
.keyfacts .kf span { color: var(--color-muted); }
.keyfacts .kf b { font-weight: 600; text-align: right; }

/* two-col listing layout */
.listing { display: grid; grid-template-columns: 1fr 360px; gap: 48px; align-items: start; min-width: 0; }
.listing > * { min-width: 0; }
.sticky-side { position: sticky; top: 100px; }
.book-card { border: 1px solid var(--color-hairline); border-radius: var(--rounded-md); box-shadow: var(--shadow-card); padding: 24px; }
.book-card .price-lg { font-size: 26px; font-weight: 700; }
.book-card .price-lg span { font-size: 15px; font-weight: 400; color: var(--color-muted); }
.book-row { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--color-hairline); border-radius: var(--rounded-sm); overflow: hidden; margin: 16px 0; }
.book-row label { padding: 10px 12px; border-bottom: 1px solid var(--color-hairline); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: var(--color-muted); }
.book-row .cell { padding: 10px 12px; }
.book-row .cell:nth-child(2) { border-left: 1px solid var(--color-hairline); }
.book-row select, .book-row input { border: none; font-family: inherit; font-size: 14px; width: 100%; outline: none; color: var(--color-ink); background: transparent; }
.book-field { display: grid; gap: 6px; margin-bottom: 12px; }
.book-field label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: var(--color-muted); }
.book-field input, .book-field textarea { width: 100%; padding: 11px 12px; border: 1px solid var(--color-hairline); border-radius: var(--rounded-sm); font-family: inherit; font-size: 14px; color: var(--color-ink); background: #fff; }
.book-field textarea { resize: vertical; min-height: 60px; }
.booking-form-msg { font-size: 13px; }

/* ---------- Guest quantity steppers ---------- */
.qty-group { border: 1px solid var(--color-hairline); border-radius: var(--rounded-sm); overflow: hidden; margin: 16px 0; }
.qty-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 12px 14px; border-bottom: 1px solid var(--color-hairline); }
.qty-row:last-child { border-bottom: none; }
.qty-label b { display: block; font-size: 14px; font-weight: 700; color: var(--color-ink); }
.qty-label span { font-size: 12px; color: var(--color-muted); }
.qty-ctrl { display: flex; align-items: center; gap: 10px; flex: none; }
.qty-btn { width: 30px; height: 30px; border-radius: var(--rounded-full); border: 1px solid var(--color-hairline); background: #fff; font-size: 17px; line-height: 1; display: flex; align-items: center; justify-content: center; cursor: pointer; color: var(--color-ink); }
.qty-btn:hover { border-color: var(--color-ink); }
.qty-btn:active { background: var(--color-surface-soft); }
.qty-ctrl input { width: 26px; text-align: center; border: none; font-size: 15px; font-weight: 700; color: var(--color-ink); background: transparent; -moz-appearance: textfield; }
.qty-ctrl input::-webkit-outer-spin-button, .qty-ctrl input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

/* ---------- Live booking summary ---------- */
.booking-summary { border: 1px solid var(--color-hairline); border-radius: var(--rounded-sm); padding: 14px 16px; margin: 4px 0 16px; background: var(--color-surface-soft); }
.booking-summary .bs-row { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; font-size: 13px; padding: 4px 0; }
.booking-summary .bs-row span { color: var(--color-muted); }
.booking-summary .bs-row b { color: var(--color-ink); font-weight: 600; text-align: right; }
.booking-summary .bs-line b { font-weight: 400; }
.booking-summary .bs-hr { border: none; border-top: 1px solid var(--color-hairline); margin: 8px 0; }
.booking-summary .bs-total { margin-top: 4px; padding-top: 8px; border-top: 1px solid var(--color-hairline); }
.booking-summary .bs-total span, .booking-summary .bs-total b { font-size: 16px; font-weight: 700; color: var(--color-ink); }

/* ---------- Booking sheet (mobile bottom-sheet / desktop centered modal) ---------- */
.book-trigger-btn { width: 100%; margin-top: 16px; }
.booking-sheet-overlay { position: fixed; inset: 0; z-index: 200; background: rgba(20,16,14,0.55); display: flex; align-items: flex-end; justify-content: center; }
.booking-sheet-overlay[hidden] { display: none; }
.booking-sheet { background: #fff; width: 100%; max-height: 92vh; border-radius: 20px 20px 0 0; display: flex; flex-direction: column; box-shadow: 0 -12px 44px rgba(0,0,0,0.28); animation: sheet-up 0.28s cubic-bezier(.2,.8,.2,1); }
@keyframes sheet-up { from { transform: translateY(100%); } to { transform: translateY(0); } }
.sheet-head { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; border-bottom: 1px solid var(--color-hairline); flex: none; }
.sheet-close { width: 36px; height: 36px; border-radius: var(--rounded-full); border: 1px solid var(--color-hairline); background: #fff; font-size: 20px; line-height: 1; cursor: pointer; color: var(--color-ink); flex: none; }
.sheet-steps { display: flex; gap: 6px; }
.step-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--color-hairline); transition: all 0.2s ease; }
.step-dot.active { background: var(--color-primary); width: 20px; border-radius: 4px; }
.sheet-body { flex: 1; overflow-y: auto; padding: 20px; -webkit-overflow-scrolling: touch; }
.sheet-panel h3 { font-size: 18px; font-weight: 700; margin: 0 0 16px; color: var(--color-ink); }
.sheet-panel .qty-group { margin: 0; }
.sheet-panel .booking-summary { margin: 0; }
.sheet-footer { display: flex; align-items: center; gap: 14px; padding: 14px 20px; border-top: 1px solid var(--color-hairline); flex: none; background: #fff; border-radius: 0 0 20px 20px; }
.sheet-total { flex: 1; display: flex; flex-direction: column; min-width: 0; }
.sheet-total span { font-size: 11px; text-transform: uppercase; letter-spacing: 0.04em; color: var(--color-muted); }
.sheet-total b { font-size: 20px; font-weight: 700; color: var(--color-ink); }
.sheet-footer .btn { flex: none; min-width: 128px; min-height: 48px; }

/* Date-selection cards */
.date-cards { display: grid; gap: 10px; }
.date-card { display: flex; align-items: center; justify-content: space-between; gap: 12px; width: 100%; padding: 14px 16px; border: 1.5px solid var(--color-hairline); border-radius: 14px; cursor: pointer; text-align: left; background: #fff; transition: border-color 0.15s ease, background 0.15s ease; font-family: inherit; }
.date-card b { display: block; font-size: 15px; font-weight: 700; color: var(--color-ink); }
.date-card span { font-size: 12px; color: var(--color-muted); }
.date-card .dc-check { width: 22px; height: 22px; border-radius: 50%; border: 1.5px solid var(--color-hairline); flex: none; position: relative; }
.date-card.active { border-color: var(--color-primary); background: color-mix(in oklch, var(--color-primary) 6%, #fff); }
.date-card.active .dc-check { background: var(--color-primary); border-color: var(--color-primary); }
.date-card.active .dc-check::after { content: ""; position: absolute; inset: 0; margin: auto; width: 6px; height: 10px; border: solid #fff; border-width: 0 2px 2px 0; transform: translate(1px,-1px) rotate(45deg); }

@media (min-width: 761px) {
  .booking-sheet-overlay { align-items: center; }
  .booking-sheet { width: 480px; max-width: 92vw; border-radius: 20px; max-height: 88vh; animation: sheet-pop 0.2s cubic-bezier(.2,.8,.2,1); }
  @keyframes sheet-pop { from { transform: scale(0.96); opacity: 0; } to { transform: scale(1); opacity: 1; } }
}
body.sheet-open { overflow: hidden; }
.booking-sheet [hidden] { display: none !important; }
.sheet-total { min-width: 84px; }
.sheet-total span, .sheet-total b { white-space: nowrap; }

/* ---------- Premium gallery + lightbox ---------- */
.pgallery { display: grid; grid-template-columns: 1.6fr 1fr 1fr; grid-template-rows: repeat(2, 150px); gap: 10px; }
.pgallery .pg-item { position: relative; border-radius: var(--rounded-md); overflow: hidden; cursor: pointer; background: var(--color-surface-soft); border: 0; padding: 0; display: block; width: 100%; height: 100%; }
.pgallery .pg-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.35s ease; }
.pgallery .pg-item:hover img { transform: scale(1.04); }
.pgallery .pg-featured { grid-row: span 2; grid-column: span 1; }
.pgallery .pg-item:nth-child(n+6) { display: none; }
.pgallery .pg-more { position: absolute; inset: 0; background: rgba(20,16,14,0.55); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 15px; }
@media (max-width: 760px) {
  .pgallery { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(3, 110px); }
  .pgallery .pg-featured { grid-column: span 2; grid-row: span 1; height: 200px; }
  .pgallery .pg-item:nth-child(n+5) { display: none; }
}
.pg-lightbox { position: fixed; inset: 0; z-index: 300; background: rgba(10,8,7,0.94); display: flex; align-items: center; justify-content: center; }
.pg-lightbox[hidden] { display: none; }
.pg-lightbox .pg-lb-img-wrap { max-width: 92vw; max-height: 82vh; display: flex; align-items: center; justify-content: center; touch-action: pan-y; }
.pg-lightbox img { max-width: 92vw; max-height: 82vh; object-fit: contain; border-radius: var(--rounded-sm); user-select: none; }
.pg-lb-close { position: absolute; top: 20px; right: 20px; width: 44px; height: 44px; border-radius: 50%; border: none; background: rgba(255,255,255,0.12); color: #fff; font-size: 22px; cursor: pointer; }
.pg-lb-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 48px; height: 48px; border-radius: 50%; border: none; background: rgba(255,255,255,0.12); color: #fff; font-size: 22px; cursor: pointer; }
.pg-lb-prev { left: 16px; }
.pg-lb-next { right: 16px; }
.pg-lb-count { position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%); color: #fff; font-size: 13px; opacity: 0.85; }
@media (max-width: 600px) { .pg-lb-nav { width: 40px; height: 40px; } }

/* ---------- Meeting point ---------- */
.meet-point { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: stretch; }
.meet-point-info { display: flex; flex-direction: column; gap: 12px; }
.meet-point-info h3 { font-size: 18px; font-weight: 700; margin: 0; }
.meet-point-info .mp-address { font-size: 14px; color: var(--color-muted); }
.meet-point-info .mp-note { font-size: 14px; line-height: 1.55; }
.meet-point-info .mp-facts { display: grid; gap: 8px; margin-top: 4px; }
.meet-point-info .mp-fact { display: flex; gap: 8px; font-size: 14px; }
.meet-point-info .mp-fact b { color: var(--color-ink); }
.meet-point-map { border-radius: var(--rounded-md); overflow: hidden; min-height: 260px; border: 1px solid var(--color-hairline); }
.meet-point-map iframe { width: 100%; height: 100%; min-height: 260px; border: 0; display: block; }
@media (max-width: 760px) { .meet-point { grid-template-columns: 1fr; } .meet-point-map iframe { min-height: 220px; } }

/* ---------- Hotel pickup (premium) ---------- */
.pickup-card { background: var(--color-surface-soft); border-radius: var(--rounded-xl); padding: 32px; display: grid; gap: 24px; }
.pickup-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.pickup-item { display: flex; gap: 14px; align-items: flex-start; }
.pickup-item .pi-icon { flex: none; width: 40px; height: 40px; border-radius: var(--rounded-full); background: var(--color-primary); color: #fff; display: flex; align-items: center; justify-content: center; }
.pickup-item .pi-icon svg { width: 20px; height: 20px; }
.pickup-item h4 { font-size: 15px; font-weight: 700; margin: 0 0 4px; }
.pickup-item p { font-size: 14px; color: var(--color-muted); margin: 0; line-height: 1.5; }
.pickup-coverage { display: grid; grid-template-columns: 1.2fr 1fr; gap: 24px; align-items: stretch; border-top: 1px solid var(--color-hairline); padding-top: 24px; }
.pickup-coverage-info h4 { font-size: 16px; font-weight: 700; margin: 0 0 8px; }
.pickup-coverage-info p { font-size: 14px; color: var(--color-body); line-height: 1.55; margin: 0 0 16px; }
.pickup-coverage-map { border-radius: var(--rounded-md); overflow: hidden; min-height: 220px; border: 1px solid var(--color-hairline); }
.pickup-coverage-map iframe { width: 100%; height: 100%; min-height: 220px; border: 0; display: block; }
@media (max-width: 760px) { .pickup-card { padding: 24px 20px; } .pickup-coverage { grid-template-columns: 1fr; } .pickup-coverage-map iframe { min-height: 200px; } }

/* pill list of highlights */
.check-list { list-style: none; padding: 0; display: grid; gap: 12px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 16px; color: var(--color-body); }
.check-list li svg { flex: none; margin-top: 3px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; min-width: 0; }
.form-row > * { min-width: 0; }
.incl-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.x-list li svg { color: var(--color-error-text); }

/* itinerary timeline */
.timeline { border-left: 2px solid var(--color-hairline); padding-left: 28px; display: grid; gap: 28px; }
.timeline .step { position: relative; }
.timeline .step::before { content: ""; position: absolute; left: -35px; top: 4px; width: 12px; height: 12px; border-radius: var(--rounded-full); background: var(--color-primary); box-shadow: 0 0 0 4px #fff; }
.timeline .step .t { font-size: 13px; font-weight: 700; color: var(--color-primary); text-transform: uppercase; letter-spacing: 0.04em; }
.timeline .step h4 { font-size: 17px; font-weight: 700; margin: 4px 0 6px; }
.timeline .step p { font-size: 15px; color: var(--color-muted); }

/* gallery */
.gallery { display: grid; grid-template-columns: 2fr 1fr 1fr; grid-auto-rows: 180px; gap: 10px; border-radius: var(--rounded-md); overflow: hidden; }
.gallery figure { margin: 0; overflow: hidden; }
.gallery figure:first-child { grid-row: span 2; grid-column: span 1; }
.gallery figure img, .gallery figure .ph { width: 100%; height: 100%; object-fit: cover; }

/* video */
.video-embed { position: relative; aspect-ratio: 16 / 9; border-radius: var(--rounded-md); overflow: hidden; background: var(--color-ink); }
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-embed .play { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: #fff; }
.video-embed .play .btn-play { width: 72px; height: 72px; border-radius: var(--rounded-full); background: rgba(255,255,255,0.16); backdrop-filter: blur(4px); display: flex; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,0.4); }

/* footer */
.site-footer { background: var(--color-canvas); border-top: 1px solid var(--color-hairline); padding: 56px 0 0; margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr 1fr 1fr; gap: 28px; padding-bottom: 40px; }
.footer-brand .brand { font-size: 22px; }
.footer-brand p { margin-top: 12px; font-size: 14px; color: var(--color-muted); max-width: 320px; }
.footer-social { display: flex; gap: 12px; margin-top: 18px; }
.footer-social a { width: 38px; height: 38px; border-radius: var(--rounded-full); border: 1px solid var(--color-hairline); display: flex; align-items: center; justify-content: center; color: var(--color-ink); }
.footer-social a:hover { background: var(--color-ink); color: #fff; border-color: var(--color-ink); }
.footer-col h3 { font-size: 14px; font-weight: 700; margin-bottom: 14px; }
.footer-col ul { list-style: none; padding: 0; display: grid; gap: 10px; }
.footer-col a { font-size: 14px; color: var(--color-body); }
.footer-col a:hover { color: var(--color-primary-active); }
.legal-band { border-top: 1px solid var(--color-hairline); padding: 22px 0; display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; font-size: 13px; color: var(--color-muted); }
.legal-band a { color: var(--color-muted); }
.legal-band .legal-links { display: flex; gap: 16px; flex-wrap: wrap; }

/* related strip heading */
.related h2 { font-size: 24px; font-weight: 700; margin-bottom: 20px; }

/* ---------- Answer box (AI-search / TL;DR pattern) ---------- */
.answer { background: var(--color-surface-soft); border-radius: var(--rounded-sm); padding: 16px 20px; margin: 14px 0 22px; }
.answer b { color: var(--color-ink); }
.answer p { font-size: 16px; line-height: 1.6; margin: 0; }

/* ---------- Pricing table ---------- */
table.price-table { width: 100%; border-collapse: collapse; min-width: 560px; }
table.price-table th, table.price-table td { text-align: left; padding: 14px 18px; border-bottom: 1px solid var(--color-hairline-soft); font-size: 15px; }
table.price-table thead th { background: var(--color-surface-soft); font-weight: 700; font-size: 14px; }
table.price-table tbody tr:last-child td { border-bottom: none; }
table.price-table td:last-child, table.price-table th:last-child { font-weight: 700; text-align: right; }

/* ---------- Trust bar ---------- */
.trust-bar { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 16px; margin: 28px 0; }
.trust-item { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 600; color: var(--color-ink); padding: 12px 14px; border: 1px solid var(--color-hairline); border-radius: var(--rounded-sm); }
.trust-item svg { flex: none; color: var(--color-primary); }

/* ---------- EEAT byline ---------- */
.eeat-byline { display: flex; flex-wrap: wrap; gap: 6px 16px; font-size: 13px; color: var(--color-muted); margin-top: 10px; }
.eeat-byline b { color: var(--color-ink); }

/* ---------- Guides section (premium) ---------- */
.guides-section { background: var(--color-surface-soft); border-radius: var(--rounded-xl); padding: 56px 40px; margin: 40px 0; }
.guides-head { max-width: 640px; margin: 0 auto 36px; text-align: center; }
.guides-head h2 { font-size: 30px; font-weight: 700; line-height: 1.15; }
.guides-head p { margin-top: 10px; font-size: 16px; color: var(--color-muted); }
.guides-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; max-width: 900px; margin: 0 auto 40px; }
.guides-stats .gstat { text-align: center; }
.guides-stats .gstat b { display: block; font-size: 28px; font-weight: 700; color: var(--color-primary); }
.guides-stats .gstat span { font-size: 13px; color: var(--color-muted); font-weight: 600; }
.guide-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; max-width: 980px; margin: 0 auto; }
.guide-card { background: #fff; border-radius: var(--rounded-xl); box-shadow: var(--shadow-card); padding: 32px 24px; text-align: center; transition: transform 160ms ease, box-shadow 160ms ease; }
.guide-card:hover { transform: translateY(-3px); box-shadow: 0 16px 32px rgba(0,0,0,0.1); }
.guide-photo { width: 116px; height: 116px; border-radius: 50%; overflow: hidden; background: var(--color-surface-soft); margin: 0 auto; box-shadow: 0 0 0 4px #fff, 0 0 0 5px var(--color-hairline); }
.guide-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.guide-body h3 { font-size: 19px; font-weight: 700; margin-top: 18px; }
.guide-role { font-size: 13px; color: var(--color-primary); font-weight: 600; margin-top: 3px; }
.guide-meta { display: grid; gap: 5px; margin-top: 16px; font-size: 13px; color: var(--color-muted); text-align: left; }
.guide-meta b { color: var(--color-ink); font-weight: 600; }
.guide-bio { font-size: 14px; color: var(--color-body); margin-top: 14px; line-height: 1.6; text-align: left; }
.guide-badges { display: grid; gap: 8px; margin-top: 18px; text-align: left; }
.guide-badge { display: flex; align-items: center; gap: 8px; font-size: 12.5px; font-weight: 600; color: var(--color-ink); }
.guide-badge svg { flex: none; color: var(--color-primary); width: 15px; height: 15px; }
.guides-note { max-width: 760px; margin: 40px auto 0; text-align: center; font-size: 15px; color: var(--color-muted); line-height: 1.65; }
@media (max-width: 980px) { .guide-grid { grid-template-columns: 1fr 1fr; max-width: 640px; } .guides-stats { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 760px) { .guides-section { padding: 40px 20px; border-radius: var(--rounded-md); } .guide-grid { grid-template-columns: 1fr; max-width: 380px; } .guides-stats { grid-template-columns: repeat(2, 1fr); gap: 24px 16px; } }

/* utility */
.pill-tag { display: inline-flex; align-items: center; gap: 6px; background: var(--color-surface-soft); color: var(--color-ink); font-size: 13px; font-weight: 600; padding: 6px 12px; border-radius: var(--rounded-full); }
.divider { height: 1px; background: var(--color-hairline); border: none; margin: 0; }
.center { text-align: center; }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }

/* ---------- Floating WhatsApp + Call CTA dock ---------- */
.cta-dock { position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; display: flex; box-shadow: 0 -4px 22px rgba(0,0,0,0.16); }
.cta-dock a { flex: 1; display: flex; align-items: center; justify-content: center; gap: 10px; min-height: 58px; padding: 14px; color: #fff; font-weight: 700; font-size: 17px; letter-spacing: 0.01em; transition: filter 150ms ease; }
.cta-dock a:hover { color: #fff; filter: brightness(1.07); }
.cta-dock a:active { filter: brightness(0.95); }
.cta-dock .wa { background: #1fa855; }
.cta-dock .call { background: #d33a2c; }
.cta-dock a svg { flex: none; }
@media (min-width: 761px) {
  .cta-dock { left: auto; right: 24px; bottom: 24px; width: auto; border-radius: var(--rounded-full); overflow: hidden; box-shadow: var(--shadow-card), 0 8px 24px rgba(0,0,0,0.18); }
  .cta-dock a { padding: 14px 30px; min-height: 54px; font-size: 16px; }
}
@media (max-width: 760px) { body { padding-bottom: 76px; } .book-card { scroll-margin-bottom: 76px; } }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .listing { grid-template-columns: 1fr !important; }
  .sticky-side { position: static; }
  .incl-cols { grid-template-columns: 1fr; gap: 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .check-list, .incl-cols, .feature-grid, .guide-grid, .review-grid, .form-row { grid-template-columns: 1fr !important; }
  .wrap, .wrap-narrow { padding: 0 20px; }
  .hero-inner { padding: 40px 24px; }
  .hero-inner h1 { font-size: 32px; }
  .section { padding: 44px 0; }
  .cta-band { padding: 32px 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .section-head h2 { font-size: 25px; }
  .listing { grid-template-columns: 1fr !important; gap: 28px; }
  figure.media { max-width: 100%; }
  .book-row { grid-template-columns: 1fr; }
  .book-row .cell:nth-child(2) { border-left: none; border-top: 1px solid var(--color-hairline); }
  .book-row select, .book-row input { font-size: 16px; min-height: 44px; }
  .book-field input, .book-field textarea { font-size: 16px; min-height: 44px; }
  .qty-row { padding: 14px; }
  .qty-btn { width: 44px; height: 44px; font-size: 20px; }
  .book-card { padding: 20px; }
  .book-card .btn { min-height: 48px; font-size: 16px; }
  .book-card form#booking-form { padding-bottom: 8px; }
  table.compare { min-width: 560px; }
  .gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 140px; }
  .gallery figure:first-child { grid-row: span 1; }
  .cat-strip { grid-template-columns: 1fr 1fr; }
  .feature-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .review-grid { grid-template-columns: 1fr; }
  .card-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 14px; }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .cat-strip { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .card-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { gap: 16px 24px; }
}
