  /* ============================================================
     DESIGN TOKENS
  ============================================================ */
  :root {
    --terracotta: #B33C0A;
    --terracotta-dark: #8F2F08;
    --gold: #D4A017;
    --gold-light: #E8C56E;
    --midnight: #1A2744;
    --midnight-dark: #0F1828;
    --sand: #F5EDD8;
    --sand-dark: #EBD9B4;
    --cream: #FDFAF4;
    --charcoal: #2C2420;
    --muted: #7A6B60;
    --white: #FFFFFF;
    --glass: rgba(255, 255, 255, 0.92);
    --glass-border: rgba(0, 0, 0, 0.06);

    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'DM Sans', -apple-system, sans-serif;

    --radius: 8px;
    --radius-lg: 16px;
    --shadow: 0 8px 32px rgba(28, 18, 10, 0.12);
    --shadow-lg: 0 20px 60px rgba(28, 18, 10, 0.22);
    --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  /* ============================================================
     RESET & BASE
  ============================================================ */
  *,
  *::before,
  *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  html {
    scroll-behavior: smooth;
    font-size: 16px;
  }

  body {
    font-family: var(--font-body);
    background: var(--cream);
    color: var(--charcoal);
    line-height: 1.65;
    overflow-x: hidden;
  }

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

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

  h1,
  h2,
  h3,
  h4 {
    font-family: var(--font-display);
    line-height: 1.15;
  }

  /* ============================================================
     UTILITY
  ============================================================ */
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
  }

  .section {
    padding: 80px 0;
  }

  .section--dark {
    background: var(--midnight);
    color: var(--sand);
  }

  .section--sand {
    background: var(--sand);
  }

  .section--cream {
    background: var(--cream);
  }

  .label {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
  }

  .section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    margin: 8px 0 16px;
  }

  .section-subtitle {
    font-size: 1.05rem;
    color: var(--muted);
    max-width: 560px;
    font-weight: 300;
  }

  .section-header {
    margin-bottom: 48px;
  }

  .section-header--center {
    text-align: center;
  }

  .section-header--center .section-subtitle {
    margin: 0 auto;
  }

  .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    border-radius: var(--radius);
  }

  .btn--primary {
    background: var(--terracotta);
    color: var(--white);
  }

  .btn--primary:hover {
    background: var(--terracotta-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
  }

  .btn--outline {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.6);
  }

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

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

  .btn--gold:hover {
    background: #a97820;
    transform: translateY(-2px);
  }

  .stars {
    color: var(--gold);
    font-size: 13px;
    letter-spacing: 1px;
  }

  /* SVG Icon base */
  .icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
  }

  /* ============================================================
     NAVBAR — WHITE VARIANT
  ============================================================ */
  .navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0 40px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--glass);
    box-shadow: 0 1px 20px rgba(44, 36, 32, 0.06);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
  }

  .navbar.scrolled {
    background: var(--glass);
    backdrop-filter: blur(20px);
    box-shadow: 0 1px 24px rgba(44, 36, 32, 0.10);
    border-bottom: 1px solid var(--glass-border);
  }

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

  .navbar-logo img {
    height: 42px;
    /* Real logo colors — no filter */
  }

  .navbar-logo-text {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--charcoal);
    line-height: 1.2;
  }

  .navbar-logo-text span {
    display: block;
    font-size: 11px;
    font-weight: 300;
    letter-spacing: 0.14em;
    color: #8B6914;
    /* Dark gold — 5.1:1 contrast on white, passes WCAG AA */
    text-transform: uppercase;
  }

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

  .nav-links a {
    color: var(--charcoal);
    font-size: 12.5px;
    font-weight: 500;
    letter-spacing: 0.06em;
    padding: 8px 14px;
    border-radius: var(--radius);
    text-transform: uppercase;
    transition: var(--transition);
  }

  .nav-links a:hover {
    color: var(--terracotta);
    background: rgba(193, 68, 14, 0.06);
  }


  .nav-cta {
    background: var(--terracotta) !important;
    color: var(--white) !important;
    border-radius: var(--radius) !important;
    padding: 9px 18px !important;
  }

  .nav-cta:hover {
    background: var(--terracotta-dark) !important;
  }


  .navbar-mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 200;
  }

  .hamburger {
    width: 24px;
    height: 2px;
    background: var(--charcoal);
    display: block;
    position: relative;
    transition: var(--transition);
  }

  .hamburger::before,
  .hamburger::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--charcoal);
    transition: var(--transition);
  }

  .hamburger::before {
    top: -7px;
  }

  .hamburger::after {
    top: 7px;
  }


  /* Mobile nav open states */
  .navbar.mobile-open .hamburger {
    background: transparent;
  }

  .navbar.mobile-open .hamburger::before {
    top: 0;
    transform: rotate(45deg);
    background: var(--charcoal);
  }

  .navbar.mobile-open .hamburger::after {
    top: 0;
    transform: rotate(-45deg);
    background: var(--charcoal);
  }

  .mobile-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    padding: 100px 32px 40px;
    flex-direction: column;
    gap: 4px;
  }

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

  .mobile-nav-overlay a {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--charcoal);
    padding: 14px 0;
    border-bottom: 1px solid var(--sand-dark);
    transition: color 0.2s;
  }

  .mobile-nav-overlay a:hover {
    color: var(--terracotta);
  }

  .mobile-nav-overlay .nav-cta {
    margin-top: 16px;
    text-align: center;
    justify-content: center;
    font-size: 14px !important;
    padding: 14px 28px !important;
    border-bottom: none;
    border-radius: var(--radius) !important;
  }

  /* ============================================================
     HERO
  ============================================================ */
  .hero {
    position: relative;
    height: 100vh;
    min-height: 640px;
    display: flex;
    align-items: center;
    overflow: hidden;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    animation: heroZoom 14s ease-out forwards;
    filter: brightness(0.85) contrast(1.1);
  }

  @keyframes heroZoom {
    to {
      transform: scale(1);
    }
  }

  .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(15, 24, 40, 0.82) 0%,
        rgba(26, 39, 68, 0.55) 50%,
        rgba(193, 68, 14, 0.25) 100%);
  }

  .hero-grain {
    position: absolute;
    inset: 0;
    opacity: 0.5;
    pointer-events: none;
  }

  /* Sand particle overlay */
  .hero-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: radial-gradient(circle, rgba(245, 237, 216, 0.06) 1px, transparent 1px);
    background-size: 80px 80px;
    animation: sandDrift 60s linear infinite;
    pointer-events: none;
  }

  @keyframes sandDrift {
    0% {
      background-position: 0 0;
    }

    100% {
      background-position: 200px 200px;
    }
  }

  .hero-content {
    position: relative;
    z-index: 2;
    padding: 0 40px;
    max-width: 760px;
    margin-left: 10%;
    animation: heroFadeUp 1.2s 0.2s both ease-out;
  }

  @keyframes heroFadeUp {
    from {
      opacity: 0;
      transform: translateY(40px);
    }

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

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(200, 146, 42, 0.2);
    border: 1px solid rgba(200, 146, 42, 0.5);
    color: var(--gold-light);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 7px 16px;
    border-radius: 100px;
    margin-bottom: 28px;
  }

  .hero-badge::before {
    content: '★';
    font-size: 12px;
  }

  .hero-title {
    font-family: var(--font-display);
    font-size: clamp(3.2rem, 7.5vw, 6.2rem);
    font-weight: 300;
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 8px;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
  }

  .hero-title em {
    font-style: italic;
    color: var(--gold-light);
  }

  .hero-subtitle {
    font-size: clamp(1rem, 1.6vw, 1.2rem);
    color: rgba(245, 237, 216, 0.88);
    font-weight: 300;
    margin: 20px 0 36px;
    max-width: 520px;
  }

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

  .hero-scroll {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    animation: bounce 2.4s infinite;
    cursor: pointer;
  }

  .hero-scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid rgba(255, 255, 255, 0.5);
    border-bottom: 2px solid rgba(255, 255, 255, 0.5);
    transform: rotate(45deg);
  }

  @keyframes bounce {

    0%,
    100% {
      transform: translateX(-50%) translateY(0);
    }

    50% {
      transform: translateX(-50%) translateY(8px);
    }
  }

  /* Trust bar under hero */
  .trust-bar {
    background: var(--midnight);
    padding: 22px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .trust-bar-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }

  .trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0 32px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
  }

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

  .trust-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(200, 146, 42, 0.12);
    border-radius: 10px;
  }

  .trust-icon svg {
    width: 22px;
    height: 22px;
  }

  .trust-text strong {
    display: block;
    color: var(--white);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.2;
  }

  .trust-text span {
    font-size: 11.5px;
    color: rgba(245, 237, 216, 0.55);
  }

  /* ============================================================
     AIO: QUICK ANSWER BLOCK
  ============================================================ */
  .quick-answer {
    background: var(--white);
    border: 1px solid var(--sand-dark);
    border-left: 4px solid var(--terracotta);
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
    padding: 24px 28px;
    margin-bottom: 48px;
    max-width: 780px;
  }

  .quick-answer p {
    font-size: 15px;
    color: var(--charcoal);
    line-height: 1.7;
    font-weight: 300;
  }

  .quick-answer strong {
    font-weight: 600;
    color: var(--charcoal);
  }

  .quick-answer-label {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: 8px;
    display: block;
  }

  /* ============================================================
     QUICK SEARCH / TRIP FINDER
  ============================================================ */
  .trip-finder {
    background: var(--terracotta);
    padding: 32px 0;
  }

  .trip-finder-inner {
    display: flex;
    gap: 12px;
    align-items: flex-end;
  }

  .tf-group {
    flex: 1;
  }

  .tf-group label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 6px;
  }

  .tf-group select,
  .tf-group input {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 14px;
    appearance: none;
    cursor: pointer;
    transition: var(--transition);
  }

  .tf-group select:focus,
  .tf-group input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.22);
  }

  .tf-group select option {
    background: var(--midnight);
    color: var(--white);
  }

  .trip-finder .btn {
    white-space: nowrap;
    padding: 13px 32px;
    background: var(--midnight);
    color: var(--white);
    height: 48px;
    flex-shrink: 0;
  }

  .trip-finder .btn:hover {
    background: var(--midnight-dark);
    transform: none;
    box-shadow: none;
  }

  /* ============================================================
     TOUR SECTIONS
  ============================================================ */
  .tours-tabs {
    display: flex;
    gap: 4px;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--sand-dark);
    padding-bottom: 0;
  }

  .tour-tab {
    position: relative;
    background: none;
    border: none;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--muted);
    padding: 12px 20px;
    cursor: pointer;
    transition: var(--transition);
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
  }

  .tour-tab::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gold);
    border-radius: 3px 3px 0 0;
    transition: width 0.4s ease;
  }

  .tour-tab:hover {
    color: var(--charcoal);
  }

  .tour-tab.active {
    color: var(--terracotta);
    border-bottom-color: transparent;
  }

  .tour-tab.active::after {
    width: 100%;
  }

  .tours-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .tours-grid-title {
    grid-column: 1 / -1;
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--charcoal);
    padding-bottom: 10px;
    border-bottom: 2px solid var(--gold);
    margin-top: 8px;
  }

  .tours-grid-title:first-child {
    margin-top: 0;
  }

  .tours-grid-title span {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--muted);
  }

  .tour-card {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
  }

  .tour-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -100%;
    width: 50%;
    height: 300%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.35), transparent);
    transform: skewX(-25deg);
    transition: left 0.7s;
    pointer-events: none;
    z-index: 3;
  }

  .tour-card:hover::after {
    left: 200%;
  }

  .tour-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
  }

  .tour-card[hidden] {
    display: none;
  }

  .tour-card-img {
    position: relative;
    height: 200px;
    overflow: hidden;
  }

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

  .tour-card:hover .tour-card-img img {
    transform: scale(1.06);
  }

  .tour-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--terracotta);
    color: var(--white);
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 100px;
  }

  .tour-badge--shared {
    background: var(--midnight);
  }

  .tour-badge--trekking {
    background: #3a7a44;
  }

  .tour-badge--daytrip {
    background: var(--gold);
  }

  .tour-duration {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.55);
    color: var(--white);
    font-size: 11px;
    font-weight: 500;
    padding: 4px 10px;
    border-radius: 100px;
    backdrop-filter: blur(4px);
  }

  /* Floating price badge on card image */
  .tour-price-badge {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(179, 60, 10, 0.92);
    color: white;
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 999px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
    z-index: 2;
    backdrop-filter: blur(4px);
  }

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

  .tour-card-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.25;
  }

  .tour-card-title a {
    color: var(--charcoal);
    transition: color 0.2s;
  }

  .tour-card-title a:hover {
    color: var(--terracotta);
  }

  .tour-card-desc {
    font-size: 13.5px;
    color: var(--muted);
    line-height: 1.55;
    margin-bottom: 16px;
    font-weight: 300;
  }

  .tour-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid var(--sand-dark);
  }

  .tour-price {
    font-family: var(--font-display);
  }

  .tour-price .from {
    font-size: 11px;
    color: var(--muted);
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }

  .tour-price .amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--terracotta);
    line-height: 1;
  }

  .tour-reviews {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 3px;
  }

  .tour-reviews span {
    font-size: 11px;
    color: var(--muted);
  }

  .tours-cta {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 12px;
    margin-top: 40px;
    flex-wrap: wrap;
  }

  .tours-cta .btn {
    flex: 1 1 0;
    max-width: 320px;
    min-width: 200px;
    justify-content: center;
    text-align: center;
    white-space: nowrap;
    box-sizing: border-box;
  }

  @media (max-width: 480px) {
    .tours-cta {
      flex-direction: column;
      align-items: center;
    }

    .tours-cta .btn {
      max-width: 100%;
      width: 100%;
      min-width: 0;
    }
  }

  /* No results message for tabs */
  .no-tours {
    grid-column: 1 / -1;
    text-align: center;
    padding: 48px 24px;
    color: var(--muted);
    font-size: 15px;
  }

  .no-tours a {
    color: var(--terracotta);
    font-weight: 600;
  }

  /* ============================================================
     COMPARISON TABLE (GEO)
  ============================================================ */
  .comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    margin-top: 32px;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  }

  .comparison-table thead {
    background: var(--midnight);
    color: var(--sand);
  }

  .comparison-table th {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    padding: 16px 20px;
    text-align: left;
  }

  .comparison-table td {
    padding: 14px 20px;
    border-bottom: 1px solid var(--sand-dark);
    color: var(--charcoal);
    line-height: 1.5;
    font-weight: 300;
  }

  .comparison-table tbody tr:last-child td {
    border-bottom: none;
  }

  .comparison-table tbody tr:hover {
    background: rgba(245, 237, 216, 0.35);
  }

  .comparison-label {
    font-weight: 600;
    color: var(--charcoal);
    white-space: nowrap;
  }

  /* ============================================================
     DIFFICULTY TABLE & SEASONAL TABLE
  ============================================================ */
  .diff-table,
  .season-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--sand-dark);
    margin-top: 20px;
  }

  .diff-table th,
  .season-table th {
    background: var(--midnight);
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-align: left;
    padding: 12px 16px;
  }

  .season-table th {
    padding: 10px 14px;
  }

  .diff-table td {
    padding: 12px 16px;
    font-size: 0.85rem;
    color: var(--charcoal);
    border-bottom: 1px solid var(--sand-dark);
  }

  .season-table td {
    padding: 10px 14px;
    font-size: 0.82rem;
    color: var(--charcoal);
    border-bottom: 1px solid var(--sand-dark);
  }

  .diff-table tr:last-child td,
  .season-table tr:last-child td {
    border-bottom: none;
  }

  .diff-table tr:hover td {
    background: rgba(245, 237, 216, 0.3);
  }

  .diff-grade,
  .season-badge {
    display: inline-block;
    border-radius: 20px;
  }

  .diff-grade {
    padding: 3px 10px;
    font-size: 0.72rem;
    font-weight: 600;
  }

  .grade-easy {
    background: rgba(46, 123, 106, 0.1);
    color: #1e5a4c;
  }

  .grade-mod {
    background: rgba(201, 149, 42, 0.12);
    color: #8b6010;
  }

  .grade-hard {
    background: rgba(193, 68, 14, 0.1);
    color: var(--terracotta);
  }

  /* Responsive Tables */
  @media (max-width: 900px) {

    .diff-table,
    .season-table,
    .comparison-table {
      display: block;
      overflow-x: auto;
      white-space: nowrap;
      -webkit-overflow-scrolling: touch;
    }

    .diff-table td,
    .season-table td {
      white-space: normal;
      /* Let the content wrap if there is enough space, or let it stretch the columns */
      min-width: 140px;
      /* Ensure columns don't crush */
    }

    .diff-table th,
    .season-table th {
      min-width: 140px;
    }
  }

  .season-badge {
    padding: 2px 8px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.05em;
  }

  .season-peak {
    background: rgba(46, 123, 106, 0.12);
    color: #1e5a4c;
  }

  .season-good {
    background: rgba(201, 149, 42, 0.12);
    color: #8b6010;
  }

  .season-winter {
    background: rgba(74, 96, 128, 0.12);
    color: #2a4060;
  }

  .season-avoid {
    background: rgba(193, 68, 14, 0.08);
    color: var(--terracotta);
  }

  /* ============================================================
     WHY CHOOSE US
  ============================================================ */
  .why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }

  .why-card {
    text-align: center;
    padding: 36px 24px 32px;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(245, 237, 216, 0.08);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
  }

  .why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--terracotta), var(--gold));
    opacity: 0;
    transition: opacity 0.4s;
  }

  .why-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(200, 146, 42, 0.25);
    transform: translateY(-4px);
  }

  .why-card:hover::before {
    opacity: 1;
  }

  .why-accent {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 16px;
    line-height: 1;
  }

  .why-accent span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--gold-light);
  }

  .why-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(200, 146, 42, 0.12);
    border-radius: 50%;
    color: var(--gold-light);
  }

  .why-icon svg {
    width: 22px;
    height: 22px;
  }

  .why-card h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--sand);
    margin-bottom: 10px;
  }

  .why-card p {
    font-size: 13.5px;
    color: rgba(245, 237, 216, 0.6);
    font-weight: 300;
    line-height: 1.6;
  }

  /* ============================================================
     EXPERIENCE SPLIT SECTION
  ============================================================ */
  .experience {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .experience-img {
    position: relative;
    min-height: 500px;
    overflow: hidden;
  }

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

  .experience-content {
    background: var(--sand);
    display: flex;
    align-items: center;
    padding: 80px 64px;
  }

  .experience-content .section-subtitle {
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 24px;
  }

  .experience-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin: 32px 0;
  }

  .stat {
    border-left: 3px solid var(--gold);
    padding-left: 16px;
  }

  .stat strong {
    display: block;
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--terracotta);
    line-height: 1;
  }

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


  /* GEO/E-E-A-T: Author byline */
  .author-byline {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--sand-dark);
  }

  .author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--terracotta), var(--gold));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
  }

  .author-info {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.5;
  }

  .author-info strong {
    display: block;
    color: var(--charcoal);
    font-size: 14px;
    font-weight: 600;
  }

  .author-info a {
    color: var(--terracotta);
    font-weight: 500;
  }

  /* ============================================================
     TESTIMONIALS
  ============================================================ */
  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    position: relative;
  }

  .testimonial-card::before {
    content: '\201C';
    font-family: var(--font-display);
    font-size: 5rem;
    color: var(--sand-dark);
    position: absolute;
    top: 8px;
    left: 20px;
    line-height: 1;
  }

  .testimonial-text {
    font-size: 14.5px;
    color: var(--charcoal);
    font-style: italic;
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.7;
    margin-bottom: 20px;
    padding-top: 32px;
  }

  .testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--sand-dark);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .testimonial-avatar-initials {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--terracotta), var(--gold));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--white);
    font-size: 14px;
    flex-shrink: 0;
  }

  .testimonial-name {
    font-weight: 600;
    font-size: 13.5px;
  }

  .testimonial-meta {
    font-size: 12px;
    color: var(--muted);
  }

  .platform-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-top: 3px;
    color: var(--terracotta);
    transition: color 0.2s;
  }

  a.platform-badge:hover {
    color: var(--terracotta-dark);
  }

  /* ============================================================
     FAQ
  ============================================================ */
  .faq-list {
    max-width: 780px;
    margin: 0 auto;
  }

  .faq-item {
    border-bottom: 1px solid var(--sand-dark);
  }

  .faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 22px 0;
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--charcoal);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: color 0.2s;
  }

  .faq-question:hover {
    color: var(--terracotta);
  }

  .faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--sand);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--terracotta);
    flex-shrink: 0;
    transition: var(--transition);
  }

  .faq-item.open .faq-icon {
    transform: rotate(45deg);
    background: var(--terracotta);
    color: white;
  }

  .faq-answer {
    display: none;
    font-size: 14.5px;
    color: var(--muted);
    line-height: 1.75;
    padding: 0 0 22px;
    font-weight: 300;
  }

  .faq-answer.visible {
    display: block;
    animation: fadeIn 0.25s ease;
  }

  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(-6px);
    }

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

  /* ============================================================
     BLOG / GUIDES
  ============================================================ */
  .blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .blog-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--sand-dark);
    transition: var(--transition);
  }

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

  .blog-card-img {
    height: 180px;
    overflow: hidden;
  }

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

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

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

  .blog-category {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: 8px;
  }

  .blog-card-title {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.3;
  }

  .blog-card-title a {
    color: var(--charcoal);
  }

  .blog-card-title a:hover {
    color: var(--terracotta);
  }

  .blog-card-excerpt {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6;
    font-weight: 300;
  }

  /* ============================================================
     CTA BAND
  ============================================================ */
  .cta-band {
    background: linear-gradient(135deg, var(--terracotta) 0%, #9A3509 100%);
    padding: 72px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .cta-band::before {
    content: '';
    position: absolute;
    inset: 0;
  }

  .cta-band-inner {
    position: relative;
    z-index: 1;
  }

  .cta-band h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 300;
    color: var(--white);
    margin-bottom: 16px;
  }

  .cta-band p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin-bottom: 36px;
    font-weight: 300;
  }

  .cta-band-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
  }

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

  .btn--white:hover {
    background: var(--sand);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
  }

  .btn--outline-white {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.6);
  }

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

  /* ============================================================
     FOOTER — WHITE VARIANT
  ============================================================ */
  .footer {
    background: var(--white);
    color: var(--muted);
    padding: 64px 0 0;
    border-top: 1px solid var(--sand-dark);
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
  }

  .footer-brand-desc {
    font-size: 13.5px;
    line-height: 1.7;
    font-weight: 300;
    margin: 16px 0 24px;
    color: var(--muted);
  }

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

  .social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--sand-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: var(--muted);
  }

  .social-icon:hover {
    background: var(--terracotta);
    border-color: var(--terracotta);
    color: var(--white);
  }

  .social-icon svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
    stroke: none;
  }

  .footer-heading {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--charcoal);
    margin-bottom: 20px;
  }

  .footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .footer-links a {
    font-size: 13.5px;
    font-weight: 300;
    color: var(--muted);
    transition: color 0.2s;
  }

  .footer-links a:hover {
    color: var(--terracotta);
  }

  .footer-bottom {
    border-top: 1px solid var(--sand-dark);
    padding: 22px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12.5px;
    color: var(--muted);
  }

  .footer-bottom-links {
    display: flex;
    gap: 20px;
  }

  .footer-bottom-links a {
    color: var(--muted);
    transition: color 0.2s;
  }

  .footer-bottom-links a:hover {
    color: var(--terracotta);
  }

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

  .footer-brand-logo img {
    height: 36px;
    /* Real logo colors — no filter */
  }


  /* ============================================================
     LANGUAGE SWITCHER — NAVBAR
  ============================================================ */
  .nav-lang-switcher {
    position: relative;
    margin-left: 4px;
  }

  .nav-lang-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    background: none;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--radius);
    padding: 6px 10px;
    font-family: var(--font-body);
    font-size: 11.5px;
    font-weight: 600;
    color: var(--charcoal);
    cursor: pointer;
    letter-spacing: 0.08em;
    transition: var(--transition);
  }

  .nav-lang-btn:hover {
    border-color: var(--terracotta);
    color: var(--terracotta);
  }

  .nav-lang-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    min-width: 150px;
    z-index: 300;
    overflow: hidden;
  }

  .nav-lang-dropdown.open {
    display: block;
  }

  .nav-lang-dropdown a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    font-size: 13px !important;
    font-weight: 500 !important;
    color: var(--charcoal) !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    transition: background 0.2s;
  }

  .nav-lang-dropdown a:hover {
    background: rgba(193, 68, 14, 0.06);
    color: var(--terracotta) !important;
  }

  .nav-lang-dropdown a.lang-active {
    font-weight: 600 !important;
    color: var(--terracotta) !important;
  }

  .lang-flag {
    font-size: 18px;
    line-height: 1;
  }

  /* ============================================================
     LANGUAGE BAR — MOBILE NAV
  ============================================================ */
  .mobile-lang-bar {
    display: flex;
    gap: 16px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
  }

  .mobile-lang-bar a {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 1rem !important;
    font-weight: 500 !important;
    color: var(--charcoal) !important;
    opacity: 0.6;
    transition: opacity 0.2s;
  }

  .mobile-lang-bar a:hover,
  .mobile-lang-bar a.lang-active {
    opacity: 1;
  }

  .mobile-lang-bar a.lang-active {
    color: var(--terracotta) !important;
    font-weight: 600 !important;
  }

  .mobile-lang-bar .lang-flag {
    font-size: 22px;
  }

  /* ============================================================
     LANGUAGE BAR — FOOTER
  ============================================================ */
  .footer-lang-bar {
    display: flex;
    gap: 8px;
  }

  .footer-lang-link {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    font-size: 12px;
    font-weight: 500;
    color: var(--muted);
    transition: var(--transition);
  }

  .footer-lang-link:hover {
    border-color: var(--gold);
    color: var(--sand);
  }

  .footer-lang-link.lang-active {
    border-color: var(--gold);
    color: var(--sand);
    background: rgba(200, 146, 42, 0.12);
  }

  .footer-lang-link .lang-flag {
    font-size: 16px;
  }


  .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  /* ============================================================
     TRIP FINDER — RESULTS COUNTER & NO RESULTS
  ============================================================ */
  .filter-status {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding: 10px 18px;
    background: rgba(212, 160, 23, 0.06);
    border-left: 3px solid var(--gold);
    border-radius: var(--radius);
    font-size: 13.5px;
    color: var(--charcoal);
    transition: background 0.3s;
  }

  .filter-status.has-filters {
    background: rgba(212, 160, 23, 0.12);
  }

  .filter-status strong {
    color: var(--terracotta);
  }

  .filter-reset {
    background: none;
    border: none;
    color: var(--terracotta);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 2px;
  }

  .filter-reset:hover {
    color: var(--terracotta-dark);
  }

  .no-tours-msg {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 24px;
    color: var(--muted);
  }

  .no-tours-msg h3 {
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 8px;
    color: var(--charcoal);
  }

  .no-tours-msg p {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .no-tours-msg .btn {
    font-size: 12px;
  }

  .tour-card.filtered-out {
    display: none !important;
  }

  .trip-finder-inner {
    position: relative;
  }

  .tf-active-dot {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--terracotta);
    display: none;
  }

  /* ============================================================
     WHATSAPP FLOATING BUTTON
  ============================================================ */
  .whatsapp-float {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 90;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 20px 0 0;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--white);
    border: none;
    cursor: pointer;
    border-radius: 50px;
    box-shadow: 0 4px 24px rgba(37, 211, 102, 0.45);
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
    height: 56px;
    overflow: hidden;
  }

  .whatsapp-float:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.6);
  }

  .whatsapp-float-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
  }

  .whatsapp-float-icon svg {
    width: 28px;
    height: 28px;
    fill: white;
  }

  .whatsapp-float-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
  }

  .whatsapp-float-text strong {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.02em;
  }

  .whatsapp-float-text span {
    font-family: var(--font-display);
    font-size: 12.5px;
    font-weight: 400;
    font-style: italic;
    opacity: 0.9;
  }

  @media (max-width: 480px) {
    .whatsapp-float {
      padding: 0;
      width: 56px;
    }

    .whatsapp-float-text {
      display: none;
    }
  }

  /* ============================================================
     BACK TO TOP
  ============================================================ */
  .back-to-top {
    position: fixed;
    bottom: 100px;
    right: 32px;
    z-index: 90;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--terracotta);
    color: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(193, 68, 14, 0.3);
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.3s, transform 0.3s, background 0.2s;
    pointer-events: none;
  }

  .back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .back-to-top:hover {
    background: var(--terracotta-dark);
  }

  .back-to-top svg {
    width: 20px;
    height: 20px;
  }

  /* ============================================================
     RESPONSIVE
  ============================================================ */
  @media (max-width: 1920px) {
    .navbar-logo-text {
      display: none;
    }
  }

  @media (max-width: 1024px) {
    .navbar {
      padding: 0 20px;
    }

    .nav-links {
      display: none;
    }

    .nav-lang-switcher {
      display: none;
    }

    .navbar-mobile-toggle {
      display: block;
    }

    .footer-grid {
      grid-template-columns: 1fr 1fr;
      gap: 32px;
    }

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

    .trust-item {
      border-right: none;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      padding: 16px 24px;
    }

    .trust-item:nth-child(odd) {
      border-right: 1px solid rgba(255, 255, 255, 0.08);
    }

    .comparison-table {
      font-size: 13px;
    }

    .comparison-table th,
    .comparison-table td {
      padding: 12px 14px;
    }
  }

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

    .testimonials-grid {
      grid-template-columns: 1fr 1fr;
    }

    .blog-grid {
      grid-template-columns: 1fr 1fr;
    }

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

    .experience {
      grid-template-columns: 1fr;
    }

    .experience-img {
      min-height: 300px;
    }

    .experience-content {
      padding: 48px 32px;
    }

    .trip-finder-inner {
      flex-wrap: wrap;
    }

    .trip-finder .btn {
      width: 100%;
      justify-content: center;
    }

    .comparison-table {
      display: block;
      overflow-x: auto;
    }
  }

  @media (max-width: 768px) {
    .hero-content {
      padding: 0 24px;
      margin-left: 0;
    }

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

    .testimonials-grid {
      grid-template-columns: 1fr;
    }

    .blog-grid {
      grid-template-columns: 1fr;
    }

    .footer-grid {
      grid-template-columns: 1fr;
      gap: 32px;
    }

    .footer-bottom {
      flex-direction: column;
      gap: 12px;
      text-align: center;
    }

    .trust-bar-inner {
      grid-template-columns: 1fr;
    }

    .trust-item {
      border-right: none !important;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .experience-stats {
      grid-template-columns: 1fr 1fr;
    }

    .why-grid {
      grid-template-columns: 1fr;
    }
  }


  /* CATEGORY HERO */
  .cat-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    /*padding-top: 120px;*/
    box-sizing: border-box;
  }

  .cat-hero .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 24, 40, 0.82) 0%, rgba(26, 39, 68, 0.55) 50%, rgba(193, 68, 14, 0.25) 100%);
  }

  .cat-hero .hero-grain {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    opacity: 0.5;
    pointer-events: none;
  }

  .cat-hero .hero-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: radial-gradient(circle, rgba(245, 237, 216, 0.06) 1px, transparent 1px);
    background-size: 80px 80px;
    animation: sandDrift 60s linear infinite;
    pointer-events: none;
  }

  .cat-hero .hero-content {
    position: relative;
    z-index: 2;
    padding: 0 40px;
    max-width: 720px;
    margin-left: 10%;
    animation: heroFadeUp 1.2s 0.2s both ease-out;
  }

  .cat-hero .hero-scroll {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    animation: bounce 2.4s infinite;
    cursor: pointer;
  }

  .cat-hero .hero-scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid rgba(255, 255, 255, 0.5);
    border-bottom: 2px solid rgba(255, 255, 255, 0.5);
    transform: rotate(45deg);
  }

  .cat-hero-badge {
    display: inline-block;
    background: rgba(30, 40, 20, 0.55);
    border: 1px solid rgba(200, 146, 42, 0.6);
    color: #E8C56E;
    font-family: var(--font-body);
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 8px 20px;
    border-radius: 100px;
    margin-bottom: 20px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
  }

  .cat-hero-breadcrumb {
    font-size: 13px;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.95);
  }

  .cat-hero-breadcrumb a {
    color: var(--gold-light);
    font-weight: 500;
  }

  .cat-hero-breadcrumb a:hover {
    text-decoration: underline;
  }

  .cat-hero-breadcrumb strong {
    color: var(--white);
    font-weight: 600;
  }

  .cat-hero-stats {
    display: flex;
    gap: 32px;
    margin-top: 24px;
  }

  .cat-hero-stat {
    text-align: center;
  }

  .cat-hero-stat-val {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--gold-light);
  }

  .cat-hero-stat-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.75;
    color: var(--white);
  }

  .btn--outline-dark {
    background: transparent;
    color: var(--charcoal);
    border: 1.5px solid var(--charcoal);
  }

  .btn--outline-dark:hover {
    background: var(--charcoal);
    color: var(--white);
    transform: translateY(-2px);
  }

  @media (max-width: 768px) {
    .cat-hero .hero-content {
      padding: 80px 24px 40px;
      margin-left: 0;
    }

    .cat-hero-stats {
      gap: 16px;
    }
  }

  /* ============================================================
     BLOG LANDING — TOKENS & HERO
  ============================================================ */
  :root {
    --mdt-red: #C0272D;
    --mdt-orange: #F79320;
    --mdt-navy: #1F2E59;
    --mdt-orange-light: #F5E6D3;
    --mid-brown: #6B5D4F;
    --text-light: #9a9488;
  }

  .blog-hero {
    position: relative;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px clamp(16px, 5vw, 60px) 40px;
    overflow: hidden;
  }

  .blog-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://www.marrakech-desert-trips.com/wp-content/uploads/2023/08/Quad-biking-in-Morocco-Sahara-desert-dunes-1280x580.jpg');
    background-size: cover;
    background-position: center 60%;
  }

  .blog-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(31, 46, 89, 0.7) 0%, rgba(31, 46, 89, 0.82) 100%);
  }

  .blog-hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
  }

  .blog-hero-content .breadcrumb {
    font-size: 0.72rem;
    color: rgba(245, 230, 211, 0.5);
    margin-bottom: 14px;
  }

  .blog-hero-content .breadcrumb a {
    color: rgba(245, 230, 211, 0.65);
    text-decoration: underline;
    text-underline-offset: 2px;
  }

  .blog-hero-content h1 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4.5vw, 3.2rem);
    font-weight: 400;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 12px;
  }

  .blog-hero-content h1 em {
    font-style: italic;
    color: var(--mdt-orange);
  }

  .blog-hero-content p {
    font-size: 0.86rem;
    color: rgba(245, 230, 211, 0.8);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
  }

  .blog-hero-content .byline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
    font-size: 0.68rem;
    color: rgba(245, 230, 211, 0.45);
  }

  .blog-hero-content .byline strong {
    color: rgba(245, 230, 211, 0.75);
  }

  /* ============================================================
     BLOG LANDING — CATEGORY PILLS
  ============================================================ */
  .cat-bar {
    padding: 0 clamp(16px, 5vw, 60px);
    max-width: 1200px;
    margin: 20px auto 32px;
    display: flex;
    gap: 8px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
  }

  .cat-bar::-webkit-scrollbar {
    display: none;
  }

  .cat-pill {
    flex-shrink: 0;
    padding: 7px 18px;
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: all 0.2s;
    border: 1.5px solid rgba(31, 46, 89, 0.12);
    background: #fff;
    color: var(--mid-brown);
  }

  .cat-pill:hover {
    border-color: var(--mdt-navy);
    color: var(--mdt-navy);
  }

  .cat-pill.active {
    background: var(--mdt-navy);
    color: #fff;
    border-color: var(--mdt-navy);
  }

  /* ============================================================
     BLOG LANDING — FEATURED GRID
  ============================================================ */
  .featured {
    padding: 0 clamp(16px, 5vw, 60px);
    max-width: 1200px;
    margin: 0 auto 48px;
  }

  .featured-label {
    font-family: var(--font-body);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--mdt-orange);
    margin-bottom: 16px;
  }

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

  .feat-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 16/10;
    background: var(--mdt-navy);
    cursor: pointer;
    transition: transform 0.25s;
  }

  .feat-card:hover {
    transform: translateY(-3px);
  }

  .feat-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
  }

  .feat-card:hover img {
    transform: scale(1.03);
  }

  .feat-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.1) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px 22px;
  }

  .feat-tag {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 3px;
    font-size: 0.56rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: var(--mdt-orange);
    color: #fff;
    margin-bottom: 8px;
    width: fit-content;
  }

  .feat-title {
    font-family: var(--font-display);
    font-size: clamp(1.1rem, 2vw, 1.45rem);
    font-weight: 600;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 6px;
  }

  .feat-excerpt {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .feat-date {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 6px;
  }

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

  /* ============================================================
     BLOG LANDING — BLOG GRID CARDS
  ============================================================ */
  .blog-grid .blog-card {
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid rgba(31, 46, 89, 0.06);
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
    display: block;
  }

  .blog-grid .blog-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(31, 46, 89, 0.08);
  }

  .blog-grid .blog-card-img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    display: block;
    background: var(--mdt-navy);
  }

  .blog-grid .blog-card-body {
    padding: 16px 18px 18px;
  }

  .blog-grid .blog-card-tag {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 3px;
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 8px;
  }

  .tag-desert {
    background: rgba(247, 147, 32, 0.1);
    color: var(--mdt-orange);
  }

  .tag-cities {
    background: rgba(192, 39, 45, 0.1);
    color: var(--mdt-red);
  }

  .tag-planning {
    background: rgba(31, 46, 89, 0.08);
    color: var(--mdt-navy);
  }

  .tag-day {
    background: rgba(247, 147, 32, 0.12);
    color: #C07800;
  }

  .tag-nature {
    background: rgba(91, 140, 90, 0.12);
    color: #3D7A3C;
  }

  .tag-culture {
    background: rgba(155, 107, 158, 0.12);
    color: #7B4D7E;
  }

  .blog-grid .blog-card-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--mdt-navy);
    line-height: 1.25;
    margin-bottom: 6px;
  }

  .blog-grid .blog-card-excerpt {
    font-size: 0.74rem;
    color: var(--mid-brown);
    line-height: 1.55;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .blog-grid .blog-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 12px;
    padding-top: 10px;
    border-top: 1px solid rgba(31, 46, 89, 0.05);
  }

  .blog-card-date {
    font-size: 0.62rem;
    color: var(--text-light);
  }

  .blog-card-read {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--mdt-red);
    letter-spacing: 0.03em;
  }

  /* Blog grid responsive — reuse from existing .blog-grid rules where possible */
  @media (max-width: 900px) {
    .blog-grid {
      grid-template-columns: repeat(2, 1fr) !important;
    }
  }

  @media (max-width: 580px) {
    .blog-grid {
      grid-template-columns: 1fr !important;
    }
  }

  /* ================================================================
   SINGLE BLOG POST
================================================================ */

  /* ── Hero ── */
  .blog-post-hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: flex-end;
    padding: 0 0 40px;
    overflow: hidden;
  }

  .blog-post-hero .hero-bg {
    position: absolute;
    inset: 0;
  }

  .blog-post-hero .hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    display: block;
  }

  .blog-post-hero .hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(31, 46, 89, 0.35) 0%, rgba(31, 46, 89, 0.65) 60%, rgba(31, 46, 89, 0.92) 100%);
  }

  .blog-post-hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 780px;
    margin-left: 0;
    padding: 90px clamp(16px, 5vw, 60px) 0;
  }

  .blog-post-hero .breadcrumb {
    font-size: 0.72rem;
    color: rgba(245, 230, 211, 0.5);
    margin-bottom: 16px;
  }

  .blog-post-hero .breadcrumb a {
    color: rgba(245, 230, 211, 0.6);
    text-decoration: none;
    transition: color 0.2s;
  }

  .blog-post-hero .breadcrumb a:hover {
    color: #fff;
  }

  .blog-post-hero .breadcrumb strong {
    color: rgba(245, 230, 211, 0.85);
  }

  .blog-post-hero .hero-eyebrow {
    font-family: 'Jost', sans-serif;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--mdt-orange);
    margin-bottom: 12px;
    line-height: 1.6;
  }

  .blog-post-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.4rem, 5vw, 3.4rem);
    font-weight: 400;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 8px;
  }

  .blog-post-hero h1 em {
    display: block;
    font-style: italic;
    color: var(--mdt-orange);
    font-size: 0.6em;
    margin-top: 6px;
    line-height: 1.3;
  }

  .blog-post-hero .hero-desc {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.95rem;
    color: rgba(245, 230, 211, 0.8);
    line-height: 1.7;
    margin-bottom: 20px;
    max-width: 680px;
  }

  .blog-post-hero .hero-desc strong {
    color: rgba(245, 230, 211, 0.95);
  }

  .blog-post-hero .hero-stats {
    display: flex;
    gap: 0;
    flex-wrap: nowrap;
    background: rgba(0, 0, 0, 0.25);
    border-radius: 6px;
    overflow: hidden;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    width: fit-content;
  }

  .blog-post-hero .hstat {
    padding: 12px 20px;
    text-align: center;
    border-right: 1px solid rgba(245, 230, 211, 0.08);
  }

  .blog-post-hero .hstat:last-child {
    border-right: none;
  }

  .blog-post-hero .hstat-num {
    font-size: 1.1rem;
    margin-bottom: 2px;
  }

  .blog-post-hero .hstat-label {
    font-family: 'Jost', sans-serif;
    font-size: 0.52rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(245, 230, 211, 0.6);
  }

  /* ── Blog Post Hero Responsive ── */
  @media (max-width: 768px) {
    .blog-post-hero {
      min-height: auto;
      padding: 0 0 30px;
      align-items: flex-end;
    }

    .blog-post-hero .hero-content {
      padding: 100px 20px 0;
      max-width: 100%;
    }

    .blog-post-hero .hero-eyebrow {
      font-size: 0.5rem;
      letter-spacing: 0.12em;
      line-height: 1.5;
    }

    .blog-post-hero h1 {
      font-size: 1.8rem;
      line-height: 1.15;
    }

    .blog-post-hero h1 em {
      font-size: 0.65em;
    }

    .blog-post-hero .hero-desc {
      font-size: 0.82rem;
      line-height: 1.6;
      max-width: 100%;
    }

    .blog-post-hero .hero-stats {
      flex-wrap: wrap;
      width: 100%;
    }

    .blog-post-hero .hstat {
      padding: 8px 12px;
      flex: 1 0 30%;
    }

    .blog-post-hero .hstat-num {
      font-size: 0.95rem;
    }

    .blog-post-hero .hstat-label {
      font-size: 0.48rem;
    }

    .blog-post-hero .breadcrumb {
      margin-bottom: 10px;
      font-size: 0.5rem;
    }
  }

  @media (max-width: 480px) {
    .blog-post-hero .hero-content {
      padding: 90px 16px 0;
    }

    .blog-post-hero h1 {
      font-size: 2.2rem;
    }

    .blog-post-hero .hero-desc {
      font-size: 0.78rem;
    }

    .blog-post-hero .hstat {
      flex: 1 0 45%;
    }
  }

  /* ── Article Layout ── */
  .article-layout {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px clamp(16px, 5vw, 60px) 60px;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
  }

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

    .article-sidebar {
      display: none;
    }
  }

  /* ── Article Meta (Author Block) ── */
  .article-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 20px;
    border-bottom: 1.5px solid rgba(31, 46, 89, 0.07);
    margin-bottom: 28px;
    flex-wrap: wrap;
  }

  .article-meta-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--mdt-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: 'Jost', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    flex-shrink: 0;
  }

  .article-meta-info {
    font-size: 0.72rem;
    line-height: 1.5;
    color: var(--mid-brown);
  }

  .article-meta-info strong {
    color: var(--mdt-navy);
  }

  /* ── Article Body ── */
  .article-body {
    max-width: 820px;
  }

  .article-body h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--mdt-navy);
    margin: 2.2rem 0 0.8rem;
    line-height: 1.2;
    padding-top: 1rem;
    border-top: 1px solid rgba(31, 46, 89, 0.06);
  }

  .article-body h2:first-of-type {
    border-top: none;
    margin-top: 0;
    padding-top: 0;
  }

  .article-body h3 {
    font-family: 'Jost', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    margin: 1.5rem 0 0.5rem;
  }

  .article-body p {
    font-size: 0.88rem;
    color: var(--text);
    line-height: 1.75;
    margin-bottom: 1rem;
  }

  .article-body a {
    color: var(--mdt-red);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
  }

  .article-body .btn-primary,
  .article-body .btn-text,
  .article-body .btn-orange,
  .article-body .btn-green {
    text-decoration: none;
  }

  .article-body img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    margin: 1.2rem 0;
  }

  .article-body figure {
    margin: 1.2rem 0;
    padding: 0;
    border: none;
    background: none;
  }

  .article-body figcaption {
    font-size: 0.7rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 6px;
    text-align: center;
  }

  /* ── Gutenberg Tables → route-table style ── */
  .article-body table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid rgba(31, 46, 89, 0.1);
    font-size: 0.78rem;
    margin: 1.2rem 0 1.8rem;
  }

  .article-body table thead,
  .article-body table tr:first-child th {
    background: var(--mdt-navy);
  }

  .article-body table th {
    padding: 8px 8px;
    text-align: left;
    color: rgba(245, 230, 211, 0.9);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .article-body table td {
    padding: 8px 8px;
    border: 1px solid rgba(31, 46, 89, 0.05);
    vertical-align: top;
  }

  .wp-block-table .has-fixed-layout {
    table-layout: auto;
  }

  .article-body table tr:last-child td {
    border-bottom: none;
  }

  .article-body table .pop,
  .article-body table tr.pop {
    background: rgba(247, 147, 32, 0.06);
    font-weight: 600;
  }

  .article-body figure.wp-block-table {
    margin: 1.2rem 0 1.8rem;
    overflow-x: auto;
  }

  .article-body figure.wp-block-table figcaption {
    font-size: 0.68rem;
    color: var(--text-light);
    font-style: italic;
    padding: 6px 0 0;
    text-align: left;
  }

  /* ── Answer Box ── */
  .answer-box {
    background: linear-gradient(135deg, rgba(31, 46, 89, 0.03), rgba(247, 147, 32, 0.04));
    border: 1.5px solid rgba(31, 46, 89, 0.1);
    border-radius: 8px;
    padding: 20px 22px;
    margin-bottom: 2rem;
  }

  .ab-label {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--mdt-orange);
    margin-bottom: 8px;
  }

  .answer-box p {
    font-size: 0.84rem;
    line-height: 1.7;
    margin-bottom: 0;
  }

  /* ── Tip Box ── */
  .tip-box {
    background: rgba(247, 147, 32, 0.05);
    border-left: 3px solid var(--mdt-orange);
    padding: 14px 16px;
    border-radius: 0 6px 6px 0;
    margin: 1.2rem 0;
    font-size: 0.8rem;
    line-height: 1.65;
    color: var(--mid-brown);
  }

  .tip-box strong {
    color: var(--mdt-navy);
  }

  /* ── Route Table ── */
  .route-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid rgba(31, 46, 89, 0.1);
    font-size: 0.78rem;
    margin: 1.2rem 0 1.8rem;
  }

  .route-table thead {
    background: var(--mdt-navy);
  }

  .route-table th {
    padding: 12px 10px;
    text-align: left;
    color: rgba(245, 230, 211, 0.9);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .route-table td {
    padding: 11px 10px;
    border-bottom: 1px solid rgba(31, 46, 89, 0.05);
    vertical-align: top;
  }

  .route-table tr:last-child td {
    border-bottom: none;
  }

  .route-table .pop {
    background: rgba(247, 147, 32, 0.06);
    font-weight: 600;
  }

  /* ── Season Grid ── */
  .season-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 1.2rem 0 1.8rem;
  }

  .season-card {
    padding: 16px;
    border-radius: 6px;
    border: 1px solid rgba(31, 46, 89, 0.08);
    background: #fff;
    transition: transform 0.2s, box-shadow 0.2s;
  }

  .season-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(31, 46, 89, 0.08);
  }

  .season-tag {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 3px;
    font-size: 0.56rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 6px;
  }

  .season-tag.best {
    background: rgba(29, 158, 117, 0.1);
    color: #1D9E75;
  }

  .season-tag.ok {
    background: rgba(247, 147, 32, 0.1);
    color: var(--mdt-orange);
  }

  .season-tag.avoid {
    background: rgba(192, 39, 45, 0.1);
    color: var(--mdt-red);
  }

  .season-card h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--mdt-navy);
    margin-bottom: 4px;
  }

  .season-card p {
    font-size: 0.76rem;
    line-height: 1.6;
    margin: 0;
    color: var(--mid-brown);
  }

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

  /* ── VS Grid ── */
  .vs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin: 1rem 0 1.8rem;
  }

  .vs-card {
    padding: 16px;
    border-radius: 6px;
    border: 1px solid rgba(31, 46, 89, 0.08);
    background: #fff;
    transition: transform 0.2s, box-shadow 0.2s;
  }

  .vs-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(31, 46, 89, 0.08);
  }

  .vs-card h4 {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--mdt-navy);
    margin-bottom: 6px;
  }

  .vs-card p {
    font-size: 0.76rem;
    line-height: 1.6;
    margin: 0;
    color: var(--mid-brown);
  }

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

  /* ── FAQ ── */
  /*.faq-list { margin: 1rem 0 2rem; }*/
  .faq-item {
    /*border: 1px solid rgba(31,46,89,0.07);*/
    /*border-radius: 6px;*/
    margin-bottom: 8px;
    overflow: hidden;
    /*background: #fff;*/
  }

  .faq-q {
    width: 100%;
    padding: 14px 16px;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Jost', sans-serif;
    font-size: 0.84rem;
    font-weight: 600;
    color: var(--mdt-navy);
    text-align: left;
  }

  .faq-icon {
    font-size: 1.1rem;
    color: var(--mdt-orange);
    flex-shrink: 0;
    margin-left: 12px;
  }

  .faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s;
  }

  .faq-a.open {
    max-height: 500px;
  }

  .faq-a-inner {
    padding: 0 16px 14px;
    font-size: 0.8rem;
    line-height: 1.65;
    color: var(--mid-brown);
  }

  /* ── CTA Banner ── */
  .cta-banner {
    border-radius: 8px;
    overflow: hidden;
    margin: 2.5rem 0;
    border: 1px solid rgba(31, 46, 89, 0.08);
  }

  .cta-top {
    background: var(--mdt-navy);
    padding: 32px 32px 24px;
    text-align: center;
  }

  .cta-top h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 400;
    color: #fff;
    margin-bottom: 6px;
  }

  .cta-top h3 em {
    font-style: italic;
    color: var(--mdt-orange);
  }

  .cta-top p {
    font-size: 0.8rem;
    color: rgba(245, 230, 211, 0.65);
    line-height: 1.6;
    max-width: 480px;
    margin: 0 auto;
  }

  .cta-bottom {
    background: #FDFBF7;
    padding: 24px 32px;
    display: flex;
    gap: 14px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    border-top: 2px solid var(--mdt-orange);
  }

  /* ── Buttons ── */
  .btn-primary,
  .btn-text,
  .btn-orange,
  .btn-green {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px 28px;
    min-height: 44px;
    width: auto;
    flex: 0 0 auto;
    font-family: 'Jost', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    border-radius: 4px;
    text-decoration: none;
  }

  .btn-primary {
    background: var(--mdt-red);
    color: #fff !important;
    transition: background 0.2s;
  }

  .btn-primary:hover {
    background: #a32228;
  }

  .btn-text {
    background: var(--mdt-navy);
    color: #fff !important;
    transition: background 0.2s;
  }

  .btn-text:hover {
    background: #2a3d6b;
  }

  .btn-orange {
    background: var(--mdt-orange);
    color: #fff !important;
    transition: background 0.2s;
  }

  .btn-orange:hover {
    background: #d4841a;
  }

  .btn-green {
    background: #25D366;
    color: #fff !important;
  }

  /* ── Sidebar ── */
  .article-sidebar {
    position: sticky;
    top: 88px;
    align-self: start;
  }

  .sb-card {
    background: #fff;
    border: 1px solid rgba(31, 46, 89, 0.08);
    border-radius: 6px;
    padding: 18px;
    margin-bottom: 16px;
  }

  .sb-card h5 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--mdt-navy);
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(31, 46, 89, 0.06);
  }

  .sb-card-cta {
    background: var(--mdt-navy);
    color: #fff;
  }

  .sb-card-cta h5 {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.1);
  }

  .sb-cta-desc {
    font-size: 0.78rem;
    color: rgba(245, 230, 211, 0.7);
    line-height: 1.6;
    margin-bottom: 12px;
  }

  .sb-email-link {
    display: block;
    text-align: center;
    font-size: 0.7rem;
    color: rgba(245, 230, 211, 0.5);
  }

  .sb-tour {
    display: block;
    padding: 8px 0;
    border-bottom: 1px solid rgba(31, 46, 89, 0.04);
    text-decoration: none;
  }

  .sb-tour:last-child {
    border-bottom: none;
  }

  .sb-tour-name {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--mdt-navy);
    line-height: 1.3;
  }

  .sb-tour-meta {
    font-size: 0.65rem;
    color: var(--text-light);
    margin-top: 2px;
  }

  .sb-tour-price {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--mdt-red);
  }

  /* ── TOC Sidebar ── */
  .toc-sidebar {
    margin-bottom: 16px;
  }

  .toc-sidebar h5 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--mdt-navy);
    margin-bottom: 10px;
  }

  .toc-link {
    display: block;
    padding: 5px 0;
    font-size: 0.72rem;
    color: var(--mid-brown);
    border-left: 2px solid rgba(31, 46, 89, 0.08);
    padding-left: 10px;
    margin-bottom: 2px;
    transition: all 0.2s;
    text-decoration: none;
  }

  .toc-link:hover,
  .toc-link.active {
    color: var(--mdt-navy);
    border-left-color: var(--mdt-orange);
    font-weight: 600;
  }

  /* ── Progress Bar ── */
  .progress-bar {
    position: fixed;
    top: 68px;
    left: 0;
    height: 3px;
    background: var(--mdt-orange);
    z-index: 99;
    width: 0;
    transition: width 0.1s linear;
  }

  /* ── Back to Top ── */
  .btt {
    position: fixed;
    bottom: 80px;
    right: 20px;
    z-index: 89;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--mdt-navy);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    border: none;
  }

  .btt.show {
    opacity: 1;
    pointer-events: auto;
  }

  .btt:hover {
    background: #2a3d6b;
  }

  /* ── Mobile TOC Bar ── */
  .mobile-toc {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 95;
    background: rgba(253, 250, 246, 0.98);
    backdrop-filter: blur(8px);
    border-top: 1px solid rgba(192, 39, 45, 0.1);
    padding: 8px 12px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    white-space: nowrap;
  }

  .mobile-toc::-webkit-scrollbar {
    display: none;
  }

  .mobile-toc a {
    display: inline-block;
    padding: 6px 14px;
    margin-right: 6px;
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--mdt-navy);
    background: rgba(31, 46, 89, 0.05);
    border-radius: 100px;
    text-decoration: none;
    white-space: nowrap;
  }

  .mobile-toc a.active {
    background: var(--mdt-navy);
    color: #fff;
  }

  @media (max-width: 960px) {
    .mobile-toc {
      display: flex;
    }

    .btt {
      bottom: 58px;
    }
  }


  /* Mobile Sub Menu Support - Slide Over */
  .mobile-nav-overlay ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .mobile-nav-overlay li {
    position: relative;
  }

  .mobile-nav-overlay .mobile-primary-menu>li>a {
    display: block;
    padding-right: 40px;
    /* Space for the arrow */
  }

  .mobile-nav-overlay .sub-menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    z-index: 100;
    padding: 100px 32px 40px;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .mobile-nav-overlay .sub-menu.slide-open {
    transform: translateX(0);
  }

  .mobile-nav-overlay .mobile-back-btn {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--mdt-navy, #1F2E59);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--mdt-orange, #F79320);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .mobile-nav-overlay .mobile-back-btn::before {
    content: "←";
    font-size: 1.6rem;
    margin-top: -2px;
  }

  .mobile-nav-overlay .sub-menu a {
    font-size: 1.3rem;
    padding: 12px 0;
    border-bottom: 1px solid var(--sand-dark, #e6d8c3);
  }

  .mobile-nav-overlay .mobile-toggle-btn {
    position: absolute;
    right: 0;
    top: 0;
    width: 50px;
    height: 52px;
    /* standard height */
    border: none;
    background: transparent;
    font-size: 1.2rem;
    color: var(--charcoal);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }

  .mobile-nav-overlay .mobile-toggle-btn::after {
    content: "›";
    /* Chevron right */
    font-family: inherit;
    font-weight: 600;
    font-size: 1.8rem;
    opacity: 0.5;
  }