/* =========================================================
   Ol' Salty's Ranch — Puerto Vallarta Adventures
   Retro tropical adventure styles (layout pattern: fishandtours.com)
   ========================================================= */

:root {
  --black: #000000;
  --black-2: #17120d;
  --brown: #4F2B24;
  --orange: #F67716;
  --gold: #F5AC21;
  --sand: #F3D595;
  --turquoise: #3EA98F;
  --turquoise-2: #2c8069;
  --bluegray: #7780A1;
  --white: #ffffff;
  --cream: #F7F6F3;
  --bg: #FBF8F2;
  --gray-1: #EFE7D8;
  --gray-2: #DCD0B4;
  --text: #241a14;
  --muted: #6b6355;
  --shadow-sm: 0 2px 6px rgba(23, 18, 13, 0.08);
  --shadow-md: 0 8px 24px rgba(23, 18, 13, 0.12);
  --shadow-lg: 0 18px 50px rgba(23, 18, 13, 0.22);
  --radius: 14px;
  --radius-lg: 20px;
  --container: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--black-2);
  margin: 0 0 .4em;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2rem, 4.2vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1em; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.section-tight { padding: 56px 0; }
.section-title { text-align: center; margin-bottom: 40px; }
.section-title h2 { margin-bottom: 10px; }
.section-title p { color: var(--muted); max-width: 720px; margin: 0 auto; }
.eyebrow {
  display: inline-block;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: .78rem;
  font-weight: 700;
  color: var(--turquoise-2);
  margin-bottom: 10px;
}

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 999px;
  border: 0;
  font-weight: 600;
  font-size: .95rem;
  transition: transform .15s ease, box-shadow .2s ease, background .2s;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--orange) 0%, var(--gold) 100%);
  color: #1c1206;
  box-shadow: 0 6px 16px rgba(246, 119, 22, .35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 22px rgba(246, 119, 22, .45); }
.btn-secondary {
  background: var(--black);
  color: var(--white);
}
.btn-secondary:hover { background: var(--black-2); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--black-2);
  border: 1.5px solid var(--gray-2);
}
.btn-outline:hover { border-color: var(--turquoise); color: var(--turquoise-2); }
.btn-turquoise {
  background: var(--turquoise);
  color: #fff;
  box-shadow: 0 6px 16px rgba(62,169,143,.35);
}
.btn-turquoise:hover { transform: translateY(-2px); }
.btn-block { width: 100%; justify-content: center; }
.btn-lg { padding: 16px 28px; font-size: 1rem; }
.btn-sm { padding: 9px 16px; font-size: .85rem; }
.btn:disabled { opacity: .6; cursor: not-allowed; transform: none !important; }

/* ============ Header ============ */
.header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(247,246,243,.96);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--gray-1);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 84px;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo img { height: 62px; width: auto; }

.nav { display: flex; align-items: center; gap: 28px; }
.nav a {
  font-weight: 500;
  font-size: .95rem;
  color: var(--text);
  position: relative;
  transition: color .15s;
}
.nav a:hover, .nav a.active { color: var(--turquoise-2); }
.nav a.active::after {
  content: ''; position: absolute; bottom: -8px; left: 0; right: 0;
  height: 3px; background: var(--gold); border-radius: 3px;
}

.header-cta { display: flex; align-items: center; gap: 14px; }
.cart-btn {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--gray-1); color: var(--black-2);
}
.cart-btn svg { width: 20px; height: 20px; }
.cart-count {
  position: absolute; top: -4px; right: -4px;
  background: var(--orange); color: #fff;
  font-size: .68rem; font-weight: 700;
  width: 18px; height: 18px; border-radius: 50%;
  display: grid; place-items: center;
}
.menu-toggle {
  display: none; background: none; border: 0; padding: 6px;
}
.menu-toggle svg { width: 30px; height: 30px; color: var(--black-2); }

@media (max-width: 980px) {
  .nav, .header-cta .btn { display: none; }
  .menu-toggle { display: inline-flex; }
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 84px;
  left: 0;
  right: 0;
  width: 100%;
  height: calc(100vh - 84px);
  height: calc(100dvh - 84px);
  background: var(--cream);
  z-index: 79;
  padding: 30px 24px;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid var(--gray-1);
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 14px 12px;
  font-size: 1.05rem;
  font-weight: 500;
  border-bottom: 1px solid var(--gray-1);
  color: var(--black-2);
}
.mobile-menu .btn { margin-top: 14px; justify-content: center; }

/* ============ Hero ============ */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
  background: #0a0703;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(180deg, rgba(10,7,3,.4) 0%, rgba(10,7,3,.88) 100%),
    var(--hero-image, url('../../img/hero.jpg'));
  background-size: cover;
  background-position: center;
  filter: saturate(1.1);
}
.hero-inner {
  position: relative;
  padding: 80px 0;
  max-width: 880px;
}
.hero h1 {
  color: #fff;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  margin-bottom: 18px;
  text-shadow: 0 2px 18px rgba(0,0,0,.5);
}
.hero p { font-size: 1.1rem; opacity: .92; margin-bottom: 28px; max-width: 660px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-badges {
  margin-top: 36px;
  display: flex; gap: 22px; flex-wrap: wrap;
  font-size: .92rem; opacity: .9;
}
.hero-badges span { display: inline-flex; align-items: center; gap: 8px; }
.hero-badges svg { width: 18px; height: 18px; color: var(--gold); }

/* Search bar */
.search-bar {
  position: relative;
  margin-top: -45px;
  z-index: 5;
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
  padding: 18px;
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  gap: 6px;
  align-items: end;
}
.search-bar .field {
  padding: 6px 16px;
  border-right: 1px solid var(--gray-1);
}
.search-bar .field:last-of-type { border-right: 0; }
.search-bar label {
  display: block;
  font-size: .72rem;
  font-weight: 700;
  color: var(--black-2);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.search-bar select, .search-bar input {
  width: 100%;
  border: 0;
  font-size: .95rem;
  padding: 4px 0;
  background: transparent;
  color: var(--text);
  outline: 0;
}
.search-bar .btn { padding: 16px 28px; }

@media (max-width: 900px) {
  .search-bar { grid-template-columns: 1fr 1fr; gap: 12px; padding: 14px; }
  .search-bar .field { border-right: 0; border-bottom: 1px solid var(--gray-1); padding: 8px 4px; }
  .search-bar .btn { grid-column: span 2; }
}

/* ============ Trust strip ============ */
.trust-strip {
  background: var(--black);
  color: #fff;
  padding: 28px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  text-align: center;
}
.trust-grid .item h4 { color: var(--gold); margin: 0 0 4px; font-size: 1.6rem; }
.trust-grid .item p { margin: 0; opacity: .8; font-size: .9rem; }
@media (max-width: 720px) { .trust-grid { grid-template-columns: repeat(2, 1fr); } }

/* ============ Catalog filters ============ */
.catalog { background: var(--bg); }
.catalog-toolbar {
  display: flex; flex-wrap: wrap; gap: 14px;
  align-items: center; justify-content: space-between;
  background: #fff;
  padding: 16px 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
}
.catalog-search {
  flex: 1 1 300px;
  display: flex; align-items: center; gap: 10px;
  background: var(--gray-1);
  border-radius: 999px;
  padding: 8px 18px;
}
.catalog-search input {
  border: 0; background: transparent; outline: 0; flex: 1; font-size: .95rem;
}
.catalog-search svg { width: 18px; color: var(--muted); }

.catalog-toolbar .sort {
  display: flex; align-items: center; gap: 10px;
  font-size: .9rem; color: var(--muted);
}
.catalog-toolbar select {
  padding: 8px 14px;
  border: 1px solid var(--gray-2);
  border-radius: 8px;
  background: #fff;
  font-size: .9rem;
}

.filter-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.chip {
  background: #fff;
  border: 1px solid var(--gray-2);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: .85rem;
  color: var(--text);
  cursor: pointer;
  transition: all .15s;
}
.chip:hover { border-color: var(--turquoise); color: var(--turquoise-2); }
.chip.active {
  background: var(--black);
  color: #fff;
  border-color: var(--black);
}

/* ============ Tour grid / cards ============ */
.tour-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
  gap: 26px;
}
.tour-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
  position: relative;
}
.tour-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

.tour-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--gray-1);
}
.tour-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.tour-card:hover .tour-media img { transform: scale(1.06); }

.badge-row {
  position: absolute; top: 14px; left: 14px;
  display: flex; gap: 6px;
}
.badge {
  background: rgba(23,18,13,.92);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}
.badge-available { background: #16a34a; }
.badge-gold { background: var(--gold); color: #1c1206; }
.badge-sale { background: var(--orange); color: #fff; }

.tour-body { padding: 20px 22px 22px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.tour-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; }
.tour-head h3 { margin: 0; font-size: 1.35rem; }

.tour-location {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .85rem; color: var(--muted);
}
.tour-location svg { width: 14px; color: var(--turquoise); }

.tour-meta {
  display: flex; gap: 16px; flex-wrap: wrap;
  font-size: .85rem; color: var(--muted);
  padding: 12px 0;
  border-top: 1px dashed var(--gray-1);
  border-bottom: 1px dashed var(--gray-1);
}
.tour-meta div { display: inline-flex; align-items: center; gap: 6px; }
.tour-meta svg { width: 16px; color: var(--turquoise); }
.tour-meta strong { color: var(--text); font-weight: 700; }

.tour-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tour-tags span {
  background: #E4F4EF;
  color: var(--turquoise-2);
  font-size: .72rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: .04em;
}

.tour-price {
  display: flex; justify-content: space-between; align-items: baseline; gap: 8px;
  margin-top: auto;
}
.tour-price .from { font-size: .78rem; color: var(--muted); text-transform: uppercase; letter-spacing: .12em; }
.tour-price .amount { font-family: 'Playfair Display', serif; color: var(--black-2); font-size: 1.35rem; font-weight: 700; }
.tour-price .amount span { color: var(--muted); font-size: .8rem; font-weight: 500; font-family: 'Inter', sans-serif; }
.tour-price .old { text-decoration: line-through; color: var(--muted); font-size: .95rem; margin-right: 6px; }

.tour-actions { display: flex; gap: 10px; margin-top: 6px; }
.tour-actions .btn { flex: 1; padding: 11px 14px; font-size: .88rem; }

/* ============ Destinations / experiences ============ */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 22px;
}
.dest-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.dest-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s ease;
}
.dest-card:hover img { transform: scale(1.08); }
.dest-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(10,7,3,.88) 100%);
}
.dest-card .body {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 22px;
  z-index: 2;
}
.dest-card h3 { color: #fff; margin: 0 0 4px; font-size: 1.4rem; }
.dest-card p { margin: 0; opacity: .9; font-size: .88rem; }
.dest-card .tags { display: flex; gap: 5px; flex-wrap: wrap; margin-top: 10px; }
.dest-card .tags span {
  font-size: .7rem; padding: 4px 10px;
  background: rgba(255,255,255,.2); backdrop-filter: blur(6px);
  border-radius: 999px;
}

/* ============ Tiles ============ */
.tile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}
.tile {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px 22px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-1);
  transition: transform .2s, box-shadow .2s;
}
.tile:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.tile .icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: grid; place-items: center;
  font-size: 22px;
  background: #E4F4EF; color: var(--turquoise-2);
  margin-bottom: 14px;
}
.tile h4 { font-family: 'Inter', sans-serif; font-size: 1rem; color: var(--black-2); margin: 0 0 6px; }
.tile p { margin: 0; color: var(--muted); font-size: .88rem; }

.tile-gold .icon { background: #FCEFCE; color: #8a5c00; }
.tile-orange .icon { background: #FBDFC9; color: var(--orange); }
.tile-navy .icon { background: #E9E7E3; color: var(--black-2); }

/* ============ Two-column showcase ============ */
.showcase {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
}
.showcase img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.showcase ul { padding-left: 0; list-style: none; margin: 18px 0 24px; }
.showcase ul li {
  display: flex; gap: 10px; padding: 8px 0;
  align-items: flex-start;
}
.showcase ul li svg { width: 18px; color: var(--gold); flex-shrink: 0; margin-top: 3px; }
@media (max-width: 880px) { .showcase { grid-template-columns: 1fr !important; gap: 30px; } }

/* ============ Form ============ */
.form-section { background: var(--black); color: #fff; }
.form-section h2 { color: #fff; }
.form-section .section-title p { color: rgba(255,255,255,.7); }

.request-form {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-lg);
  color: var(--text);
  max-width: 920px;
  margin: 0 auto;
}
.form-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px;
}
.form-row-full { grid-column: span 2; }
.field-group label {
  display: block;
  font-size: .82rem;
  font-weight: 700;
  color: var(--black-2);
  letter-spacing: .04em;
  margin-bottom: 6px;
}
.field-group input,
.field-group select,
.field-group textarea {
  width: 100%;
  border: 1.5px solid var(--gray-2);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: .95rem;
  font-family: inherit;
  color: var(--text);
  background: var(--bg);
  outline: 0;
  transition: border-color .15s, background .15s;
}
.field-group input:focus,
.field-group select:focus,
.field-group textarea:focus {
  border-color: var(--turquoise);
  background: #fff;
}
.field-group textarea { min-height: 120px; resize: vertical; }
.form-success {
  background: #d1fae5;
  color: #065f46;
  padding: 16px 20px;
  border-radius: 12px;
  margin-bottom: 18px;
  display: none;
}
.form-success.show { display: block; }

.selection-banner {
  background: linear-gradient(135deg, #FCEFCE 0%, #FBDFC9 100%);
  border: 1.5px solid var(--gold);
  color: var(--black-2);
  padding: 14px 18px;
  border-radius: 12px;
  margin-bottom: 20px;
  font-size: .95rem;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.selection-banner strong { color: var(--black-2); }
.selection-banner [data-selection] { color: var(--turquoise-2); font-weight: 600; }
@media (max-width: 720px) {
  .form-grid { grid-template-columns: 1fr; }
  .form-row-full { grid-column: span 1; }
  .request-form { padding: 24px; }
}

/* ============ CTA banner ============ */
.cta-banner {
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--turquoise) 0%, var(--black) 100%);
  color: #fff;
  padding: 50px 60px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 30px; flex-wrap: wrap;
  position: relative; overflow: hidden;
}
.cta-banner::after {
  content: ''; position: absolute; right: -80px; top: -80px;
  width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(245,172,33,.5) 0%, transparent 70%);
}
.cta-banner h3 { color: #fff; font-size: 1.8rem; margin: 0 0 6px; }
.cta-banner p { margin: 0; opacity: .9; }
.cta-banner > div:last-child { display: flex; gap: 12px; flex-wrap: wrap; position: relative; z-index: 1; }

/* ============ Footer ============ */
.footer {
  background: #0c0906;
  color: #cfc6b8;
  padding: 70px 0 28px;
  font-size: .92rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 40px;
}
.footer h4 {
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  margin-bottom: 16px;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer a:hover { color: var(--gold); }
.footer .logo { margin-bottom: 14px; }
.footer .logo img { height: 56px; }
.footer-about p { opacity: .8; line-height: 1.65; }
.socials { display: flex; gap: 10px; margin-top: 14px; }
.socials a {
  width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255,255,255,.06);
  transition: background .15s, color .15s;
}
.socials a:hover { background: var(--gold); color: #1c1206; }
.socials svg { width: 18px; height: 18px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 22px; margin-top: 50px;
  display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap;
  font-size: .85rem; opacity: .7;
}
.footer-bottom .credit a {
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.35);
  transition: border-color .2s, opacity .2s;
}
.footer-bottom .credit a:hover { border-bottom-color: #fff; opacity: 1; }

@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

/* Floating WhatsApp */
.whatsapp-fab {
  position: fixed; bottom: 24px; right: 24px;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 6px 20px rgba(37,211,102,.5);
  z-index: 90;
  transition: transform .2s;
}
.whatsapp-fab:hover { transform: scale(1.08); }
.whatsapp-fab svg { width: 28px; height: 28px; }

/* ============ Tour detail page ============ */
.detail-hero {
  background: #0a0703;
  color: #fff;
  padding-top: 30px;
}
.breadcrumbs, .crumbs {
  font-size: .85rem; opacity: .8; margin-bottom: 14px;
}
.breadcrumbs a, .crumbs a { color: var(--gold); }
.crumbs .sep { margin: 0 6px; opacity: .5; }

.detail-title { display: flex; justify-content: space-between; align-items: flex-start; margin-top: 10px; gap: 20px; flex-wrap: wrap; padding-bottom: 60px; }
.detail-title h1 { font-size: clamp(2rem, 4vw, 2.8rem); margin: 0 0 6px; color: #fff; }
.detail-title .meta-line { color: rgba(255,255,255,.85); display: flex; gap: 16px; flex-wrap: wrap; }
.detail-title .meta-line span { display: inline-flex; align-items: center; gap: 6px; }
.detail-title svg { width: 16px; color: var(--gold); }

.gallery {
  position: relative;
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 220px 220px;
  gap: 8px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.gallery .main { grid-column: 1; grid-row: 1 / 3; }
.gallery img {
  width: 100%; height: 100%; object-fit: cover; cursor: zoom-in;
  transition: transform .4s, opacity .2s;
}
.gallery img:hover { transform: scale(1.04); opacity: .94; }

.view-all-photos {
  position: absolute;
  bottom: 14px; right: 14px;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  background: rgba(255,255,255,.96);
  color: var(--black-2);
  border: 0; border-radius: 999px;
  font-weight: 600; font-size: .88rem;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0,0,0,.18);
  transition: transform .15s, background .15s;
  z-index: 3;
}
.view-all-photos:hover { background: var(--gold); transform: translateY(-2px); }

@media (max-width: 720px) {
  .gallery { grid-template-columns: 1fr; grid-template-rows: 280px; }
  .gallery .main { grid-column: 1; grid-row: 1; }
  .gallery > img:not(.main) { display: none; }
  .view-all-photos { padding: 8px 14px; font-size: .82rem; }
}

.detail-body { background: var(--bg); padding: 50px 0 80px; }
.detail-body .container { display: grid; grid-template-columns: 1.6fr 1fr; gap: 36px; align-items: flex-start; }
@media (max-width: 980px) { .detail-body .container { grid-template-columns: 1fr; } }

.tabs { display: flex; gap: 6px; flex-wrap: wrap; border-bottom: 2px solid var(--gray-1); margin-bottom: 24px; }
.tabs button {
  background: transparent; border: 0;
  padding: 14px 18px; font-weight: 600; font-size: .92rem;
  color: var(--muted);
  border-bottom: 3px solid transparent; margin-bottom: -2px;
  transition: color .15s, border-color .15s;
}
.tabs button.active, .tabs button:hover { color: var(--black-2); border-color: var(--gold); }

.tab-panel { display: none; }
.tab-panel.active { display: block; }
.tab-panel h3 { font-size: 1.4rem; margin-top: 22px; }
.tab-panel ul { padding-left: 22px; line-height: 1.8; }

.price-box {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-md);
  position: sticky; top: 100px;
}
.price-box .price-line {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--black-2);
  margin-bottom: 4px;
}
.price-box .price-line span { font-size: .9rem; color: var(--muted); font-family: 'Inter'; font-weight: 500; }
.price-box .from { color: var(--muted); font-size: .85rem; }
.price-box hr { border: 0; border-top: 1px solid var(--gray-1); margin: 18px 0; }

.checklist {
  display: grid; grid-template-columns: repeat(2,1fr); gap: 10px 24px;
  list-style: none; padding: 0;
}
.checklist li { display: flex; gap: 8px; align-items: flex-start; }
.checklist svg { width: 18px; color: #16a34a; flex-shrink: 0; margin-top: 3px; }
.checklist.excludes svg { color: #dc2626; }
@media (max-width: 600px) { .checklist { grid-template-columns: 1fr; } }

.faq-accordion { display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-sm); overflow: hidden; }
.faq-q {
  width: 100%; text-align: left; padding: 18px 22px; background: none; border: 0;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  font-weight: 600; font-size: 1rem; color: var(--black-2);
}
.faq-q svg { width: 18px; flex-shrink: 0; transition: transform .2s; color: var(--turquoise); }
.faq-item.open .faq-q svg { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.faq-item.open .faq-a { max-height: 400px; }
.faq-a div { padding: 0 22px 20px; color: var(--muted); }

/* ============ Sticky mobile CTA ============ */
.sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: #fff;
  box-shadow: 0 -6px 20px rgba(0,0,0,.12);
  padding: 12px 16px;
  display: none;
  align-items: center; justify-content: space-between;
  gap: 12px;
  z-index: 70;
}
.sticky-cta .btn { flex: 1; }
@media (max-width: 720px) { .sticky-cta { display: flex; } }

/* ============ Page hero (sub pages) ============ */
.page-hero {
  background: linear-gradient(135deg, var(--black) 0%, var(--turquoise-2) 100%);
  color: #fff;
  padding: 60px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: ''; position: absolute; right: -100px; top: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(245,172,33,.25) 0%, transparent 70%);
}
.page-hero h1 { color: #fff; margin-bottom: 12px; }
.page-hero p { max-width: 720px; opacity: .9; font-size: 1.08rem; }

/* ============ Lightbox ============ */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(10, 7, 3, .96);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .25s ease;
}
.lightbox.open { display: flex; opacity: 1; }
.lightbox-stage {
  position: relative;
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  padding: 70px 80px;
}
.lightbox-image {
  max-width: 100%; max-height: 100%; object-fit: contain;
  border-radius: 8px; box-shadow: 0 20px 60px rgba(0,0,0,.6);
  user-select: none; animation: lb-pop .25s ease;
}
@keyframes lb-pop { from { opacity: 0; transform: scale(.96); } to { opacity: 1; transform: scale(1); } }
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  width: 50px; height: 50px; border-radius: 50%;
  display: grid; place-items: center;
  cursor: pointer;
  transition: background .15s, transform .15s;
  z-index: 5;
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: var(--gold); color: #1c1206; transform: scale(1.06); }
.lightbox-close { top: 22px; right: 22px; }
.lightbox-prev { left: 22px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 22px; top: 50%; transform: translateY(-50%); }
.lightbox-prev:hover, .lightbox-next:hover { transform: translateY(-50%) scale(1.06); }
.lightbox-close svg, .lightbox-prev svg, .lightbox-next svg { width: 22px; height: 22px; }
.lightbox-caption {
  position: absolute; top: 22px; left: 50%; transform: translateX(-50%);
  background: rgba(0,0,0,.45); color: #fff; padding: 8px 18px;
  border-radius: 999px; font-size: .9rem; font-weight: 500; letter-spacing: .02em; z-index: 5;
}
.lightbox-thumbs {
  position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 6px; max-width: 92vw; overflow-x: auto;
  padding: 6px 8px; background: rgba(0,0,0,.4); border-radius: 12px;
  backdrop-filter: blur(6px); scrollbar-width: thin;
}
.lightbox-thumbs::-webkit-scrollbar { height: 6px; }
.lightbox-thumbs::-webkit-scrollbar-thumb { background: rgba(255,255,255,.3); border-radius: 4px; }
.lightbox-thumbs img {
  width: 64px; height: 48px; object-fit: cover; border-radius: 6px; cursor: pointer;
  opacity: .55; border: 2px solid transparent; transition: opacity .15s, border-color .15s; flex-shrink: 0;
}
.lightbox-thumbs img:hover { opacity: .9; }
.lightbox-thumbs img.active { opacity: 1; border-color: var(--gold); }
@media (max-width: 720px) {
  .lightbox-stage { padding: 60px 12px 100px; }
  .lightbox-prev, .lightbox-next { width: 42px; height: 42px; }
  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }
  .lightbox-thumbs img { width: 50px; height: 38px; }
}
body.lightbox-open { overflow: hidden; }

/* ============ Cart sidebar ============ */
.cart-sidebar {
  position: fixed; top: 0; right: -420px; width: 100%; max-width: 420px; height: 100%;
  background: #fff; z-index: 120; box-shadow: -10px 0 40px rgba(0,0,0,.2);
  transition: right .3s ease; display: flex; flex-direction: column;
}
.cart-sidebar.open { right: 0; }
.cart-scrim {
  position: fixed; inset: 0; background: rgba(10,7,3,.5); z-index: 119;
  opacity: 0; visibility: hidden; transition: opacity .3s;
}
.cart-scrim.open { opacity: 1; visibility: visible; }
.cart-head { display: flex; align-items: center; justify-content: space-between; padding: 22px 24px; border-bottom: 1px solid var(--gray-1); }
.cart-head h3 { margin: 0; }
.cart-close { background: none; border: 0; padding: 6px; }
.cart-close svg { width: 24px; height: 24px; }
.cart-items { flex: 1; overflow-y: auto; padding: 16px 24px; display: flex; flex-direction: column; gap: 14px; }
.cart-item { display: flex; gap: 12px; padding: 14px; background: var(--bg); border-radius: var(--radius); }
.cart-item img { width: 72px; height: 72px; object-fit: cover; border-radius: 10px; flex-shrink: 0; }
.cart-item-body { flex: 1; min-width: 0; }
.cart-item-name { font-weight: 700; font-size: .92rem; margin-bottom: 2px; }
.cart-item-meta { font-size: .8rem; color: var(--muted); }
.cart-remove { background: none; border: 0; color: var(--muted); }
.cart-remove:hover { color: #dc2626; }
.cart-empty { text-align: center; padding: 60px 20px; color: var(--muted); }
.cart-empty svg { width: 48px; height: 48px; margin: 0 auto 14px; opacity: .4; }
.cart-foot { padding: 20px 24px; border-top: 1px solid var(--gray-1); }
.cart-total-row { display: flex; justify-content: space-between; font-family: 'Playfair Display', serif; font-size: 1.3rem; margin-bottom: 14px; }

/* ============ Checkout ============ */
.pt-sm { padding-top: 30px; }
.co-layout { display: grid; grid-template-columns: 1.5fr 1fr; gap: 30px; align-items: flex-start; }
@media (max-width: 980px) { .co-layout { grid-template-columns: 1fr; } }
.co-card { background: #fff; border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-sm); margin-bottom: 20px; }
.co-card h3 { display: flex; align-items: center; gap: 12px; }
.step-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--gold); color: #1c1206; font-size: .95rem; font-weight: 700;
  flex-shrink: 0;
}
.co-item { display: flex; justify-content: space-between; gap: 14px; padding: 14px 0; border-bottom: 1px dashed var(--gray-1); }
.co-item:last-of-type { border-bottom: 0; }
.co-item-name { font-weight: 700; }
.co-item-meta { font-size: .85rem; color: var(--muted); display: flex; align-items: center; gap: 6px; margin-top: 2px; }
.co-item-price { font-weight: 700; text-align: right; white-space: nowrap; }
.co-total { display: flex; justify-content: space-between; align-items: baseline; padding-top: 16px; margin-top: 6px; border-top: 2px solid var(--black-2); font-family: 'Playfair Display', serif; font-size: 1.5rem; }
.text-center { text-align: center; }
.field-help { font-size: .78rem; color: var(--muted); margin-top: 4px; }
.field-label { display: block; font-size: .82rem; font-weight: 700; color: var(--black-2); letter-spacing: .04em; margin-bottom: 6px; text-transform: uppercase; }
.co-card .full { grid-column: span 2; }
@media (max-width: 620px) { .co-card .full { grid-column: span 1; } .form-grid { grid-template-columns: 1fr; } }
.pay-methods { display: flex; gap: 14px; flex-wrap: wrap; margin: 14px 0; font-size: .85rem; color: var(--muted); }
.btn-mp { background: linear-gradient(135deg,#3EA98F,#2c8069); color: #fff; }
.btn-wa { background: #25D366; color: #fff; }

.alert { padding: 16px 20px; border-radius: 12px; background: #FCEFCE; color: #6b4b00; margin-bottom: 20px; }
.alert-error { background: #fde2e2; color: #991b1b; }
.alert-ok { background: #d1fae5; color: #065f46; }
.empty-state { text-align: center; padding: 80px 20px; color: var(--muted); }
.empty-state svg { width: 56px; height: 56px; margin: 0 auto 18px; opacity: .4; }

/* ============ Confirmation ============ */
.confirm-card { max-width: 640px; margin: 0 auto; background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); padding: 44px; text-align: center; }
.confirm-icon { width: 72px; height: 72px; border-radius: 50%; margin: 0 auto 18px; display: grid; place-items: center; font-size: 30px; }
.confirm-paid { background: #d1fae5; color: #065f46; }
.confirm-pending { background: #FCEFCE; color: #8a5c00; }
.confirm-rows { text-align: left; margin-top: 26px; border-top: 1px solid var(--gray-1); }
.confirm-row { display: flex; justify-content: space-between; gap: 14px; padding: 12px 0; border-bottom: 1px solid var(--gray-1); font-size: .92rem; }
.confirm-row span:first-child { color: var(--muted); }
.booking-num { font-family: 'Playfair Display', serif; font-weight: 700; color: var(--turquoise-2); }
.tag { display: inline-block; padding: 4px 12px; border-radius: 999px; font-size: .78rem; font-weight: 700; }
.tag-ok { background: #d1fae5; color: #065f46; }
.tag-wait { background: #FCEFCE; color: #8a5c00; }
.next-steps { text-align: left; background: var(--bg); border-radius: var(--radius); padding: 20px 22px; margin-top: 24px; }
.next-steps h4 { margin: 0 0 10px; font-size: 1rem; display: flex; align-items: center; gap: 8px; }
.next-steps ul { margin: 0; padding-left: 20px; color: var(--muted); font-size: .9rem; line-height: 1.8; }

/* ============ Beaches ============ */
.beach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 22px;
}
.beach-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-1);
  transition: transform .2s, box-shadow .2s;
  display: flex;
  flex-direction: column;
}
.beach-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.beach-card-media { aspect-ratio: 4/3; overflow: hidden; background: var(--gray-1); }
.beach-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.beach-card:hover .beach-card-media img { transform: scale(1.06); }
.beach-card-media-empty {
  display: grid; place-items: center;
  font-size: 2rem;
  color: var(--turquoise-2);
  background: linear-gradient(135deg, #E4F4EF, var(--sand));
}
.beach-card-body { padding: 18px 20px 20px; }
.beach-card-head { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; flex-wrap: wrap; margin-bottom: 8px; }
.beach-card-head h4 { font-family: 'Playfair Display', serif; font-size: 1.15rem; margin: 0; color: var(--black-2); }
.beach-badge { font-size: .72rem; font-weight: 700; color: var(--turquoise-2); background: #E4F4EF; padding: 3px 10px; border-radius: 999px; white-space: nowrap; }
.beach-badge-gold { color: #8a5c00; background: #FCEFCE; }
.beach-card-body p { margin: 0; color: var(--muted); font-size: .92rem; line-height: 1.6; }

/* ============ Blog ============ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}
.blog-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.blog-media { aspect-ratio: 16/9; overflow: hidden; background: var(--gray-1); }
.blog-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.blog-card:hover .blog-media img { transform: scale(1.06); }
.blog-body { padding: 22px 24px 26px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.blog-date { font-size: .78rem; text-transform: uppercase; letter-spacing: .06em; color: var(--turquoise-2); font-weight: 700; }
.blog-body h3 { margin: 0; font-size: 1.3rem; line-height: 1.3; }
.blog-body p { margin: 0; color: var(--muted); font-size: .92rem; flex: 1; }
.blog-read { font-weight: 700; color: var(--orange); font-size: .88rem; }

.article-hero { aspect-ratio: 21/9; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); margin-bottom: 34px; }
.article-hero img { width: 100%; height: 100%; object-fit: cover; }
.article-body { max-width: 760px; margin: 0 auto; font-size: 1.02rem; line-height: 1.75; color: var(--text); }
.article-body h2 { font-family: 'Playfair Display', serif; font-size: 1.6rem; margin: 42px 0 14px; }
.article-body h3 { font-family: 'Playfair Display', serif; font-size: 1.25rem; margin: 28px 0 10px; }
.article-body p { margin: 0 0 18px; }
.article-body ul, .article-body ol { margin: 0 0 18px; padding-left: 22px; }
.article-body li { margin-bottom: 8px; }
.article-body a { color: var(--turquoise-2); font-weight: 600; text-decoration: underline; }
.article-meta { max-width: 760px; margin: 0 auto 28px; display: flex; align-items: center; gap: 10px; color: var(--muted); font-size: .88rem; }
