/* ── RESET & VARIABLES ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
/* overflow-x: hidden on body breaks background-image painting in WebKit (Safari + Chrome iOS).
   Use a wrapper div instead — see #site-wrapper in header.php */
#site-wrapper { overflow-x: hidden; }

:root {
  --bg:        #131311;
  --bg-2:      #1a1a17;
  --bg-3:      #202018;
  --line:      #2c2c28;
  --text:      #e4e0d8;
  --muted:     #aaaaa2;
  --rust:      #c4622d;
  --page-pad:  clamp(24px, 5vw, 72px);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; }

/* ── NAV ─────────────────────────────────────────────────────────── */
#site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 48px;
  background: linear-gradient(to bottom, rgba(19,19,17,0.96) 0%, transparent 100%);
}

.logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
}

.logo span { color: var(--rust); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a,
.nav-links > li > a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active,
.nav-links .current-menu-item > a { color: var(--text); }

.nav-links .nav-enquire,
.nav-links .menu-enquire > a {
  color: var(--text) !important;
  border-bottom: 1px solid var(--rust);
  padding-bottom: 2px;
}

/* ── BUTTONS ─────────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 32px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  cursor: pointer;
  border: none;
}

.btn-fill { background: var(--rust); color: var(--text); }
.btn-fill:hover { background: #d96d35; color: var(--text); }
.btn-line { border: 1px solid var(--line); color: var(--muted); }
.btn-line:hover { border-color: var(--muted); color: var(--text); }

/* ── SECTION LABEL ───────────────────────────────────────────────── */
.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 14px;
}

/* ── TYPOGRAPHY ──────────────────────────────────────────────────── */
h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(56px, 9vw, 110px);
  line-height: 0.92;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--text);
}

h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(36px, 5vw, 60px);
  text-transform: uppercase;
  line-height: 0.95;
  color: var(--text);
  letter-spacing: -0.01em;
}

h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 22px;
  text-transform: uppercase;
  color: var(--text);
  letter-spacing: 0.02em;
}

/* ── HERO (home) ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  background-color: #1a2018;
  display: flex;
  align-items: flex-end;
}

.hero-photo {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  overflow: hidden;
  z-index: 0;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.55);
}
.hero-overlay {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background: linear-gradient(to top, rgba(19,19,17,1) 0%, rgba(19,19,17,0.3) 45%, transparent 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 48px 80px;
}

.hero-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 16px;
}

.hero-sub {
  font-size: 15px;
  color: var(--muted);
  font-weight: 400;
  max-width: 400px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 24px;
  align-items: center;
}

/* ── STATS STRIP ─────────────────────────────────────────────────── */
.strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  padding: 0 var(--page-pad);
}

.strip-item {
  padding: 36px 40px;
  border-right: 1px solid var(--line);
}

.strip-item:last-child { border-right: none; }

.strip-val {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 38px;
  color: var(--text);
  line-height: 1;
  margin-bottom: 6px;
}

.strip-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── TOURS SECTION (home) ────────────────────────────────────────── */
.home-tours {
  padding: 80px var(--page-pad);
  border-top: 1px solid var(--line);
}

.tours-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
}

.all-link {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.all-link:hover { color: var(--text); }

.tours-intro {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
  max-width: 560px;
  margin: 20px 0 32px;
}

/* Upcoming trips list (home page) */
.trips-list {
  list-style: none;
  border-top: 1px solid var(--line);
}

.trip-row { border-bottom: 1px solid var(--line); }

.trip-link {
  display: grid;
  grid-template-columns: 160px auto 1fr auto auto;
  align-items: center;
  gap: 32px;
  padding: 24px 0;
  text-decoration: none;
  color: var(--text);
  transition: background 0.15s;
}

.trip-link:hover { background: var(--bg-2); padding-left: 12px; padding-right: 12px; margin: 0 -12px; }

.trip-date {
  font-size: 13px;
  color: var(--muted);
  white-space: nowrap;
}

.trip-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.2;
}

.trip-sub {
  font-size: 12px;
  color: var(--muted);
  margin-top: 3px;
}

.trip-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.trip-price {
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.trip-status {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 3px 8px;
  border: 1px solid currentColor;
  white-space: nowrap;
}

.trip-status--open  { color: #7db87d; }
.trip-status--full  { color: var(--muted); }
.trip-status--sold-out { color: var(--muted); }

@media (max-width: 700px) {
  .trip-link {
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto auto;
    gap: 6px 16px;
  }
  .trip-date  { grid-column: 1 / -1; font-size: 11px; }
  .trip-info  { grid-column: 1; }
  .trip-desc  { grid-column: 1 / -1; -webkit-line-clamp: 1; }
  .trip-price { grid-column: 2; grid-row: 2; text-align: right; align-self: start; }
  .trip-status { grid-column: 1; grid-row: 3; width: fit-content; }
}

/* Tour card grid */
.tours-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--line);
}

.tour-card {
  background: var(--bg-2);
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
  display: block;
}

.tour-card:hover { background: var(--bg-3); }

.tour-photo {
  height: 280px;
  overflow: hidden;
  position: relative;
}

.tour-photo img,
.tour-card-img img,
.tour-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: brightness(0.7) saturate(0.85);
  transition: transform 0.5s ease;
}

.tour-card:hover .tour-photo img,
.tour-card:hover .tour-card-img img { transform: scale(1.04); }

.tour-photo-placeholder {
  width: 100%;
  height: 100%;
  background: #1e2a1a;
}

.tour-body {
  padding: 28px 32px 32px;
}

.tour-countries {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 10px;
}

.tour-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 26px;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1.0;
  margin-bottom: 12px;
}

.tour-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 24px;
}

.tour-facts {
  display: flex;
  gap: 0;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.tour-fact {
  flex: 1;
  border-right: 1px solid var(--line);
  padding-right: 12px;
  margin-right: 12px;
}

.tour-fact:last-child { border-right: none; padding-right: 0; margin-right: 0; }

.fact-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 3px;
}

.fact-val {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--text);
}

/* ── PHOTO BREAK ─────────────────────────────────────────────────── */
.photo-break {
  height: 100vh;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.photo-break::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(19,19,17,0.4);
}

.photo-break-caption {
  position: absolute;
  bottom: 28px;
  right: 40px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(228, 224, 216, 0.4);
  z-index: 1;
}

/* ── HISTORY ─────────────────────────────────────────────────────── */
.history {
  padding: 80px var(--page-pad);
  border-top: 1px solid var(--line);
  background: var(--bg-2);
}

.history-head { margin-bottom: 48px; }

.history-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--line);
}

.history-item {
  background: var(--bg-2);
  padding: 44px 40px;
}

.history-period {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.history-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 28px;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.05;
}

.history-text { font-size: 13px; color: var(--muted); line-height: 1.75; }

/* ── WHY GLOVA ───────────────────────────────────────────────────── */
.why {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
  padding: 0 var(--page-pad);
}

.why-photo {
  height: 100%;
  min-height: 500px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.why-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(19,19,17,0.3);
}

.why-text {
  padding: 80px 60px;
  background: var(--bg-2);
  border-left: 1px solid var(--line);
}

.why-text h2 { margin-bottom: 40px; }

.why-items { list-style: none; }

.why-item {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 16px;
  align-items: start;
}

.why-item:first-child { border-top: 1px solid var(--line); }

.why-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--rust);
  padding-top: 1px;
}

.why-item-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 4px;
  letter-spacing: 0.04em;
}

.why-item-text { font-size: 13px; color: var(--muted); line-height: 1.65; }

/* ── HOME CTA ────────────────────────────────────────────────────── */
.home-cta {
  padding: 100px var(--page-pad);
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.cta-right p { font-size: 15px; color: var(--muted); line-height: 1.75; margin-bottom: 32px; }

.cta-note {
  font-size: 12px;
  color: var(--muted);
  margin-top: 16px;
}

.cta-note a { color: var(--rust); text-decoration: none; }

/* ── ARCHIVE HERO ────────────────────────────────────────────────── */
.archive-hero {
  padding: 160px var(--page-pad) 80px;
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
}

.archive-hero h1 { font-size: clamp(48px, 7vw, 88px); margin-bottom: 12px; }
.archive-hero .hero-sub { max-width: 600px; }

/* ── CTA BAR ─────────────────────────────────────────────────────── */
.cta-bar {
  border-bottom: 1px solid var(--line);
  padding: 20px var(--page-pad);
  display: flex;
  align-items: center;
  gap: 24px;
  background: var(--bg-2);
}

.cta-bar-text {
  font-size: 14px;
  color: var(--muted);
}

.cta-bar-link {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rust);
  text-decoration: none;
  transition: color 0.2s;
}

.cta-bar-link:hover { color: var(--text); }

/* ── TOURS LIST (archive) ────────────────────────────────────────── */
.tours-list { padding: 0 var(--page-pad) 80px; }

/* Horizontal tour cards (archive grid) */
.tours-hlist {
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: var(--line);
  margin-top: 2px;
}

.tour-hcard {
  display: grid;
  grid-template-columns: 340px 1fr;
  background: var(--bg-2);
  text-decoration: none;
  color: var(--text);
  transition: background 0.2s;
  min-height: 220px;
}

.tour-hcard:hover { background: var(--bg-3); }

.tour-hcard-img {
  overflow: hidden;
}

.tour-hcard-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.tour-hcard:hover .tour-hcard-img img { transform: scale(1.04); }

.tour-hcard-body {
  padding: 32px 40px;
  display: flex;
  flex-direction: column;
}

.tour-hcard-head { margin-bottom: 12px; }

.tour-hcard-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 1.1;
  margin-top: 4px;
}

.tour-hcard-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
  flex: 1;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  margin-bottom: 24px;
}

.tour-hcard-foot {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-top: 1px solid var(--line);
  padding-top: 16px;
  margin-top: auto;
}

.tour-hcard-price {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 18px;
  white-space: nowrap;
  margin-left: 24px;
}

/* Featured tour */
.tour-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
  margin-bottom: 2px;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
}

.tour-featured:hover { background: var(--bg-3); }
.tour-featured:hover .tour-featured-img img { transform: scale(1.03); }

.tour-featured-img {
  height: 520px;
  overflow: hidden;
}

.tour-featured-body {
  padding: 60px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid var(--line);
}

.tour-badge {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--rust);
  padding: 4px 10px;
  margin-bottom: 20px;
}

.tour-featured-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 46px;
  text-transform: uppercase;
  line-height: 0.95;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.tour-featured-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 400px;
}

/* Tour card grid */
.tour-card-img { height: 280px; overflow: hidden; }
.tour-card-body { padding: 28px 32px 32px; }
.tour-card-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 26px;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1.0;
  margin-bottom: 12px;
}

.tour-card-desc { font-size: 13px; color: var(--muted); line-height: 1.65; margin-bottom: 24px; }

.tour-card-facts {
  display: flex;
  gap: 0;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.tour-card-fact {
  flex: 1;
  border-right: 1px solid var(--line);
  padding-right: 12px;
  margin-right: 12px;
}

.tour-card-fact:last-child { border-right: none; padding-right: 0; margin-right: 0; }

/* ── EXPECT ──────────────────────────────────────────────────────── */
.expect {
  padding: 80px var(--page-pad);
  border-top: 1px solid var(--line);
  background: var(--bg-2);
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}

.expect-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--line);
}

.expect-item { background: var(--bg-2); padding: 32px 36px; }

.expect-item-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}

.expect-item p { font-size: 13px; color: var(--muted); line-height: 1.65; }

/* ── SEASON ──────────────────────────────────────────────────────── */
.season {
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  padding: 0 var(--page-pad);
}

.month {
  padding: 28px 24px;
  border-right: 1px solid var(--line);
  text-align: center;
}

.month:last-child { border-right: none; }

.month-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  color: var(--text);
}

.month.off .month-name { color: var(--muted); }

.month-bar { height: 3px; background: var(--rust); margin-bottom: 8px; }
.month.off .month-bar { background: var(--line); }
.month-note { font-size: 11px; color: var(--muted); }

/* ── TOUR HERO (single) ──────────────────────────────────────────── */
.tour-hero {
  position: relative;
  height: 90vh;
  min-height: 600px;
}

.tour-hero-img {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.tour-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.45) saturate(0.8);
}

.tour-hero-content {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1100px;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: flex-end;
  gap: 48px;
  z-index: 2;
}

.tour-hero-content h1 { margin-bottom: 12px; max-width: 700px; }

.hero-quick-facts {
  display: flex;
  gap: 2px;
  background: var(--line);
  flex-shrink: 0;
}

.hero-fact {
  background: rgba(19,19,17,0.9);
  padding: 20px 28px;
  text-align: center;
  min-width: 100px;
}

.hero-fact-val {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: var(--text);
  line-height: 1;
  margin-bottom: 4px;
}

.hero-fact-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── TOUR OVERVIEW ───────────────────────────────────────────────── */
.tour-overview {
  padding: 80px 48px;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  border-bottom: 1px solid var(--line);
  align-items: start;
}

.overview-text p, .overview-text .wp-block-paragraph {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
  font-weight: 400;
  margin-bottom: 20px;
}

.highlights-list { list-style: none; }

.highlights-list li {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  color: var(--muted);
  align-items: flex-start;
}

.highlights-list li:first-child { border-top: 1px solid var(--line); }

.highlight-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--rust);
  margin-top: 6px;
  flex-shrink: 0;
}

/* ── MAP ─────────────────────────────────────────────────────────── */
.tour-map-section { border-bottom: 1px solid var(--line); }

.map-placeholder {
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #161a14;
}

.map-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.map-embed { height: 420px; overflow: hidden; }
.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ── ITINERARY ───────────────────────────────────────────────────── */
.tour-itinerary {
  padding: 64px 48px;
  border-bottom: 1px solid var(--line);
  max-width: 1100px;
  margin: 0 auto;
}

.itinerary-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 60px;
  align-items: end;
}

.itinerary-note { font-size: 13px; color: var(--muted); line-height: 1.7; }

.days-list {
  display: flex;
  flex-direction: column;
}

.day-item {
  background: var(--bg);
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 40px 1fr auto;
  gap: 16px;
  align-items: baseline;
}

.day-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: var(--line);
  line-height: 1;
  padding-top: 2px;
}

.day-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 15px;
  text-transform: uppercase;
  color: var(--text);
  letter-spacing: 0.03em;
  display: inline;
}

.day-route {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: var(--muted);
  display: inline;
}

.day-route::before { content: ' — '; color: var(--line); }

.day-desc { font-size: 12px; color: var(--muted); line-height: 1.55; margin-top: 4px; }

.day-meta {
  display: flex;
  gap: 12px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}

.day-km { color: var(--text); }

/* ── INCLUDES ────────────────────────────────────────────────────── */
.tour-includes {
  padding: 80px 48px;
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1100px;
  margin: 0 auto;
}

.tour-includes h3 { margin-bottom: 28px; }

.includes-list { list-style: none; }

.includes-list li {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  color: var(--muted);
  align-items: flex-start;
}

.includes-list li:first-child { border-top: 1px solid var(--line); }

.check {
  color: var(--rust);
  font-size: 14px;
  flex-shrink: 0;
  padding-top: 1px;
}

.check.cross { color: var(--muted); }

/* ── TOUR BOOKING ────────────────────────────────────────────────── */
.tour-booking {
  padding: 80px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.booking-price { margin-bottom: 32px; }

.price-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.price-val {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 52px;
  color: var(--text);
  line-height: 1;
  margin-bottom: 6px;
}

.price-note { font-size: 12px; color: var(--muted); }

.booking-dates h3 { margin-bottom: 20px; }

.dates-list { list-style: none; }

.date-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}

.date-row:first-child { border-top: 1px solid var(--line); }

.date-range { color: var(--text); }

.date-spots {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.spots-open { color: var(--rust); }
.spots-few  { color: #c4a02d; }
.spots-full { color: var(--muted); text-decoration: line-through; }

/* ── ABOUT ───────────────────────────────────────────────────────── */
.about-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 90vh;
  padding-top: 88px;
  padding-left: var(--page-pad);
  padding-right: var(--page-pad);
}

.about-hero-photo {
  background-size: cover;
  background-position: center;
  position: relative;
  min-height: 500px;
}

.about-hero-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(19,19,17,0.35);
}

.about-hero-text {
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid var(--line);
  background: var(--bg-2);
}

.about-hero-text h1 { font-size: clamp(48px, 6vw, 80px); margin-bottom: 28px; }

.about-hero-text p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 18px;
  max-width: 440px;
}

.about-numbers {
  padding: 80px var(--page-pad);
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.phil-nums-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--line);
}

.phil-num-item { background: var(--bg-2); padding: 36px 32px; }

.phil-val {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 48px;
  color: var(--text);
  line-height: 1;
  margin-bottom: 6px;
}

.phil-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}

.phil-desc { font-size: 12px; color: var(--muted); line-height: 1.6; }

.about-bike {
  padding: 0 var(--page-pad);
  border-top: 1px solid var(--line);
  background: var(--bg-2);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-bike-photo {
  height: 420px;
  background-size: cover;
  background-position: center;
}

.about-bike-text h2 { margin-bottom: 20px; }

.about-bike-text p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 18px;
}

.bike-specs { margin-top: 32px; border-top: 1px solid var(--line); padding-top: 28px; }

.bike-spec-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}

.spec-key {
  color: var(--muted);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding-top: 2px;
}

.spec-val {
  color: var(--text);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 15px;
}

.values {
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--line);
  padding: 0 var(--page-pad);
  gap: 2px;
}

.value-item { background: var(--bg); padding: 52px 44px; }

.value-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 16px;
}

.value-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 22px;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}

.value-text { font-size: 13px; color: var(--muted); line-height: 1.75; }

.about-cta {
  padding: 100px var(--page-pad);
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-cta .cta-right p { font-size: 15px; color: var(--muted); line-height: 1.75; margin-bottom: 32px; }

/* ── CONTACT ─────────────────────────────────────────────────────── */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  padding: 0 var(--page-pad);
}

.contact-left {
  display: flex;
  flex-direction: column;
}

.contact-photo {
  flex: 1;
  min-height: 400px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.contact-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, var(--bg) 100%);
}

.contact-info {
  background: var(--bg);
  padding: 52px 60px;
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
}

.contact-intro {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 380px;
}

.contact-details { list-style: none; }

.contact-detail {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.contact-detail:first-child { border-top: 1px solid var(--line); }

.detail-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  min-width: 80px;
  padding-top: 2px;
}

.detail-val { font-size: 14px; color: var(--text); }
.detail-val a { color: var(--text); text-decoration: none; transition: color 0.2s; }
.detail-val a:hover { color: var(--rust); }
.detail-note { font-size: 12px; color: var(--muted); margin-top: 3px; }

.contact-right {
  padding: 120px 64px 80px;
  background: var(--bg-2);
  border-left: 1px solid var(--line);
}

.form-head { margin-bottom: 48px; }
.form-head h1 { font-size: clamp(44px, 5vw, 72px); margin-bottom: 10px; }
.form-head p { font-size: 14px; color: var(--muted); line-height: 1.7; max-width: 380px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group { margin-bottom: 16px; }

label {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

input[type="text"],
input[type="email"],
select,
textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--line);
  color: var(--text);
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  font-weight: 400;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  border-radius: 0;
}

input[type="text"]:focus,
input[type="email"]:focus,
select:focus,
textarea:focus { border-color: var(--rust); }

input::placeholder,
textarea::placeholder { color: var(--muted); opacity: 0.6; }

select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236a6a62' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

select option { background: var(--bg); color: var(--text); }
textarea { resize: vertical; min-height: 130px; }

.form-divider { border: none; border-top: 1px solid var(--line); margin: 28px 0; }

.form-section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 16px;
}

.form-note { font-size: 12px; color: var(--muted); margin-bottom: 28px; line-height: 1.65; }

.form-submit { display: flex; align-items: center; gap: 24px; }

.submit-note { font-size: 12px; color: var(--muted); }
.submit-note a { color: var(--rust); text-decoration: none; }

.form-success {
  padding: 40px;
  border: 1px solid var(--line);
  background: var(--bg);
}

.form-success h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 8px;
}

.form-success p { font-size: 14px; color: var(--muted); }

.form-error {
  padding: 14px 18px;
  border: 1px solid var(--rust);
  color: var(--rust);
  font-size: 13px;
  margin-bottom: 20px;
}

/* ── FAQ ─────────────────────────────────────────────────────────── */
.faq-strip {
  border-top: 1px solid var(--line);
  padding: 80px var(--page-pad);
  background: var(--bg);
}

.faq-head { margin-bottom: 48px; }

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--line);
}

.faq-item { background: var(--bg-2); padding: 36px 36px; }
.faq-item:last-child:nth-child(odd) { grid-column: 1 / -1; }

.faq-q {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 17px;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.1;
  letter-spacing: 0.02em;
}

.faq-a { font-size: 13px; color: var(--muted); line-height: 1.7; }

/* ── GALLERY PAGE ────────────────────────────────────────────────── */
.gallery-grid {
  columns: 3;
  column-gap: 3px;
  padding: 0 var(--page-pad);
  border-top: 1px solid var(--line);
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 3px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
  filter: brightness(0.85) saturate(0.85);
}

.gallery-item:hover img {
  transform: scale(1.04);
  filter: brightness(1) saturate(1);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(19,19,17,0.2);
  transition: background 0.3s;
}

.gallery-item:hover .gallery-item-overlay {
  background: rgba(19,19,17,0);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(13,13,11,0.96);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-img-wrap {
  max-width: 90vw;
  max-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-img-wrap img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  display: block;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: fixed;
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
  font-size: 24px;
  padding: 16px;
  transition: color 0.2s;
  line-height: 1;
}

.lightbox-close { top: 24px; right: 32px; font-size: 32px; }
.lightbox-prev  { left: 24px; top: 50%; transform: translateY(-50%); font-size: 28px; }
.lightbox-next  { right: 24px; top: 50%; transform: translateY(-50%); font-size: 28px; }

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover { color: var(--rust); }

/* ── DESTINATIONS PAGE ───────────────────────────────────────────── */
.dest-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
  min-height: 560px;
  padding: 0 var(--page-pad);
}

.dest-section--reverse .dest-photo { order: 2; }
.dest-section--reverse .dest-text  { order: 1; }

.dest-photo {
  overflow: hidden;
  position: relative;
  min-height: 480px;
}

.dest-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6) saturate(0.8);
}

.dest-text {
  padding: 72px 64px;
  background: var(--bg-2);
  border-left: 1px solid var(--line);
}

.dest-section--reverse .dest-text {
  border-left: none;
  border-right: 1px solid var(--line);
  padding-left: 64px;
}

.dest-text h2 { margin-bottom: 20px; }

.dest-text p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
  font-weight: 400;
  margin-bottom: 16px;
}

.dest-facts {
  display: flex;
  gap: 0;
  border-top: 1px solid var(--line);
  padding-top: 24px;
  margin-top: 8px;
  flex-wrap: wrap;
  gap: 0;
}

.dest-fact {
  flex: 1;
  min-width: 120px;
  padding-right: 20px;
  margin-right: 20px;
  border-right: 1px solid var(--line);
}

.dest-fact:last-child { border-right: none; padding-right: 0; margin-right: 0; }

.dest-cta {
  padding: 100px var(--page-pad);
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.dest-cta .cta-right p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 28px;
  font-weight: 400;
}

/* ── HISTORY PAGE ────────────────────────────────────────────────── */
.hist-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
  min-height: 600px;
  padding: 0 var(--page-pad);
}

.hist-section--reverse .hist-photo { order: 2; }
.hist-section--reverse .hist-text  { order: 1; }

.hist-photo {
  overflow: hidden;
  position: relative;
  min-height: 520px;
}

.hist-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55) saturate(0.75);
}

.hist-text {
  padding: 72px 64px;
  background: var(--bg-2);
  border-left: 1px solid var(--line);
}

.hist-section--reverse .hist-text {
  border-left: none;
  border-right: 1px solid var(--line);
  padding-left: 64px;
}

.hist-period {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.hist-text h2 { margin-bottom: 20px; }

.hist-text p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.85;
  font-weight: 400;
  margin-bottom: 16px;
}

.hist-sites-list {
  list-style: none;
  margin-top: 12px;
}

.hist-sites-list li {
  font-size: 13px;
  color: var(--muted);
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
  padding-left: 14px;
  position: relative;
}

.hist-sites-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--rust);
}

/* ── WHATSAPP FLOAT ─────────────────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 52px;
  height: 52px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}

.wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(0,0,0,0.45);
}

.wa-float svg {
  width: 28px;
  height: 28px;
}

/* ── FOOTER ──────────────────────────────────────────────────────── */
#site-footer {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  padding: 60px var(--page-pad) 40px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 28px;
}

.footer-brand .logo { display: block; margin-bottom: 14px; }

.footer-tagline { font-size: 13px; color: var(--muted); line-height: 1.7; max-width: 240px; }

.footer-col h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 9px; }

.footer-col a {
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--text); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p { font-size: 12px; color: var(--muted); letter-spacing: 0.04em; }

/* ── PAGE HEADER ─────────────────────────────────────────────────── */
.page-header {
  padding: 140px var(--page-pad) 80px;
  border-bottom: 1px solid var(--line);
}

.page-header-sub {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 560px;
  margin-top: 16px;
}

/* ── MOBILE NAV ──────────────────────────────────────────────────── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: all 0.25s ease;
}

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

.nav-mobile {
  display: none;
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  background: var(--bg-2);
  border-bottom: 1px solid var(--line);
  z-index: 999;
  padding: 16px 0;
}

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

.nav-mobile ul { list-style: none; }

.nav-mobile li a {
  display: block;
  padding: 14px var(--page-pad);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
}

.nav-mobile li:last-child a { border-bottom: none; color: var(--rust); }

/* ── HIDDEN (filter) ─────────────────────────────────────────────── */
.filter-hidden { display: none !important; }

/* ══════════════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .tour-overview,
  .tour-itinerary,
  .tour-includes,
  .tour-booking { padding-left: 40px; padding-right: 40px; }

  .tour-hero-content { padding: 0 40px; }
}

@media (max-width: 768px) {
  :root { --page-pad: 24px; }

  /* Nav */
  .nav-links { display: none; }
  .nav-cta   { display: none; }
  .nav-hamburger { display: flex; }

  /* Hero */
  .hero { min-height: 80vh; }
  .hero-content h1 { font-size: clamp(48px, 12vw, 80px); }

  /* Strip */
  .strip { grid-template-columns: repeat(2, 1fr); }
  .strip-item { border-bottom: 1px solid var(--line); padding: 28px 24px; }
  .strip-item:nth-child(2n) { border-right: none; }
  .strip-item:nth-last-child(-n+2) { border-bottom: none; }
  .strip-val { font-size: 28px; }
  .strip-label { white-space: nowrap; }

  /* Home tours grid */
  .tours-grid { grid-template-columns: 1fr; }

  /* History 3-col → 1-col */
  .history-grid { grid-template-columns: 1fr; background: none; gap: 0; }
  .history-item { border-bottom: 1px solid var(--line); }

  /* Why — stack photo below text */
  .why { grid-template-columns: 1fr; }
  .why-photo { height: 300px; }

  /* Home CTA */
  .home-cta { grid-template-columns: 1fr; gap: 32px; }

  /* Tour archive */
  .archive-hero { padding-top: 120px; }
  .tour-featured { grid-template-columns: 1fr; }
  .tour-featured-img { height: 280px; }
  .tour-featured-body { padding: 40px 24px; }
  .tour-hcard { grid-template-columns: 1fr; }
  .tour-hcard-img { height: 220px; }
  .tour-hcard-body { padding: 24px; }
  .expect { grid-template-columns: 1fr; gap: 32px; }
  .season { grid-template-columns: repeat(3, 1fr); }

  /* Single tour */
  .tour-hero { height: 60vh; }
  .tour-hero-content { padding: 0 24px; bottom: 40px; }
  .hero-quick-facts { display: none; }
  .tour-overview { grid-template-columns: 1fr; gap: 40px; padding: 48px 24px; }
  .tour-itinerary { padding: 48px 24px; }
  .tour-includes { grid-template-columns: 1fr; gap: 40px; padding: 48px 24px; }
  .tour-booking { grid-template-columns: 1fr; gap: 40px; padding: 48px 24px; }
  .day-item { grid-template-columns: 32px 1fr; }
  .day-meta { display: none; }

  /* About */
  .about-hero { grid-template-columns: 1fr; padding-top: 88px; }
  .about-hero-photo { height: 300px; min-height: unset; }
  .about-hero-text { padding: 48px 24px; }
  .about-numbers { grid-template-columns: 1fr; gap: 40px; }
  .phil-nums-grid { grid-template-columns: repeat(2, 1fr); }
  .about-bike { grid-template-columns: 1fr; }
  .about-bike-photo { height: 300px; }
  .values { grid-template-columns: 1fr; background: none; gap: 0; }
  .value-item { border-bottom: 1px solid var(--line); }
  .about-cta { grid-template-columns: 1fr; gap: 32px; }

  /* Destinations / History */
  .dest-section,
  .hist-section { grid-template-columns: 1fr; min-height: unset; }
  .dest-photo,
  .hist-photo { height: 280px; }
  .dest-section--reverse .dest-photo { order: unset; }
  .dest-section--reverse .dest-text  { order: unset; }
  .hist-section--reverse .hist-photo { order: unset; }
  .dest-text,
  .hist-text { padding: 40px 24px; }
  .dest-cta { grid-template-columns: 1fr; gap: 32px; }

  /* Contact */
  .contact-wrap { grid-template-columns: 1fr; min-height: unset; }
  .contact-photo { height: 240px; }
  .contact-right { padding: 48px 24px; }
  .faq-grid { grid-template-columns: 1fr; background: none; gap: 0; }
  .faq-item { border-bottom: 1px solid var(--line); }

  /* Gallery */
  .gallery-grid { columns: 2; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

@media (max-width: 480px) {
  .gallery-grid { columns: 1; }
  .strip { grid-template-columns: repeat(2, 1fr); }
  .phil-nums-grid { grid-template-columns: 1fr; }
  .season { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
}

/* ── BLOG ARCHIVE ────────────────────────────────────────────────── */
.blog-list {
  padding: 64px 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-bottom: 1px solid var(--line);
}

.blog-card {
  display: grid;
  grid-template-columns: 340px 1fr;
  background: var(--bg-2);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  min-height: 220px;
  transition: background 0.2s;
}

.blog-card--no-img {
  grid-template-columns: 1fr;
  max-width: 900px;
}

.blog-card:hover { background: var(--bg-3); }

.blog-card-img {
  overflow: hidden;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-img img { transform: scale(1.04); }

.blog-card-body {
  padding: 32px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.blog-date {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.blog-cat {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--rust);
  border: 1px solid var(--rust);
  padding: 2px 8px;
  border-radius: 2px;
}

.blog-card-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.1;
  margin-bottom: 12px;
  color: var(--text);
}

.blog-card-excerpt {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
}

.blog-empty {
  padding: 80px 0;
  color: var(--muted);
  text-align: center;
}

.blog-pagination {
  padding: 40px var(--page-pad) 64px;
  display: flex;
  justify-content: space-between;
}

.blog-pagination a {
  color: var(--rust);
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.04em;
}

.blog-pagination a:hover { text-decoration: underline; }

/* ── SINGLE POST ─────────────────────────────────────────────────── */
.post-hero {
  position: relative;
  height: 70vh;
  min-height: 480px;
}

.post-hero--no-img {
  height: auto;
  min-height: unset;
  background: var(--bg-2);
  padding: 160px 48px 80px;
  border-bottom: 1px solid var(--line);
}

.post-hero-img {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.post-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.45) saturate(0.8);
}

.post-hero-content {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1100px;
  padding: 0 48px;
  z-index: 2;
}

.post-hero--no-img .post-hero-content {
  position: static;
  transform: none;
  padding: 0;
  max-width: 800px;
  bottom: auto;
  left: auto;
}

.post-hero-content h1 {
  font-size: clamp(32px, 4vw, 56px);
  max-width: 800px;
  margin-bottom: 0;
}

.post-section {
  padding: 80px 48px;
  max-width: 1100px;
  margin: 0 auto;
  border-bottom: 1px solid var(--line);
}

.post-text {
  max-width: 680px;
}

.post-text p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--text);
  margin-bottom: 24px !important;
}

.post-text h2 {
  font-family: 'Barlow Condensed', sans-serif !important;
  font-size: 28px !important;
  font-weight: 700 !important;
  margin: 48px 0 14px !important;
  color: var(--text) !important;
}

.post-text h3 {
  font-family: 'Barlow Condensed', sans-serif !important;
  font-size: 22px !important;
  font-weight: 600 !important;
  margin: 36px 0 10px !important;
  color: var(--text) !important;
}

.post-text ul,
.post-text ol { padding-left: 24px; margin-bottom: 24px; }

.post-text li { font-size: 16px; line-height: 1.7; margin-bottom: 8px; }

.post-text blockquote {
  border-left: 3px solid var(--rust);
  margin: 32px 0;
  padding: 4px 0 4px 24px;
  color: var(--muted);
  font-style: italic;
}

.post-text img { width: 100%; height: auto; display: block; margin: 40px 0; cursor: zoom-in; }

/* WP block editor wraps images in <figure> with inline width — override */
.post-text figure.wp-block-image,
.post-text figure { width: 100% !important; max-width: 100% !important; margin: 40px 0; }
.post-text figure img { margin: 0; }
.post-text figure figcaption { font-size: 13px; color: var(--muted); margin-top: 8px; text-align: center; }

.post-text a { color: var(--rust); }

.post-text em { color: var(--muted); }

/* ── POST IMAGE LIGHTBOX ── */
.post-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9000;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
}
.post-lightbox.is-open { display: flex; }
.post-lightbox img {
  max-width: 92vw;
  max-height: 90vh;
  width: auto;
  height: auto;
  display: block;
  cursor: default;
  box-shadow: 0 8px 48px rgba(0,0,0,0.6);
}
.post-lightbox-close {
  position: fixed;
  top: 20px;
  right: 28px;
  font-size: 32px;
  line-height: 1;
  color: #fff;
  cursor: pointer;
  background: none;
  border: none;
  opacity: 0.7;
}
.post-lightbox-close:hover { opacity: 1; }

.post-foot {
  padding: 40px 48px;
  max-width: 1100px;
  margin: 0 auto;
  border-bottom: 1px solid var(--line);
}

@media (max-width: 768px) {
  .blog-card { grid-template-columns: 1fr; }
  .blog-card-img { height: 220px; }
  .blog-card-body { padding: 24px; }
  .post-hero { height: 50vh; min-height: 360px; }
  .post-hero--no-img { padding: 120px 24px 60px; }
  .post-hero-content { bottom: 40px; padding: 0 24px; }
  .post-section { padding: 48px 24px; }
  .post-foot { padding: 32px 24px; }
}
