/* ==========================================================================
   Old Africa Adventures — Design tokens
   Palette: deep bush green, sunset clay, warm sand, ivory
   Type: Fraunces (display, serif) + Inter (body/UI, sans)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,500&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --green-950: #161f10;
  --green-900: #1e2a15;
  --green-800: #28381c;
  --green-700: #3a4f28;
  --clay-600: #c97a3a;
  --clay-500: #dc8f45;
  --clay-400: #e6a763;
  --sand-100: #f6f2e8;
  --sand-50: #fbf9f4;
  --ink-900: #1c1c16;
  --ink-700: #4a4a3f;
  --ink-500: #77776a;
  --line: #e2ddce;
  --white: #ffffff;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container: 1240px;
  --radius-s: 4px;
  --radius-m: 8px;
  --shadow-card: 0 1px 2px rgba(28, 28, 22, 0.06), 0 8px 24px -12px rgba(28, 28, 22, 0.18);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink-900);
  background: var(--sand-50);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  margin: 0 0 .5em;
  letter-spacing: -0.01em;
}

p {
  margin: 0 0 1em;
  color: var(--ink-700);
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

:focus-visible {
  outline: 3px solid var(--clay-500);
  outline-offset: 2px;
}

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-s);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .18s ease, color .18s ease, border-color .18s ease, transform .12s ease;
  white-space: nowrap;
}

.btn:active {
  transform: translateY(1px);
}

.btn-clay {
  background: var(--clay-500);
  color: var(--white);
}

.btn-clay:hover {
  background: #c67d38;
}

.btn-outline-light {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}

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

.btn-outline-dark {
  background: transparent;
  border-color: var(--ink-900);
  color: var(--ink-900);
}

.btn-outline-dark:hover {
  background: var(--ink-900);
  color: #fff;
}

.btn-block {
  width: 100%;
}

.btn-sm {
  padding: 10px 18px;
  font-size: 0.85rem;
}

/* ---------- Header / Nav ---------- */
/* backdrop-filter lives on ::before, not on .site-header itself: a `filter`
   or `backdrop-filter` on an element makes IT the containing block for any
   position:fixed descendant, instead of the viewport. .nav-links (the
   mobile dropdown menu below) is position:fixed, so with backdrop-filter
   directly on .site-header it was being confined to the header's own
   ~70px-tall box instead of covering the screen — the menu still opened
   (the "open" class toggled fine), it was just clipped down to nothing,
   which is why tapping the icon looked like it did nothing on a real
   phone. Keeping backdrop-filter on a separate ::before layer gives the
   same frosted-glass look without .site-header itself acquiring a filter. */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--line);
}

.site-header::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(251, 249, 244, 0.92);
  backdrop-filter: blur(8px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
  max-width: var(--container);
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-logo {
  height: 52px;
  width: auto;
  flex-shrink: 0;
  border-radius: 4px;
  display: block;
}

.footer-brand .brand-logo {
  height: 60px;
}

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

.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-700);
  position: relative;
  padding: 4px 0;
}

.nav-links a:hover {
  color: var(--ink-900);
}

.nav-links a.active {
  color: var(--ink-900);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background: var(--clay-500);
}

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

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle svg {
  width: 26px;
  height: 26px;
}

@media (max-width: 940px) {
  .nav-links {
    position: fixed;
    inset: 70px 0 0 0;
    background: var(--sand-50);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 32px;
    gap: 6px;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .18s ease, transform .18s ease;
    overflow-y: auto;
  }

  .nav-links.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-links a {
    width: 100%;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
  }

  .nav-toggle {
    display: block;
  }

  .nav-cta .btn {
    display: none;
  }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  color: #fff;
  overflow: hidden;
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(22, 31, 16, 0.15) 0%, rgba(22, 31, 16, 0.35) 45%, rgba(18, 25, 13, 0.86) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: 90px 32px 56px;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
}

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--clay-400);
  margin-bottom: 14px;
}

.hero h1 {
  font-size: clamp(2.6rem, 5.4vw, 4.4rem);
  max-width: 16ch;
  color: #fff;
}

.hero-sub {
  max-width: 44ch;
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.86);
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-small {
  min-height: 340px;
}

.hero-small .hero-inner {
  padding: 70px 32px 44px;
}

.hero-small h1 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
}

/* ---------- Section basics ---------- */
section {
  padding: 88px 0;
}

.section-tight {
  padding: 56px 0;
}

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

.section-head h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.section-eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--clay-600);
  margin-bottom: 10px;
}

.bg-sand {
  background: var(--sand-100);
}

.bg-green {
  background: var(--green-900);
  color: #f1efe4;
}

.bg-green h2,
.bg-green h3 {
  color: #fff;
}

.bg-green p {
  color: rgba(241, 239, 228, 0.78);
}

/* ---------- Filter pills ---------- */
.filters {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter-pill {
  padding: 9px 20px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-700);
  background: #fff;
  cursor: pointer;
  transition: all .15s ease;
}

.filter-pill:hover {
  border-color: var(--clay-500);
}

.filter-pill.active {
  background: var(--green-900);
  border-color: var(--green-900);
  color: #fff;
}

/* ---------- Cards: destinations / tours ---------- */
.grid {
  display: grid;
  gap: 26px;
}

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

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

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

@media (max-width: 940px) {

  .grid-3,
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px) {

  .grid-3,
  .grid-4,
  .grid-2 {
    grid-template-columns: 1fr;
  }
}

.card {
  background: #fff;
  border-radius: var(--radius-m);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform .18s ease, box-shadow .18s ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(28, 28, 22, 0.08), 0 16px 32px -14px rgba(28, 28, 22, 0.24);
}

.card-media {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #ddd;
}

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

.card-body {
  padding: 18px 20px 20px;
}

.card-body h3 {
  font-size: 1.08rem;
  margin-bottom: 4px;
}

.card-meta {
  font-size: 0.85rem;
  color: var(--ink-500);
  margin-bottom: 12px;
}

.card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 6px;
}

.card-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green-900);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.card-price {
  font-size: 0.78rem;
  color: var(--ink-500);
}

.card-price strong {
  display: block;
  font-size: 1rem;
  color: var(--ink-900);
  font-family: var(--font-display);
}

/* Destination card variant with text overlay */
.dest-card {
  position: relative;
  border-radius: var(--radius-m);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-card);
}

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

.dest-card:hover img {
  transform: scale(1.05);
}

.dest-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(15, 18, 10, 0.82) 100%);
}

.dest-card-text {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 20px;
  z-index: 2;
  color: #fff;
}

.dest-card-text h3 {
  color: #fff;
  font-size: 1.15rem;
  margin-bottom: 4px;
}

.dest-card-text p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.85rem;
  margin-bottom: 10px;
}

.dest-card-text .card-link {
  color: #fff;
}

/* ---------- Icon feature row ---------- */
.feature-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media (max-width:800px) {
  .feature-row {
    grid-template-columns: 1fr;
  }
}

.feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.feature-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--sand-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clay-600);
}

.bg-green .feature-icon {
  background: rgba(255, 255, 255, 0.1);
  color: var(--clay-400);
}

.feature h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.feature p {
  font-size: 0.9rem;
  margin: 0;
}

/* ---------- Strip banner (auth/personal/responsible) ---------- */
.value-strip {
  background: var(--green-900);
  color: #f1efe4;
  padding: 34px 0;
}

.value-strip .feature-row {
  gap: 24px;
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width:800px) {
  .value-strip .feature-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

.value-strip .feature p {
  color: rgba(241, 239, 228, 0.72);
  font-size: 0.85rem;
}

/* ---------- Solo operator spotlight (about.html) ---------- */
.solo-guide {
  display: flex;
  align-items: center;
  gap: 44px;
  max-width: 820px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.solo-guide-photo {
  flex: 0 0 240px;
  width: 240px;
  aspect-ratio: 1;
  border-radius: var(--radius-m);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.solo-guide-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.solo-guide-text {
  flex: 1 1 340px;
}

.solo-guide-text h4 {
  font-size: 1.25rem;
  margin-bottom: 4px;
}

.solo-guide-role {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--clay-600);
  margin-bottom: 12px;
}

.solo-guide-text p {
  font-size: 0.95rem;
  color: var(--ink-700);
  margin: 0;
}

@media (max-width:700px) {
  .solo-guide {
    justify-content: center;
    text-align: center;
  }
}

/* ---------- Read more / expandable content ---------- */
.read-more-content {
  margin-top: 20px;
}

.read-more-content p {
  margin-bottom: 1em;
}

.read-more-content p:last-child {
  margin-bottom: 0;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--green-950);
  color: rgba(241, 239, 228, 0.75);
  padding: 56px 0 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 40px;
}

@media (max-width:800px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.footer-brand p {
  color: rgba(241, 239, 228, 0.6);
  font-size: 0.88rem;
  margin-top: 12px;
  max-width: 32ch;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.footer-social a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(241, 239, 228, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-social svg {
  width: 15px;
  height: 15px;
}

.footer-col h5 {
  color: #fff;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
  font-family: var(--font-body);
  font-weight: 600;
}

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

.footer-col a {
  font-size: 0.87rem;
  color: rgba(241, 239, 228, 0.68);
}

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

.footer-bottom {
  border-top: 1px solid rgba(241, 239, 228, 0.14);
  padding-top: 22px;
  font-size: 0.8rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  color: rgba(241, 239, 228, 0.5);
}

.footer-bottom a {
  color: rgba(241, 239, 228, 0.68);
}

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

/* ---------- Forms ---------- */
.form-field {
  margin-bottom: 16px;
}

.form-field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--ink-700);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-s);
  font-family: var(--font-body);
  font-size: 0.92rem;
  background: #fff;
  color: var(--ink-900);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--clay-500);
}

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

@media (max-width:620px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.form-note {
  font-size: 0.78rem;
  color: var(--ink-500);
  margin-top: 10px;
}

.form-status {
  font-size: 0.88rem;
  padding: 12px 14px;
  border-radius: var(--radius-s);
  margin-top: 14px;
  display: none;
}

.form-status.show {
  display: block;
}

.form-status.ok {
  background: #e9f2e4;
  color: #3a5c2c;
}

.form-status.err {
  background: #fbe9e4;
  color: #9a3a20;
}

/* ---------- Contact page panels ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: start;
}

@media (max-width:900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.contact-item {
  display: flex;
  gap: 14px;
  margin-bottom: 26px;
}

.contact-item .feature-icon {
  background: var(--sand-100);
}

.contact-item h4 {
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-500);
  margin-bottom: 4px;
  font-family: var(--font-body);
  font-weight: 700;
}

.contact-item p {
  margin: 0;
  font-weight: 500;
  color: var(--ink-900);
}

.panel {
  background: #fff;
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-card);
  padding: 32px;
}

.map-embed {
  border-radius: var(--radius-m);
  overflow: hidden;
  border: 1px solid var(--line);
  margin-top: 20px;
  height: 220px;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Floating WhatsApp button */
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 200;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  transition: transform .15s ease;
}

.wa-float:hover {
  transform: scale(1.06);
}

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

/* ---------- Tour detail ---------- */
.tour-hero-media {
  width: 100%;
  aspect-ratio: 21/8;
  overflow: hidden;
  max-height: 520px;
  position: relative;
}

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

@media (max-width:900px) {
  .tour-hero-media {
    aspect-ratio: 16/11;
  }
}

/* Category + difficulty tags above the H1, and the one-line pitch below it —
   fills out the title column so it doesn't sit as bare whitespace next to
   the booking card. */
.tour-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.category-pill {
  display: inline-flex;
  align-items: center;
  padding: 3px 12px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  background: var(--sand-100);
  color: var(--ink-700);
  border: 1px solid var(--line);
}

.tour-subtitle {
  font-size: 1.05rem;
  color: var(--ink-700);
  line-height: 1.55;
  max-width: 480px;
  margin: 10px 0 12px;
}

.tour-booking {
  background: #fff;
  padding: 32px;
  box-shadow: 0 4px 10px rgba(28, 28, 22, 0.06), 0 28px 50px -22px rgba(28, 28, 22, 0.3);
  position: sticky;
  top: 96px;
  margin-top: 0px;
  margin-right: 32px;
  border-radius: 16px;
  border: 1px solid var(--line);
  z-index: 5;
}

@media (max-width:900px) {
  .tour-booking {
    position: static;
    margin: 24px 0 0;
  }
}

.tour-booking-eyebrow {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-500);
  margin-bottom: 4px;
}

.tour-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 50px;
  align-items: start;
}

@media (max-width:900px) {
  .tour-layout {
    grid-template-columns: 1fr;
  }
}

.tour-main {
  max-width: 680px;
}

.tour-price {
  font-family: var(--font-display);
  font-size: 2.4rem;
  line-height: 1.1;
  color: var(--green-900);
  padding-bottom: 20px;
  margin-bottom: 4px;
  border-bottom: 1px solid var(--line);
}

.tour-price span {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--ink-500);
  font-weight: 500;
}

.tour-facts {
  margin: 4px 0 0;
}

.tour-facts li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.9rem;
}

.tour-facts li span:first-child {
  color: var(--ink-500);
}

.tour-facts li span:last-child {
  font-weight: 600;
  color: var(--ink-900);
}

.tour-includes-box {
  background: var(--sand-100);
  border-radius: 10px;
  padding: 16px 18px 8px;
  margin: 20px 0 22px;
}

.tour-includes-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--ink-700);
  margin: 0 0 8px;
}

.tour-includes-box .check-list {
  margin: 0;
}

.tour-includes-box .check-list li {
  padding: 6px 0;
  font-size: 0.86rem;
}

.tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--line);
  margin-bottom: 30px;
  overflow-x: auto;
}

.tab {
  padding: 14px 20px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink-500);
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  cursor: pointer;
}

.tab.active {
  color: var(--ink-900);
  border-color: var(--clay-500);
}

.check-list li {
  display: flex;
  gap: 10px;
  padding: 7px 0;
  font-size: 0.92rem;
  color: var(--ink-700);
}

.check-list li svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--clay-600);
  margin-top: 2px;
}

/* Inclusions get a green check, exclusions a muted "not included" X —
   makes the two tabs readable at a glance instead of looking identical. */
.check-list--positive li svg {
  color: var(--green-700);
}

.check-list--negative li {
  color: var(--ink-500);
}

.check-list--negative li svg {
  color: #b0473e;
}

/* ---------- Tour detail: quick facts strip ---------- */
.tour-quickfacts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 8px;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
}

.tour-quickfact {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 4px 18px 4px 0;
  border-right: 1px solid var(--line);
  flex: 1 1 160px;
}

.tour-quickfact:last-child {
  border-right: none;
}

.tour-quickfact svg {
  width: 19px;
  height: 19px;
  flex-shrink: 0;
  color: var(--clay-600);
  margin-top: 2px;
}

.tour-quickfact-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-500);
  margin-bottom: 2px;
}

.tour-quickfact-value {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink-900);
  line-height: 1.35;
}

.tour-quickfact-value a {
  color: var(--green-900);
  text-decoration: underline;
  text-decoration-color: var(--line);
  text-underline-offset: 2px;
}

.tour-quickfact-value a:hover {
  text-decoration-color: currentColor;
}

@media (max-width: 640px) {
  .tour-quickfact {
    border-right: none;
    flex: 1 1 45%;
  }
}

/* Difficulty pill — reused in the quick-facts strip and the sidebar */
.difficulty-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 2px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.difficulty-pill.is-easy {
  background: #e7f1e2;
  color: var(--green-800);
}

.difficulty-pill.is-moderate {
  background: #fbead9;
  color: var(--clay-600);
}

.difficulty-pill.is-challenging {
  background: #f4e1de;
  color: #a3453b;
}

/* ---------- Tour detail: highlight cards ---------- */
.tour-highlight-card {
  padding: 22px;
}

.tour-highlight-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--sand-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 12px;
}

/* ---------- Tour detail: itinerary timeline ---------- */
.itinerary-timeline {
  position: relative;
}

.itinerary-item {
  position: relative;
  display: flex;
  gap: 18px;
  padding-bottom: 28px;
}

.itinerary-item:last-child {
  padding-bottom: 0;
}

.itinerary-item::before {
  content: '';
  position: absolute;
  left: 17px;
  top: 36px;
  bottom: 0;
  width: 1px;
  background: var(--line);
}

.itinerary-item:last-child::before {
  display: none;
}

.itinerary-marker {
  flex-shrink: 0;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: var(--green-900);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
  z-index: 1;
}

.itinerary-content {
  padding-top: 4px;
}

.itinerary-content h4 {
  font-size: 0.98rem;
  margin: 0 0 6px;
}

.itinerary-content p {
  font-size: 0.9rem;
  margin: 0;
  color: var(--ink-700);
}

/* ---------- Tour detail: destination callout ---------- */
.tour-dest-callout {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--sand-100);
  border-radius: var(--radius-m);
  padding: 20px 22px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.tour-dest-callout-text {
  flex: 1 1 260px;
}

.tour-dest-callout-text p {
  margin: 4px 0 0;
  font-size: 0.88rem;
  color: var(--ink-700);
}

.tour-dest-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--green-900);
  white-space: nowrap;
}

.tour-dest-chip:hover {
  border-color: var(--clay-500);
}

/* ---------- Tour detail: sidebar trust badges ---------- */
.tour-trust {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.tour-trust-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--ink-700);
  margin-bottom: 8px;
}

.tour-trust-item:last-child {
  margin-bottom: 0;
}

.tour-trust-item svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  color: var(--green-700);
  margin-top: 2px;
}

/* ---------- Placeholder-image indicator ----------
   Flags stock/placeholder photography that still needs to be swapped for
   real, licensed shots before launch. Purely a production aid — remove the
   badge automatically once a real "image"/"gallery" URL is set in the data. */
.ph-media {
  position: relative;
}

.ph-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(28, 28, 22, 0.82);
  color: #fff;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 5px 10px 5px 8px;
  border-radius: 999px;
  pointer-events: none;
}

.ph-badge svg {
  width: 12px;
  height: 12px;
}

/* ---------- Blog article ---------- */
.article-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 56px;
  align-items: start;
}

@media (max-width:900px) {
  .article-layout {
    grid-template-columns: 1fr;
  }
}

.article-body h2 {
  font-size: 1.5rem;
  margin-top: 1.6em;
}

.article-body p {
  font-size: 1rem;
}

.sidebar-block {
  margin-bottom: 34px;
}

.sidebar-block h5 {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-500);
  margin-bottom: 16px;
}

.related-post {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.related-post:last-child {
  border-bottom: none;
}

.related-post h6 {
  font-size: 0.86rem;
  margin: 0 0 4px;
  font-family: var(--font-body);
  font-weight: 600;
}

.related-post:hover h6 {
  color: var(--clay-600);
}

.related-post span {
  font-size: 0.76rem;
  color: var(--ink-500);
}

.cat-list li a {
  display: flex;
  justify-content: space-between;
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.9rem;
}

/* ---------- Blog listing (text-only cards, no thumbnails) ---------- */
.featured-article {
  display: block;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 40px;
  margin-bottom: 56px;
  box-shadow: var(--shadow-card);
  transition: transform .18s ease, box-shadow .18s ease;
}

.featured-article:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(28, 28, 22, 0.08), 0 16px 32px -14px rgba(28, 28, 22, 0.24);
}

.featured-article h3 {
  font-size: 1.6rem;
  margin: 14px 0 10px;
  max-width: 26ch;
}

.featured-article p {
  font-size: 1rem;
  color: var(--ink-700);
  max-width: 60ch;
  margin: 0 0 20px;
}

.featured-article-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.blog-card .card-body {
  padding: 22px 22px 24px;
}

.blog-card h3 {
  line-height: 1.4;
}

.blog-card .card-foot {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

/* ---------- Services ---------- */
.service-card {
  background: #fff;
  border-radius: var(--radius-m);
  padding: 26px;
  box-shadow: var(--shadow-card);
}

.service-card .feature-icon {
  margin-bottom: 14px;
}

.service-card h3 {
  font-size: 1.05rem;
}

.service-card p {
  font-size: 0.9rem;
  margin: 0;
}

.cta-banner {
  background: var(--clay-500);
  color: #fff;
  border-radius: var(--radius-m);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.cta-banner h3 {
  color: #fff;
  margin-bottom: 4px;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

/* ---------- Quote page stepper ---------- */
.step-track {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 34px;
}

.step {
  display: flex;
  align-items: center;
  gap: 10px;
}

.step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--sand-100);
  color: var(--ink-500);
  font-size: 0.82rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step.active .step-num {
  background: var(--clay-500);
  color: #fff;
}

.step-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-500);
}

.step.active .step-label {
  color: var(--ink-900);
}

.step-line {
  flex: 1;
  height: 1px;
  background: var(--line);
}

.mini-tour {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  transition: opacity 0.18s ease;
}

a.mini-tour:hover {
  opacity: 0.72;
}

a.mini-tour:hover h6 {
  color: var(--clay-600);
}

.mini-tour-arrow {
  width: 16px;
  height: 16px;
  margin-left: auto;
  flex-shrink: 0;
  color: var(--ink-500);
}

.mini-tour img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 6px;
}

.mini-tour h6 {
  margin: 0 0 2px;
  font-size: 0.85rem;
  font-family: var(--font-body);
  font-weight: 600;
}

.mini-tour span {
  font-size: 0.78rem;
  color: var(--ink-500);
}

/* ---------- Utility ---------- */
.text-center {
  text-align: center;
}

.mt-0 {
  margin-top: 0;
}

.eyebrow-inline {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--clay-600);
}

.breadcrumb {
  font-size: 0.82rem;
  color: var(--ink-500);
  padding: 18px 0;
}

.breadcrumb a {
  color: var(--ink-500);
}

.breadcrumb a:hover {
  color: var(--ink-900);
}

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
}

.gallery-tile {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius-s);
  overflow: hidden;
  cursor: pointer;
  background: var(--sand-100);
}

.gallery-tile img,
.gallery-tile video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .3s ease;
}

.gallery-tile:hover img,
.gallery-tile:hover video {
  transform: scale(1.06);
}

.gallery-tile-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(28, 28, 22, 0.28);
  pointer-events: none;
}

.gallery-tile-play svg {
  width: 42px;
  height: 42px;
  color: #fff;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.45));
}

/* Matches the "// #N" comment above this item in js/gallery-data.js, so
   you can spot a photo here and go delete its exact entry by number.
   Always visible (not just on hover) so it works when reviewing on a
   phone/tablet too, not only with a mouse. */
.gallery-tile-id {
  position: absolute;
  top: 6px;
  left: 6px;
  background: rgba(28, 28, 22, 0.62);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 999px;
  pointer-events: none;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 8, 0.94);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox[hidden] {
  display: none;
}

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

.lightbox-media img,
.lightbox-media video {
  max-width: 88vw;
  max-height: 80vh;
  border-radius: 6px;
  object-fit: contain;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  background: rgba(255, 255, 255, 0.12);
  border: none;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background .15s ease;
}

.lightbox-close:hover,
.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.24);
}

.lightbox-close {
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
}

.lightbox-close svg {
  width: 20px;
  height: 20px;
}

.lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
}

.lightbox-nav svg {
  width: 22px;
  height: 22px;
}

.lightbox-prev {
  left: 16px;
}

.lightbox-next {
  right: 16px;
}

.lightbox-counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

@media (max-width:600px) {

  .lightbox-close,
  .lightbox-nav {
    width: 38px;
    height: 38px;
  }

  .lightbox-prev {
    left: 8px;
  }

  .lightbox-next {
    right: 8px;
  }
}