/* =========================================================
   JAMBO MAASAI TOURS — site styles
   White-dominant, flat red accent (#c81818), flat CTAs.
   Editorial: Playfair Display (display) + Inter (body).
   ========================================================= */

:root {
  /* Reds (tweakable) */
  --red-50:  #fff3f3;
  --red-100: #ffe2e2;
  --red-300: #ff8d8d;
  --red-500: #d61f1f;
  --red-600: #c81818;
  --red-700: #a30f0f;
  --red-900: #5a0606;

  --gloss-light: #ff5e5e;
  --gloss-mid:   #c81818;
  --gloss-dark:  #6a0606;

  /* Neutrals */
  --ink:       #14110f;
  --ink-2:     #2c2926;
  --muted:     #6b6560;
  --muted-2:   #a39d97;
  --rule:      #ece7e1;
  --rule-2:    #f5f1eb;
  --paper:     #ffffff;
  --paper-2:   #faf7f2;
  --paper-3:   #f3ede4;

  /* Type */
  --serif: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Layout */
  --container: 1280px;
  --gutter: clamp(20px, 4vw, 48px);

  /* Density */
  --space-unit: 1;
  --section-y: calc(96px * var(--space-unit));
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

/* ---- Container ---- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: var(--section-y) 0; }
.section.tight { padding: calc(var(--section-y) * 0.6) 0; }

/* ---- Type ---- */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
  text-wrap: balance;
}
h1 { font-size: clamp(40px, 5.5vw, 76px); line-height: 1.05; letter-spacing: -0.02em; }
h2 { font-size: clamp(30px, 3.6vw, 48px); line-height: 1.1; }
h3 { font-size: clamp(20px, 1.8vw, 26px); line-height: 1.2; }
h4 { font-size: 18px; line-height: 1.3; }
p  { margin: 0 0 1em; color: var(--ink-2); text-wrap: pretty; }
.lead { font-size: 19px; line-height: 1.55; color: var(--ink-2); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--red-600);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: ''; width: 28px; height: 2px;
  background: linear-gradient(90deg, var(--red-600), var(--red-300));
  border-radius: 2px;
}
.eyebrow.center::before { display: none; }

.section-head {
  display: flex; align-items: end; justify-content: space-between;
  gap: 28px; flex-wrap: wrap; margin-bottom: 48px;
}
.section-head h2 { margin-bottom: 6px; }
.section-head p  { max-width: 520px; margin: 0; color: var(--muted); line-height: 1.65; }
.section-head.center {
  flex-direction: column; align-items: center; text-align: center;
  max-width: 640px; margin-left: auto; margin-right: auto;
}
.section-head.center p { margin-top: 8px; }

.center { text-align: center; }
.center .eyebrow { justify-content: center; }

/* =========================================================
   FLAT RED — buttons & badges
   ========================================================= */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--sans); font-weight: 600; font-size: 14px;
  letter-spacing: 0.04em; text-transform: uppercase;
  padding: 16px 28px; border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease;
  white-space: nowrap;
  text-decoration: none;
}

.btn .arrow {
  display: inline-block; transition: transform .25s ease;
}
.btn:hover .arrow { transform: translateX(4px); }

/* Flat red primary */
.btn-primary {
  color: #fff;
  background: var(--red-600);
  border: 1px solid var(--red-600);
}
.btn-primary:hover {
  background: var(--red-700);
  border-color: var(--red-700);
}
.btn-primary:active {
  background: var(--red-800);
  border-color: var(--red-800);
}

/* Ghost / outline — flat */
.btn-ghost {
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--rule);
}
.btn-ghost:hover {
  background: var(--bg-warm);
  border-color: rgba(0, 0, 0, 0.15);
}

.btn-light-on-dark {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.btn-light-on-dark:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.35);
}

.btn.sm { padding: 10px 18px; font-size: 12px; }
.btn.lg { padding: 20px 36px; font-size: 15px; }

/* Flat red glassmorphism badge */
.badge-red {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--sans); font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: #fff;
  padding: 6px 12px; border-radius: 999px;
  background: var(--red-600);
}
.badge-red.dot::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: #fff; }

.badge-soft {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--red-700); background: var(--red-50);
  padding: 6px 12px; border-radius: 999px; border: 1px solid var(--red-100);
}

/* =========================================================
   TOP BAR
   ========================================================= */
.top-bar {
  background: var(--ink);
  border-bottom: 1px solid rgba(255,255,255,.08);
  position: fixed; top: 0; left: 0; right: 0; z-index: 51;
  transition: transform .3s ease;
}
.top-bar-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 0; gap: 16px;
}
.top-bar-left,
.top-bar-right { display: flex; align-items: center; gap: 20px; }
.top-bar-left a,
.top-bar-right a {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; color: rgba(255,255,255,.6);
  transition: color .2s;
}
.top-bar-left a:hover,
.top-bar-right a:hover { color: #fff; }
.top-bar-right a { gap: 0; }
.top-bar-right a svg { opacity: .6; transition: opacity .2s; }
.top-bar-right a:hover svg { opacity: 1; }

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: fixed; top: 33px; left: 0; right: 0; z-index: 50;
  padding: 16px 0;
  transition: background .3s ease, box-shadow .3s ease, padding .3s ease, top .3s cubic-bezier(.4,0,.2,1);
  will-change: top, background, padding;
}
.site-header.solid {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--rule), 0 8px 32px -16px rgba(0,0,0,.1);
  padding: 10px 0;
  top: 0;
}
.site-header.solid + .top-bar,
.site-header.solid ~ .top-bar { pointer-events: none; }
.site-header.solid .nav-main a { color: var(--ink); }
.site-header.solid .nav-main a:hover { color: var(--red-600); }
.site-header.solid .nav-main a.active { color: var(--red-600); }
.site-header.solid .logo { color: var(--ink); }
.site-header.solid .logo .crest { background: #fff; border-color: var(--rule); }
.site-header.solid .hamburger span { background: var(--ink); }

.nav-wrap {
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
}

/* Logo */
.logo {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--serif); font-weight: 600; font-size: 22px;
  color: #fff; letter-spacing: -0.01em;
}
.logo .crest {
  width: 42px; height: 42px; border-radius: 50%;
  background: #fff;
  display: grid; place-items: center;
  border: 1px solid rgba(0,0,0,.1);
}
.logo:hover .crest {
  border-color: rgba(0,0,0,.15);
}
.logo .crest svg { width: 22px; height: 22px; }
.logo .crest img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.logo .logo-img { height: 40px; width: auto; display: block; }
.logo .small {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  opacity: 0.7; font-family: var(--sans); font-weight: 600;
  display: block; line-height: 1;
}
.logo .big { font-family: var(--serif); font-weight: 700; line-height: 1.1; display: block; }

/* Desktop nav */
.nav-main { display: flex; align-items: center; gap: 6px; }
.nav-main a {
  font-size: 14px; font-weight: 500;
  color: rgba(255,255,255,.9);
  position: relative;
  padding: 8px 14px; border-radius: 6px;
  transition: color .2s ease, background .2s ease;
}
.nav-main a:hover {
  color: #fff;
  background: rgba(255,255,255,.1);
}
.site-header.solid .nav-main a:hover {
  color: var(--red-600);
  background: var(--red-50);
}
.nav-main a.active { color: #fff; }
.nav-main a.active::after {
  content: ''; position: absolute; left: 14px; right: 14px; bottom: 2px; height: 2px;
  background: var(--red-500);
  border-radius: 2px;
}
.site-header.solid .nav-main a.active::after {
  background: var(--red-600);
}

/* Nav actions (CTA + hamburger) */
.nav-actions { display: flex; align-items: center; gap: 12px; margin-left: auto; flex-shrink: 0; }
.nav-cta { white-space: nowrap; }

/* Hamburger */
.hamburger {
  display: none;
  width: 42px; height: 42px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
  border-radius: 8px; cursor: pointer;
  flex-direction: column; justify-content: center; align-items: center; gap: 5px;
  padding: 10px;
  transition: background .2s, border-color .2s;
}
.hamburger:hover { background: rgba(255,255,255,.15); }
.site-header.solid .hamburger {
  background: var(--paper-2); border-color: var(--rule);
}
.site-header.solid .hamburger:hover { background: var(--paper-3); }
.hamburger span {
  display: block; width: 20px; height: 2px;
  background: #fff; border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav drawer */
.mobile-nav {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: 340px; max-width: 90vw;
  background: #fff;
  z-index: 200;
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  box-shadow: -16px 0 48px rgba(0,0,0,.15);
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--rule);
}
.mobile-nav-head .logo { color: var(--ink); font-size: 18px; }
.mobile-nav-close {
  width: 40px; height: 40px; display: grid; place-items: center;
  background: var(--paper-2); border: 1px solid var(--rule); border-radius: 8px;
  cursor: pointer; color: var(--ink);
  transition: background .2s;
}
.mobile-nav-close:hover { background: var(--paper-3); }
.mobile-nav-links {
  flex: 1; overflow-y: auto; padding: 16px 0;
  display: flex; flex-direction: column;
}
.mobile-nav-links a {
  font-size: 16px; font-weight: 500; color: var(--ink);
  padding: 14px 28px; position: relative;
  transition: background .15s, color .15s;
}
.mobile-nav-links a:hover { background: var(--paper-2); color: var(--red-600); }
.mobile-nav-links a.active {
  color: var(--red-600); font-weight: 600;
}
.mobile-nav-links a.active::before {
  content: ''; position: absolute; left: 0; top: 8px; bottom: 8px; width: 3px;
  background: var(--red-500);
  border-radius: 0 2px 2px 0;
}
.mobile-nav-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--rule);
  display: flex; flex-direction: column; gap: 12px;
}
.mobile-nav-footer .btn { text-align: center; width: 100%; }
.mobile-nav-phone {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 14px; color: var(--muted); font-weight: 500;
  transition: color .2s;
}
.mobile-nav-phone:hover { color: var(--red-600); }

/* Backdrop overlay */
.mobile-backdrop {
  position: fixed; inset: 0; z-index: 199;
  background: rgba(0,0,0,.4); backdrop-filter: blur(4px);
  opacity: 0; pointer-events: none;
  transition: opacity .35s ease;
}
.mobile-backdrop.open { opacity: 1; pointer-events: auto; }

/* =========================================================
   HERO — full-bleed carousel
   ========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  height: 820px;
  max-height: 1000px;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
  display: flex;
  align-items: end;
}
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.35) 0%, rgba(0,0,0,0) 30%, rgba(0,0,0,.7) 100%),
    linear-gradient(90deg, rgba(0,0,0,.5) 0%, rgba(0,0,0,.2) 60%);
}
.hero-inner {
  position: relative; z-index: 2;
  padding: 0 var(--gutter) 80px;
  width: 100%; max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 60px; align-items: end;
}
.hero-copy { max-width: 640px; }
.hero-copy .eyebrow { color: #fff; }
.hero-copy .eyebrow::before { background: linear-gradient(90deg, #fff, transparent); }
.hero-copy h1 { color: #fff; font-weight: 600; }
.hero-copy h1 em { font-style: italic; color: var(--red-300); font-weight: 400; }
.hero-copy p { color: rgba(255,255,255,.85); font-size: 18px; max-width: 520px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }

/* Search/inquiry form overlay */
.hero-form {
  background: #fff;
  border-radius: 4px;
  padding: 28px;
  border: 1px solid var(--rule);
  border-top: 4px solid var(--red-600);
  position: relative;
  color: var(--ink);
}
.hero-form::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  border: 1px solid rgba(0,0,0,.06);
}
.hero-form h3 { font-size: 22px; margin-bottom: 4px; }
.hero-form .sub { font-size: 13px; color: var(--muted); margin-bottom: 20px; }

.field { display: block; margin-bottom: 14px; }
.field label {
  display: block; font-size: 11px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 6px;
}
.field .input,
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--rule);
  background: #fff;
  border-radius: 4px;
  font-family: var(--sans); font-size: 14px; color: var(--ink);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--red-500);
  box-shadow: 0 0 0 3px var(--red-50);
}
.field textarea { min-height: 90px; resize: vertical; }
.field input:invalid:not(:placeholder-shown),
.field textarea:invalid:not(:placeholder-shown) {
  border-color: var(--red-500);
}
.field input:valid:not(:placeholder-shown),
.field textarea:valid:not(:placeholder-shown) {
  border-color: #22c55e;
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

/* hero pagination */
.hero-pager {
  position: absolute; bottom: 32px; right: var(--gutter);
  display: flex; gap: 12px; z-index: 3; align-items: center;
}
.hero-pager .dots { display: flex; gap: 8px; }
.hero-pager .dot {
  width: 36px; height: 3px; background: rgba(255,255,255,.3); border-radius: 2px; cursor: pointer;
  transition: background .25s, transform .25s;
}
.hero-pager .dot.active { background: var(--red-500); }
.hero-pager .arrows { display: flex; gap: 6px; margin-left: 16px; }
.hero-pager button {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.4);
  color: #fff; cursor: pointer;
  display: grid; place-items: center;
  transition: background .2s;
}
.hero-pager button:hover { background: rgba(255,255,255,.25); }

/* hero scroll indicator strip */
.hero-strip {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 3;
  background: rgba(255,255,255,.06); backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 14px 0;
}
.hero-strip-row {
  display: flex; align-items: center; justify-content: space-between;
  color: rgba(255,255,255,.85); font-size: 13px;
  gap: 20px; flex-wrap: wrap;
}
.hero-strip-row .item { display: inline-flex; align-items: center; gap: 8px; }
.hero-strip-row .item .ico {
  width: 18px; height: 18px; opacity: .9;
}

/* =========================================================
   PLACEHOLDER blocks
   ========================================================= */
.ph {
  background:
    repeating-linear-gradient(45deg, transparent 0 12px, rgba(200,24,24,.04) 12px 13px),
    linear-gradient(135deg, #f6efe6 0%, #ece2d4 100%);
  display: grid; place-items: center; text-align: center;
  color: var(--muted); font-family: var(--sans); font-size: 12px;
  letter-spacing: 0.12em; text-transform: uppercase;
  position: relative;
}
.ph::after {
  content: '';
  position: absolute; inset: 16px;
  border: 1px dashed rgba(107,101,96,.4);
  pointer-events: none;
}
.ph .ph-label {
  position: relative; z-index: 1;
  background: rgba(255,255,255,.85); padding: 8px 14px; border-radius: 999px;
  border: 1px solid var(--rule);
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600;
}

/* =========================================================
   INTRO STRIP
   ========================================================= */
.intro {
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 80px; align-items: start;
}
.intro h2 em { font-style: italic; color: var(--red-700); font-weight: 500; }
.intro .lead { font-size: 17px; line-height: 1.7; color: var(--ink-2); }
.intro .sig {
  margin-top: 28px; font-family: var(--serif); font-style: italic; color: var(--muted);
  display: flex; align-items: center; gap: 14px;
  padding-top: 28px; border-top: 1px solid var(--rule);
}
.intro .sig-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--paper-3), var(--paper-2));
  border: 2px solid var(--rule);
  display: grid; place-items: center; font-size: 14px; color: var(--muted);
  font-family: var(--serif); font-weight: 600;
}
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 40px; }
.stat {
  padding: 24px 0;
  border-top: 3px solid var(--rule);
  transition: border-color .3s ease;
}
.stat:hover { border-color: var(--red-400); }
.stat .n {
  font-family: var(--serif); font-size: 48px; line-height: 1; font-weight: 600;
  color: var(--ink); margin-bottom: 8px;
}
.stat .n em { font-style: italic; color: var(--red-600); font-size: 28px; vertical-align: top; margin-left: 2px; }
.stat .l { font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); }

/* =========================================================
   CARDS — destinations
   ========================================================= */
.card-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.card-grid.three { grid-template-columns: repeat(3, 1fr); }
.card-grid.two   { grid-template-columns: repeat(2, 1fr); }

.dest-card {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  cursor: pointer;
  background: var(--paper-2);
  transition: transform .35s ease, box-shadow .35s ease;
  isolation: isolate;
}
.dest-card .ph { position: absolute; inset: 0; }
.dest-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.dest-card::before {
  content: ''; position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,.65) 100%);
}
.dest-card .meta {
  position: absolute; left: 22px; right: 22px; bottom: 22px; z-index: 3; color: #fff;
}
.dest-card .meta .top {
  display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px;
}
.dest-card .meta .num {
  font-family: var(--serif); font-style: italic; font-size: 14px; opacity: .8;
}
.dest-card h3 { color: #fff; font-size: 26px; margin-bottom: 4px; }
.dest-card .country { font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; opacity: .75; }
.dest-card .arrow-circle {
  position: absolute; right: 22px; top: 22px; z-index: 3;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--red-600);
  display: grid; place-items: center;
  color: #fff;
  transform: scale(0.85); opacity: 0;
  transition: transform .3s ease, opacity .3s ease;
}
.dest-card:hover .arrow-circle { transform: scale(1); opacity: 1; }
.dest-card:hover { transform: translateY(-4px); box-shadow: 0 30px 50px -20px rgba(0,0,0,.25); }

.dest-card.tall { aspect-ratio: 3 / 5; }

/* =========================================================
   CARDS — tours
   ========================================================= */
.tour-card {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 4px;
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  cursor: pointer;
  position: relative;
}
.tour-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -20px rgba(0,0,0,.15);
  border-color: var(--rule-2);
}
.tour-card .cover { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.tour-card .cover img { width: 100%; height: 100%; object-fit: cover; }
.tour-card .cover .ph { position: absolute; inset: 0; }
.tour-card .cover .badge-red { position: absolute; top: 14px; left: 14px; z-index: 2; }
.tour-card .cover .save {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.95); display: grid; place-items: center;
  box-shadow: 0 4px 10px rgba(0,0,0,.12);
  color: var(--ink); border: none; cursor: pointer;
}
.tour-card .cover .save:hover { color: var(--red-600); }
.tour-card .body { padding: 22px; display: flex; flex-direction: column; flex: 1; gap: 8px; }
.tour-card .where {
  font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--muted); display: flex; align-items: center; gap: 8px;
}
.tour-card h3 { font-size: 22px; margin: 4px 0; }
.tour-card .desc { font-size: 14px; color: var(--muted); margin: 0; flex: 1; }
.tour-card .specs {
  display: flex; align-items: center; gap: 14px;
  border-top: 1px solid var(--rule); padding-top: 14px; margin-top: 8px;
  font-size: 13px; color: var(--ink-2);
}
.tour-card .specs .spec { display: inline-flex; align-items: center; gap: 6px; }
.tour-card .specs .sep { color: var(--rule); }
.tour-card .footer {
  display: flex; justify-content: space-between; align-items: end;
  padding: 16px 22px; border-top: 1px solid var(--rule); background: var(--paper-2);
}
.tour-card .price { font-family: var(--serif); }
.tour-card .price .from { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); display: block; font-family: var(--sans); }
.tour-card .price .amt  { font-size: 26px; font-weight: 600; color: var(--ink); }
.tour-card .price .amt em { font-style: italic; color: var(--red-700); }
.tour-card .price .per  { font-size: 12px; color: var(--muted); }
.tour-card .cta-link {
  font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--red-700);
  display: inline-flex; align-items: center; gap: 6px;
}
.tour-card .cta-link:hover { color: var(--red-900); }

/* =========================================================
   WHY CHOOSE US — embossed feature row
   ========================================================= */
.why {
  background: var(--paper-2);
  position: relative; overflow: hidden;
}
.why .features {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
}
.feature {
  background: #fff; padding: 32px 28px;
  border-radius: 4px; border: 1px solid var(--rule);
  position: relative;
  transition: transform .25s, box-shadow .25s;
}
.feature:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -20px rgba(0,0,0,.12); }
.feature .ico {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--red-600);
  display: grid; place-items: center; color: #fff; margin-bottom: 18px;
}
.feature h3 { font-size: 20px; margin-bottom: 8px; }
.feature p { font-size: 14px; color: var(--muted); margin: 0; }
.feature .num {
  position: absolute; top: 24px; right: 28px;
  font-family: var(--serif); font-style: italic; font-size: 14px;
  color: var(--muted-2);
}

/* =========================================================
   EXPERIENCES — horizontal split
   ========================================================= */
.exp-card {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  background: #fff; border: 1px solid var(--rule);
  border-radius: 4px; overflow: hidden;
  align-items: stretch;
  transition: transform .25s, box-shadow .25s;
}
.exp-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -20px rgba(0,0,0,.15); }
.exp-card .cover { position: relative; min-height: 280px; }
.exp-card .cover img { width: 100%; height: 100%; object-fit: cover; }
.exp-card .cover .ph { position: absolute; inset: 0; }
.exp-card .body { padding: 32px; display: flex; flex-direction: column; gap: 12px; justify-content: center; }
.exp-card .body h3 { margin: 6px 0; }
.exp-card .body p { color: var(--muted); font-size: 14px; }

/* =========================================================
   TESTIMONIALS — quote panel
   ========================================================= */
.testimonials {
  background:
    radial-gradient(1200px 600px at 80% 0%, rgba(200,24,24,.06), transparent 60%),
    var(--paper);
}
.t-grid,
.testimonial-block { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 60px; align-items: start; }
.t-quote {
  background: #fff;
  padding: 48px;
  border: 1px solid var(--rule);
  border-radius: 4px;
  position: relative;
}
.t-quote::before {
  content: '\201C'; position: absolute; top: -10px; left: 32px;
  font-family: var(--serif); font-size: 140px; line-height: 1;
  color: var(--red-100);
  font-weight: 600;
}
.t-quote blockquote {
  font-family: var(--serif); font-size: 24px; line-height: 1.5;
  margin: 0 0 28px; color: var(--ink); font-weight: 500;
  position: relative;
}
.t-quote .author { display: flex; align-items: center; gap: 14px; }
.t-quote .author .avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--paper-3), var(--paper-2));
  border: 1px solid var(--rule);
  display: grid; place-items: center; color: var(--muted); font-family: var(--serif);
}
.t-quote .author .who .name { font-weight: 600; color: var(--ink); }
.t-quote .author .who .meta { font-size: 13px; color: var(--muted); }

.t-list { display: flex; flex-direction: column; gap: 16px; }
.t-list .t-item {
  background: #fff; border: 1px solid var(--rule); border-radius: 4px;
  padding: 22px; cursor: pointer;
  transition: border-color .2s, transform .2s;
}
.t-list .t-item:hover { border-color: var(--red-300); transform: translateX(4px); }
.t-list .t-item.active { border-color: var(--red-500); border-left-width: 3px; }
.t-list .stars { color: var(--red-600); font-size: 14px; margin-bottom: 8px; letter-spacing: 2px; }
.t-list .snip { font-size: 14px; color: var(--ink-2); margin: 0 0 8px; }
.t-list .who,
.t-list .reviewer { font-size: 12px; color: var(--muted); }

/* =========================================================
   CTA BANNER
   ========================================================= */
.cta-banner {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #1a0606 0%, #5a0606 50%, #1a0606 100%);
  color: #fff; padding: 100px 0; text-align: center;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    radial-gradient(800px 300px at 20% 0%, rgba(255,255,255,.08), transparent),
    radial-gradient(600px 300px at 80% 100%, rgba(255,255,255,.06), transparent);
}
.cta-banner::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    repeating-linear-gradient(0deg, transparent 0 39px, rgba(255,255,255,.03) 39px 40px),
    repeating-linear-gradient(90deg, transparent 0 39px, rgba(255,255,255,.03) 39px 40px);
}
.cta-banner h2 { color: #fff; font-size: clamp(36px, 4vw, 56px); margin-bottom: 12px; }
.cta-banner h2 em { font-style: italic; color: var(--red-300); font-weight: 500; }
.cta-banner p { color: rgba(255,255,255,.8); max-width: 560px; margin: 0 auto 36px; font-size: 17px; line-height: 1.7; }
.cta-banner .container { position: relative; z-index: 1; }
.cta-banner .btn { font-size: 15px; padding: 18px 40px; }

/* =========================================================
   BLOG STRIP
   ========================================================= */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.post-card { display: flex; flex-direction: column; cursor: pointer; }
.post-card .cover { aspect-ratio: 16/10; position: relative; overflow: hidden; border-radius: 4px; margin-bottom: 18px; }
.post-card .cover img { width: 100%; height: 100%; object-fit: cover; }
.post-card .cover .ph { position: absolute; inset: 0; }
.post-card .when { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.post-card h3 { font-size: 22px; margin-bottom: 8px; }
.post-card p  { color: var(--muted); font-size: 14px; }
.post-card .read { font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--red-700); margin-top: 6px; }

/* =========================================================
   NEWSLETTER (small strip)
   ========================================================= */
.news-strip {
  background: var(--paper-2); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule);
  padding: 36px 0;
}
.news-row { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: center; }
.news-row h3 { margin: 0; font-size: 24px; }
.news-row p { margin: 4px 0 0; color: var(--muted); font-size: 14px; }
.news-form { display: flex; gap: 8px; }
.news-form input {
  flex: 1; padding: 14px 18px; border: 1px solid var(--rule); border-radius: 4px;
  background: #fff; font-family: var(--sans); font-size: 14px;
}
.news-form input:focus { outline: none; border-color: var(--red-500); box-shadow: 0 0 0 3px var(--red-50); }

/* =========================================================
   NEWSLETTER SECTION (centered variant)
   ========================================================= */
.newsletter-section {
  position: relative; overflow: hidden;
}
.newsletter-section::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(800px 400px at 30% 100%, rgba(200,24,24,.06), transparent),
    radial-gradient(600px 300px at 70% 0%, rgba(200,24,24,.04), transparent);
}
.newsletter-section .eyebrow { justify-content: center; }
.newsletter-section h2 { margin-bottom: 10px; }
.newsletter-section p { color: var(--muted); font-size: 15px; margin-bottom: 28px; }
.newsletter-form { position: relative; }
.newsletter-row {
  display: flex; gap: 10px; max-width: 440px; margin: 0 auto;
}
.newsletter-row input {
  flex: 1; padding: 14px 18px; border: 1px solid var(--rule); border-radius: 4px;
  background: #fff; font-family: var(--sans); font-size: 14px;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.newsletter-row input:focus {
  outline: none; border-color: var(--red-500);
  box-shadow: 0 0 0 3px var(--red-50);
}
.newsletter-msg {
  font-size: 14px; text-align: center;
}
.newsletter-msg.success { color: #16a34a; }
.newsletter-msg.error { color: var(--red-600); }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: #14110f;
  color: rgba(255,255,255,.7);
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: ''; position: absolute; left: 0; right: 0; top: 0; height: 3px;
  background: var(--red-600);
}

.foot-top { border-bottom: 1px solid rgba(255,255,255,.08); }
.foot-cta-row {
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
  padding: 48px 0; flex-wrap: wrap;
}
.foot-cta-text h3 {
  font-family: var(--serif); font-size: 28px; color: #fff;
  font-weight: 500; margin: 0 0 6px;
}
.foot-cta-text p { font-size: 15px; color: rgba(255,255,255,.55); margin: 0; }

.foot-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr; gap: 48px;
  padding: 64px 0 0;
}
.foot-brand .logo { color: #fff; }
.foot-brand > p {
  font-size: 14px; line-height: 1.7; color: rgba(255,255,255,.55);
  margin: 20px 0 24px; max-width: 320px;
}
.foot-badges { display: flex; flex-wrap: wrap; gap: 8px; }
.foot-badge {
  display: inline-block; font-size: 11px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,.7); padding: 5px 12px; border-radius: 4px;
  border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.04);
}
.foot-col h4 {
  color: #fff; font-family: var(--sans); font-size: 12px;
  letter-spacing: 0.18em; text-transform: uppercase;
  margin-bottom: 20px; font-weight: 600;
  position: relative; padding-bottom: 12px;
}
.foot-col h4::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 24px; height: 2px;
  background: var(--red-600);
  border-radius: 1px;
}
.foot-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.foot-col li a,
.foot-col li span { font-size: 14px; color: rgba(255,255,255,.6); transition: color .25s, padding-left .25s; display: inline-block; }
.foot-col li a:hover { color: #fff; padding-left: 4px; }
.foot-contact li { display: flex; align-items: flex-start; gap: 10px; }
.foot-contact li svg { flex-shrink: 0; margin-top: 2px; color: rgba(255,255,255,.35); }
.foot-contact li a,
.foot-contact li span { font-size: 14px; color: rgba(255,255,255,.6); transition: color .25s; }
.foot-contact li a:hover { color: #fff; padding-left: 0; }
.foot-bottom {
  margin-top: 56px; padding: 28px 0; border-top: 1px solid rgba(255,255,255,.08);
  display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap;
  font-size: 13px; color: rgba(255,255,255,.4);
}
.foot-bottom p { margin: 0; }
.foot-bottom .socials { display: flex; gap: 8px; }
.foot-bottom .socials a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.06); display: grid; place-items: center;
  color: rgba(255,255,255,.6); transition: all .3s;
}
.foot-bottom .socials a:hover {
  background: var(--red-600);
  color: #fff;
}

/* =========================================================
   SUBHERO (detail pages)
   ========================================================= */
.subhero {
  position: relative;
  min-height: 540px;
  background: var(--ink);
  color: #fff;
  display: flex; align-items: end;
  padding: 160px 0 60px;
  overflow: hidden;
}
.subhero .bg { position: absolute; inset: 0; }
.subhero .bg img { width: 100%; height: 100%; object-fit: cover; }
.subhero .bg .ph { position: absolute; inset: 0; }
.subhero::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.35) 0%, rgba(0,0,0,0) 30%, rgba(0,0,0,.75) 100%);
  z-index: 1;
}
.subhero .container { position: relative; z-index: 2; }
.crumbs { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,.7); margin-bottom: 18px; }
.crumbs a { color: rgba(255,255,255,.85); }
.crumbs a:hover { color: #fff; }
.crumbs .sep { margin: 0 8px; opacity: .5; }
.subhero h1 { color: #fff; max-width: 880px; }
.subhero .meta-row {
  margin-top: 24px; display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
  color: rgba(255,255,255,.85);
}
.subhero .meta-row .item { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; }

/* =========================================================
   TOUR DETAIL
   ========================================================= */
.detail-layout { display: grid; grid-template-columns: 1fr 380px; gap: 60px; align-items: start; }
.detail-section { margin-bottom: 60px; }
.detail-section h2 { font-size: 32px; }
.detail-section .lead { margin-bottom: 24px; }

.dest-custom-safari {
  text-align: center; padding: 48px 32px; border: 2px dashed var(--rule);
  border-radius: 8px; background: var(--paper-2);
}
.dest-custom-safari .dcs-icon { margin-bottom: 16px; }
.dest-custom-safari h3 { font-size: 22px; margin: 0 0 10px; }
.dest-custom-safari p { color: var(--muted); max-width: 480px; margin: 0 auto 24px; line-height: 1.7; }

.detail-section .card-grid.two .tour-card { display: flex; flex-direction: column; }
.detail-section .card-grid.two .tour-card-img { aspect-ratio: 16 / 10; }
.detail-section .card-grid.two .tour-card-body { flex: 1; }

.tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.tag {
  font-size: 12px; padding: 6px 12px; border: 1px solid var(--rule);
  border-radius: 999px; color: var(--ink-2); background: #fff;
  display: inline-flex; align-items: center; gap: 6px;
}
.tag.red { color: var(--red-700); border-color: var(--red-100); background: var(--red-50); }

.fact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin: 24px 0 40px; }
.fact {
  border: 1px solid var(--rule); padding: 18px; border-radius: 4px; background: var(--paper-2);
}
.fact .l { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.fact .v { font-family: var(--serif); font-size: 22px; color: var(--ink); margin-top: 4px; font-weight: 600; }

/* Itinerary */
.itinerary { border-left: 2px solid var(--rule); padding-left: 32px; position: relative; }
.day { position: relative; margin-bottom: 36px; }
.day::before {
  content: ''; position: absolute; left: -41px; top: 4px;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--red-600);
  box-shadow: 0 0 0 4px #fff;
}
.day .day-tag {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--red-600); font-weight: 700;
  margin-bottom: 4px;
}
.day h3 { font-size: 22px; margin-bottom: 8px; }
.day p { color: var(--ink-2); font-size: 15px; }
.day .day-meta { display: flex; gap: 16px; margin-top: 10px; font-size: 12px; color: var(--muted); }
.day .day-meta span { display: inline-flex; align-items: center; gap: 6px; }

/* Includes / excludes */
.in-out { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.in-out h4 { font-family: var(--sans); font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; font-weight: 600; }
.in-out ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.in-out li { padding-left: 26px; position: relative; line-height: 1.5; }
.in-out .inc li::before {
  content: '\2713'; position: absolute; left: 0; top: 0;
  color: var(--red-600); font-weight: 700;
}
.in-out .exc li::before {
  content: '\00D7'; position: absolute; left: 0; top: -2px;
  color: var(--muted-2); font-weight: 700; font-size: 18px;
}

/* Booking sidebar */
.booking-card {
  position: sticky; top: 100px;
  background: #fff;
  border: 1px solid var(--rule);
  border-top: 4px solid var(--red-600);
  padding: 28px;
  border-radius: 0 0 4px 4px;
}
.booking-card .price-block { display: flex; align-items: baseline; gap: 8px; padding-bottom: 18px; border-bottom: 1px solid var(--rule); margin-bottom: 18px; }
.booking-card .price-block .from { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); }
.booking-card .price-block .amt { font-family: var(--serif); font-size: 36px; font-weight: 600; color: var(--ink); }
.booking-card .price-block .per { font-size: 13px; color: var(--muted); }
.booking-card .field { margin-bottom: 12px; }
.booking-card .totals { padding-top: 18px; margin-top: 18px; border-top: 1px solid var(--rule); }
.booking-card .totals .row { display: flex; justify-content: space-between; padding: 6px 0; font-size: 14px; color: var(--ink-2); }
.booking-card .totals .row.total { padding-top: 14px; border-top: 1px dashed var(--rule); font-family: var(--serif); font-size: 22px; color: var(--ink); font-weight: 600; margin-top: 6px; }

.trust-badges { display: flex; gap: 12px; margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--rule); align-items: center; font-size: 12px; color: var(--muted); }
.trust-badges .seal {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--paper-3), var(--paper-2));
  border: 1px solid var(--rule); display: grid; place-items: center;
  color: var(--red-700); font-family: var(--serif); font-weight: 600;
}

/* Gallery */
.gallery {
  display: grid; gap: 8px;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 200px 200px;
  height: 408px;
}
.gallery .g {
  position: relative; overflow: hidden; border-radius: 2px; cursor: pointer;
}
.gallery .g img { width: 100%; height: 100%; object-fit: cover; }
.gallery .g .ph { position: absolute; inset: 0; }
.gallery .g.lead { grid-row: 1 / span 2; }
.gallery .g.more {
  display: grid; place-items: center;
  background: rgba(0,0,0,.7); color: #fff;
  font-family: var(--serif); font-size: 18px;
  position: relative;
}
.gallery .g.more::after {
  content: ''; position: absolute; inset: 0; background: rgba(0,0,0,.55); z-index: 1;
}
.gallery .g.more span { position: relative; z-index: 2; }

/* =========================================================
   PLAN-YOUR-SAFARI multi-step modal
   ========================================================= */
.plan-modal {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(20, 17, 15, .55);
  backdrop-filter: blur(8px);
  display: none; align-items: center; justify-content: center;
  padding: 40px 20px;
}
.plan-modal.open { display: flex; animation: fadeIn .25s ease; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.plan-modal .panel {
  width: 100%; max-width: 720px; max-height: 90vh; overflow: auto;
  background: #fff; border-radius: 4px;
  border: 1px solid var(--rule);
  border-top: 4px solid var(--red-600);
  position: relative;
}
.plan-modal .head {
  padding: 32px 40px 0;
}
.plan-modal .close {
  position: absolute; top: 18px; right: 18px;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--paper-2); border: 1px solid var(--rule);
  display: grid; place-items: center; cursor: pointer; color: var(--ink);
}
.plan-modal h2 { margin-bottom: 6px; font-size: 30px; }
.plan-modal .sub { color: var(--muted); margin-bottom: 24px; }
.plan-modal .body { padding: 0 40px 32px; }
.plan-modal .actions { display: flex; justify-content: space-between; align-items: center; padding: 24px 40px; border-top: 1px solid var(--rule); background: var(--paper-2); }

.steps {
  display: flex; gap: 6px; margin-bottom: 28px;
}
.steps .s {
  flex: 1; height: 4px; background: var(--rule); border-radius: 2px; position: relative;
  transition: background .3s;
}
.steps .s.done { background: var(--red-500); }
.steps .s.active { background: var(--red-500); }

.step-label { font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--red-600); font-weight: 700; margin-bottom: 8px; }

/* Choice tiles */
.choices { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.choices.two { grid-template-columns: repeat(2, 1fr); }
.choice {
  background: #fff; border: 1px solid var(--rule); border-radius: 4px;
  padding: 18px; cursor: pointer; text-align: left;
  display: flex; flex-direction: column; gap: 6px;
  transition: border-color .2s, background .2s, transform .15s;
}
.choice:hover { border-color: var(--red-300); }
.choice.selected {
  border-color: var(--red-600);
  background: var(--red-50);
  box-shadow: inset 0 0 0 1px var(--red-600);
}
.choice .ico { font-size: 24px; }
.choice .name { font-family: var(--serif); font-size: 18px; color: var(--ink); }
.choice .meta { font-size: 12px; color: var(--muted); }

/* =========================================================
   SUBHERO — small variant (listing pages)
   ========================================================= */
.subhero-sm {
  min-height: 340px;
  background: linear-gradient(135deg, #1a0606 0%, #3d1a1a 50%, #1a0606 100%);
  padding: 160px 0 56px;
}
.subhero-sm .lead { color: rgba(255,255,255,.8); max-width: 680px; }
.subhero-bg {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0;
}
.subhero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(0,0,0,.4) 0%, rgba(0,0,0,.1) 30%, rgba(0,0,0,.7) 100%);
}
.subhero-content { position: relative; z-index: 2; }
.subhero-meta {
  margin-top: 16px; display: flex; gap: 20px; flex-wrap: wrap;
  font-size: 14px; color: rgba(255,255,255,.8);
}
.subhero-meta span { display: inline-flex; align-items: center; gap: 6px; }

/* =========================================================
   TOUR CARDS — partial class names
   ========================================================= */
.tour-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.tour-grid.compact { grid-template-columns: repeat(2, 1fr); gap: 20px; }

.tour-card-img {
  position: relative; aspect-ratio: 4 / 3; overflow: hidden;
  background: var(--paper-2);
}
.tour-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.tour-card:hover .tour-card-img img { transform: scale(1.04); }
.tour-card-img .ph { position: absolute; inset: 0; }

.price-badge {
  position: absolute; bottom: 12px; left: 12px; z-index: 2;
  font-family: var(--sans); font-size: 12px; font-weight: 700;
  letter-spacing: 0.06em;
  color: #fff; padding: 6px 14px; border-radius: 999px;
  background: var(--red-600);
}
.duration-badge {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  font-family: var(--sans); font-size: 11px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink); padding: 5px 12px; border-radius: 999px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(0,0,0,.06);
}

.tour-card-body {
  padding: 22px; display: flex; flex-direction: column; flex: 1; gap: 6px;
  border-bottom: 3px solid transparent;
  transition: border-color .3s ease;
}
.tour-card:hover .tour-card-body { border-color: var(--red-500); }
.tour-card-body h3 { font-size: 20px; margin: 0 0 4px; transition: color .2s ease; }
.tour-card:hover .tour-card-body h3 { color: var(--red-800); }
.tour-card-body p { font-size: 14px; color: var(--muted); margin: 0; flex: 1; line-height: 1.65; }

.tour-card-meta {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  padding-top: 12px; margin-top: 8px;
  border-top: 1px solid var(--rule);
}
.meta-item {
  font-size: 12px; color: var(--muted); letter-spacing: 0.04em;
  display: inline-flex; align-items: center; gap: 4px;
}

.card-cta {
  font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--red-700); margin-top: 12px;
  display: inline-flex; align-items: center; gap: 6px;
  transition: color .2s ease;
}
.tour-card:hover .card-cta,
.exp-card:hover .card-cta { color: var(--red-900); }
.card-cta .arrow { display: inline-block; transition: transform .25s ease; }
.tour-card:hover .card-cta .arrow,
.exp-card:hover .card-cta .arrow { transform: translateX(4px); }

/* =========================================================
   EXPERIENCE CARDS — partial class names
   ========================================================= */
.exp-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px;
}

.exp-card-img {
  position: relative; overflow: hidden;
  background: var(--paper-2); min-height: 240px;
}
.exp-card-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.exp-card:hover .exp-card-img img { transform: scale(1.04); }
.exp-card-img .ph { position: absolute; inset: 0; }

.exp-card-body {
  padding: 28px 32px; display: flex; flex-direction: column; gap: 8px; justify-content: center;
}
.exp-card-body h3 { font-size: 22px; margin: 4px 0; transition: color .2s ease; }
.exp-card:hover .exp-card-body h3 { color: var(--red-800); }
.exp-card-body p { color: var(--muted); font-size: 14px; margin: 0; line-height: 1.65; }

.exp-icon {
  font-size: 28px; line-height: 1; color: var(--red-600); opacity: .7;
}

/* =========================================================
   BLOG CARDS — partial class names
   ========================================================= */
.blog-card {
  display: flex; flex-direction: column; cursor: pointer;
  transition: transform .3s ease;
  border-radius: 4px; overflow: hidden;
  background: #fff; border: 1px solid var(--rule);
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px -16px rgba(0,0,0,.12);
  border-color: var(--rule-2);
}

.blog-card-img {
  position: relative; aspect-ratio: 16 / 10; overflow: hidden;
  background: var(--paper-2);
}
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.blog-card:hover .blog-card-img img { transform: scale(1.04); }
.blog-card-img .ph { position: absolute; inset: 0; }

.blog-category {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  font-family: var(--sans); font-size: 11px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: #fff; padding: 5px 12px; border-radius: 999px;
  background: rgba(200, 24, 24, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.15);
}

.blog-card-body { padding: 20px 22px; }
.blog-card-body h3 { font-size: 20px; margin: 0 0 6px; transition: color .2s ease; }
.blog-card:hover .blog-card-body h3 { color: var(--red-800); }
.blog-card-body p { font-size: 14px; color: var(--muted); margin: 0; line-height: 1.65; }

.blog-card-meta {
  display: flex; gap: 14px; margin-top: 12px; padding-top: 12px;
  border-top: 1px solid var(--rule);
  font-size: 12px; color: var(--muted); letter-spacing: 0.04em;
}
.blog-card-meta span { display: inline-flex; align-items: center; gap: 4px; }

/* =========================================================
   BLOG LAYOUT — sidebar
   ========================================================= */
.blog-layout {
  display: grid; grid-template-columns: 1fr 320px; gap: 48px; align-items: start;
}
.blog-main { min-width: 0; }
.blog-sidebar {
  display: flex; flex-direction: column; gap: 24px;
  position: sticky; top: 100px;
}

.sidebar-card {
  background: #fff; border: 1px solid var(--rule); border-radius: 4px;
  padding: 24px;
}
.sidebar-card h3 { font-size: 18px; margin-bottom: 16px; }
.sidebar-card p { font-size: 14px; color: var(--muted); margin: 0 0 16px; }

.sidebar-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 0;
}
.sidebar-list li a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 0; font-size: 14px; color: var(--ink-2);
  border-bottom: 1px solid var(--rule);
  transition: color .15s ease;
}
.sidebar-list li:last-child a { border-bottom: none; }
.sidebar-list li a:hover { color: var(--red-600); }
.sidebar-list li a.active { color: var(--red-600); font-weight: 600; }
.sidebar-list li a .count,
.sidebar-list li a .meta {
  font-size: 12px; color: var(--muted-2); font-weight: 400;
}

.tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.tag-link {
  font-size: 12px; padding: 5px 12px;
  border: 1px solid var(--rule); border-radius: 999px;
  color: var(--ink-2); background: #fff;
  transition: border-color .15s, color .15s, background .15s;
}
.tag-link:hover {
  border-color: var(--red-300); color: var(--red-700); background: var(--red-50);
}

/* =========================================================
   CONTACT PAGE LAYOUT
   ========================================================= */
.contact-layout {
  display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 60px; align-items: start;
}

.contact-form-wrap h2 { font-size: 28px; margin-bottom: 24px; }

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

.contact-info {
  display: flex; flex-direction: column; gap: 20px;
}
.contact-card {
  background: var(--paper-2); border: 1px solid var(--rule);
  border-radius: 4px; padding: 24px;
}
.contact-card h3 { font-size: 16px; margin-bottom: 8px; }
.contact-card p { font-size: 14px; color: var(--ink-2); margin: 0; }
.contact-card a { color: var(--red-700); border-bottom: 1px solid var(--red-100); transition: border-color .15s; }
.contact-card a:hover { border-color: var(--red-600); }

/* =========================================================
   RICH CONTENT (user HTML from admin)
   ========================================================= */
.rich-content h2 { font-size: 28px; margin: 40px 0 16px; }
.rich-content h2:first-child { margin-top: 0; }
.rich-content h3 { font-size: 22px; margin: 32px 0 12px; }
.rich-content p { font-size: 16px; line-height: 1.7; color: var(--ink-2); margin: 0 0 1.2em; }
.rich-content ul, .rich-content ol { padding-left: 24px; margin: 0 0 1.2em; color: var(--ink-2); }
.rich-content li { margin-bottom: 8px; font-size: 15px; line-height: 1.6; }
.rich-content strong { color: var(--ink); }
.rich-content a { color: var(--red-700); border-bottom: 1px solid var(--red-100); transition: border-color .15s; }
.rich-content a:hover { border-color: var(--red-600); }
.rich-content img { border-radius: 4px; margin: 24px 0; }
.rich-content blockquote {
  margin: 24px 0; padding: 20px 24px; border-left: 3px solid var(--red-600);
  background: var(--paper-2); font-style: italic; color: var(--ink-2);
}

/* =========================================================
   EMPTY STATE
   ========================================================= */
.empty-state {
  text-align: center; padding: 80px 24px;
  font-size: 16px; color: var(--muted);
  background: var(--paper-2); border: 1px dashed var(--rule);
  border-radius: 4px;
}

/* =========================================================
   PAGINATION
   ========================================================= */
.pagination {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--rule);
}
.page-numbers { display: flex; align-items: center; gap: 4px; }
.page-link {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 40px; height: 40px; padding: 0 12px;
  font-size: 14px; font-weight: 500; color: var(--ink-2);
  border: 1px solid var(--rule); border-radius: 4px;
  background: #fff; transition: border-color .15s, color .15s, background .15s;
}
.page-link:hover { border-color: var(--red-300); color: var(--red-700); }
.page-link.active {
  background: var(--red-600); color: #fff; border-color: transparent;
}
.page-dots { padding: 0 6px; color: var(--muted-2); }

/* =========================================================
   FAQ ACCORDION
   ========================================================= */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border: 1px solid var(--rule); border-radius: 4px;
  background: #fff; overflow: hidden;
}
.faq-item summary {
  padding: 18px 24px; font-family: var(--serif); font-size: 17px;
  font-weight: 600; color: var(--ink); cursor: pointer;
  list-style: none; display: flex; align-items: center; justify-content: space-between;
  transition: background .15s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; font-family: var(--sans); font-size: 20px; font-weight: 300;
  color: var(--muted); transition: transform .2s;
}
.faq-item[open] summary::after { content: '\2212'; }
.faq-item[open] summary { background: var(--paper-2); }
.faq-answer { padding: 0 24px 20px; font-size: 15px; line-height: 1.65; color: var(--ink-2); }

/* =========================================================
   ARTICLE PAGE (blog/show)
   ========================================================= */
.article-page { padding-top: 180px; }
.article-category {
  display: inline-block; font-size: 11px; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--red-600); margin-bottom: 12px;
}
.article-meta {
  display: flex; gap: 18px; flex-wrap: wrap;
  font-size: 13px; color: var(--muted); margin-bottom: 28px;
}
.article-hero {
  margin: 32px 0; border-radius: 4px; overflow: hidden;
}
.article-hero img { width: 100%; height: auto; display: block; }
.article-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--rule); }
.article-cta {
  margin: 48px 0; padding: 40px; text-align: center;
  background: var(--paper-2); border: 1px solid var(--rule); border-radius: 4px;
}
.article-cta h3 { margin-bottom: 8px; }
.article-cta p { color: var(--muted); margin-bottom: 20px; }

/* =========================================================
   TOUR DETAIL — itinerary timeline, pricing, includes
   ========================================================= */
.itinerary-timeline {
  position: relative; padding-left: 36px;
  border-left: 2px solid var(--rule);
}
.itin-day { position: relative; margin-bottom: 32px; }
.itin-day:last-child { margin-bottom: 0; }
.itin-marker {
  display: flex; align-items: center; gap: 12px; margin-bottom: 8px;
}
.itin-dot {
  position: absolute; left: -45px; top: 2px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--red-600);
  box-shadow: 0 0 0 4px #fff;
}
.itin-num {
  font-size: 11px; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--red-600);
}
.itin-content h3 { font-size: 20px; margin: 0 0 6px; }
.itin-content p { font-size: 15px; color: var(--ink-2); margin: 0 0 8px; }
.itin-meta {
  display: flex; gap: 16px; font-size: 12px; color: var(--muted);
}
.itin-meta span { display: inline-flex; align-items: center; gap: 4px; }

.inc-exc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.inc-list, .exc-list {
  list-style: none; padding: 0; margin: 12px 0 0;
  display: flex; flex-direction: column; gap: 10px; font-size: 14px;
}
.inc-list li, .exc-list li { padding-left: 26px; position: relative; line-height: 1.5; }
.inc-list li::before {
  content: '\2713'; position: absolute; left: 0; top: 0;
  color: var(--red-600); font-weight: 700;
}
.exc-list li::before {
  content: '\00D7'; position: absolute; left: 0; top: -2px;
  color: var(--muted-2); font-weight: 700; font-size: 18px;
}

.highlight-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.highlight-list li {
  padding-left: 26px; position: relative; font-size: 15px; line-height: 1.6; color: var(--ink-2);
}
.highlight-list li::before {
  content: '\2022'; position: absolute; left: 0; top: 0;
  color: var(--red-600); font-weight: 700; font-size: 18px;
}

.pricing-table {
  width: 100%; border-collapse: collapse; font-size: 14px;
}
.pricing-table th {
  text-align: left; padding: 12px 16px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted); background: var(--paper-2);
  border-bottom: 1px solid var(--rule);
}
.pricing-table td {
  padding: 14px 16px; border-bottom: 1px solid var(--rule); color: var(--ink-2);
}
.pricing-table tbody tr:hover { background: var(--paper-2); }

/* =========================================================
   DETAIL SIDEBAR
   ========================================================= */
.detail-sidebar {
  display: flex; flex-direction: column; gap: 24px;
}
.sticky-sidebar { position: sticky; top: 100px; }
.detail-sidebar .sidebar-card { background: #fff; border: 1px solid var(--rule); border-radius: 4px; padding: 24px; }
.detail-sidebar .sidebar-card h3 { font-size: 18px; margin-bottom: 12px; }
.detail-sidebar .sidebar-card p { font-size: 14px; color: var(--muted); margin: 0 0 16px; }

.booking-price {
  display: flex; align-items: baseline; gap: 6px; flex-wrap: wrap;
  padding-bottom: 16px; margin-bottom: 16px; border-bottom: 1px solid var(--rule);
}
.booking-price .from { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.booking-price .amount { font-family: var(--serif); font-size: 32px; font-weight: 600; color: var(--ink); }
.booking-price .per { font-size: 13px; color: var(--muted); }

.booking-meta { display: flex; flex-direction: column; gap: 0; }
.bm-row {
  display: flex; justify-content: space-between; padding: 10px 0;
  font-size: 14px; color: var(--ink-2);
  border-bottom: 1px solid var(--rule);
}
.bm-row:last-child { border-bottom: none; }
.bm-row strong { color: var(--ink); }

/* Related links (destination pills on tour page) */
.related-cards { display: flex; flex-wrap: wrap; gap: 10px; }
.related-link {
  display: inline-flex; align-items: center; padding: 8px 18px;
  font-size: 14px; font-weight: 500; color: var(--ink-2);
  border: 1px solid var(--rule); border-radius: 999px;
  background: #fff; transition: border-color .15s, color .15s, background .15s;
}
.related-link:hover { border-color: var(--red-300); color: var(--red-700); background: var(--red-50); }

/* Gallery grid (detail pages) */
.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
}
.gallery-item { border-radius: 4px; overflow: hidden; aspect-ratio: 3/2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }

/* =========================================================
   TOUR DETAIL — itinerary accordion redesign
   ========================================================= */
.itin-accordion { display: flex; flex-direction: column; gap: 12px; }

.itin-card {
  border: 1px solid var(--rule); border-radius: 4px;
  background: #fff; overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.itin-card[open] {
  border-color: var(--red-100);
  box-shadow: 0 8px 24px -8px rgba(200,24,24,.08);
}

.itin-card-head {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 22px; cursor: pointer;
  list-style: none;
  transition: background .15s ease;
}
.itin-card-head::-webkit-details-marker { display: none; }
.itin-card-head:hover { background: var(--paper-2); }

.itin-day-badge {
  flex-shrink: 0;
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, var(--paper-3), var(--paper-2));
  border: 1px solid var(--rule);
  display: grid; place-items: center;
  font-family: var(--sans); font-size: 11px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--red-700);
  transition: background .2s, border-color .2s, color .2s;
}
.itin-card[open] .itin-day-badge {
  background: var(--red-600);
  border-color: transparent;
  color: #fff;
}

.itin-card-title { flex: 1; min-width: 0; }
.itin-card-title h3 { font-size: 18px; margin: 0 0 4px; }

.itin-card-tags { display: flex; gap: 12px; flex-wrap: wrap; }
.itin-tag {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 12px; color: var(--muted); letter-spacing: 0.02em;
}
.itin-tag svg { color: var(--muted-2); }

.itin-toggle {
  flex-shrink: 0; color: var(--muted-2);
  transition: transform .25s ease;
}
.itin-card[open] .itin-toggle { transform: rotate(180deg); }

.itin-card-body {
  padding: 0 22px 24px 90px;
}

/* =========================================================
   TOUR DETAIL — highlights grid
   ========================================================= */
.highlights-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px;
}
.highlight-item {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 15px; line-height: 1.5; color: var(--ink-2);
  padding: 8px 0;
}
.highlight-check {
  flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%;
  background: var(--red-50); color: var(--red-600);
  display: grid; place-items: center;
  margin-top: 1px;
}

/* =========================================================
   TOUR DETAIL — includes/excludes columns
   ========================================================= */
.inc-exc-col h2 { font-size: 24px; }
.inc-col { background: var(--paper-2); padding: 28px; border-radius: 4px; border: 1px solid var(--rule); }
.exc-col { padding: 28px; border-radius: 4px; border: 1px dashed var(--rule); }

/* =========================================================
   TOUR DETAIL — pricing cards
   ========================================================= */
.pricing-cards {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px;
}
.pricing-card-item {
  background: #fff; border: 1px solid var(--rule); border-radius: 4px;
  padding: 24px; text-align: center;
  transition: border-color .2s, transform .2s;
}
.pricing-card-item:hover {
  border-color: var(--red-200, var(--red-100)); transform: translateY(-2px);
}
.pricing-season {
  display: block; font-size: 11px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--red-600); margin-bottom: 8px;
}
.pricing-amount {
  display: block; font-family: var(--serif); font-size: 32px;
  font-weight: 600; color: var(--ink); line-height: 1.1;
}
.pricing-per {
  display: block; font-size: 12px; color: var(--muted); margin-top: 4px;
}
.pricing-detail {
  margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--rule);
  font-size: 13px; color: var(--muted);
}

/* =========================================================
   TOUR DETAIL — destination pills
   ========================================================= */
.dest-pills { display: flex; flex-wrap: wrap; gap: 10px; }
.dest-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px; font-size: 14px; font-weight: 500;
  color: var(--ink-2); background: #fff;
  border: 1px solid var(--rule); border-radius: 999px;
  transition: border-color .15s, color .15s, background .15s, transform .15s;
}
.dest-pill:hover {
  border-color: var(--red-300); color: var(--red-700);
  background: var(--red-50); transform: translateY(-1px);
}
.dest-pill svg { transition: transform .2s; }
.dest-pill:hover svg { transform: translateX(2px); }

/* =========================================================
   TOUR DETAIL — Quick Facts table
   ========================================================= */
.facts-table {
  width: 100%; border-collapse: collapse; font-size: 15px;
}
.facts-table th {
  text-align: left; padding: 12px 16px; width: 160px;
  font-family: var(--sans); font-size: 13px; font-weight: 600;
  color: var(--muted); background: var(--paper-2);
  border-bottom: 1px solid var(--rule);
  letter-spacing: 0.02em;
}
.facts-table td {
  padding: 12px 16px; color: var(--ink-2);
  border-bottom: 1px solid var(--rule);
}
.facts-table tr:last-child th,
.facts-table tr:last-child td { border-bottom: none; }
.quick-facts { border: 1px solid var(--rule); border-radius: 4px; padding: 0; overflow: hidden; }
.quick-facts h2 {
  font-size: 20px; margin: 0; padding: 20px 24px;
  border-bottom: 1px solid var(--rule);
}
.quick-facts .facts-table { margin: 0; }

/* =========================================================
   TOUR DETAIL — traveller reviews
   ========================================================= */
.tour-reviews { display: flex; flex-direction: column; gap: 20px; }
.tour-review {
  margin: 0; padding: 24px 28px; background: var(--paper-2);
  border: 1px solid var(--rule); border-radius: 4px;
  font-size: 15px; line-height: 1.65; color: var(--ink-2);
}
.tour-review p { margin: 0 0 16px; font-style: italic; }
.tour-review footer { display: flex; align-items: center; gap: 8px; font-size: 14px; }
.tour-review footer strong { color: var(--ink); font-style: normal; }
.review-stars { color: #f59e0b; font-size: 16px; letter-spacing: 2px; margin-bottom: 10px; }
.review-country { color: var(--muted); font-size: 13px; }
.review-country::before { content: '\2022'; margin-right: 8px; }

/* =========================================================
   ARTICLE PAGE — author bio
   ========================================================= */
.author-bio {
  display: flex; align-items: flex-start; gap: 18px;
  margin-top: 40px; padding: 28px;
  background: var(--paper-2); border: 1px solid var(--rule); border-radius: 4px;
}
.author-avatar {
  flex-shrink: 0; width: 52px; height: 52px; border-radius: 50%;
  background: var(--red-600); color: #fff;
  display: grid; place-items: center;
  font-family: var(--serif); font-size: 22px; font-weight: 600;
}
.author-info strong { display: block; font-size: 16px; margin-bottom: 4px; }
.author-info p { font-size: 14px; color: var(--muted); margin: 0; line-height: 1.55; }

/* =========================================================
   SIDEBAR BOOKING — full booking form
   ========================================================= */
.sidebar-booking {
  position: sticky; top: 90px;
  background: #fff; border: 1px solid var(--rule);
  border-radius: 4px; overflow: hidden;
  box-shadow: 0 20px 50px -20px rgba(0,0,0,.12);
}

.sb-price-row {
  padding: 24px 24px 0;
  border-bottom: none;
}
.sb-price { display: flex; align-items: baseline; gap: 6px; flex-wrap: wrap; }
.sb-from { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.sb-amount { font-family: var(--serif); font-size: 36px; font-weight: 600; color: var(--ink); line-height: 1; }
.sb-per { font-size: 13px; color: var(--muted); }

.sb-facts { padding: 16px 24px 0; display: flex; flex-direction: column; gap: 0; }
.sb-fact {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 0; font-size: 13px; color: var(--ink-2);
  border-bottom: 1px solid var(--rule);
}
.sb-fact:last-child { border-bottom: none; }
.sb-fact svg { flex-shrink: 0; color: var(--red-600); }
.sb-fact span { flex: 1; color: var(--muted); }
.sb-fact strong { color: var(--ink); font-weight: 600; }

.sb-divider {
  height: 1px; margin: 0; background: var(--rule);
}

.sb-form { padding: 24px; }
.sb-form-title {
  font-family: var(--serif); font-size: 18px; font-weight: 600;
  margin: 0 0 16px; color: var(--ink);
}
.sb-form .field { margin-bottom: 12px; }
.sb-form .field-row { margin-bottom: 12px; }

.sb-submit { width: 100%; justify-content: center; margin-top: 4px; }

.sb-trust {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  font-size: 12px; color: var(--muted); margin-top: 12px; text-align: center;
}
.sb-trust svg { color: var(--red-600); flex-shrink: 0; }

.sb-form-msg {
  display: flex; align-items: center; gap: 8px;
  margin-top: 12px; padding: 12px 14px; border-radius: 4px;
  font-size: 13px; line-height: 1.4;
}
.sb-msg-ok {
  background: #ecfdf5; border: 1px solid #a7f3d0; color: #065f46;
}
.sb-msg-err {
  background: #fef2f2; border: 1px solid #fecaca; color: #dc2626;
}

.sb-itinerary-summary { padding: 24px; }
.sb-itinerary-summary h4 {
  font-family: var(--serif); font-size: 16px; font-weight: 600;
  margin: 0 0 14px; color: var(--ink);
}

.sb-itin-list { display: flex; flex-direction: column; gap: 0; }
.sb-itin-row {
  display: flex; align-items: center; gap: 12px;
  padding: 8px 0; font-size: 13px;
  border-bottom: 1px solid var(--rule);
}
.sb-itin-row:last-child { border-bottom: none; }
.sb-itin-day {
  flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%;
  background: var(--paper-3); display: grid; place-items: center;
  font-size: 10px; font-weight: 700; letter-spacing: 0.06em;
  color: var(--red-700);
}
.sb-itin-title {
  flex: 1; min-width: 0; color: var(--ink-2);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

/* =========================================================
   SIDEBAR — sections & tour list (destination/experience)
   ========================================================= */
.sb-section { padding: 24px; }
.sb-section-title {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--serif); font-size: 16px; font-weight: 600;
  color: var(--ink); margin: 0 0 14px;
}
.sb-section-title svg { color: var(--red-600); flex-shrink: 0; }

.sb-tour-list { display: flex; flex-direction: column; gap: 0; }
.sb-tour-item {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 12px 0; border-bottom: 1px solid var(--rule);
  transition: color .15s;
}
.sb-tour-item:last-child { border-bottom: none; }
.sb-tour-item:hover { color: var(--red-600); }
.sb-tour-item svg { flex-shrink: 0; color: var(--muted-2); transition: transform .2s, color .2s; }
.sb-tour-item:hover svg { transform: translateX(2px); color: var(--red-600); }

.sb-tour-info { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.sb-tour-name {
  font-size: 14px; font-weight: 500; color: var(--ink);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.sb-tour-item:hover .sb-tour-name { color: var(--red-600); }
.sb-tour-meta { font-size: 12px; color: var(--muted); }

/* =========================================================
   WHY US GRID (homepage)
   ========================================================= */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 8px;
  counter-reset: why;
}
.why-card {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 4px;
  padding: 36px 28px 32px;
  text-align: center;
  position: relative;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.why-card::before {
  counter-increment: why;
  content: '0' counter(why);
  position: absolute; top: 16px; right: 20px;
  font-family: var(--serif); font-style: italic; font-size: 13px;
  color: var(--muted-2);
}
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -16px rgba(0,0,0,.12);
  border-color: var(--red-200);
}
.why-card h3 {
  font-family: var(--serif);
  font-size: 20px;
  margin: 0 0 10px;
  color: var(--ink);
}
.why-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
  margin: 0;
}
.why-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--red-600);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

/* =========================================================
   BLOG GRID COMPACT (related articles)
   ========================================================= */
.blog-grid.compact {
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.blog-grid.compact .blog-card-img { height: 160px; }
.blog-grid.compact .blog-card-body { padding: 16px; }
.blog-grid.compact .blog-card-body h3 { font-size: 15px; }

/* =========================================================
   FOCUS-VISIBLE (accessibility)
   ========================================================= */
:focus-visible {
  outline: 2px solid var(--red-500);
  outline-offset: 2px;
}
.btn:focus-visible { outline: 2px solid var(--red-500); outline-offset: 2px; }
a:focus-visible { outline: 2px solid var(--red-500); outline-offset: 2px; border-radius: 2px; }

/* =========================================================
   PARALLAX DIVIDER
   ========================================================= */
.parallax-divider {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(20, 17, 15, .35) 0%, rgba(20, 17, 15, .6) 100%),
    linear-gradient(135deg, #2a1f1a 0%, #3d2a18 40%, #5a3f2a 100%);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 80px 0;
}
.parallax-divider .parallax-overlay {
  position: relative;
}
.parallax-content {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.parallax-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--red-300);
  margin-bottom: 20px;
}
.parallax-eyebrow::before,
.parallax-eyebrow::after {
  content: ''; width: 24px; height: 1px;
  background: rgba(255,255,255,.25);
}
.parallax-heading {
  font-family: var(--serif);
  font-size: clamp(26px, 3.2vw, 40px);
  line-height: 1.2;
  font-weight: 600;
  color: #fff;
  margin: 0 0 14px;
  letter-spacing: -0.01em;
}
.parallax-heading em {
  font-style: italic;
  color: var(--red-300);
  font-weight: 500;
}
.parallax-sub {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255,255,255,.7);
  margin: 0 0 36px;
}
.parallax-stats {
  display: inline-flex;
  align-items: center;
  gap: 32px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 999px;
  padding: 18px 40px;
}
.p-stat {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
}
.p-stat-n {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.p-stat-l {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}
.p-stat-sep {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,.15);
}

/* Fallback for mobile (background-attachment: fixed not supported on mobile) */
@supports (-webkit-overflow-scrolling: touch) {
  .parallax-divider {
    background-attachment: scroll;
  }
}

/* =========================================================
   DESTINATION CAROUSEL — single-row horizontal scroll
   ========================================================= */
.dest-carousel-wrap {
  position: relative;
}
.dest-carousel {
  overflow: hidden;
}
.dest-carousel-track {
  display: flex;
  gap: 20px;
  transition: transform .45s cubic-bezier(.4, 0, .2, 1);
  will-change: transform;
}
.dest-carousel-track .dest-card {
  flex: 0 0 calc(25% - 15px);
  aspect-ratio: 3 / 4;
}
.dest-carousel-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}
.carousel-btn {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid var(--rule);
  background: var(--paper);
  color: var(--ink);
  font-size: 22px;
  display: grid; place-items: center;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.carousel-btn:hover {
  background: var(--red-600);
  border-color: var(--red-600);
  color: #fff;
  transform: scale(1.05);
}
.carousel-btn:disabled {
  opacity: .3;
  cursor: default;
  transform: none;
}
.carousel-btn:disabled:hover {
  background: var(--paper);
  border-color: var(--rule);
  color: var(--ink);
}
/* Remove the tall variant — all cards are uniform */
.dest-card.tall { aspect-ratio: 3 / 4; }

/* =========================================================
   MINI CTA (between destinations and tours)
   ========================================================= */
.mini-cta {
  background: var(--paper);
  padding: 48px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.mini-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.mini-cta-text h3 {
  font-size: clamp(22px, 2.4vw, 28px);
  margin: 0 0 6px;
}
.mini-cta-text p {
  font-size: 16px;
  color: var(--muted);
  margin: 0;
  max-width: 480px;
}

/* =========================================================
   TOURS SECTION — Featured Layout
   ========================================================= */
.tours-section {
  background: var(--paper);
  position: relative;
}
.tours-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 360px;
  background: linear-gradient(180deg, var(--paper-2) 0%, var(--paper) 100%);
  pointer-events: none;
}
.tours-section > .container {
  position: relative; z-index: 1;
}

.tour-grid.featured-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.tour-grid.featured-layout .tour-grid-item {
  display: flex;
}
.tour-grid.featured-layout .tour-grid-item .tour-card {
  width: 100%; display: flex; flex-direction: column;
}
/* Featured first card spans 2 columns at desktop */
.tour-grid.featured-layout .tour-grid-item.featured {
  grid-column: span 2;
  grid-row: span 1;
}
.tour-grid.featured-layout .tour-grid-item.featured .tour-card {
  flex-direction: row;
}
.tour-grid.featured-layout .tour-grid-item.featured .tour-card-img {
  width: 55%;
  aspect-ratio: auto;
  min-height: 100%;
}
.tour-grid.featured-layout .tour-grid-item.featured .tour-card-body {
  width: 45%;
  padding: 32px 28px;
  justify-content: center;
}
.tour-grid.featured-layout .tour-grid-item.featured .tour-card-body h3 {
  font-size: 24px;
}

/* =========================================================
   CTA BANNER — Parallax Enhancement
   ========================================================= */
.cta-banner.parallax-cta {
  background:
    linear-gradient(135deg, rgba(26, 6, 6, .88) 0%, rgba(90, 6, 6, .85) 50%, rgba(26, 6, 6, .9) 100%);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 120px 0;
}
.cta-actions {
  display: flex; flex-direction: column; align-items: center; gap: 16px;
}
.cta-subtext {
  font-size: 13px;
  color: rgba(255,255,255,.55);
  letter-spacing: 0.04em;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .dest-carousel-track .dest-card { flex: 0 0 calc(33.333% - 14px); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .why .features { grid-template-columns: repeat(2, 1fr); }
  .hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .intro { grid-template-columns: 1fr; gap: 32px; }
  .t-grid, .testimonial-block { grid-template-columns: 1fr; }
  .detail-layout { grid-template-columns: 1fr; }
  .booking-card { position: static; }
  .news-row { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .foot-brand { grid-column: 1 / -1; }
  .foot-cta-text h3 { font-size: 24px; }
  .top-bar { display: none; }
  .site-header { top: 0; padding: 12px 0; }
  .site-header.solid { padding: 10px 0; }
  .nav-main { display: none; }
  .nav-cta { display: none; }
  .nav-actions { margin-left: auto; }
  .hamburger { display: flex; }
  .gallery { grid-template-columns: 1fr 1fr; grid-template-rows: 160px 160px 160px; height: auto; }
  .gallery .g.lead { grid-column: 1 / span 2; grid-row: 1; }
  .fact-grid { grid-template-columns: repeat(2, 1fr); }
  .in-out { grid-template-columns: 1fr; }
  .exp-card { grid-template-columns: 1fr; }
  .tour-grid { grid-template-columns: repeat(2, 1fr); }
  .tour-grid.featured-layout { grid-template-columns: repeat(2, 1fr); }
  .tour-grid.featured-layout .tour-grid-item.featured { grid-column: span 2; }
  .tour-grid.featured-layout .tour-grid-item.featured .tour-card { flex-direction: row; }
  .tour-grid.featured-layout .tour-grid-item.featured .tour-card-img { width: 50%; }
  .tour-grid.featured-layout .tour-grid-item.featured .tour-card-body { width: 50%; }
  .parallax-divider { padding: 64px 0; }
  .mini-cta-inner { flex-direction: column; text-align: center; align-items: center; }
  .mini-cta-text p { max-width: none; }
  .blog-layout { grid-template-columns: 1fr; }
  .blog-sidebar { position: static; }
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .inc-exc-grid { grid-template-columns: 1fr; gap: 24px; }
  .sticky-sidebar { position: static; }
  .sidebar-booking { position: static; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .detail-sidebar { order: -1; }
  .itin-card-body { padding-left: 22px; }
  .highlights-grid { grid-template-columns: 1fr; }
  .facts-table th { width: 120px; padding: 10px 14px; }
  .facts-table td { padding: 10px 14px; }
  .author-bio { flex-direction: column; align-items: center; text-align: center; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid.compact { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .card-grid, .blog-grid, .card-grid.three, .card-grid.two { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .choices, .choices.two { grid-template-columns: 1fr 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  .foot-cta-row { flex-direction: column; text-align: center; align-items: stretch; }
  .foot-cta-text h3 { font-size: 22px; }
  .foot-cta-row .btn { text-align: center; }
  .foot-bottom { flex-direction: column; text-align: center; }
  h1 { font-size: 36px; }
  .plan-modal .head { padding: 24px 20px 0; }
  .plan-modal .body { padding: 0 20px 24px; }
  .plan-modal .actions { padding: 18px 20px; }
  .tour-grid, .tour-grid.compact { grid-template-columns: 1fr; }
  .tour-grid.featured-layout { grid-template-columns: 1fr; }
  .tour-grid.featured-layout .tour-grid-item.featured { grid-column: auto; }
  .tour-grid.featured-layout .tour-grid-item.featured .tour-card { flex-direction: column; }
  .tour-grid.featured-layout .tour-grid-item.featured .tour-card-img { width: 100%; aspect-ratio: 4 / 3; }
  .tour-grid.featured-layout .tour-grid-item.featured .tour-card-body { width: 100%; padding: 22px; }
  .dest-carousel-track .dest-card { flex: 0 0 calc(50% - 10px); }
  .parallax-divider { padding: 48px 0; background-attachment: scroll; }
  .parallax-stats { gap: 20px; padding: 14px 24px; }
  .p-stat-n { font-size: 22px; }
  .parallax-sub { margin-bottom: 28px; }
  .parallax-quote p { font-size: 20px; }
  .cta-banner.parallax-cta { background-attachment: scroll; padding: 80px 0; }
  .mini-cta { padding: 36px 0; }
  .exp-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .blog-grid.compact { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid .field[style*="grid-column"] { grid-column: auto !important; }
  .subhero-sm { min-height: 260px; padding: 120px 0 40px; }
  .article-page { padding-top: 120px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .exp-card { grid-template-columns: 1fr; }
  .itin-day-badge { width: 40px; height: 40px; font-size: 10px; }
  .itin-card-head { gap: 12px; padding: 14px 16px; }
  .itin-card-body { padding: 0 16px 20px 16px; }
  .pricing-cards { grid-template-columns: 1fr 1fr; }
  .facts-table th, .facts-table td { display: block; width: 100%; padding: 6px 16px; }
  .facts-table th { padding-top: 12px; border-bottom: none; font-size: 11px; }
  .facts-table td { padding-bottom: 12px; }
  .tour-review { padding: 20px; }
  .quick-facts h2 { padding: 16px 20px; font-size: 18px; }
}

/* =========================================================
   ABOUT PAGE
   ========================================================= */

/* Values / Pillars grid */
.about-values {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
  margin-top: 48px;
}
.about-value {
  padding: 36px 28px;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 4px;
  position: relative;
  transition: border-color .25s ease, transform .25s ease;
}
.about-value:hover {
  border-color: var(--red-100);
  transform: translateY(-2px);
}
.about-value-icon {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  background: var(--red-50);
  border: 1px solid var(--red-100);
  border-radius: 50%;
  margin-bottom: 20px;
  color: var(--red-600);
}
.about-value-icon svg { width: 22px; height: 22px; }
.about-value h3 { font-size: 20px; margin-bottom: 10px; }
.about-value p { font-size: 14px; line-height: 1.7; color: var(--muted); margin: 0; }

/* Stats bar */
.about-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  background: var(--ink);
  border-radius: 4px;
  overflow: hidden;
}
.about-stat {
  padding: 40px 28px;
  text-align: center;
  position: relative;
}
.about-stat:not(:last-child)::after {
  content: ''; position: absolute; top: 20%; bottom: 20%; right: 0;
  width: 1px; background: rgba(255,255,255,.1);
}
.about-stat .n {
  font-family: var(--serif); font-size: clamp(36px, 4vw, 48px);
  font-weight: 600; color: #fff; line-height: 1;
  margin-bottom: 8px;
}
.about-stat .n span { color: var(--red-300); }
.about-stat .l {
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,.55); font-weight: 500;
}

/* About story layout (two columns) */
.about-story {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  align-items: start;
}
.about-story-text h2 { font-size: 32px; margin-bottom: 16px; }
.about-story-text p { font-size: 16px; line-height: 1.75; color: var(--ink-2); }
.about-story-text .lead { font-size: 18px; color: var(--ink); font-weight: 500; line-height: 1.6; }

/* About credentials list */
.about-creds {
  list-style: none; padding: 0; margin: 28px 0 0;
}
.about-creds li {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--rule);
  font-size: 15px; line-height: 1.6; color: var(--ink-2);
}
.about-creds li:last-child { border-bottom: none; }
.about-creds li svg {
  flex-shrink: 0; margin-top: 2px;
  color: var(--red-600);
}
.about-creds li strong { color: var(--ink); }

/* About — community section */
.about-community {
  background: var(--paper-2);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.about-community-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  align-items: center;
}
.about-community-text .eyebrow { margin-bottom: 14px; }
.about-community-text h2 { font-size: 32px; margin-bottom: 16px; }
.about-community-text p { font-size: 16px; line-height: 1.75; color: var(--ink-2); }
.about-community-visual {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--paper-3) 0%, var(--rule) 100%);
  border-radius: 4px;
  border: 1px solid var(--rule);
  display: grid; place-items: center;
  overflow: hidden;
}
.about-community-visual svg {
  width: 64px; height: 64px; color: var(--muted-2); opacity: .4;
}

/* =========================================================
   CONTACT PAGE — enhanced
   ========================================================= */

.contact-layout-enhanced {
  display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 72px;
  align-items: start;
}

/* Contact info sidebar */
.contact-sidebar { display: flex; flex-direction: column; gap: 0; }
.contact-sidebar-head {
  margin-bottom: 32px;
}
.contact-sidebar-head h2 { font-size: 28px; margin-bottom: 8px; }
.contact-sidebar-head p { font-size: 15px; color: var(--muted); margin: 0; }

.contact-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid var(--rule);
}
.contact-item:first-of-type { border-top: 1px solid var(--rule); }
.contact-item-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  display: grid; place-items: center;
  background: var(--red-50);
  border: 1px solid var(--red-100);
  border-radius: 50%;
  color: var(--red-600);
}
.contact-item-icon svg { width: 18px; height: 18px; }
.contact-item-body h4 {
  font-family: var(--sans); font-size: 13px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink); margin: 0 0 4px;
}
.contact-item-body p { font-size: 15px; color: var(--ink-2); margin: 0; line-height: 1.6; }
.contact-item-body a {
  color: var(--red-700); border-bottom: 1px solid var(--red-100);
  transition: border-color .15s;
}
.contact-item-body a:hover { border-color: var(--red-600); }

/* Contact form enhanced */
.contact-form-enhanced { position: relative; }
.contact-form-enhanced .form-header {
  margin-bottom: 28px;
}
.contact-form-enhanced .form-header h2 { font-size: 28px; margin-bottom: 8px; }
.contact-form-enhanced .form-header p { font-size: 15px; color: var(--muted); margin: 0; }

.contact-form-card {
  background: var(--paper-2);
  border: 1px solid var(--rule);
  border-radius: 4px;
  padding: 36px;
}
.contact-form-card .field input,
.contact-form-card .field textarea,
.contact-form-card .field select {
  background: #fff;
  border-color: var(--rule);
}
.contact-form-card .field input:focus,
.contact-form-card .field textarea:focus {
  border-color: var(--red-500);
  box-shadow: 0 0 0 3px var(--red-50);
}

/* Map placeholder */
.contact-map {
  margin-top: 32px;
  aspect-ratio: 16/7;
  background: var(--paper-3);
  border: 1px solid var(--rule);
  border-radius: 4px;
  display: grid; place-items: center;
  overflow: hidden;
}
.contact-map iframe {
  width: 100%; height: 100%; border: 0;
}
.contact-map-placeholder {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  color: var(--muted-2);
}
.contact-map-placeholder svg { width: 32px; height: 32px; opacity: .5; }
.contact-map-placeholder span { font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; }

/* Response time badge */
.response-badge {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 24px; padding: 10px 16px;
  background: #e6f9ed; border: 1px solid #b5e6c5;
  border-radius: 999px; font-size: 13px; font-weight: 500; color: #0e6b2f;
}
.response-badge svg { width: 16px; height: 16px; }

/* =========================================================
   RESPONSIVE — About & Contact
   ========================================================= */
@media (max-width: 1024px) {
  .about-values { grid-template-columns: repeat(2, 1fr); }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .about-stat:nth-child(2)::after { display: none; }
  .about-story { grid-template-columns: 1fr; gap: 40px; }
  .about-community-inner { grid-template-columns: 1fr; gap: 40px; }
  .contact-layout-enhanced { grid-template-columns: 1fr; gap: 48px; }
  .contact-sidebar { order: 2; }
}
@media (max-width: 640px) {
  .about-values { grid-template-columns: 1fr; gap: 20px; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .about-stat { padding: 28px 20px; }
  .about-stat .n { font-size: 32px; }
  .about-value { padding: 28px 20px; }
  .contact-form-card { padding: 24px 20px; }
  .contact-layout-enhanced { gap: 36px; }
}

/* ---------- AJAX form feedback ---------- */
.form-msg, .newsletter-msg { padding: 10px 16px; border-radius: 6px; font-size: 14px; line-height: 1.4; }
.msg-ok { background: #e6f9ed; color: #0e6b2f; border: 1px solid #b5e6c5; }
.msg-err { background: var(--red-50); color: var(--red-700); border: 1px solid var(--red-100); }
