:root {
  --bg: #f5f2ec;
  --surface: #ffffff;
  --surface-soft: #f9f7f3;
  --ink: #1a2b18;
  --muted: #657561;
  --line: #ddd9d0;
  --primary: #2a7a50;
  --primary-dark: #1c5937;
  --accent: #e07c18;
  --accent-dark: #c46910;
  --radius: 20px;
  --radius-sm: 12px;
  --shadow-soft: 0 16px 44px rgba(20, 40, 20, 0.14);
  --shadow-card: 0 6px 20px rgba(20, 40, 20, 0.09);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.wrap {
  width: min(1160px, 92%);
  margin: 0 auto;
}

/* ── Topbar ── */
.topbar {
  background: #0e1d0d;
  color: #b5ccb1;
  font-size: 12.5px;
}

.topbar .wrap {
  padding: 9px 0;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

/* ── Header: solid default (inner pages) ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  transition: background 0.3s, box-shadow 0.3s, border-color 0.3s;
}

/* ── Header: fixed transparent variant (homepage hero) ── */
.site-header.hero-mode {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.site-header.hero-mode.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 0 var(--line);
}

.navbar {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: 1.55rem;
  letter-spacing: -0.5px;
  color: var(--ink);
  transition: color 0.3s;
}

.site-header.hero-mode .brand { color: #fff; }
.site-header.hero-mode.scrolled .brand { color: var(--ink); }

.brand-logo {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
  flex-shrink: 0;
  background: #fff;
  padding: 4px;
  border: 1px solid #d9d9d9;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.14);
}

.brand .brand-text {
  color: inherit;
  line-height: 1;
}

.brand .brand-text > span { color: var(--accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  padding: 8px 14px;
  color: #2a3828;
  font-weight: 700;
  font-size: 14px;
  border-radius: 999px;
  transition: background 0.18s, color 0.18s;
}

.site-header.hero-mode .nav-links a { color: rgba(255, 255, 255, 0.88); }
.site-header.hero-mode.scrolled .nav-links a { color: #2a3828; }

.nav-links a:hover,
.nav-links a.active {
  background: #eef5f0;
  color: var(--primary-dark);
}

.site-header.hero-mode .nav-links a:hover,
.site-header.hero-mode .nav-links a.active {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.site-header.hero-mode.scrolled .nav-links a:hover,
.site-header.hero-mode.scrolled .nav-links a.active {
  background: #eef5f0;
  color: var(--primary-dark);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
  transition: transform 0.18s, box-shadow 0.18s;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(120deg, var(--primary), #3a9e68);
  color: #fff;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(42, 122, 80, 0.38);
}

.btn-accent {
  background: linear-gradient(120deg, var(--accent), #f59235);
  color: #fff;
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(224, 124, 24, 0.4);
}

.btn-soft {
  background: #eef5f0;
  color: var(--primary-dark);
}

.btn-outline {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.6);
  color: #fff;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 13px;
}

.mobile-only { display: none; }

/* ── Hero (homepage full-viewport) ── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 580px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-image: url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?auto=format&fit=crop&w=1600&q=80');
  background-size: cover;
  background-position: center 30%;
  color: #fff;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(5, 18, 5, 0.52) 0%,
    rgba(5, 18, 5, 0.38) 45%,
    rgba(5, 18, 5, 0.72) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding: 0 24px;
}

.eyebrow {
  margin: 0;
  font-size: 11.5px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--accent);
}

.hero h1 {
  margin: 14px 0 0;
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -1.5px;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
}

.hero-content > p {
  margin: 16px auto 0;
  font-size: 1.06rem;
  color: rgba(255, 255, 255, 0.82);
  max-width: 52ch;
  line-height: 1.65;
}

/* Search panel */
.search-panel {
  margin-top: 30px;
  background: rgba(255, 255, 255, 0.97);
  border-radius: var(--radius);
  padding: 12px;
  color: var(--ink);
  display: grid;
  gap: 10px;
  grid-template-columns: 1.4fr 1fr 1fr auto;
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.22);
}

.search-panel input,
.search-panel select,
.booking-form input,
.booking-form select {
  height: 46px;
  border-radius: 10px;
  border: 1px solid #d5cfc7;
  background: #faf9f6;
  color: var(--ink);
  font: inherit;
  padding: 0 14px;
  font-size: 14px;
}

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  animation: bob 2s ease-in-out infinite;
}

@keyframes bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ── Stats bar ── */
.stats-bar {
  background: var(--primary-dark);
  color: #fff;
}

.stats-bar-inner {
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-item {
  text-align: center;
  padding: 0 40px;
}

.stat-item strong {
  display: block;
  font-size: 1.55rem;
  font-weight: 900;
  letter-spacing: -0.5px;
}

.stat-item span {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.66);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stat-sep {
  width: 1px;
  height: 38px;
  background: rgba(255, 255, 255, 0.18);
  flex-shrink: 0;
}

/* ── Main content ── */
main {
  padding: 52px 0 90px;
}

.section {
  margin-top: 64px;
}

.section:first-child {
  margin-top: 0;
}

.section-eyebrow {
  margin: 0;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--primary);
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 22px;
}

.section-head h2 {
  margin: 6px 0 0;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: -0.5px;
}

.section-head p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.link-more {
  font-weight: 800;
  color: var(--primary);
  font-size: 14px;
  white-space: nowrap;
  transition: color 0.18s;
}

.link-more:hover { color: var(--primary-dark); }

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

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

/* ── Base card ── */
.card {
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: transform 0.24s, box-shadow 0.24s;
}

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

/* Standard card (trip.htm listing) */
.card-media {
  aspect-ratio: 16/10;
  background-size: cover;
  background-position: center;
  position: relative;
}

.card-body {
  padding: 16px;
}

.meta {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 12px;
}

.card h3 {
  margin: 8px 0 0;
  font-size: 1.08rem;
}

.card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

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

.price {
  font-size: 1.06rem;
  font-weight: 900;
}

/* ── Destination card (homepage) ── */
.dest-card .card-media {
  aspect-ratio: 3/4;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.dest-card .card-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 25%,
    rgba(0, 0, 0, 0.78) 100%
  );
}

.card-overlay {
  position: relative;
  z-index: 2;
  padding: 18px;
  color: #fff;
}

.card-overlay .meta {
  display: flex;
  justify-content: space-between;
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 4px;
}

.card-overlay h3 {
  margin: 4px 0 0;
  font-size: 1.15rem;
  color: #fff;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
}

.card-overlay .row {
  margin-top: 12px;
  align-items: center;
}

.card-overlay .price {
  font-size: 1.05rem;
  color: #fff;
}

/* ── Badges ── */
.badge {
  position: absolute;
  left: 14px;
  top: 14px;
  z-index: 3;
  border-radius: 999px;
  padding: 5px 13px;
  font-size: 11px;
  font-weight: 800;
  backdrop-filter: blur(4px);
  color: #fff;
  background: rgba(10, 22, 10, 0.72);
}

.badge-hot  { background: rgba(175, 42, 22, 0.82); }
.badge-adv  { background: rgba(28, 90, 52, 0.85); }
.badge-beach{ background: rgba(12, 72, 130, 0.82); }
.badge-cult { background: rgba(100, 55, 15, 0.82); }
.badge-week { background: rgba(70, 30, 100, 0.82); }
.badge-lux  { background: rgba(140, 100, 10, 0.82); }

/* ── Features ── */
.feature-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.feature {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 18px;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s, box-shadow 0.2s;
}

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

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #eaf4ee;
  border: 1px solid #c5e2cf;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}

.feature h4 {
  margin: 0;
  font-size: 15px;
  font-weight: 800;
}

.feature p {
  margin: 7px 0 0;
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.55;
}

/* ── Reviews ── */
.reviews {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.review {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #fff;
  padding: 22px;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s;
}

.review:hover { transform: translateY(-2px); }

.stars {
  color: #e8a020;
  font-size: 15px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.review p {
  margin: 0;
  color: #4a5c48;
  font-size: 14.5px;
  line-height: 1.65;
  font-style: italic;
}

.review strong {
  display: block;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 800;
  font-style: normal;
}

.reviewer-loc {
  font-size: 12.5px;
  color: var(--muted);
  font-style: normal;
}

/* ── CTA Banner ── */
.cta-banner {
  background: linear-gradient(130deg, var(--primary-dark) 0%, var(--primary) 55%, #3a9e68 100%);
  border-radius: var(--radius);
  padding: 42px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  color: #fff;
  box-shadow: var(--shadow-soft);
}

.cta-banner h2 {
  margin: 0;
  font-size: clamp(1.35rem, 2.8vw, 1.9rem);
  letter-spacing: -0.4px;
}

.cta-banner p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.96rem;
}

/* ── Footer ── */
.footer {
  background: #000;
  color: #c2c2c2;
}

.footer-inner {
  padding: 50px 0 36px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 36px;
  align-items: start;
}

.footer .brand { color: #e4ede2; }
.footer .brand span { color: var(--accent); }

.footer-desc {
  margin: 12px 0 0;
  font-size: 13.5px;
  color: #a4a4a4;
  line-height: 1.65;
}

.footer-col-title {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #8a8a8a;
  margin: 0 0 14px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 14px;
  color: #c7c7c7;
  font-weight: 600;
  transition: color 0.18s;
}

.footer-links a:hover { color: #fff; }

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-contact span {
  font-size: 13.5px;
  color: #c7c7c7;
}

.footer-social {
  margin-top: 8px;
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid #2e2e2e;
  background: #111;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: transform 0.18s, background 0.18s, border-color 0.18s;
}

.footer-social a:hover {
  transform: translateY(-2px);
  background: #1d1d1d;
  border-color: #4a4a4a;
}

.footer-social svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 16px 0;
  font-size: 12.5px;
  color: #8a8a8a;
}

.footer-bottom .wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

/* ── Page head (inner pages) ── */
.page-head {
  border-radius: 24px;
  background: linear-gradient(130deg, #0f3322 0%, #1d6045 55%, #267a52 100%);
  color: #fff;
  box-shadow: var(--shadow-soft);
  padding: 38px 34px;
}

.page-head h1 {
  margin: 10px 0 0;
  font-size: clamp(2rem, 4.2vw, 3.1rem);
  line-height: 1.06;
  letter-spacing: -1px;
}

.page-head p {
  margin-top: 14px;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.78);
  max-width: 60ch;
}

/* ── Filter pills ── */
.filter-row {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pill {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid #b8d4c0;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  transition: background 0.18s;
}

.pill:hover { background: rgba(255, 255, 255, 0.25); }

/* ── Layout split ── */
.layout-split {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 20px;
  align-items: start;
}

.panel {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-card);
  padding: 18px;
}

/* ── Gallery ── */
.gallery {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 10px;
}

.gallery-main {
  min-height: 300px;
  border-radius: 14px;
  background-size: cover;
  background-position: center;
}

.gallery-side {
  display: grid;
  gap: 10px;
}

.gallery-side div {
  border-radius: 14px;
  min-height: 145px;
  background-size: cover;
  background-position: center;
}

/* ── Keyfacts ── */
.keyfacts {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.fact {
  border-radius: 12px;
  border: 1px solid #d0dbd0;
  background: var(--surface-soft);
  padding: 13px;
}

.fact strong {
  display: block;
  font-size: 14px;
  font-weight: 800;
}

.fact span {
  color: var(--muted);
  font-size: 13px;
}

/* ── Tabs ── */
.tabs {
  margin-top: 12px;
  position: sticky;
  top: 84px;
  z-index: 35;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  padding: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tabs a {
  padding: 8px 14px;
  border-radius: 999px;
  background: #f0f5f0;
  border: 1px solid #ccd9cc;
  font-size: 13px;
  font-weight: 800;
  color: var(--ink);
  transition: background 0.18s, color 0.18s;
}

.tabs a:hover {
  background: #deeee4;
  color: var(--primary-dark);
}

/* ── Timeline ── */
.timeline {
  position: relative;
  margin-top: 10px;
  padding-left: 16px;
  border-left: 2px dashed #b8d4be;
}

.timeline-item {
  margin-bottom: 14px;
  padding-left: 10px;
}

.timeline-item h4 {
  margin: 0;
  font-size: 15px;
  font-weight: 800;
}

.timeline-item p {
  margin: 5px 0 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}

/* ── Booking card ── */
.booking-card {
  position: sticky;
  top: 140px;
}

.price-big {
  margin: 0;
  font-size: 2.3rem;
  font-weight: 900;
  letter-spacing: -0.8px;
  color: var(--primary-dark);
}

.muted {
  color: var(--muted);
  font-size: 13px;
}

.cost-breakdown {
  margin-top: 14px;
  display: grid;
  gap: 9px;
}

.cost-line {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 14px;
  color: #4a5c48;
}

.cost-total {
  border-top: 1px dashed #c0d4c0;
  padding-top: 10px;
  font-weight: 900;
  color: var(--ink);
}

/* ── Trips listing hero (full-width banner) ── */
.trips-hero {
  position: relative;
  min-height: 62vh;
  display: flex;
  align-items: center;
  background-image: url('https://images.unsplash.com/photo-1501854140801-50d01698950b?auto=format&fit=crop&w=1600&q=80');
  background-size: cover;
  background-position: center 40%;
  color: #fff;
  overflow: hidden;
}

.trips-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(5, 18, 5, 0.75) 0%,
    rgba(5, 18, 5, 0.45) 60%,
    rgba(5, 18, 5, 0.6) 100%
  );
}

.trips-hero-content {
  position: relative;
  z-index: 2;
  padding: 60px 0;
  max-width: 680px;
}

.trips-hero-content .eyebrow {
  color: var(--accent);
}

.trips-hero-content h1 {
  margin: 14px 0 0;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1.07;
  letter-spacing: -1px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.trips-hero-content > p {
  margin: 14px 0 0;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.65;
  max-width: 50ch;
}

.trips-hero-mini-stats {
  display: flex;
  gap: 28px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.trips-hero-mini-stats div {
  font-size: 13px;
  font-weight: 800;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 7px;
}

.trips-hero-mini-stats div::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.trips-hero .filter-row {
  margin-top: 22px;
}

.trips-hero .pill {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.28);
  backdrop-filter: blur(6px);
  color: #fff;
  transition: background 0.18s;
}

.trips-hero .pill:hover {
  background: rgba(255,255,255,0.22);
}

/* ── Trip hero (single full-width image) ── */
.trip-hero {
  width: 100%;
  aspect-ratio: 16/6;
  min-height: 260px;
  border-radius: var(--radius);
  background-size: cover;
  background-position: center;
}

/* ── Day plan ── */
.day-plan {
  display: flex;
  flex-direction: column;
  margin-top: 16px;
}

.day-card {
  display: grid;
  grid-template-columns: 56px 1fr;
  position: relative;
}

.day-card:not(:last-child) .day-num::after {
  content: '';
  display: block;
  width: 2px;
  flex: 1;
  background: var(--line);
  margin: 6px auto 0;
}

.day-num {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 2px;
}

.day-bubble {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 10px;
  line-height: 1.1;
  flex-shrink: 0;
  letter-spacing: 0.5px;
}

.day-bubble strong {
  font-size: 15px;
  line-height: 1;
}

.day-info {
  padding: 4px 0 28px 14px;
}

.day-info h4 {
  margin: 8px 0 6px;
  font-size: 15px;
  font-weight: 800;
}

.day-info p {
  margin: 0;
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.6;
}

.day-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.day-tag {
  background: #eaf4ee;
  color: var(--primary-dark);
  border: 1px solid #c2deca;
  border-radius: 999px;
  padding: 4px 11px;
  font-size: 12px;
  font-weight: 700;
}

/* ── Batch dates ── */
.dates-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}

.date-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto auto;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  transition: border-color 0.18s, box-shadow 0.18s;
}

.date-row:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 14px rgba(42, 122, 80, 0.1);
}

.date-label {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: 700;
  margin-bottom: 3px;
}

.date-val {
  font-size: 14px;
  font-weight: 800;
  color: var(--ink);
}

.date-price {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--primary-dark);
}

.avail-tag {
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 800;
  white-space: nowrap;
}

.avail-open { background: #e2f5ea; color: #1a5c35; }
.avail-soon { background: #fff4e0; color: #8a4a00; }
.avail-full { background: #fde8e8; color: #8a1c1c; }

/* ── Checklist (inclusions/exclusions) ── */
.incl-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 16px;
}

.incl-block h4 {
  margin: 0 0 14px;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.incl-block.yes h4 { color: #1a5c35; }
.incl-block.no  h4 { color: #8a1c1c; }

.check-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink);
}

.ci {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 1px;
}

.ci-yes { background: #d4f0e0; color: #1a5c35; }
.ci-no  { background: #fde0e0; color: #8a1c1c; }

@media (max-width: 640px) {
  .date-row {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .incl-grid { grid-template-columns: 1fr; }
}

/* ── Breadcrumb ── */
.breadcrumb {
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 12px;
}

.breadcrumb a { color: var(--primary); font-weight: 600; }
.breadcrumb a:hover { text-decoration: underline; }

/* ── Animations ── */
.reveal {
  animation: rise 0.5s ease both;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Hamburger / Mobile nav ── */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: var(--ink);
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
}

.site-header.hero-mode .nav-toggle { color: #fff; }
.site-header.hero-mode.scrolled .nav-toggle { color: var(--ink); }

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 10px 16px 18px;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
  padding: 13px 14px;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  border-radius: 12px;
  transition: background 0.18s;
}

.mobile-nav a:hover,
.mobile-nav a.active {
  background: #eef5f0;
  color: var(--primary-dark);
}

.mobile-nav .btn {
  margin-top: 8px;
  width: 100%;
  padding: 14px;
  font-size: 15px;
  border-radius: 12px;
}

/* ── Responsive: Tablet (≤980px) ── */
@media (max-width: 980px) {
  .layout-split,
  .gallery,
  .grid-3,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .feature-list  { grid-template-columns: repeat(2, 1fr); }
  .reviews       { grid-template-columns: repeat(2, 1fr); }
  .keyfacts      { grid-template-columns: repeat(2, 1fr); }

  .dest-card .card-media { aspect-ratio: 16/10; }

  .stats-bar-inner { flex-wrap: wrap; }
  .stat-sep { display: none; }
  .stat-item { padding: 8px 24px; }

  .search-panel { grid-template-columns: 1fr 1fr; }

  .gallery-main, .gallery-side div { min-height: 220px; }

  .cta-banner { flex-direction: column; text-align: center; }

  .trips-hero { min-height: 52vh; }
  .trips-hero-mini-stats { gap: 18px; }
}

/* ── Responsive: Mobile (≤760px) ── */
@media (max-width: 760px) {
  /* Nav */
  .desktop-only { display: none; }
  .nav-toggle   { display: flex; }

  .navbar { min-height: 64px; }

  /* Layout */
  main { padding: 28px 0 60px; }
  .section { margin-top: 44px; }

  /* Hero */
  .hero { height: 100svh; }
  .hero h1 { font-size: clamp(1.9rem, 8vw, 2.8rem); letter-spacing: -0.8px; }

  /* Trips hero */
  .trips-hero { min-height: auto; }
  .trips-hero-content { padding: 44px 0 32px; max-width: 100%; }
  .trips-hero-mini-stats { gap: 12px; }
  .trips-hero-mini-stats div { font-size: 11.5px; }

  /* Grids */
  .grid-2       { grid-template-columns: 1fr; }
  .feature-list { grid-template-columns: 1fr; }
  .reviews      { grid-template-columns: 1fr; }
  .keyfacts     { grid-template-columns: repeat(2, 1fr); }
  .incl-grid    { grid-template-columns: 1fr; }

  /* Stats bar */
  .stats-bar-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 4px 0;
  }
  .stat-item { padding: 14px 12px; }
  .stat-item strong { font-size: 1.3rem; }

  /* Tabs: horizontal scroll */
  .tabs {
    top: 68px;
    border-radius: 14px;
    overflow-x: auto;
    flex-wrap: nowrap;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .tabs::-webkit-scrollbar { display: none; }
  .tabs a { white-space: nowrap; flex-shrink: 0; }

  /* CTA banner */
  .cta-banner { padding: 28px 20px; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: 24px; padding: 36px 0 24px; }

  /* Date rows: compact 2-col */
  .date-row {
    grid-template-columns: 1fr 1fr;
    row-gap: 10px;
    column-gap: 10px;
  }
  .date-row .btn { grid-column: 1 / -1; width: 100%; justify-content: center; }
  .avail-tag { justify-self: start; }

  /* Panel pages */
  .page-head { padding: 26px 20px; }
  .booking-card { position: static; }

  /* Trip hero image */
  .trip-hero { aspect-ratio: 16/8; }
}

/* ── Responsive: Small mobile (≤480px) ── */
@media (max-width: 480px) {
  .keyfacts { grid-template-columns: repeat(2, 1fr); }

  .date-row {
    grid-template-columns: 1fr;
  }
  .avail-tag { justify-self: auto; }

  .hero h1 { font-size: 1.85rem; }
  .hero-content > p { font-size: 0.95rem; }

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

  .section-head { flex-direction: column; align-items: flex-start; }

  .cta-banner { text-align: left; }
  .cta-banner h2 { font-size: 1.3rem; }
}
