/* ==========================================================================
   ZEAL ADVENTURE — Main Stylesheet
   Author: Labun Hang Limboo
   ========================================================================== */

/* ---------- CSS Variables ---------- */
:root {
  /* Brand Colors */
  --za-forest: #1a5632;
  --za-forest-dark: #0f3d22;
  --za-mountain: #2d8659;
  --za-mountain-light: #3da56e;
  --za-white: #ffffff;
  --za-red: #c0392b;
  --za-red-hover: #a93226;
  --za-yellow: #fef9e7;
  --za-yellow-accent: #f9e79f;
  --za-blue-light: #eaf4fb;
  --za-blue-accent: #cfe8f9;

  /* Neutrals */
  --za-black: #1a1a1a;
  --za-gray-900: #2c2c2c;
  --za-gray-700: #374151;
  --za-gray-500: #6b7280;
  --za-gray-300: #cccccc;
  --za-gray-100: #f4f4f4;
  --za-off-white: #fafaf8;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-accent: 'Josefin Sans', sans-serif;

  /* Spacing */
  --section-pad: 90px;
  --container-width: 1200px;
  --gap: 30px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0,0,0,.06);
  --shadow-md: 0 6px 24px rgba(0,0,0,.09);
  --shadow-lg: 0 12px 48px rgba(0,0,0,.12);

  /* Radius */
  --radius: 8px;
  --radius-lg: 16px;

  /* Transitions */
  --ease: cubic-bezier(.4,0,.2,1);
}

/* ---------- Reset & Base ---------- */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--za-gray-700);
  line-height: 1.7;
  background: var(--za-white);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--za-forest); text-decoration: none; transition: color .3s var(--ease); }
a:hover { color: var(--za-mountain); }

h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-display);
  color: var(--za-black);
  line-height: 1.3;
  font-weight: 700;
  margin-top: 1.4em;
  margin-bottom: 0.6em;
}
h1:first-child, h2:first-child, h3:first-child,
h4:first-child, h5:first-child, h6:first-child {
  margin-top: 0;
}
h1 { font-size: clamp(1.85rem, 3.6vw, 2.75rem); }
h2 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); }
h3 { font-size: clamp(1.2rem, 1.9vw, 1.5rem); }
h4 { font-size: 1.15rem; }
h5 { font-size: 1.05rem; }
h6 { font-size: .95rem; }

p { margin-bottom: 1rem; }

ul,ol { padding-left: 1.25em; }

/* ---------- Content Tables (blog posts, pages, itinerary docs, etc.) ---------- */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.75em 0;
  font-size: .95rem;
  box-shadow: var(--shadow-sm);
}
table th {
  background: var(--za-yellow-accent);
  color: var(--za-forest-dark); /* dark text on the pale gold header — stays easily readable */
  font-family: var(--font-accent);
  font-weight: 700;
  text-transform: uppercase;
  font-size: .8rem;
  letter-spacing: .5px;
  text-align: left;
  padding: 14px 18px;
  border-bottom: 3px solid var(--za-forest);
}
table td {
  padding: 12px 18px;
  border-bottom: 1px solid var(--za-gray-100);
  color: var(--za-gray-700);
  vertical-align: top;
}
table tbody tr:nth-child(even) td {
  background: var(--za-blue-light);
}
table tbody tr:hover td {
  background: var(--za-blue-accent);
}
table tbody tr:last-child td {
  border-bottom: none;
}
@media (max-width: 640px) {
  /* Lets a wide table scroll horizontally on small screens instead of
     squeezing columns unreadably or breaking the page layout. */
  table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

/* ---------- Utility ---------- */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

.section-padding { padding: var(--section-pad) 0; }

.section-header {
  text-align: center;
  margin-bottom: 50px;
}
.section-header .section-label {
  display: inline-block;
  font-family: var(--font-accent);
  font-size: .85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--za-mountain);
  margin-bottom: 10px;
  position: relative;
}
.section-header .section-label::before,
.section-header .section-label::after {
  content: '';
  display: inline-block;
  width: 30px;
  height: 2px;
  background: var(--za-mountain);
  vertical-align: middle;
  margin: 0 12px;
}
.section-header h2 { margin-bottom: 12px; }
.section-header p {
  max-width: 620px;
  margin: 0 auto;
  color: var(--za-gray-500);
  font-size: 1.1rem;
  line-height: 1.7;
}

.bg-light { background: var(--za-gray-100); }
.bg-yellow { background: var(--za-yellow); }
.bg-forest { background: var(--za-forest); color: var(--za-white); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: 50px;
  font-family: var(--font-accent);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .35s var(--ease);
  line-height: 1.4;
}
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }
.btn-primary {
  background: var(--za-red);
  color: var(--za-white);
  border-color: var(--za-red);
}
.btn-primary:hover {
  background: var(--za-red-hover);
  border-color: var(--za-red-hover);
  color: var(--za-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(192,57,43,.3);
}
.btn-outline {
  background: transparent;
  color: var(--za-forest);
  border-color: var(--za-forest);
}
.btn-outline:hover {
  background: var(--za-forest);
  color: var(--za-white);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--za-white);
  color: var(--za-forest);
  border-color: var(--za-white);
}
.btn-white:hover {
  background: transparent;
  color: var(--za-white);
  transform: translateY(-2px);
}

/* ---------- Focus Visibility (Accessibility) ---------- */
:focus-visible {
  outline: 2px solid var(--za-mountain);
  outline-offset: 2px;
}
.btn:focus-visible {
  outline: 2px solid var(--za-forest);
  outline-offset: 2px;
  box-shadow: 0 0 0 4px rgba(45, 134, 89, .25);
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), padding .4s var(--ease);
  padding: 16px 0;
}
.site-header.scrolled {
  background: var(--za-white);
  box-shadow: var(--shadow-md);
  padding: 8px 0;
}
@media (min-width: 1025px) {
  .site-header:not(.scrolled) .main-nav > ul {
    padding: 6px;
    border-radius: 999px;
    background: rgba(7,20,14,.24);
    border: 1px solid rgba(255,255,255,.12);
    box-shadow: 0 14px 32px rgba(0,0,0,.12);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }
  .site-header:not(.scrolled) .main-nav > ul > li > a {
    color: rgba(255,255,255,.96);
    text-shadow: 0 2px 12px rgba(0,0,0,.45);
  }
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.site-logo a {
  display: flex;
  align-items: center;
  gap: 14px;
}
.site-logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: opacity .3s var(--ease), transform .3s var(--ease), width .3s var(--ease), margin .3s var(--ease);
}
.site-logo-image {
  display: block;
  width: clamp(108px, 9vw, 148px);
  height: clamp(108px, 9vw, 148px);
  object-fit: contain;
  filter: drop-shadow(0 10px 22px rgba(15,61,34,.18));
}
.site-logo .logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--za-white);
  line-height: 1.2;
}
.site-logo.has-custom-logo .logo-text {
  display: none;
}
.site-header.scrolled .site-logo.has-custom-logo .site-logo-mark {
  display: none;
}
.site-header.scrolled .site-logo.has-custom-logo a {
  gap: 0;
}
.site-header.scrolled .site-logo.has-custom-logo .logo-text {
  display: block;
  font-size: 1.18rem;
  line-height: 1.05;
}
.site-header.scrolled .site-logo.has-custom-logo .logo-tagline {
  font-size: .55rem;
  letter-spacing: 1.6px;
}
.scrolled .site-logo .logo-text { color: var(--za-forest-dark); }
.site-logo .logo-tagline {
  display: block;
  font-family: var(--font-accent);
  font-size: .65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: .8;
}

/* Nav */
.main-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  margin: 0;
}
.main-nav a {
  display: block;
  padding: 8px 16px;
  font-family: var(--font-accent);
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.9);
  border-radius: 6px;
  transition: all .3s var(--ease);
}
.scrolled .main-nav a { color: var(--za-gray-700); }
.main-nav a:hover,
.main-nav .current-menu-item > a,
.main-nav .current_page_item > a {
  color: var(--za-white);
  background: var(--za-mountain);
}
.scrolled .main-nav a:hover,
.scrolled .main-nav .current-menu-item > a,
.scrolled .main-nav .current_page_item > a {
  color: var(--za-white);
  background: var(--za-forest);
}

/* Sub menus */
.main-nav .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--za-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 10px;
  list-style: none;
  z-index: 100;
}
.main-nav li { position: relative; }
.main-nav li:focus-within > .sub-menu { display: block; }
@media (hover: hover) and (pointer: fine) {
  /* Real mouse hover only — touchscreens simulate a "stuck" hover on tap with no way
     to un-hover, which made the mobile submenu look permanently open. */
  .main-nav li:hover > .sub-menu { display: block; }
}
.main-nav .sub-menu a {
  color: var(--za-gray-700);
  padding: 8px 14px;
  font-size: .84rem;
  border-radius: 6px;
}
.main-nav .sub-menu a:hover {
  background: var(--za-forest);
  color: var(--za-white);
}
/* Current-page item inside a dropdown — needs to beat the plain ".sub-menu a" gray-text
   rule above, which shares the same specificity and would otherwise win by source order. */
.main-nav .sub-menu .current-menu-item > a,
.main-nav .sub-menu .current_page_item > a {
  background: var(--za-forest);
  color: var(--za-white);
}

/* Mobile submenu toggle (collapsed by default on touch/small screens, opened via tap) */
.main-nav .menu-item-has-children { position: relative; }
.submenu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 2px;
  right: 0;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
}
.submenu-toggle svg {
  width: 18px;
  height: 18px;
  transition: transform .25s var(--ease);
}
.main-nav li.submenu-open > .submenu-toggle svg { transform: rotate(180deg); }

/* Header CTA */
.header-cta .btn {
  padding: 10px 24px;
  font-size: .82rem;
}

/* Mobile Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.mobile-nav-header,
.mobile-nav-cta { display: none; }
.menu-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--za-white);
  margin: 5px 0;
  border-radius: 2px;
  transition: all .3s var(--ease);
}
.scrolled .menu-toggle span { background: var(--za-forest-dark); }

/* ==========================================================================
   HERO SLIDER
   ========================================================================== */
.hero-slider {
  position: relative;
  height: 100vh;
  min-height: 680px;
  max-height: 900px;
  overflow: hidden;
  background: var(--za-forest-dark);
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s var(--ease);
}
.hero-slide.active { opacity: 1; }
.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  filter: saturate(1.04) contrast(1.02);
  transition: transform 6s linear;
}
.hero-slide.active .hero-slide-bg { transform: scale(1); }
.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7,20,14,.06) 0%, rgba(7,20,14,.12) 38%, rgba(7,20,14,.58) 100%),
    linear-gradient(90deg, rgba(7,20,14,.18) 0%, rgba(7,20,14,.02) 34%, rgba(7,20,14,0) 58%, rgba(7,20,14,.12) 100%);
}
.hero-slide-content {
  position: relative;
  z-index: 2;
  isolation: isolate;
  height: 100%;
  display: flex;
  align-items: flex-end;
  color: var(--za-white);
  padding-top: 120px;
  padding-bottom: clamp(92px, 11vh, 128px);
}
.hero-slide-content::before {
  content: '';
  position: absolute;
  left: max(20px, calc((100% - var(--container-width)) / 2));
  bottom: clamp(58px, 9vh, 84px);
  width: min(72vw, 760px);
  height: min(54vh, 460px);
  border-radius: 50%;
  background: radial-gradient(ellipse at 28% 72%, rgba(7,20,14,.9) 0%, rgba(7,20,14,.78) 24%, rgba(7,20,14,.52) 48%, rgba(7,20,14,.18) 66%, rgba(7,20,14,0) 82%);
  filter: blur(10px);
  pointer-events: none;
  z-index: 0;
}
.hero-slide-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 620px);
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
}
.hero-slide.active .hero-slide-panel {
  animation: heroPanelIn .85s var(--ease) .15s both;
}
.hero-slide-content .hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-accent);
  font-size: .78rem;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  margin-bottom: 16px;
  padding: 7px 12px;
  color: rgba(255,255,255,.97);
  background: rgba(9,24,17,.42);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  box-shadow: 0 10px 22px rgba(0,0,0,.18);
  backdrop-filter: blur(6px);
  opacity: 0;
  transform: translateY(30px);
  animation: hereFadeUp .8s var(--ease) .3s forwards;
}
.hero-slide-content .hero-label::before {
  content: '';
  width: 18px;
  height: 1px;
  background: rgba(255,255,255,.7);
}
.hero-slide.active .hero-label { animation: hereFadeUp .8s var(--ease) .3s forwards; }
.hero-slide-content h1,
.hero-slide-content h2 {
  font-size: clamp(2.6rem, 5vw, 4.1rem);
  color: var(--za-white);
  margin-bottom: 14px;
  max-width: 11ch;
  line-height: 1.04;
  text-wrap: balance;
  text-shadow: 0 4px 24px rgba(0,0,0,.38);
  opacity: 0;
  transform: translateY(30px);
  animation: hereFadeUp .8s var(--ease) .5s forwards;
}
.hero-slide.active h1,
.hero-slide.active h2 { animation: hereFadeUp .8s var(--ease) .5s forwards; }
.hero-slide-content p {
  font-size: clamp(1rem, 1.2vw, 1.08rem);
  max-width: 48ch;
  margin-bottom: 0;
  color: rgba(255,255,255,.9);
  line-height: 1.72;
  text-shadow: 0 3px 18px rgba(0,0,0,.34);
  opacity: 0;
  transform: translateY(30px);
  animation: hereFadeUp .8s var(--ease) .7s forwards;
}
.hero-slide.active p { animation: hereFadeUp .8s var(--ease) .7s forwards; }
.hero-slide-content .btn {
  opacity: 0;
  transform: translateY(30px);
  animation: hereFadeUp .8s var(--ease) .9s forwards;
  width: auto;
  align-self: flex-start;
  margin-top: 24px;
  box-shadow: 0 14px 32px rgba(0,0,0,.2);
}
.hero-slide.active .btn { animation: hereFadeUp .8s var(--ease) .9s forwards; }

@media (min-width: 1025px) {
  .hero-slide-panel {
    width: min(100%, 700px);
  }
  .hero-slide-content h1,
  .hero-slide-content h2 {
    font-size: clamp(2.3rem, 4.2vw, 3.55rem);
    max-width: 13.5ch;
    line-height: 1.08;
  }
}

@keyframes hereFadeUp {
  to { opacity: 1; transform: translateY(0); }
}

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

/* Hero Nav */
.hero-nav {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.42);
  cursor: pointer;
  transition: all .4s var(--ease);
  padding: 0;
}
.hero-dot.active {
  background: var(--za-white);
  width: 28px;
  border-radius: 5px;
}

/* ==========================================================================
   ABOUT PREVIEW
   ========================================================================== */
.about-preview .about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-image-wrap {
  position: relative;
  padding: 24px 20px 34px;
  isolation: isolate;
}
.about-image-wrap::before {
  content: '';
  position: absolute;
  inset: 6px 34px 44px 0;
  border: 3px solid var(--za-mountain);
  border-radius: 26px 58px 22px 44px;
  transform: rotate(-2.2deg);
  transform-origin: 22% 30%;
  z-index: 0;
}
.about-image-wrap::after {
  content: '';
  position: absolute;
  inset: 18px -6px 16px 24px;
  border: 2px dashed rgba(26, 86, 50, 0.35);
  border-radius: 52px 24px 62px 20px;
  transform: rotate(1.6deg);
  pointer-events: none;
  z-index: 0;
}
.about-image-wrap img {
  position: relative;
  z-index: 1;
  border-radius: 28px 72px 24px 56px;
  border: 5px solid var(--za-white);
  width: 100%;
  height: 420px;
  object-fit: cover;
  box-shadow: 0 16px 38px rgba(15, 61, 34, 0.2);
}
.about-image-badge {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 2;
  background: var(--za-red);
  color: var(--za-white);
  padding: 18px 24px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-md);
}
.about-image-badge .badge-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
}
.about-image-badge .badge-text {
  font-family: var(--font-accent);
  font-size: .75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.about-content h2 { margin-bottom: 16px; }
.about-content .section-label {
  display: inline-block;
  font-family: var(--font-accent);
  font-size: .85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--za-mountain);
  margin-bottom: 10px;
}
.about-content p { margin-bottom: 16px; color: var(--za-gray-700); font-size: 1.06rem; line-height: 1.8; }
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 24px 0 30px;
  list-style: none;
  padding: 0;
}
.about-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: .92rem;
  color: var(--za-gray-900);
}
.about-features li svg {
  width: 20px;
  height: 20px;
  color: var(--za-mountain);
  flex-shrink: 0;
}

/* ==========================================================================
   DESTINATIONS GRID
   ========================================================================== */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}
.destination-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 380px;
  group: true;
}
.destination-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.destination-card:hover img { transform: scale(1.08); }
.destination-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.7) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  color: var(--za-white);
  transition: background .4s var(--ease);
}
.destination-card:hover .destination-card-overlay {
  background: linear-gradient(0deg, rgba(26,86,50,.85) 0%, rgba(26,86,50,.3) 100%);
}
.destination-card-overlay h3 {
  color: var(--za-white);
  font-size: 1.4rem;
  margin-bottom: 6px;
}
.destination-card-overlay p {
  font-size: .92rem;
  opacity: .9;
  margin-bottom: 14px;
}
.destination-card-overlay .btn {
  opacity: 0;
  transform: translateY(10px);
  transition: all .4s var(--ease);
  align-self: flex-start;
  padding: 8px 20px;
  font-size: .78rem;
}
.destination-card:hover .destination-card-overlay .btn {
  opacity: 1;
  transform: translateY(0);
}

.za-destination-archive-intro {
  max-width: 760px;
  margin: 0 auto 44px;
  text-align: center;
}
.za-destination-archive-intro p {
  font-size: 1.06rem;
  color: var(--za-gray-700);
  line-height: 1.8;
}
.za-destination-archive-grid {
  margin-bottom: 40px;
}
.za-destination-card {
  min-height: 420px;
}
.za-destination-card .destination-card-overlay {
  padding: 30px;
  background: linear-gradient(0deg, rgba(5,12,10,.84) 0%, rgba(5,12,10,.32) 58%, rgba(5,12,10,.08) 100%);
}
.za-destination-card:hover .destination-card-overlay {
  background: linear-gradient(0deg, rgba(15,61,34,.9) 0%, rgba(15,61,34,.48) 58%, rgba(15,61,34,.12) 100%);
}
.za-destination-card h3 {
  margin-top: 10px;
}
.za-destination-card p {
  max-width: 28ch;
}
.za-destination-card .btn {
  opacity: 1;
  transform: none;
  margin-top: 4px;
}
.za-destination-badge {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.18);
  color: var(--za-white);
  font-family: var(--font-accent);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
}
.za-destination-card-fallback {
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, var(--za-forest) 0%, var(--za-mountain) 100%);
}
.za-destination-empty {
  text-align: center;
  padding: 48px 20px;
  color: var(--za-gray-500);
}

/* ==========================================================================
   TOUR PACKAGES
   ========================================================================== */
.tours-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}
.tour-card {
  background: var(--za-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.tour-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.tour-card-image {
  position: relative;
  height: 240px;
  overflow: hidden;
}
.tour-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.tour-card:hover .tour-card-image img { transform: scale(1.06); }
.tour-card-category {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--za-forest);
  color: var(--za-white);
  padding: 6px 16px;
  border-radius: 50px;
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.tour-card-duration {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: var(--za-forest);
  color: var(--za-white);
  padding: 5px 14px;
  border-radius: 50px;
  font-family: var(--font-accent);
  font-size: .78rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
}
.tour-card-body { padding: 24px; }
.tour-card-body h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}
.tour-card-body h3 a { color: var(--za-black); }
.tour-card-body h3 a:hover { color: var(--za-forest); }
.tour-card-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 12px;
  font-size: .82rem;
  color: var(--za-gray-500);
  font-family: var(--font-accent);
}
.tour-card-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}
.tour-card-meta svg { width: 14px; height: 14px; }
.tour-card-body p {
  font-size: 1rem;
  color: var(--za-gray-700);
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.tour-card-footer {
  padding: 16px 24px;
  border-top: 1px solid var(--za-gray-100);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.tour-card-footer .price-label {
  font-family: var(--font-accent);
  font-size: .78rem;
  color: var(--za-gray-500);
}
.tour-card-footer .price-value {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--za-forest);
}

/* ==========================================================================
   WHY CHOOSE US
   ========================================================================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
}
.why-card {
  text-align: center;
  padding: 40px 24px;
  border-radius: var(--radius-lg);
  background: var(--za-white);
  box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--za-mountain);
  transform: scaleX(0);
  transition: transform .4s var(--ease);
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.why-card:hover::before { transform: scaleX(1); }
.why-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: var(--za-yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--za-forest);
  transition: background .3s var(--ease), color .3s var(--ease);
}
.why-card:hover .why-icon {
  background: var(--za-forest);
  color: var(--za-white);
}
.why-icon svg { width: 30px; height: 30px; }
.why-card h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.why-card p {
  font-size: 1rem;
  color: var(--za-gray-500);
  margin-bottom: 0;
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testimonials-section { position: relative; overflow: hidden; }
.testimonial-slider {
  position: relative;
  max-width: 780px;
  margin: 0 auto;
}
.testimonial-slide {
  display: none;
  text-align: center;
  padding: 10px 0;
  animation: fadeIn .6s var(--ease);
}
.testimonial-slide.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.testimonial-stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 20px;
  color: var(--za-yellow-accent);
}
.testimonial-stars svg { width: 22px; height: 22px; fill: #f1c40f; }
.testimonial-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--za-gray-900);
  line-height: 1.6;
  margin-bottom: 28px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.testimonial-author img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--za-mountain);
}
.testimonial-author-info h5 {
  font-family: var(--font-accent);
  font-size: .95rem;
  margin-bottom: 2px;
}
.testimonial-author-info span {
  font-size: .82rem;
  color: var(--za-gray-500);
}
.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}
.testimonial-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--za-mountain);
  background: transparent;
  cursor: pointer;
  transition: all .3s var(--ease);
  padding: 0;
}
.testimonial-dot.active { background: var(--za-mountain); transform: scale(1.2); }

/* ==========================================================================
   BLOG PREVIEW
   ========================================================================== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}
.blog-card {
  background: var(--za-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.blog-card-image {
  height: 220px;
  overflow: hidden;
}
.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.blog-card:hover .blog-card-image img { transform: scale(1.05); }
.blog-card-body { padding: 24px; }
.blog-card-date {
  font-family: var(--font-accent);
  font-size: .78rem;
  color: var(--za-mountain);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.blog-card-body h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  line-height: 1.35;
}
.blog-card-body h3 a { color: var(--za-black); }
.blog-card-body h3 a:hover { color: var(--za-forest); }
.blog-card-body p {
  font-size: 1rem;
  color: var(--za-gray-500);
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-card-link {
  font-family: var(--font-accent);
  font-size: .85rem;
  font-weight: 600;
  color: var(--za-forest);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.blog-card-link:hover { color: var(--za-mountain); gap: 10px; }
.blog-card-link svg { width: 16px; height: 16px; transition: transform .3s var(--ease); }
.blog-card-link:hover svg { transform: translateX(3px); }

.blog-view-all {
  text-align: center;
  margin-top: 40px;
}

/* ==========================================================================
   CTA BANNER
   ========================================================================== */
.cta-banner {
  position: relative;
  padding: 100px 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.cta-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,61,34,.88) 0%, rgba(45,134,89,.8) 100%);
}
.cta-banner .container { position: relative; z-index: 2; }
.cta-tear {
  /* Standalone torn-paper edge, belongs only to the CTA banner section — does
     not touch .cta-banner's overflow or background-attachment, and does not
     touch footer.php or its own separator at all. Reused on both edges via
     a --top/--bottom modifier, and on every page that includes this CTA
     (homepage, About Us). */
  position: absolute;
  left: 0;
  right: 0;
  line-height: 0;
  z-index: 1;
  pointer-events: none;
}
.cta-tear--bottom { bottom: 0; }
.cta-tear--top { top: 0; transform: scaleY(-1); }
.cta-tear svg {
  display: block;
  width: 100%;
  height: 40px;
}
@media (max-width: 768px) {
  .cta-tear svg { height: 22px; }
}
.cta-banner-content {
  text-align: center;
  color: var(--za-white);
  max-width: 700px;
  margin: 0 auto;
}
.cta-banner-content h2 {
  color: var(--za-white);
  margin-bottom: 16px;
}
.cta-banner-content p {
  font-size: 1.1rem;
  opacity: .9;
  margin-bottom: 30px;
}
.cta-banner-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ==========================================================================
   INNER BANNER / BREADCRUMBS
   ========================================================================== */
.inner-banner {
  position: relative;
  padding: 160px 0 80px;
  background-size: cover;
  background-position: center;
  min-height: 320px;
  display: flex;
  align-items: flex-end;
}
.inner-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,61,34,.6) 0%, rgba(26,26,26,.75) 100%);
}
.inner-banner .container { position: relative; z-index: 2; }
.inner-banner h1 {
  color: var(--za-white);
  margin-bottom: 10px;
}
.breadcrumbs {
  font-family: var(--font-accent);
  font-size: .85rem;
  color: rgba(255,255,255,.7);
}
.breadcrumbs a { color: var(--za-yellow-accent); }
.breadcrumbs a:hover { color: var(--za-white); }
.breadcrumbs .separator { margin: 0 8px; opacity: .5; }

/* ==========================================================================
   ABOUT PAGE
   ========================================================================== */
.about-story {
  /* Was a rigid 2-column grid (image stuck centered in its own column,
     text confined to the other). Now a normal flow container so the
     image floats and text wraps around it like a real magazine layout.
     Uses a proper table clearfix (not overflow:auto) so nothing that
     visually extends past the box can trigger a scrollbar. */
}
.about-story::after {
  content: '';
  display: table;
  clear: both;
}
.about-story > .za-reveal:first-child {
  float: right;
  width: 460px;
  max-width: 48%;
  margin: 6px 0 28px 36px;
}
.about-story img {
  border-radius: 4px;
  /* Crisper, more defined shadow than the theme's ambient --shadow-lg, so a
     white-bordered photo reads clearly against a white page without needing
     a colored border. */
  box-shadow: 0 10px 28px rgba(0,0,0,.22), 0 2px 8px rgba(0,0,0,.15);
  border: 10px solid var(--za-white);
  width: 100%;
  height: auto; /* no fixed height/cropping — adapts to whatever image is uploaded */
  display: block;
}
.mission-vision-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
  margin-top: 40px;
}
.mv-card {
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  background: var(--za-white);
  box-shadow: var(--shadow-sm);
  text-align: center;
  border-top: 4px solid var(--za-mountain);
}
.mv-card svg {
  width: 40px;
  height: 40px;
  color: var(--za-forest);
  margin-bottom: 16px;
}
.mv-card h4 { margin-bottom: 10px; }
.mv-card p { font-size: .9rem; color: var(--za-gray-500); margin-bottom: 0; }

/* ==========================================================================
   TOURS PAGE (WITH SIDEBAR)
   ========================================================================== */
.tours-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
}

/* Sidebar */
.sidebar { position: sticky; top: 100px; align-self: start; }
.sidebar-widget {
  background: var(--za-white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
}
.sidebar-widget h4 {
  font-size: 1.05rem;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--za-gray-100);
}
.sidebar-search {
  display: flex;
  gap: 0;
}
.sidebar-search input {
  flex: 1;
  padding: 12px 16px;
  border: 2px solid var(--za-gray-300);
  border-right: none;
  border-radius: var(--radius) 0 0 var(--radius);
  font-family: var(--font-body);
  font-size: .9rem;
  outline: none;
  transition: border-color .3s var(--ease);
}
.sidebar-search input:focus { border-color: var(--za-mountain); }
.sidebar-search button {
  padding: 12px 18px;
  background: var(--za-forest);
  color: var(--za-white);
  border: none;
  border-radius: 0 var(--radius) var(--radius) 0;
  cursor: pointer;
  transition: background .3s var(--ease);
}
.sidebar-search button:hover { background: var(--za-forest-dark); }
.sidebar-categories {
  list-style: none;
  padding: 0;
}
.sidebar-categories li {
  padding: 10px 0;
  border-bottom: 1px solid var(--za-gray-100);
}
.sidebar-categories li:last-child { border-bottom: none; }
.sidebar-categories a {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-accent);
  font-size: .88rem;
  color: var(--za-gray-700);
}
.sidebar-categories a:hover { color: var(--za-forest); }
.sidebar-categories .count {
  background: var(--za-gray-100);
  padding: 2px 10px;
  border-radius: 50px;
  font-size: .78rem;
  color: var(--za-gray-500);
}
.sidebar-inquiry {
  background: var(--za-forest);
  color: var(--za-white);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.sidebar-inquiry h4 {
  color: var(--za-white);
  border-bottom-color: rgba(255,255,255,.2);
}
.sidebar-inquiry input,
.sidebar-inquiry textarea {
  width: 100%;
  padding: 10px 14px;
  margin-bottom: 12px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius);
  background: rgba(255,255,255,.1);
  color: var(--za-white);
  font-family: var(--font-body);
  font-size: .88rem;
  outline: none;
  transition: border-color .3s var(--ease);
}
.sidebar-inquiry input::placeholder,
.sidebar-inquiry textarea::placeholder { color: rgba(255,255,255,.5); }
.sidebar-inquiry input:focus,
.sidebar-inquiry textarea:focus { border-color: var(--za-yellow-accent); }
.sidebar-inquiry textarea { resize: vertical; min-height: 80px; }
.sidebar-inquiry .btn { width: 100%; justify-content: center; }

/* Tours page grid (2-col in main area) */
.tours-main .tours-grid {
  grid-template-columns: repeat(2, 1fr);
}

/* ==========================================================================
   SINGLE TOUR DETAILS
   ========================================================================== */
.tour-detail-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
}
.tour-detail-main {
  min-width: 0;
  overflow-x: hidden;
}
.tour-featured-image {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: 30px;
}
.tour-detail-header {
  margin-bottom: 34px;
}
.tour-detail-header h1,
.tour-detail-header h2 {
  margin-bottom: 18px;
}
.tour-info-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}
.tour-info-item {
  position: relative;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 14px;
  align-items: start;
  min-height: 122px;
  padding: 18px 18px 16px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,.98) 0%, #f7faf8 100%);
  border: 1px solid rgba(26,86,50,.08);
  box-shadow: 0 14px 32px rgba(15,61,34,.08);
  overflow: hidden;
}
.tour-info-item::after {
  content: '';
  position: absolute;
  right: -12px;
  bottom: -18px;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45,134,89,.12) 0%, rgba(45,134,89,0) 72%);
  pointer-events: none;
}
.tour-info-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, var(--za-forest-dark) 0%, var(--za-mountain) 100%);
  color: var(--za-white);
  box-shadow: 0 12px 24px rgba(26,86,50,.24);
}
.tour-info-icon svg {
  width: 24px;
  height: 24px;
  color: currentColor;
}
.tour-info-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 0;
}
.tour-info-kicker {
  font-family: var(--font-accent);
  font-size: .72rem;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--za-gray-500);
}
.tour-info-value {
  font-family: var(--font-display);
  font-size: 1.22rem;
  line-height: 1.25;
  color: var(--za-black);
  overflow-wrap: anywhere;
}
.tour-info-sub {
  font-size: .78rem;
  color: var(--za-gray-500);
  font-weight: 600;
}
.tour-info-item-price {
  background: linear-gradient(180deg, #fff7f2 0%, #fffdfb 100%);
  border-color: rgba(192,57,43,.12);
}
.tour-info-item-price .tour-info-icon {
  background: linear-gradient(145deg, var(--za-red) 0%, #d76d5c 100%);
  box-shadow: 0 12px 24px rgba(192,57,43,.2);
}
.tour-info-item-price .tour-info-kicker {
  color: #9e4a3f;
}

/* Tabs */
.tour-tabs {
  margin-top: 30px;
  min-width: 0;
}
.tour-tab-nav {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: stretch;
  width: 100%;
  max-width: 100%;
  padding: 10px;
  margin-bottom: 28px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,.92) 0%, rgba(246,251,248,.9) 100%);
  border: 1px solid rgba(26,86,50,.09);
  box-shadow: 0 18px 34px rgba(15,61,34,.08);
  overflow: hidden;
}
.tour-tab-nav::before {
  content: '';
  position: absolute;
  inset: 10px auto auto 16px;
  width: 120px;
  height: 56px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(45,134,89,.14) 0%, rgba(45,134,89,0) 72%);
  pointer-events: none;
}
.tour-tab-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 1 auto;
  max-width: 100%;
  min-height: 46px;
  padding: 12px 20px;
  font-family: var(--font-accent);
  font-size: .88rem;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: .35px;
  text-align: center;
  white-space: normal;
  overflow-wrap: anywhere;
  color: var(--za-gray-700);
  border: 1px solid transparent;
  border-radius: 999px;
  background: rgba(255,255,255,.54);
  cursor: pointer;
  position: relative;
  z-index: 1;
  transition: transform .25s var(--ease), color .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.tour-tab-btn:hover {
  color: var(--za-forest-dark);
  border-color: rgba(26,86,50,.12);
  background: rgba(255,255,255,.92);
  transform: translateY(-1px);
}
.tour-tab-btn.active {
  color: var(--za-white);
  border-color: rgba(15,61,34,.18);
  background: linear-gradient(135deg, var(--za-forest-dark) 0%, var(--za-mountain) 100%);
  box-shadow: 0 14px 28px rgba(26,86,50,.22);
}
.tour-tab-btn.active::after {
  content: '';
  position: absolute;
  inset: auto auto 8px 12px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
}

.tour-tab-panel {
  display: none;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  animation: fadeIn .4s var(--ease);
}
.tour-tab-panel.active { display: block; }
.tour-tab-panel > :first-child,
.tour-tab-panel .entry-content > :first-child {
  margin-top: 0;
}
.tour-tab-panel p {
  font-size: 1.06rem;
  line-height: 1.85;
  color: var(--za-gray-700);
}

/* Itinerary */
.itinerary-item {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--za-gray-100);
}
.itinerary-item:last-child { border-bottom: none; }
.itinerary-day {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  background: var(--za-forest);
  color: var(--za-white);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--font-accent);
}
.itinerary-day .day-num { font-size: 1.3rem; font-weight: 700; line-height: 1; }
.itinerary-day .day-label { font-size: .65rem; text-transform: uppercase; letter-spacing: 1px; }
.itinerary-content h4 { margin-bottom: 6px; }
.itinerary-content p { font-size: .92rem; margin-bottom: .6em; }
.itinerary-content p:last-child { margin-bottom: 0; }

/* Includes / Excludes */
.inc-exc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.inc-list, .exc-list { list-style: none; padding: 0; }
.inc-list li, .exc-list li {
  padding: 8px 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .92rem;
  border-bottom: 1px solid var(--za-gray-100);
}
.inc-list li svg { color: var(--za-mountain); flex-shrink: 0; width: 18px; height: 18px; margin-top: 2px; }
.exc-list li svg { color: var(--za-red); flex-shrink: 0; width: 18px; height: 18px; margin-top: 2px; }

/* FAQ */
.faq-item {
  border: 1px solid var(--za-gray-100);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  padding: 16px 20px;
  background: var(--za-white);
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-accent);
  font-size: .92rem;
  font-weight: 600;
  color: var(--za-black);
  text-align: left;
  transition: background .3s var(--ease);
}
.faq-question:hover { background: var(--za-gray-100); }
.faq-question svg {
  width: 18px;
  height: 18px;
  transition: transform .3s var(--ease);
  flex-shrink: 0;
}
.faq-item.open .faq-question svg { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s var(--ease);
}
.faq-answer-inner { padding: 0 20px 16px; font-size: .92rem; }

/* Tour Booking Sidebar */
.booking-widget {
  background: var(--za-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  position: sticky;
  top: 100px;
}
.booking-widget-header {
  background: var(--za-forest);
  color: var(--za-white);
  padding: 22px 28px;
  text-align: center;
}
.booking-widget-header .price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
}
.booking-widget-header .per { font-size: .85rem; opacity: .8; }
.booking-widget-body { padding: 28px; }
.booking-widget-body label {
  display: block;
  font-family: var(--font-accent);
  font-size: .82rem;
  font-weight: 600;
  color: var(--za-gray-700);
  margin-bottom: 6px;
}
.booking-widget-body input,
.booking-widget-body select,
.booking-widget-body textarea {
  width: 100%;
  padding: 11px 14px;
  border: 2px solid var(--za-gray-100);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .88rem;
  margin-bottom: 16px;
  outline: none;
  transition: border-color .3s var(--ease);
  background: var(--za-white);
}
.booking-widget-body input:focus,
.booking-widget-body select:focus,
.booking-widget-body textarea:focus { border-color: var(--za-mountain); }
.booking-widget-body textarea { resize: vertical; min-height: 80px; }
.booking-widget-body .btn { width: 100%; justify-content: center; font-size: .9rem; }
.booking-widget-info {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--za-gray-100);
}
.booking-widget-info li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  font-size: .85rem;
  color: var(--za-gray-700);
  list-style: none;
}
.booking-widget-info svg { width: 16px; height: 16px; color: var(--za-mountain); }

/* Related Tours */
.related-tours { margin-top: 60px; }

/* ==========================================================================
   BLOG PAGE / SINGLE POST
   ========================================================================== */
.blog-listing .blog-grid {
  grid-template-columns: repeat(3, 1fr);
}
.blog-card .blog-category {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--za-forest);
  color: var(--za-white);
  padding: 4px 14px;
  border-radius: 50px;
  font-family: var(--font-accent);
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.blog-card-image { position: relative; }

/* Single Post */
.single-post-content {
  max-width: 800px;
  margin: 0 auto;
}
.single-post-content .entry-content {
  font-size: 1.19rem;
  line-height: 1.9;
  letter-spacing: -0.003em;
}
.single-post-content .entry-content h2,
.single-post-content .entry-content h3 { margin-top: 2rem; margin-bottom: 1rem; }
.single-post-content .entry-content p { margin-bottom: 1.5rem; }
.single-post-content .entry-content img { border-radius: var(--radius); margin: 1.5rem 0; }
@media (min-width: 1025px) {
  .single-za_destination .single-post-content {
    max-width: 100%;
    margin: 0 0 clamp(36px, 5vw, 54px);
  }
}
.single-za_destination .single-post-content {
  position: relative;
  padding: clamp(24px, 3.6vw, 44px);
  border-radius: 30px;
  background: linear-gradient(150deg, rgba(255,255,255,.9) 0%, rgba(245,251,247,.82) 48%, rgba(232,244,236,.76) 100%);
  border: 1px solid rgba(26,86,50,.1);
  box-shadow: 0 24px 52px rgba(15,61,34,.12), 0 10px 24px rgba(45,134,89,.08), inset 0 1px 0 rgba(255,255,255,.7);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  overflow: hidden;
}
.single-za_destination .single-post-content::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,255,255,.46) 0%, rgba(255,255,255,0) 42%, rgba(45,134,89,.1) 100%);
  pointer-events: none;
}
.single-za_destination .single-post-content::after {
  content: '';
  position: absolute;
  top: -90px;
  right: -52px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45,134,89,.15) 0%, rgba(45,134,89,0) 74%);
  pointer-events: none;
}
.single-za_destination .single-post-content .entry-content {
  position: relative;
  z-index: 1;
}
.single-za_destination .single-post-content .entry-content > :last-child {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .single-za_destination .single-post-content {
    padding: 22px 18px;
    border-radius: 24px;
    margin-bottom: 36px;
  }
  .single-za_destination .single-post-content::after {
    top: -56px;
    right: -42px;
    width: 160px;
    height: 160px;
  }
}
@media (max-width: 480px) {
  .single-za_destination .single-post-content {
    padding: 18px 15px;
    border-radius: 20px;
  }
}
.single-post-content .entry-content blockquote {
  border-left: 4px solid var(--za-mountain);
  padding: 20px 24px;
  margin: 1.5rem 0;
  background: var(--za-yellow);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--za-gray-900);
}

.post-meta-top {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 20px;
  font-family: var(--font-accent);
  font-size: .85rem;
  color: var(--za-gray-500);
}
.post-meta-top span {
  display: flex;
  align-items: center;
  gap: 6px;
}
.post-meta-top svg { width: 16px; height: 16px; }

.author-box {
  display: flex;
  gap: 20px;
  padding: 30px;
  background: var(--za-gray-100);
  border-radius: var(--radius-lg);
  margin-top: 40px;
}
.author-box img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.author-box h4 { margin-bottom: 4px; }
.author-box p { font-size: .9rem; margin-bottom: 0; }

.related-posts { margin-top: 60px; }

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: stretch;
}
.contact-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 560px;
}
.contact-intro > p {
  margin-bottom: 12px;
}
.contact-info-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}
.contact-info-list li {
  display: flex;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--za-gray-100);
}
.contact-info-list li:last-child { border-bottom: none; }
.contact-info-icon {
  width: 50px;
  height: 50px;
  background: var(--za-yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--za-forest);
  flex-shrink: 0;
}
.contact-info-icon svg { width: 22px; height: 22px; }
.contact-info-text h5 { margin-bottom: 2px; }
.contact-info-text p, .contact-info-text a {
  font-size: .92rem;
  color: var(--za-gray-700);
  margin-bottom: 0;
}

.contact-form label {
  display: block;
  font-family: var(--font-accent);
  font-size: .85rem;
  font-weight: 600;
  color: var(--za-gray-700);
  margin-bottom: 6px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--za-gray-100);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .92rem;
  margin-bottom: 18px;
  outline: none;
  transition: border-color .3s var(--ease);
}
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--za-mountain); }
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-map {
  margin-top: 40px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.contact-map iframe {
  width: 100%;
  height: 400px;
  border: 0;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: #272d3c;
  color: rgba(255,255,255,.7);
  position: relative;
}

.footer-separator {
  display: block;
  width: 100%;
  line-height: 0;
}

.footer-separator svg {
  width: 100%;
  height: auto;
  display: block;
}

.footer-main { padding: 70px 0 40px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
  gap: 40px;
}
.footer-col h4 {
  color: var(--za-white);
  font-family: var(--font-accent);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--za-mountain);
}
.footer-about .logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--za-white);
  margin-bottom: 14px;
}
.footer-about p { font-size: .9rem; line-height: 1.7; margin-bottom: 18px; }
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  transition: all .3s var(--ease);
}
.footer-social a:hover {
  background: var(--za-mountain);
  border-color: var(--za-mountain);
  color: var(--za-white);
}
.footer-social svg { width: 18px; height: 18px; }

.footer-links {
  list-style: none;
  padding: 0;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: .9rem;
  color: rgba(255,255,255,.65);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all .3s var(--ease);
}
.footer-links a::before {
  content: '';
  width: 6px;
  height: 6px;
  border-top: 1.5px solid var(--za-mountain);
  border-right: 1.5px solid var(--za-mountain);
  transform: rotate(45deg);
  flex-shrink: 0;
}
.footer-links a:hover { color: var(--za-white); padding-left: 6px; }

.footer-contact li {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  font-size: .9rem;
  list-style: none;
}
.footer-contact svg {
  width: 18px;
  height: 18px;
  color: var(--za-mountain);
  flex-shrink: 0;
  margin-top: 3px;
}
.footer-contact a { color: rgba(255,255,255,.65); }
.footer-contact a:hover { color: var(--za-white); }

.footer-payment {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.footer-payment p {
  font-size: .82rem;
  margin-bottom: 10px;
  color: rgba(255,255,255,.5);
}
.payment-icons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.payment-icon {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  background: rgba(255,255,255,.08);
  border-radius: var(--radius);
  font-size: .75rem;
  color: rgba(255,255,255,.6);
  font-family: var(--font-accent);
}
.payment-icon svg { width: 16px; height: 16px; }
.payment-icon--logo {
  background: #fff;
  padding: 5px 10px;
}
.payment-icon--logo img {
  display: block;
  height: 26px;
  width: auto;
}

/* Footer Bottom */
.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,.08);
  text-align: center;
  font-size: .85rem;
}
.footer-bottom a { color: var(--za-mountain); }

/* ==========================================================================
   PAGINATION
   ========================================================================== */
.pagination {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 40px;
}
.pagination a, .pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  font-family: var(--font-accent);
  font-size: .9rem;
  font-weight: 600;
  color: var(--za-gray-700);
  background: var(--za-white);
  border: 2px solid var(--za-gray-100);
  transition: all .3s var(--ease);
}
.pagination a:hover, .pagination .current {
  background: var(--za-forest);
  color: var(--za-white);
  border-color: var(--za-forest);
}

/* ==========================================================================
   TAGS
   ========================================================================== */
.za-tags {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.za-tag {
  padding: 5px 14px;
  background: var(--za-gray-100);
  border-radius: 50px;
  font-size: .82rem;
  font-family: var(--font-accent);
  color: var(--za-gray-700);
  transition: all .3s var(--ease);
}
.za-tag:hover {
  background: var(--za-forest);
  color: var(--za-white);
}

/* ==========================================================================
   SOCIAL SHARE
   ========================================================================== */
.za-share {
  margin-top: 36px;
  padding: 24px 0;
  border-top: 1px solid var(--za-gray-100);
  border-bottom: 1px solid var(--za-gray-100);
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.za-share-label {
  font-family: var(--font-accent);
  font-size: .88rem;
  font-weight: 600;
  color: var(--za-gray-700);
  text-transform: uppercase;
  letter-spacing: .5px;
}
.za-share-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.za-share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  color: var(--za-white);
  transition: all .3s var(--ease);
  text-decoration: none;
}
.za-share-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(0,0,0,.18);
  color: var(--za-white);
}
.za-share-btn svg { pointer-events: none; }
.za-share-facebook { background: #1877f2; }
.za-share-facebook:hover { background: #0d65d9; }
.za-share-twitter { background: #0f1419; }
.za-share-twitter:hover { background: #333; }
.za-share-whatsapp { background: #25d366; }
.za-share-whatsapp:hover { background: #1ebe57; }
.za-share-linkedin { background: #0a66c2; }
.za-share-linkedin:hover { background: #004182; }
.za-share-print { background: var(--za-gray-700); }
.za-share-print:hover { background: var(--za-gray-900); }

@media print {
  .za-share, .site-header, .site-footer, .za-comments,
  .related-posts, .author-box, .inner-banner { display: none !important; }
}

/* ==========================================================================
   COMMENTS
   ========================================================================== */
.za-comments {
  margin-top: 48px;
}
.za-comments-header h3 {
  font-size: 1.35rem;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--za-gray-100);
  margin-bottom: 28px;
}
.za-comments-header svg {
  width: 22px;
  height: 22px;
  color: var(--za-mountain);
}

/* Comment list */
.za-comment-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.za-comment {
  margin-bottom: 24px;
}
.za-comment .children {
  list-style: none;
  padding-left: 30px;
  margin-top: 24px;
  border-left: 2px solid var(--za-gray-100);
}
.za-comment-inner {
  display: flex;
  gap: 16px;
}
.za-comment-avatar img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.za-comment-body {
  flex: 1;
  min-width: 0;
  background: var(--za-gray-100);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
}
.za-comment-meta {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}
.za-comment-author {
  font-family: var(--font-accent);
  font-size: .95rem;
  color: var(--za-black);
}
.za-comment-date {
  font-size: .78rem;
  color: var(--za-gray-500);
}
.za-comment-text {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--za-gray-700);
}
.za-comment-text p {
  margin-bottom: .5rem;
}
.za-comment-text p:last-child {
  margin-bottom: 0;
}
.za-comment-awaiting {
  font-style: italic;
  color: var(--za-mountain);
  font-size: .88rem;
  margin-top: 8px;
}
.za-comment-actions {
  margin-top: 10px;
}
.za-reply-link a {
  font-family: var(--font-accent);
  font-size: .82rem;
  font-weight: 600;
  color: var(--za-forest);
  text-transform: uppercase;
  letter-spacing: .5px;
}
.za-reply-link a:hover {
  color: var(--za-mountain);
}
.za-comments-closed {
  padding: 20px;
  background: var(--za-yellow);
  border-radius: var(--radius);
  font-size: .95rem;
  color: var(--za-gray-700);
}

/* Comment form */
.za-comment-form-wrap {
  margin-top: 40px;
}
.za-cf-title {
  font-size: 1.35rem;
  margin-bottom: 6px;
}
.za-cf-note {
  font-size: .88rem;
  color: var(--za-gray-500);
  margin-bottom: 28px;
}
.za-cf-note .required { color: var(--za-red); }

.za-cf .za-cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.za-cf .za-cf-field {
  margin-bottom: 20px;
}
.za-cf .za-cf-field-full {
  grid-column: 1 / -1;
}
.za-cf label {
  display: block;
  font-family: var(--font-accent);
  font-size: .85rem;
  font-weight: 600;
  color: var(--za-gray-700);
  margin-bottom: 8px;
}
.za-cf label .required {
  color: var(--za-red);
}
.za-cf label .optional {
  font-weight: 400;
  color: var(--za-gray-500);
  font-size: .78rem;
}
.za-cf input[type="text"],
.za-cf input[type="email"],
.za-cf input[type="url"],
.za-cf textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--za-gray-100);
  border-radius: var(--radius-lg);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--za-black);
  background: var(--za-white);
  outline: none;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.za-cf input:focus,
.za-cf textarea:focus {
  border-color: var(--za-mountain);
  box-shadow: 0 0 0 4px rgba(45,134,89,.1);
}
.za-cf input::placeholder,
.za-cf textarea::placeholder {
  color: var(--za-gray-300);
}
.za-cf textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.7;
}
.za-cf-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  border-radius: 50px;
  border: none;
  background: var(--za-forest);
  color: var(--za-white);
  font-family: var(--font-accent);
  font-size: .92rem;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .35s var(--ease);
  margin-top: 4px;
}
.za-cf-submit:hover {
  background: var(--za-forest-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(15,61,34,.3);
}
.za-cf .form-submit {
  margin-top: 8px;
}

/* Logged-in form adjustments */
.za-cf .logged-in-as {
  font-size: .88rem;
  color: var(--za-gray-500);
  margin-bottom: 20px;
}
.za-cf .logged-in-as a {
  color: var(--za-forest);
  font-weight: 600;
}

/* Cancel reply link */
.za-cf-title small {
  font-size: .82rem;
  font-weight: 400;
}
.za-cf-title small a {
  color: var(--za-red);
}

@media (max-width: 768px) {
  .za-cf .za-cf-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .za-comment-inner {
    flex-direction: column;
    gap: 12px;
  }
  .za-comment .children {
    padding-left: 16px;
  }
  .za-share {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ==========================================================================
   404 PAGE
   ========================================================================== */
.error-404-content {
  text-align: center;
  padding: 80px 0;
  max-width: 560px;
  margin: 0 auto;
}
.error-404-content h1 {
  font-size: 6rem;
  color: var(--za-mountain);
  line-height: 1;
  margin-bottom: 16px;
}
.error-404-content h2 { margin-bottom: 14px; }
.error-404-content p { margin-bottom: 28px; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
  :root { --section-pad: 60px; }

  .about-preview .about-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 40px;
  }
  .about-image-wrap,
  .about-content {
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
  }
  .destinations-grid { grid-template-columns: repeat(2, 1fr); }
  .tours-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .tour-detail-layout { grid-template-columns: 1fr; }
  .tour-info-bar { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .booking-widget { position: static; }
  .tours-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .contact-layout { grid-template-columns: 1fr; }
  .mission-vision-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 1200px) {
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 360px;
    height: 100vh;
    background: var(--za-forest-dark);
    z-index: 999;
    padding: 30px 30px 30px;
    transition: right .4s var(--ease);
    overflow-y: auto;
  }
  .main-nav.open { right: 0; }
  .main-nav ul { flex-direction: column; gap: 4px; }
  .main-nav a,
  .scrolled .main-nav a {
    padding: 12px 16px;
    font-size: .95rem;
    color: rgba(255,255,255,.85) !important;
    background: transparent;
  }
  .main-nav a:hover,
  .main-nav .current-menu-item > a,
  .main-nav .current_page_item > a,
  .scrolled .main-nav a:hover,
  .scrolled .main-nav .current-menu-item > a,
  .scrolled .main-nav .current_page_item > a {
    background: var(--za-mountain) !important;
    color: var(--za-white) !important;
  }
  .main-nav .menu-item-has-children > a { padding-right: 46px; }
  .submenu-toggle { display: flex; color: rgba(255,255,255,.85); }
  .main-nav .sub-menu {
    position: static;
    display: none;
    box-shadow: none;
    background: transparent;
    padding-left: 16px;
  }
  .main-nav li.submenu-open > .sub-menu { display: block; }
  .main-nav .sub-menu a,
  .scrolled .main-nav .sub-menu a { color: rgba(255,255,255,.7) !important; }
  .main-nav .sub-menu a:hover,
  .scrolled .main-nav .sub-menu a:hover { color: var(--za-white) !important; }

  .mobile-nav-header {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,.12);
  }
  .mobile-nav-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--za-white);
    line-height: 1.2;
    min-width: 0;
  }
  .mobile-nav-logo.has-custom-logo {
    width: 100%;
    justify-content: center;
  }
  .mobile-nav-mark {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.14);
    padding: 6px;
  }
  .mobile-nav-logo.has-custom-logo .mobile-nav-mark {
    width: min(300px, 100%);
    max-width: 100%;
    aspect-ratio: 1 / 1;
    height: auto;
    border-radius: 50%;
    padding: 12px;
    background: rgba(255,255,255,.05);
    border-color: rgba(255,255,255,.12);
    box-shadow: 0 18px 36px rgba(0,0,0,.16);
  }
  .mobile-nav-logo-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .mobile-nav-copy {
    min-width: 0;
  }
  .mobile-nav-title {
    display: block;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--za-white);
  }
  .mobile-nav-copy small {
    display: block;
    font-family: var(--font-accent);
    font-size: .6rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,.5);
    font-weight: 600;
    margin-top: 4px;
  }
  .mobile-nav-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.2);
    background: transparent;
    color: rgba(255,255,255,.7);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s var(--ease);
    flex-shrink: 0;
  }
  .mobile-nav-close:hover {
    background: rgba(255,255,255,.1);
    color: var(--za-white);
  }

  .mobile-nav-cta {
    display: block;
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,.12);
  }
  .mobile-nav-cta .btn {
    width: 100%;
    justify-content: center;
    background: var(--za-red);
    color: var(--za-white);
    border-color: var(--za-red);
  }

  .menu-toggle { display: block; }
  .header-cta { display: none; }
  .mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.5);
    z-index: 998;
    display: none;
  }
  .mobile-overlay.active { display: block; }
  .site-logo-image {
    width: clamp(84px, 8vw, 108px);
    height: clamp(84px, 8vw, 108px);
  }
}

@media (max-width: 560px) {
  .mobile-nav-logo {
    gap: 10px;
  }
  .mobile-nav-logo.has-custom-logo .mobile-nav-mark {
    width: min(220px, 100%);
    padding: 10px;
  }
  .mobile-nav-mark {
    width: 60px;
    height: 60px;
  }
  .mobile-nav-title {
    font-size: 1.05rem;
  }
  .mobile-nav-copy small {
    font-size: .55rem;
    letter-spacing: 1.6px;
  }
}

@media (max-width: 768px) {
  :root { --section-pad: 50px; --gap: 20px; }

  /* Mobile Nav */
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 360px;
    height: 100vh;
    background: var(--za-forest-dark);
    z-index: 999;
    padding: 30px 30px 30px;
    transition: right .4s var(--ease);
    overflow-y: auto;
  }
  .main-nav.open { right: 0; }
  .main-nav ul { flex-direction: column; gap: 4px; }
  .main-nav a,
  .scrolled .main-nav a {
    padding: 12px 16px;
    font-size: .95rem;
    color: rgba(255,255,255,.85) !important;
    background: transparent;
  }
  .main-nav a:hover,
  .main-nav .current-menu-item > a,
  .main-nav .current_page_item > a,
  .scrolled .main-nav a:hover,
  .scrolled .main-nav .current-menu-item > a,
  .scrolled .main-nav .current_page_item > a {
    background: var(--za-mountain) !important;
    color: var(--za-white) !important;
  }
  .main-nav .menu-item-has-children > a { padding-right: 46px; }
  .submenu-toggle { display: flex; color: rgba(255,255,255,.85); }
  .main-nav .sub-menu {
    position: static;
    display: none;
    box-shadow: none;
    background: transparent;
    padding-left: 16px;
  }
  .main-nav li.submenu-open > .sub-menu { display: block; }
  .main-nav .sub-menu a,
  .scrolled .main-nav .sub-menu a { color: rgba(255,255,255,.7) !important; }
  .main-nav .sub-menu a:hover,
  .scrolled .main-nav .sub-menu a:hover { color: var(--za-white) !important; }

  /* Mobile drawer branding */
  .mobile-nav-header {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,.12);
  }
  .mobile-nav-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--za-white);
    line-height: 1.2;
    min-width: 0;
  }
  .mobile-nav-logo.has-custom-logo {
    width: 100%;
    justify-content: center;
  }
  .mobile-nav-mark {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.14);
    padding: 6px;
  }
  .mobile-nav-logo.has-custom-logo .mobile-nav-mark {
    width: min(300px, 100%);
    max-width: 100%;
    aspect-ratio: 1 / 1;
    height: auto;
    border-radius: 50%;
    padding: 12px;
    background: rgba(255,255,255,.05);
    border-color: rgba(255,255,255,.12);
    box-shadow: 0 18px 36px rgba(0,0,0,.16);
  }
  .mobile-nav-logo-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .mobile-nav-copy {
    min-width: 0;
  }
  .mobile-nav-title {
    display: block;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--za-white);
  }
  .mobile-nav-copy small {
    display: block;
    font-family: var(--font-accent);
    font-size: .6rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,.5);
    font-weight: 600;
    margin-top: 4px;
  }
  .mobile-nav-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.2);
    background: transparent;
    color: rgba(255,255,255,.7);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s var(--ease);
    flex-shrink: 0;
  }
  .mobile-nav-close:hover {
    background: rgba(255,255,255,.1);
    color: var(--za-white);
  }

  /* Mobile CTA at bottom of drawer */
  .mobile-nav-cta {
    display: block;
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,.12);
  }
  .mobile-nav-cta .btn {
    width: 100%;
    justify-content: center;
    background: var(--za-red);
    color: var(--za-white);
    border-color: var(--za-red);
  }

  .menu-toggle { display: block; }
  .header-cta { display: none; }
  .mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.5);
    z-index: 998;
    display: none;
  }
  .mobile-overlay.active { display: block; }

  .about-preview .about-grid { grid-template-columns: 1fr; }
  .about-image-wrap {
    padding: 18px 14px 26px;
  }
  .about-image-wrap::before {
    inset: 4px 18px 28px 0;
    border-radius: 20px 42px 18px 34px;
  }
  .about-image-wrap::after {
    inset: 12px -2px 10px 14px;
    border-radius: 34px 18px 42px 16px;
  }
  .about-image-wrap img {
    border-radius: 22px 44px 20px 36px;
    height: 360px;
  }
  .about-story > .za-reveal:first-child { float: none; width: 100%; max-width: 100%; margin: 0 0 24px 0; }
  .destinations-grid { grid-template-columns: 1fr; }
  .tours-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .inc-exc-grid { grid-template-columns: 1fr; }
  .tour-info-bar {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .tour-info-item {
    grid-template-columns: 50px 1fr;
    min-height: auto;
    padding: 14px 14px 13px;
    border-radius: 20px;
  }
  .tour-info-icon {
    width: 50px;
    height: 50px;
    border-radius: 15px;
  }
  .tour-info-icon svg {
    width: 22px;
    height: 22px;
  }
  .tour-info-value {
    font-size: 1.08rem;
  }
  .tour-tab-nav {
    gap: 8px;
    padding: 8px;
    border-radius: 22px;
  }
  .tour-featured-image { height: 300px; }
  .hero-slider {
    height: auto;
    min-height: 0;
    max-height: none;
    background: linear-gradient(180deg, #ffffff 0%, #f7f4ee 100%);
  }
  .hero-slide {
    position: relative;
    inset: auto;
    display: none;
    opacity: 1;
    transition: none;
  }
  .hero-slide.active {
    display: block;
  }
  .hero-slide-bg {
    position: relative;
    inset: auto;
    height: clamp(300px, 62vw, 440px);
    transform: none;
    border-bottom-left-radius: 32px;
    border-bottom-right-radius: 32px;
    overflow: hidden;
  }
  .hero-slide-overlay {
    inset: 0 0 auto 0;
    height: clamp(300px, 62vw, 440px);
    background: linear-gradient(180deg, rgba(7,20,14,.04) 0%, rgba(7,20,14,.08) 70%, rgba(7,20,14,.16) 100%);
  }
  .hero-slide-content {
    display: block;
    height: auto;
    padding: 0 20px 26px;
    margin-top: -24px;
    color: var(--za-black);
  }
  .hero-slide-content::before {
    display: none;
  }
  .hero-slide-panel {
    width: 100%;
    padding: 22px 20px 24px;
    border-radius: 26px;
    background: linear-gradient(180deg, rgba(255,255,255,.98) 0%, #f8f6ef 100%);
    border: 1px solid rgba(15,61,34,.08);
    box-shadow: 0 18px 40px rgba(15,61,34,.1);
  }
  .hero-slide-content .hero-label {
    font-size: .7rem;
    letter-spacing: 2.2px;
    margin-bottom: 12px;
    padding: 6px 10px;
    color: var(--za-forest);
    background: rgba(45,134,89,.08);
    border-color: rgba(45,134,89,.12);
    box-shadow: none;
    backdrop-filter: none;
  }
  .hero-slide-content .hero-label::before {
    width: 16px;
    background: rgba(45,134,89,.55);
  }
  .hero-slide-content h1,
  .hero-slide-content h2 {
    font-size: clamp(1.95rem, 7vw, 2.7rem);
    max-width: none;
    margin-bottom: 12px;
    color: var(--za-black);
    text-shadow: none;
  }
  .hero-slide-content p {
    font-size: .96rem;
    line-height: 1.7;
    max-width: none;
    display: block;
    overflow: visible;
    color: var(--za-gray-700);
    text-shadow: none;
  }
  .hero-slide-content .btn {
    margin-top: 20px;
    padding: 12px 22px;
    font-size: .82rem;
  }
  .hero-nav {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    justify-content: center;
    padding: 0 20px 24px;
  }
  .hero-dot {
    background: rgba(15,61,34,.18);
  }
  .hero-dot.active {
    background: var(--za-forest);
  }
  .contact-form .form-row { grid-template-columns: 1fr; }
  .mission-vision-grid { grid-template-columns: 1fr; }
  .author-box { flex-direction: column; align-items: center; text-align: center; }
  .cta-banner { background-attachment: scroll; }
}

@media (max-width: 480px) {
  .why-grid { grid-template-columns: 1fr; }
  .about-image-wrap {
    padding: 12px 10px 20px;
  }
  .about-image-wrap::before {
    inset: 2px 12px 22px 0;
    border-width: 2px;
  }
  .about-image-wrap::after {
    inset: 9px 0 8px 10px;
    border-width: 1.5px;
  }
  .about-image-wrap img {
    height: 300px;
  }
  .hero-slider { min-height: 520px; }
  .hero-slide-content {
    padding-top: 96px;
    padding-bottom: 72px;
  }
  .hero-slide-content h1,
  .hero-slide-content h2 { font-size: clamp(1.7rem, 8vw, 2.2rem); }
  .hero-slide-content p {
    font-size: .92rem;
    -webkit-line-clamp: 4;
  }
  .hero-nav { bottom: 18px; }
  .hero-label { font-size: .68rem; letter-spacing: 1.9px; }
  .hero-dot { width: 9px; height: 9px; }
  .hero-dot.active { width: 24px; }
  .tour-info-bar { gap: 12px; }
  .tour-tab-btn {
    flex: 1 1 140px;
    min-height: 42px;
    padding: 10px 14px;
    font-size: .8rem;
  }

  .booking-widget-header .price { font-size: 1.6rem; }
}

/* ==========================================================================
   WORDPRESS SPECIFIC
   ========================================================================== */
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: .85rem; color: var(--za-gray-500); margin-top: 6px; }
.alignleft { float: left; margin: 0 20px 16px 0; }
.alignright { float: right; margin: 0 0 16px 20px; }
.aligncenter { display: block; margin: 16px auto; }
.sticky { border-left: 4px solid var(--za-mountain); padding-left: 20px; }
.gallery-item { display: inline-block; width: 33.33%; padding: 4px; }
.screen-reader-text {
  clip: rect(1px,1px,1px,1px);
  clip-path: inset(50%);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  white-space: nowrap;
  word-wrap: normal;
}


/* ==========================================================================
   TOUR REVIEWS — Premium Design
   ========================================================================== */

/* ------------------------------------------------------------------
   Aggregate score bar
   ------------------------------------------------------------------ */
.za-review-summary {
  display: grid;
  grid-template-columns: 120px 1fr;
  align-items: stretch;
  background: linear-gradient(135deg, var(--za-forest-dark) 0%, var(--za-mountain) 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 32px;
  box-shadow: var(--shadow-md);
}
.za-review-avg-score {
  font-family: var(--font-display);
  font-size: 3.8rem;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.18);
  line-height: 1;
}
.za-review-avg-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 20px 24px;
}
.za-review-avg-info .za-star-full,
.za-review-avg-info .za-star-half { color: #fbbf24; }
.za-review-avg-info .za-star-empty { color: rgba(255,255,255,.25); }
.za-review-count {
  font-size: .82rem;
  color: rgba(255,255,255,.65);
  letter-spacing: .3px;
}

/* ------------------------------------------------------------------
   Read-only stars
   ------------------------------------------------------------------ */
.za-stars { display: inline-flex; gap: 2px; }
.za-star  { font-size: 17px; line-height: 1; }
.za-star-full  { color: #f59e0b; }
.za-star-half  { color: #f59e0b; opacity: .5; }
.za-star-empty { color: #d1d5db; }
.za-stars-sm .za-star { font-size: 11px; }

/* ------------------------------------------------------------------
   Review card list
   ------------------------------------------------------------------ */
.za-reviews-list {
  display: flex;
  flex-direction: column;
  border: 1px solid #e8edf0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 44px;
  box-shadow: var(--shadow-sm);
}
.za-review-card {
  background: #fff;
  padding: 22px 24px 18px 28px;
  border-bottom: 1px solid #f1f5f4;
  position: relative;
  transition: background .2s var(--ease);
}
.za-review-card:last-child { border-bottom: none; }
.za-review-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, #f59e0b, #d97706);
  opacity: 0;
  transition: opacity .25s var(--ease);
}
.za-review-card:hover { background: #fafdfb; }
.za-review-card:hover::before { opacity: 1; }

.za-review-card-header {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 12px;
}
.za-reviewer-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--za-forest), var(--za-mountain-light));
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 3px 10px rgba(26,86,50,.22);
}
.za-reviewer-meta { flex: 1; min-width: 0; }
.za-reviewer-meta strong {
  display: block;
  font-size: .95rem;
  color: var(--za-black);
  font-weight: 600;
}
.za-trip-date {
  display: inline-block;
  font-size: .72rem;
  color: var(--za-mountain);
  background: rgba(45,134,89,.08);
  border-radius: 20px;
  padding: 2px 9px;
  margin-top: 3px;
  font-weight: 500;
}
.za-review-card-stars { margin-left: auto; flex-shrink: 0; }
.za-review-posted {
  position: absolute;
  top: 20px; right: 22px;
  font-size: .7rem;
  color: var(--za-gray-500);
}

.za-review-card-body {
  font-size: .92rem;
  color: #4b5563;
  line-height: 1.78;
  margin-bottom: 0;
}
.za-review-card-body p:last-child { margin-bottom: 0; }

.za-review-sub-ratings {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid #f1f5f4;
}
.za-sub-rating {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #f8faf9;
  border: 1px solid #e4ede9;
  border-radius: 20px;
  padding: 4px 11px;
  font-size: .73rem;
  color: #4b5563;
}
.za-sub-rating span { color: #9ca3af; }

/* No reviews yet */
.za-no-reviews {
  text-align: center;
  padding: 52px 24px;
  background: linear-gradient(160deg, #f8fdf9 0%, #f0f9f4 100%);
  border-radius: var(--radius-lg);
  border: 1px solid #d4e8dc;
  margin-bottom: 36px;
}
.za-no-reviews p { color: var(--za-gray-500); margin: 0; font-size: .95rem; }

/* ------------------------------------------------------------------
   Review form — premium shell
   ------------------------------------------------------------------ */
.za-review-form-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(15,61,34,.12);
  border: 1px solid rgba(0,0,0,.07);
}

/* Green header band */
.za-review-form-wrap > h3 {
  background: linear-gradient(135deg, var(--za-forest-dark) 0%, var(--za-mountain) 100%);
  color: #fff;
  font-size: 1.25rem;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -.3px;
  padding: 26px 32px 0;
  margin: 0;
}
.za-form-intro {
  background: linear-gradient(135deg, var(--za-forest-dark) 0%, var(--za-mountain) 100%);
  color: rgba(255,255,255,.7);
  font-size: .875rem;
  padding: 8px 32px 26px;
  margin: 0;
}

/* White form body */
.za-review-form {
  background: #fff;
  padding: 30px 32px 36px;
}

/* 2-col name/email row */
.za-form-row-2 {
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* Form groups */
.za-form-group {
  display: flex !important;
  flex-direction: column !important;
  margin-bottom: 20px;
}
.za-form-group label {
  font-size: .7rem;
  font-weight: 700;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: .9px;
  margin-bottom: 8px;
  font-family: var(--font-accent);
}
.za-req { color: #ef4444; margin-left: 1px; }
.za-form-group small {
  font-size: .72rem;
  color: #9ca3af;
  margin-top: 5px;
}

/* Text inputs */
.za-review-form input[type=text],
.za-review-form input[type=email],
.za-review-form input[type=month] {
  height: 50px;
  padding: 0 16px;
  border: 1.5px solid #e5e7eb;
  border-radius: 10px;
  background: #f9fafb;
  font-size: .94rem;
  color: #111827;
  font-family: var(--font-body);
  outline: none;
  width: 100%;
  transition: border-color .2s, box-shadow .2s, background .2s;
  -webkit-appearance: none;
}
.za-review-form textarea {
  padding: 14px 16px;
  border: 1.5px solid #e5e7eb;
  border-radius: 10px;
  background: #f9fafb;
  font-size: .94rem;
  color: #111827;
  font-family: var(--font-body);
  outline: none;
  width: 100%;
  resize: vertical;
  min-height: 130px;
  line-height: 1.6;
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.za-review-form input:focus,
.za-review-form textarea:focus {
  border-color: var(--za-mountain);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(45,134,89,.09);
}
.za-review-form input::placeholder,
.za-review-form textarea::placeholder { color: #c4c9d4; }

/* Rating section card */
.za-rating-section {
  background: #f9fafb;
  border: 1.5px solid #e5e7eb;
  border-radius: 12px;
  padding: 6px 8px 10px;
  margin-bottom: 20px;
}
.za-rating-section h4 {
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .9px;
  color: #9ca3af;
  font-family: var(--font-accent);
  margin: 12px 8px 10px;
}
.za-rating-grid { display: flex; flex-direction: column; }

.za-rating-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 9px 10px;
  border-radius: 8px;
  transition: background .15s;
}
.za-rating-row:hover { background: #fff; }
.za-rating-label {
  font-size: .86rem;
  color: #374151;
  width: 150px;
  flex-shrink: 0;
  font-weight: 500;
}

/* Interactive stars */
.za-stars-input {
  display: inline-flex;
  flex-direction: row-reverse;
  gap: 0;
}
.za-star-btn {
  background: none !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  font-size: 32px !important;
  color: #e5e7eb !important;
  cursor: pointer;
  padding: 0 3px;
  line-height: 1;
  transition: color .1s, transform .12s;
  -webkit-appearance: none !important;
  appearance: none !important;
  display: inline-block;
  font-family: inherit;
}
.za-stars-input .za-star-btn {
  background: none !important;
  border: none !important;
  box-shadow: none !important;
}
.za-star-btn.hovered {
  color: #fbbf24;
  transform: scale(1.25);
}
.za-star-btn.selected { color: #f59e0b; }

.za-rating-text {
  font-size: .78rem;
  font-weight: 700;
  min-width: 70px;
  color: var(--za-mountain);
  letter-spacing: .2px;
}

/* Submit button */
.za-submit-btn {
  width: 100%;
  display: flex !important;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: .97rem !important;
  padding: 16px 32px !important;
  border-radius: 10px !important;
  margin-top: 6px;
  letter-spacing: .3px;
  box-shadow: 0 4px 18px rgba(26,86,50,.25);
  transition: transform .2s, box-shadow .2s, background .2s !important;
}
.za-submit-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(26,86,50,.32) !important;
}
.za-submit-btn svg { width: 16px; height: 16px; }

/* Mobile */
@media (max-width: 680px) {
  .za-review-form { padding: 22px 18px 28px; }
  .za-review-form-wrap > h3 { padding: 22px 18px 0; font-size: 1.1rem; }
  .za-form-intro { padding: 6px 18px 20px; }
  .za-form-row-2 { grid-template-columns: 1fr; gap: 0; }
  .za-rating-label { width: 115px; font-size: .82rem; }
  .za-star-btn { font-size: 28px; }
  .za-review-summary { grid-template-columns: 90px 1fr; }
  .za-review-avg-score { font-size: 2.8rem; }
  .za-review-posted { position: static; margin-top: 8px; display: block; }
  .za-review-card { padding: 18px 16px 16px; }
}

/* ==================================================================
   ABOUT PAGE: Full-width story (no featured image)
   ================================================================== */
.about-story--full {
  grid-template-columns: 1fr;
}

/* ==================================================================
   ABOUT PAGE: Founder Section
   ================================================================== */
.za-founder-section {
  background: var(--za-off-white);
}
.za-founder-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 60px;
  align-items: start;
  margin-top: 48px;
}

/* Portrait frame */
.za-founder-portrait {
  text-align: center;
}
.za-portrait-frame {
  position: relative;
  width: 280px;
  height: 340px;
  margin: 0 auto 24px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 5px solid var(--za-white);
  outline: 2px solid var(--za-mountain);
  outline-offset: 0;
}
.za-portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.za-portrait-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, var(--za-forest) 0%, var(--za-forest-dark) 100%);
}
.za-portrait-placeholder svg {
  width: 64px;
  height: 64px;
  color: rgba(255,255,255,.3);
}

/* Nameplate under photo */
.za-founder-nameplate h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--za-black);
  margin: 0 0 4px;
}
.za-founder-nameplate span {
  font-family: var(--font-accent);
  font-size: .9rem;
  color: var(--za-forest);
  letter-spacing: .04em;
  text-transform: uppercase;
  font-weight: 600;
}

/* Bio and quote */
.za-founder-bio p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--za-gray-700);
}
.za-founder-quote {
  margin: 28px 0 32px;
  padding: 20px 24px;
  border-left: 4px solid var(--za-mountain);
  background: var(--za-white);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.za-founder-quote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--za-forest-dark);
  margin: 0;
}

/* Inline stats row */
.za-founder-stats {
  display: flex;
  gap: 0;
  border-top: 1px solid var(--za-gray-300);
  padding-top: 28px;
  margin-top: 8px;
}
.za-fstat {
  flex: 1;
  text-align: center;
  padding: 0 16px;
  position: relative;
}
.za-fstat + .za-fstat::before {
  content: '';
  position: absolute;
  left: 0;
  top: 2px;
  bottom: 2px;
  width: 1px;
  background: var(--za-gray-300);
}
.za-fstat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--za-forest);
  line-height: 1.2;
}
.za-fstat span {
  display: block;
  font-size: .78rem;
  color: var(--za-gray-500);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-top: 4px;
}

/* Responsive */
@media (max-width: 900px) {
  .za-founder-layout {
    grid-template-columns: 1fr;
    gap: 36px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 500px) {
  .za-portrait-frame {
    width: 220px;
    height: 270px;
  }
  .za-founder-stats {
    flex-direction: column;
    gap: 20px;
  }
  .za-fstat + .za-fstat::before {
    display: none;
  }
  .za-fstat {
    padding: 0;
  }
}