﻿:root {
    --gold: #C9A84C;
    --gold-light: #E8C96A;
    --gold-pale: #F5E8C0;
    --green-deep: #1A2E1A;
    --green-mid: #2D4A2D;
    --green-soft: #4A7C59;
    --earth: #7A5C3A;
    --earth-light: #B8926A;
    --cream: #FAF7F0;
    --white: #FFFFFF;
    --text-dark: #1C1C1C;
    --text-mid: #4A4A4A;
    --text-soft: #7A7A7A;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Jost', sans-serif;
    background: var(--cream);
    color: var(--text-dark);
    overflow-x: hidden;
  }

  /* ============ ANNOUNCEMENT BAR ============ */
  .announcement-bar {
    background: var(--green-deep);
    color: var(--gold-light);
    text-align: center;
    padding: 8px 20px;
    font-family: 'Jost', sans-serif;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 1.5px;
    overflow: hidden;
    position: relative;
  }
  .announcement-scroll {
    display: inline-block;
    animation: ticker 20s linear infinite;
    white-space: nowrap;
  }
  @keyframes ticker {
    0% { transform: translateX(60vw); }
    100% { transform: translateX(-100%); }
  }

  /* ============ TOP BAR ============ */
  .top-bar {
    background: var(--green-mid);
    padding: 10px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
  }
  .top-bar-left {
    display: flex;
    gap: 24px;
    align-items: center;
    flex-wrap: wrap;
  }
  .top-bar-left a {
    color: var(--cream);
    text-decoration: none;
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s;
  }
  .top-bar-left a:hover { color: var(--gold-light); }
  .top-bar-right {
    display: flex;
    gap: 14px;
    align-items: center;
  }
  .top-bar-right a {
    color: var(--cream);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.2s, transform 0.2s;
    display: flex; align-items: center;
  }
  .top-bar-right a:hover { color: var(--gold-light); transform: scale(1.15); }
  .whatsapp-btn {
    background: #25D366;
    color: white !important;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px !important;
    font-weight: 500;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: background 0.2s, transform 0.2s !important;
  }
  .whatsapp-btn:hover { background: #1ebe5d; transform: scale(1.05) !important; }

  /* ============ MAIN NAV ============ */
  .main-nav {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--gold);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
  }
  /* Hero transparent mode */
  .main-nav.hero-mode {
    background: rgba(0,0,0,0.2);
    backdrop-filter: blur(4px);
    border-bottom-color: rgba(201,168,76,0.3);
    box-shadow: none;
  }
  .main-nav.hero-mode .logo-name,
  .main-nav.hero-mode .nav-links > li > a {
    color: white;
  }
  .main-nav.hero-mode .logo-tagline {
    color: var(--gold-light);
  }
  .main-nav.hero-mode .nav-cta-btn {
    background: var(--gold);
    color: var(--green-deep);
  }
  .main-nav.hero-mode .nav-cta-btn:hover {
    background: var(--gold-light);
  }
  .main-nav.hero-mode .lang-selected {
    border-color: rgba(255,255,255,0.6);
    color: white;
  }
  .main-nav.hero-mode .hamburger span {
    background: white;
  }
  .main-nav.hero-mode .nav-info-icon {
    background: linear-gradient(135deg, #E8C96A, #C9A84C);
  }
  .main-nav.hero-mode .nav-info-bar {
    background: rgba(0,0,0,0.25);
    backdrop-filter: blur(8px);
  }
  .main-nav.hero-mode .nav-info-item {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.1);
  }
  .main-nav.hero-mode .nav-info-item:hover {
    background: rgba(255,255,255,0.12);
    border-color: var(--gold);
  }
  .main-nav.hero-mode .nav-info-item a,
  .main-nav.hero-mode .nav-info-item span:last-child {
    color: white;
  }
  .main-nav.hero-mode .nav-cta-btn {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    box-shadow: 0 4px 15px rgba(201, 168, 76, 0.4);
  }
  .main-nav.hero-mode .nav-cta-btn:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    box-shadow: 0 6px 20px rgba(201, 168, 76, 0.6);
    transform: translateY(-2px);
  }
  .nav-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  /* Nav info bar */
  .nav-info-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: var(--green-deep);
    padding: 6px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
  }
  .nav-info-left {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  .nav-info-right {
    display: flex;
    align-items: center;
    gap: 16px;
  }
  .nav-info-item {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 25px;
    padding: 4px 14px 4px 8px;
    color: var(--cream);
    text-decoration: none;
    transition: all 0.3s ease;
    gap: 8px;
  }
  .nav-info-item:hover {
    background: rgba(255,255,255,0.15);
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  }
  .nav-info-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
  }
  .nav-info-flag {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 8px;
    border: 1.5px solid var(--gold);
    box-shadow: 0 1px 4px rgba(0,0,0,0.25);
    flex-shrink: 0;
    display: block;
  }
  .nav-info-item:hover .nav-info-flag {
    border-color: var(--gold-light);
    transform: scale(1.06);
    transition: transform 0.2s ease, border-color 0.2s ease;
  }
  .nav-info-item a {
    color: var(--cream);
    text-decoration: none;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.5px;
  }
  .nav-info-item:hover a {
    color: var(--gold-light);
  }
  .nav-social-mini {
    display: flex;
    gap: 8px;
    align-items: center;
  }
  .nav-social-mini a {
    width: 30px; height: 30px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.25s ease, filter 0.25s ease;
    position: relative;
    text-decoration: none;
    color: #fff;
  }
  .nav-social-mini a:hover {
    transform: translateY(-2px) scale(1.08);
    box-shadow: 0 6px 16px rgba(0,0,0,0.3);
    filter: brightness(1.08);
  }
  .nav-social-mini svg {
    width: 15px; height: 15px;
    fill: #fff;
    display: block;
  }
  .nav-social-mini .social-fb     { background: #1877F2; }
  .nav-social-mini .social-ig     { background: radial-gradient(circle at 30% 110%, #fdf497 0%, #fd5949 45%, #d6249f 70%, #285AEB 100%); }
  .nav-social-mini .social-tiktok { background: #000; box-shadow: inset 1.5px 0 0 #25F4EE, inset -1.5px 0 0 #FE2C55; }
  .nav-social-mini .social-yt     { background: #FF0000; }
  .nav-social-mini .social-wa     { background: #25D366; }
  .nav-cta-btn {
    background: var(--gold);
    color: var(--green-deep);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s;
  }
  .nav-cta-btn:hover { background: var(--gold-light); transform: scale(1.05); }
  .main-nav-inner { margin-top: 36px; }

  /* Nav ticker */
  .nav-ticker {
    position: absolute;
    top: 36px;
    left: 0;
    right: 0;
    padding: 6px 0;
    z-index: -1;
    overflow: hidden;
    background: transparent;
  }
  .nav-ticker-content {
    display: inline-block;
    white-space: nowrap;
    animation: ticker-scroll 25s linear forwards;
    font-size: 12px;
    font-weight: 600;
    color: white;
    letter-spacing: 1px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.8), 0 0 10px rgba(0,0,0,0.5);
    padding: 4px 0;
  }
  @keyframes ticker-scroll {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
  }

  .nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
    text-decoration: none;
    background: transparent;
    border: 0;
    font-family: inherit;
    color: inherit;
    cursor: pointer;
    transition: transform 0.2s ease;
  }
  .nav-logo:hover { transform: translateY(-1px); }
  .nav-logo:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 4px;
    border-radius: 6px;
  }
  .logo-emblem {
    width: 55px;
    height: 55px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 2px solid var(--gold);
  }
  .logo-emblem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .logo-text-block { display: flex; flex-direction: column; }
  .logo-name {
    font-family: 'Cinzel', serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--green-deep);
    letter-spacing: 2px;
    line-height: 1;
  }
  .logo-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 11px;
    font-style: italic;
    color: var(--gold);
    letter-spacing: 1px;
    margin-top: 2px;
  }
  .nav-links {
    display: flex;
    gap: 0;
    list-style: none;
    flex-wrap: wrap;
  }
  .nav-links > li { position: relative; }
  .nav-links > li > a {
    display: block;
    padding: 20px 14px;
    color: var(--green-deep);
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.2s, background 0.2s;
    white-space: nowrap;
  }
  .nav-links > li > a:hover { color: var(--gold); background: var(--gold-pale); }
  .nav-links > li.active > a { color: var(--gold); border-bottom: 2px solid var(--gold); }
  .lang-switcher {
    display: flex;
    gap: 6px;
    align-items: center;
    padding: 14px 0;
  }
  .lang-dropdown {
    position: relative;
    z-index: 100;
  }
  .lang-selected {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: none;
    border: 1px solid var(--gold);
    border-radius: 6px;
    cursor: pointer;
    font-family: 'Jost', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: var(--green-deep);
    transition: all 0.2s;
  }
  .lang-selected:hover, .lang-dropdown.open .lang-selected {
    background: var(--gold);
    color: white;
  }
  .lang-flag {
    width: 20px;
    height: 14px;
    border-radius: 2px;
    object-fit: cover;
  }
  .lang-arrow {
    font-size: 10px;
    transition: transform 0.2s;
  }
  .lang-dropdown.open .lang-arrow {
    transform: rotate(180deg);
  }
  .lang-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 4px;
    background: white;
    border: 1px solid var(--gold-pale);
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    overflow: hidden;
    min-width: 160px;
  }
  .lang-dropdown.open .lang-menu {
    display: block;
    animation: fadeIn 0.2s ease;
  }
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .lang-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    cursor: pointer;
    transition: background 0.2s;
    text-decoration: none;
    color: var(--text-dark);
  }
  .lang-option:hover {
    background: var(--gold-pale);
  }
  .lang-option img {
    width: 20px;
    height: 14px;
    border-radius: 2px;
    object-fit: cover;
  }
  .lang-option span {
    font-size: 13px;
    font-weight: 500;
  }

  /* Hero mode language dropdown */
  .main-nav.hero-mode .lang-selected {
    border-color: rgba(255,255,255,0.6);
    color: white;
  }
  .main-nav.hero-mode .lang-dropdown.open .lang-selected {
    background: var(--gold);
    color: var(--green-deep);
  }

  .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 10px; }
  .hamburger span { width: 24px; height: 2px; background: var(--green-deep); transition: all 0.3s; }

  /* Hide announcement bar and top bar since integrated into nav */
  .announcement-bar, .top-bar { display: none; }

  @media (max-width: 900px) {
    .nav-ticker { display: none; }
    .nav-info-bar { display: none; }
    .main-nav-inner { margin-top: 0; }
  }

  /* ============ HERO ============ */
  .hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .hero-slides { position: absolute; inset: 0; }
  .hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease;
  }
  .hero-slide.active { opacity: 1; }
  /* Slide background images are now rendered inline by index.php from cms_hero_slides */
  .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 0 20px;
    max-width: 900px;
    animation: fadeUp 1.2s ease 0.3s both;
  }
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .hero-badge {
    display: inline-block;
    border: 1px solid var(--gold);
    color: var(--gold-light);
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 6px 20px;
    margin-bottom: 28px;
  }
  .hero-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(36px, 6vw, 82px);
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.4);
    white-space: pre-line;
  }
  .hero-title span { color: var(--gold-light); }
  .hero-title .hero-title-gold { color: var(--gold-light); }
  .hero-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(18px, 2.5vw, 26px);
    font-style: italic;
    font-weight: 300;
    margin-bottom: 48px;
    opacity: 0.9;
  }
  .hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
  .btn-primary {
    background: var(--gold);
    color: var(--green-deep);
    padding: 16px 36px;
    font-family: 'Jost', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-block;
  }
  .btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.4); }
  .btn-outline {
    background: transparent;
    color: white;
    padding: 15px 36px;
    font-family: 'Jost', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.7);
    cursor: pointer;
    transition: all 0.3s;
    display: inline-block;
  }
  .btn-outline:hover { border-color: var(--gold); color: var(--gold-light); transform: translateY(-2px); }
  .btn-chat {
    background: linear-gradient(135deg, #2D4A2D 0%, #1A2E1A 100%);
    color: var(--gold-light);
    border: 1px solid var(--gold);
    padding: 15px 28px;
    font-family: 'Jost', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-block;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(201,168,76,0.2);
  }
  .btn-chat:hover {
    background: linear-gradient(135deg, #3a5a3a 0%, #2D4A2D 100%);
    border-color: var(--gold-light);
    color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201,168,76,0.35);
  }

  /* ============ AI CHAT WIDGET (right side) ============ */
  .floating-chat {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9000;
    font-family: 'Jost', sans-serif;
  }
  .chat-toggle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--green-deep);
    border: 3px solid var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(201,168,76,0.5);
    transition: all 0.3s ease;
    position: relative;
  }
  .chat-toggle:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 28px rgba(201,168,76,0.7);
  }
  .chat-toggle svg { width: 30px; height: 30px; }
  .chat-toggle .chat-pulse {
    position: absolute;
    top: -4px; right: -4px;
    width: 14px; height: 14px;
    background: #10b981;
    border-radius: 50%;
    border: 2px solid var(--white);
    animation: ai-pulse 1.8s ease-in-out infinite;
  }
  @keyframes ai-pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.25); opacity: 0.7; }
  }
  .chat-tooltip {
    position: absolute;
    right: 76px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--green-deep);
    color: var(--gold-light);
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.25s, transform 0.25s;
  }
  .chat-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-left: 6px solid var(--green-deep);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
  }
  .chat-toggle:hover + .chat-tooltip,
  .floating-chat:hover .chat-tooltip { opacity: 1; }
  .chat-toggle.active + .chat-tooltip { opacity: 0 !important; }

  .chat-widget {
    position: absolute;
    bottom: 84px;
    right: 0;
    width: 360px;
    background: var(--white);
    border-radius: 14px;
    box-shadow: 0 12px 48px rgba(0,0,0,0.22);
    display: none;
    flex-direction: column;
    height: 540px;
    max-height: calc(100vh - 140px);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    overflow: hidden;
  }
  .chat-widget.active {
    display: flex;
    opacity: 1;
    transform: translateY(0);
  }
  .chat-header {
    background: linear-gradient(135deg, var(--green-deep), var(--green-mid));
    color: var(--gold-light);
    padding: 14px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
  }
  .chat-header-info { display: flex; align-items: center; gap: 12px; }
  .chat-header-avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    display: flex; align-items: center; justify-content: center;
    color: var(--green-deep);
    flex-shrink: 0;
    position: relative;
  }
  .chat-header-avatar svg { width: 22px; height: 22px; }
  .chat-header-avatar::after {
    content: '';
    position: absolute;
    bottom: 0; right: 0;
    width: 10px; height: 10px;
    background: #10b981;
    border-radius: 50%;
    border: 2px solid var(--green-deep);
  }
  .chat-header-text { display: flex; flex-direction: column; line-height: 1.2; }
  .chat-header-title { font-weight: 600; font-size: 14px; letter-spacing: 0.3px; }
  .chat-header-status { font-size: 11px; opacity: 0.85; font-weight: 400; }
  .chat-close {
    width: 30px; height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--gold-light);
    font-size: 22px;
    border-radius: 50%;
    transition: all 0.2s;
    flex-shrink: 0;
  }
  .chat-close:hover {
    background: rgba(255,255,255,0.1);
    transform: scale(1.1);
  }
  .chat-body {
    padding: 16px;
    overflow-y: auto;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: #f7f5ef;
  }
  .chat-message {
    padding: 10px 13px;
    border-radius: 14px;
    font-size: 13px;
    line-height: 1.45;
    max-width: 85%;
    word-wrap: break-word;
    animation: msg-in 0.25s ease;
  }
  @keyframes msg-in {
    from { opacity: 0; transform: translateY(6px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .bot-msg {
    background: var(--white);
    color: var(--text-dark);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  }
  .user-msg {
    background: linear-gradient(135deg, var(--green-deep), var(--green-mid));
    color: var(--gold-light);
    align-self: flex-end;
    border-bottom-right-radius: 4px;
  }
  .chat-typing {
    align-self: flex-start;
    background: var(--white);
    padding: 12px 14px;
    border-radius: 14px;
    border-bottom-left-radius: 4px;
    display: none;
    gap: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  }
  .chat-typing.show { display: flex; }
  .chat-typing span {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--gold);
    animation: typing 1.2s ease-in-out infinite;
  }
  .chat-typing span:nth-child(2) { animation-delay: 0.2s; }
  .chat-typing span:nth-child(3) { animation-delay: 0.4s; }
  @keyframes typing {
    0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
    30% { transform: translateY(-5px); opacity: 1; }
  }
  .chat-quick {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 0 4px;
    align-self: flex-start;
    max-width: 100%;
  }
  .chat-quick-btn {
    background: var(--white);
    border: 1px solid var(--gold-pale);
    color: var(--green-deep);
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 11px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
  }
  .chat-quick-btn:hover {
    background: var(--gold-pale);
    border-color: var(--gold);
    transform: translateY(-1px);
  }
  .chat-input-wrap {
    padding: 10px 12px;
    background: var(--white);
    border-top: 1px solid #ececec;
    display: flex;
    gap: 8px;
    align-items: center;
  }
  .chat-input {
    flex: 1;
    border: 1px solid #e2e2e2;
    background: #f7f5ef;
    border-radius: 22px;
    padding: 10px 14px;
    font-size: 13px;
    outline: none;
    font-family: inherit;
    color: var(--text-dark);
    transition: border-color 0.2s, background 0.2s;
  }
  .chat-input:focus {
    border-color: var(--gold);
    background: var(--white);
  }
  .chat-send {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--green-deep);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
    flex-shrink: 0;
  }
  .chat-send:hover { transform: scale(1.08); }
  .chat-send svg { width: 18px; height: 18px; }
  .chat-footer-note {
    padding: 6px 12px 8px;
    background: var(--white);
    text-align: center;
    font-size: 10px;
    color: #999;
    letter-spacing: 0.3px;
  }
  .chat-footer-note a {
    color: #25D366;
    text-decoration: none;
    font-weight: 600;
  }
  .chat-footer-note a:hover { text-decoration: underline; }

  /* Live chat — pre-chat form */
  .chat-prechat {
    padding: 18px;
    overflow-y: auto;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: #fffaf2;
  }
  .chat-prechat-greeting {
    background: #fff;
    border-left: 3px solid var(--gold);
    padding: 12px 14px;
    border-radius: 8px;
    font-size: 13.5px;
    color: var(--text-dark);
    line-height: 1.5;
  }
  .chat-prechat-error {
    background: #fef2f2;
    color: #991b1b;
    padding: 10px 12px;
    border-radius: 6px;
    font-size: 12.5px;
    border-left: 3px solid #ef4444;
  }
  .chat-field { display: flex; flex-direction: column; gap: 4px; }
  .chat-field > span {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    color: var(--text-mid);
  }
  .chat-field input,
  .chat-field textarea {
    padding: 10px 12px;
    border: 1px solid #e5dfd3;
    border-radius: 8px;
    font-family: inherit;
    font-size: 13.5px;
    color: var(--text-dark);
    background: #fff;
    resize: vertical;
  }
  .chat-field input:focus,
  .chat-field textarea:focus { outline: none; border-color: var(--gold); }
  .chat-start-btn {
    background: var(--gold);
    color: var(--green-deep);
    border: none;
    font-weight: 700;
    font-size: 13.5px;
    padding: 11px 16px;
    border-radius: 8px;
    cursor: pointer;
    letter-spacing: 0.5px;
    transition: background 0.15s, transform 0.15s;
  }
  .chat-start-btn:hover:not(:disabled) { background: var(--gold-light); transform: translateY(-1px); }
  .chat-start-btn:disabled { opacity: 0.6; cursor: wait; }
  .chat-prechat-note {
    font-size: 11px;
    color: var(--text-soft);
    margin: 0;
    text-align: center;
  }
  .chat-prechat-note a { color: var(--gold); }

  /* Live chat — conversation view */
  .chat-conversation {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
  }
  .chat-message.system-msg {
    background: rgba(201,168,76,0.08);
    color: var(--text-mid);
    font-style: italic;
    text-align: center;
    margin: 6px auto;
    font-size: 12px;
    padding: 8px 12px;
    border-radius: 12px;
    max-width: 90%;
  }
  .chat-toggle-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: #ef4444;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 3px var(--cream);
  }

  @media (max-width: 480px) {
    .floating-chat { bottom: 16px; right: 16px; }
    .chat-widget {
      width: calc(100vw - 32px);
      right: 0;
      height: 70vh;
      bottom: 78px;
    }
    .chat-toggle { width: 56px; height: 56px; }
    .chat-toggle svg { width: 26px; height: 26px; }
    .chat-tooltip { display: none; }
  }

  .hero-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    gap: 10px;
  }
  .hero-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.3s;
    border: none;
  }
  .hero-dot.active { background: var(--gold); transform: scale(1.3); }
  .scroll-hint {
    position: absolute;
    bottom: 40px;
    right: 40px;
    z-index: 2;
    color: rgba(255,255,255,0.6);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
  .scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollLine 1.5s ease infinite;
  }
  @keyframes scrollLine {
    0%, 100% { opacity: 0.3; transform: scaleY(0.5); transform-origin: top; }
    50% { opacity: 1; transform: scaleY(1); }
  }

  /* ============ SECTION COMMONS ============ */
  section { padding: 100px 40px; scroll-margin-top: 80px; }
  .section-inner { max-width: 1300px; margin: 0 auto; }
  .section-label {
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .section-label::before {
    content: '';
    display: block;
    width: 30px;
    height: 1px;
    background: var(--gold);
  }
  .section-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(28px, 4vw, 52px);
    font-weight: 600;
    color: var(--green-deep);
    line-height: 1.2;
    margin-bottom: 20px;
  }
  .section-sub {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-style: italic;
    color: var(--text-mid);
    max-width: 600px;
    line-height: 1.6;
    margin-bottom: 60px;
  }
  .divider-gold {
    width: 80px;
    height: 2px;
    background: linear-gradient(to right, var(--gold), var(--gold-light), transparent);
    margin: 20px 0 50px;
  }

  /* ============ STATS STRIP ============ */
  .stats-strip {
    background: var(--green-deep);
    padding: 50px 40px;
  }
  .stats-inner {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 40px;
    text-align: center;
  }
  .stat-item {}
  .stat-number {
    font-family: 'Cinzel', serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 8px;
  }
  .stat-label {
    font-family: 'Jost', sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.65);
  }

  /* ============ ABOUT ============ */
  .about-section {
    background: var(--white);
    padding-bottom: 80px;
  }
  .about-header {
    text-align: center;
    margin-bottom: 50px;
  }
  .about-header .divider-gold {
    margin: 20px auto;
  }
  .about-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
  }
  .about-col-left {
    position: sticky;
    top: 120px;
  }
  .about-text {
    font-size: 15px;
    line-height: 1.9;
    color: var(--text-mid);
    margin-bottom: 24px;
  }
  .about-image-card {
    position: relative;
    margin-bottom: 28px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  }
  .about-image-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
  }
  .about-image-card .image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(26,46,26,0.9), transparent);
    color: white;
    padding: 20px 16px;
    font-size: 13px;
    font-weight: 500;
  }
  .about-col-right {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  .about-stats-row {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    padding: 24px;
    background: linear-gradient(135deg, var(--green-deep), var(--green-mid));
    border-radius: 12px;
  }
  .about-stat {
    text-align: center;
    flex: 1;
  }
  .about-stat .stat-num {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
  }
  .about-stat .stat-label {
    font-size: 11px;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 6px;
    display: block;
  }
  .mission-box, .vision-box {
    padding: 24px;
    background: var(--cream);
    border-radius: 12px;
    border-left: 4px solid var(--gold);
  }
  .mission-title, .vision-title {
    font-family: 'Cinzel', serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--green-deep);
    letter-spacing: 1px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .title-icon {
    font-size: 18px;
  }
  .mission-text, .vision-text {
    font-size: 14px;
    line-height: 1.7;
    color: #000;
  }
  .values-mini-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }
  .value-mini-card {
    text-align: center;
    padding: 18px 12px;
    background: linear-gradient(140deg, #1A2E1A 0%, #2E4A2E 100%);
    border-radius: 10px;
    border: 1.5px solid var(--gold);
    box-shadow: 0 4px 14px rgba(26,46,26,0.18);
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  }
  .value-mini-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(26,46,26,0.35);
    border-color: #F0D068;
  }
  .value-mini-icon {
    font-size: 26px;
    display: block;
    margin-bottom: 8px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.25));
  }
  .value-mini-title {
    font-family: 'Cinzel', serif;
    font-size: 12px;
    font-weight: 700;
    color: #F5EFE3;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-shadow: 0 1px 2px rgba(0,0,0,0.35);
  }
  /* Alternating gold accent bar for visual rhythm */
  .value-mini-card:nth-child(odd)  { border-top: 3px solid var(--gold); }
  .value-mini-card:nth-child(even) { border-top: 3px solid #E8C96A; }
  .about-image-accent-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
  }
  .about-image-accent-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
  .about-image-accent-card .accent-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--gold);
    color: var(--green-deep);
    padding: 8px 16px;
    border-radius: 20px;
    font-family: 'Cinzel', serif;
    font-size: 12px;
    font-weight: 600;
  }

  @media (max-width: 1100px) {
    .about-content-grid {
      grid-template-columns: 1fr;
      gap: 40px;
    }
    .about-col-left {
      position: static;
    }
    .values-mini-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  @media (max-width: 768px) {
    .about-stats-row {
      flex-direction: column;
      gap: 16px;
    }
    .values-mini-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  /* Hide legacy styles */
  .about-grid, .about-body, .mission-section, .vision-section, .about-image-stack, .values-grid, .value-card { display: none !important; }
  .value-icon { font-size: 24px; margin-bottom: 8px; }
  .value-title {
    font-family: 'Cinzel', serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--green-deep);
    letter-spacing: 1px;
    margin-bottom: 6px;
  }
  .value-desc { font-size: 13px; color: var(--text-soft); line-height: 1.6; }

  /* ============ DESTINATIONS ============ */
  .destinations-section { background: var(--cream); }
  .destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 28px;
  }
  .dest-card {
    background: white;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.35s;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
  }
  .dest-card:hover { transform: translateY(-8px); box-shadow: 0 16px 40px rgba(0,0,0,0.12); }
  .dest-img-wrap { position: relative; overflow: hidden; height: 200px; }
  .dest-img-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
  }
  .dest-card:hover .dest-img-wrap img { transform: scale(1.08); }
  .dest-badge {
    position: absolute;
    top: 14px; left: 14px;
    background: var(--gold);
    color: var(--green-deep);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 10px;
  }
  .dest-body { padding: 24px; }
  .dest-name {
    font-family: 'Cinzel', serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--green-deep);
    margin-bottom: 10px;
  }
  .dest-desc { font-size: 13px; color: var(--text-soft); line-height: 1.6; margin-bottom: 16px; }
  .dest-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 12px;
    color: var(--text-soft);
    border-top: 1px solid var(--gold-pale);
    padding-top: 14px;
  }
  .dest-price {
    font-family: 'Cinzel', serif;
    font-weight: 600;
    color: var(--green-deep);
    font-size: 12px;
  }
  .dest-season { display: flex; align-items: center; gap: 5px; }
  .dest-book {
    color: var(--gold);
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.5px;
    transition: color 0.2s;
  }
  .dest-card:hover .dest-book { color: var(--green-deep); }

  /* ============ SAFARIS SHOWCASE ============ */
  .safaris-section { background: var(--green-deep); }
  .safaris-section .section-title { color: white; }
  .safaris-section .section-sub { color: rgba(255,255,255,0.65); }
  .safaris-section .section-label { color: var(--gold-light); }
  .safaris-section .section-label::before { background: var(--gold-light); }

  .safaris-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .safari-card-large, .safari-card-small {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.35s;
  }
  .safari-card-large:hover, .safari-card-small:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--gold);
    transform: translateY(-4px);
  }
  .safari-card-image {
    position: relative;
    height: 180px;
    overflow: hidden;
  }
  .safari-card-large .safari-card-image { height: 220px; }
  .safari-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
    filter: brightness(0.85);
  }
  .safari-card-large:hover .safari-card-image img,
  .safari-card-small:hover .safari-card-image img {
    transform: scale(1.06);
    filter: brightness(1);
  }
  .safari-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(10,30,10,0.8) 0%, transparent 60%);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 12px;
  }
  .safari-badge {
    background: var(--gold);
    color: var(--green-deep);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 12px;
  }
  .safari-badge.popular { background: #FF6B35; color: white; }
  .safari-badge.premium { background: #8B5CF6; color: white; }
  .safari-badge.romantic { background: #EC4899; color: white; }
  .safari-price {
    font-family: 'Cinzel', serif;
    font-size: 13px;
    font-weight: 700;
    color: white;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
  }
  .safari-card-content {
    padding: 18px;
  }
  .safari-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
  }
  .safari-title {
    font-family: 'Cinzel', serif;
    font-size: 14px;
    font-weight: 600;
    color: white;
    line-height: 1.3;
  }
  .safari-card-large .safari-title { font-size: 16px; }
  .safari-duration {
    font-size: 10px;
    color: var(--gold-light);
    font-weight: 500;
    letter-spacing: 0.5px;
    white-space: nowrap;
  }
  .safari-desc {
    font-size: 12px;
    color: rgba(255,255,255,0.65);
    line-height: 1.5;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .safari-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
  }
  .highlight-tag {
    background: rgba(201,168,76,0.15);
    color: var(--gold-light);
    font-size: 9px;
    font-weight: 500;
    padding: 3px 8px;
    border-radius: 10px;
    border: 1px solid rgba(201,168,76,0.3);
  }
  .safari-features {
    list-style: none;
    margin-bottom: 14px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
  }
  .safari-features li {
    font-size: 11px;
    color: rgba(255,255,255,0.5);
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .safari-features li::before { content: none; }
  .safari-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  .safari-season {
    font-size: 11px;
    color: rgba(255,255,255,0.5);
  }
  .btn-safari {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-family: 'Jost', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s;
  }
  .btn-safari:hover {
    background: var(--gold);
    color: var(--green-deep);
  }

  @media (max-width: 1100px) {
    .safaris-showcase {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  @media (max-width: 768px) {
    .safaris-showcase {
      grid-template-columns: 1fr;
    }
    .safari-card-image { height: 180px; }
    .safari-card-large .safari-card-image { height: 200px; }
  }

  /* Hide old itineraries */
  .itineraries-section, .itineraries-grid, .itin-card { display: none; }

  /* ============ GALLERY ============ */
  .gallery-section { background: var(--white); }
  .gallery-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 40px;
    border-bottom: 2px solid var(--gold-pale);
    flex-wrap: wrap;
  }
  .gallery-tab {
    padding: 14px 28px;
    font-family: 'Jost', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    background: none;
    color: var(--text-soft);
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: all 0.25s;
  }
  .gallery-tab.active, .gallery-tab:hover {
    color: var(--green-deep);
    border-bottom-color: var(--gold);
  }
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    gap: 12px;
  }
  .gallery-item {
    overflow: hidden;
    cursor: pointer;
    position: relative;
    display: none;
  }
  .gallery-item.show { display: block; }
  .gallery-item.large { grid-column: span 2; grid-row: span 2; }
  .gallery-item.tall { grid-row: span 2; }
  .gallery-item.wide { grid-column: span 2; }
  .gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
  }
  .gallery-item:hover img { transform: scale(1.08); }
  .gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,30,10,0.65) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
    align-items: flex-end;
    padding: 16px;
  }
  .gallery-item:hover .gallery-overlay { opacity: 1; }
  .gallery-overlay-meta {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 12px;
    flex-wrap: wrap;
  }
  .gallery-cat-tag { display: none; }
  .gallery-item::before {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(26,46,26,0.85);
    color: var(--gold-light);
    padding: 5px 12px;
    border-radius: 999px;
    font-family: 'Cinzel', serif;
    font-size: 10px;
    letter-spacing: 1.5px;
    font-weight: 600;
    text-transform: uppercase;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 2;
    pointer-events: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.25);
    border: 1px solid rgba(201,168,76,0.4);
  }
  .gallery-item[data-category="bigfive"]::before    { content: "Big Five"; }
  .gallery-item[data-category="wildlife"]::before   { content: "Wildlife"; }
  .gallery-item[data-category="birds"]::before      { content: "Birds"; }
  .gallery-item[data-category="landscapes"]::before { content: "Landscape"; }
  .gallery-item[data-category="culture"]::before    { content: "Culture"; }
  .gallery-item[data-category="safari"]::before     { content: "Safari Life"; }
  .gallery-caption {
    color: white;
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    font-style: italic;
    text-shadow: 0 8px 20px rgba(0,0,0,0.45);
    line-height: 1.3;
  }
  .gallery-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
  }
  .gallery-action-btn {
    background: rgba(255,255,255,0.12);
    color: white;
    border: 1px solid rgba(255,255,255,0.35);
    padding: 10px 14px;
    border-radius: 999px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: transform 0.25s, background 0.25s, border-color 0.25s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  .gallery-action-btn:hover {
    background: rgba(255,255,255,0.22);
    border-color: rgba(255,255,255,0.75);
    transform: translateY(-1px);
  }
  .gallery-action-btn.gallery-download-btn {
    background: rgba(255,255,255,0.2);
  }

  /* ============ NAV LOGO — visible, dignified, no popup ============ */
  /* Bigger emblem + gold halo + subtle scale-on-hover. Click goes to home. */
  .nav-logo {
    display: -webkit-flex;
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    padding: 4px 6px 4px 4px;
    border-radius: 12px;
    transition: background 0.2s, transform 0.2s;
    background: transparent;
    border: 0;
    cursor: pointer;
  }
  .nav-logo:hover { transform: translateY(-1px); }
  .nav-logo:hover .logo-emblem {
    box-shadow:
      0 0 0 2px rgba(201,168,76,0.55),
      0 0 0 7px rgba(201,168,76,0.20),
      0 10px 22px rgba(26,46,26,0.22);
  }
  .nav-logo:hover .logo-emblem img { transform: scale(1.05); }

  .logo-emblem {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 0;
    overflow: hidden;
    background: var(--white, #fff);
    box-shadow:
      0 0 0 2px rgba(201,168,76,0.45),
      0 0 0 5px rgba(201,168,76,0.15),
      0 6px 14px rgba(26,46,26,0.18);
    transition: box-shadow 0.25s;
    flex-shrink: 0;
  }
  .logo-emblem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
  }

  .logo-text-block {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
  }
  .logo-name {
    font-family: 'Cinzel', serif;
    font-size: 19px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--green-deep, #1A2E1A);
  }
  .logo-tagline {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-style: italic;
    font-size: 11.5px;
    letter-spacing: 1px;
    color: var(--gold, #C9A84C);
    margin-top: 3px;
  }
  @media (max-width: 640px) {
    .logo-emblem { width: 46px; height: 46px; }
    .logo-name { font-size: 17px; letter-spacing: 2.5px; }
    .logo-tagline { display: none; }
  }

  .gallery-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(10,15,10,0.82);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    z-index: 2000;
  }
  .gallery-lightbox.active {
    display: grid;
  }
  .gallery-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.75);
  }
  .gallery-lightbox-box {
    position: relative;
    width: min(1200px, 100%);
    max-height: calc(100vh - 80px);
    background: rgba(17,21,18,0.95);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 26px;
    box-shadow: 0 40px 90px rgba(0,0,0,0.45);
    overflow: hidden;
    z-index: 1;
  }
  .gallery-lightbox-close {
    position: absolute;
    right: 22px;
    top: 22px;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: rgba(255,255,255,0.11);
    color: white;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    z-index: 2;
    transition: background 0.25s, transform 0.25s;
  }
  .gallery-lightbox-close:hover {
    background: rgba(255,255,255,0.2);
    transform: scale(1.05);
  }
  .gallery-lightbox-frame {
    display: grid;
    grid-template-columns: 1.3fr 0.9fr;
    min-height: 420px;
  }
  .gallery-lightbox-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .gallery-lightbox-copy {
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 28px;
  }
  .gallery-lightbox-title {
    color: #fff;
    font-size: clamp(28px, 2.4vw, 42px);
    line-height: 1.05;
    margin: 0;
    font-family: 'Cormorant Garamond', serif;
  }
  .gallery-lightbox-tools {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
  }
  .gallery-lightbox-download,
  .gallery-lightbox-zoom {
    border: none;
    padding: 14px 20px;
    border-radius: 999px;
    font-size: 13px;
    letter-spacing: 0.9px;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.25s, background 0.25s;
    text-decoration: none;
  }
  .gallery-lightbox-download {
    background: var(--gold);
    color: var(--green-deep);
  }
  .gallery-lightbox-zoom {
    background: rgba(255,255,255,0.08);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.1);
  }
  .gallery-lightbox-download:hover,
  .gallery-lightbox-zoom:hover {
    transform: translateY(-2px);
    opacity: 0.95;
  }

  @media (max-width: 980px) {
    .gallery-lightbox-frame { grid-template-columns: 1fr; }
    .gallery-lightbox-copy { padding: 28px 24px; }
  }
  @media (max-width: 760px) {
    .gallery-lightbox { padding: 16px; }
    .gallery-lightbox-box { max-height: calc(100vh - 40px); }
    .gallery-lightbox-copy { padding: 22px 18px; }
    .gallery-lightbox-title { font-size: 26px; }
  }

  /* ============ MAASAI CULTURE ============ */
  .culture-section { background: var(--cream); }
  .culture-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .culture-img-wrap {
    position: relative;
  }
  .culture-img-wrap img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    display: block;
  }
  .culture-accent {
    position: absolute;
    top: -20px; right: -20px;
    width: 80px; height: 80px;
    border: 3px solid var(--gold);
  }
  .culture-accent2 {
    position: absolute;
    bottom: -20px; left: -20px;
    width: 120px; height: 80px;
    background: var(--gold);
    opacity: 0.15;
  }
  .culture-body {}
  .culture-body p {
    font-size: 16px;
    line-height: 1.85;
    color: var(--text-mid);
    margin-bottom: 20px;
  }
  .culture-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 30px;
  }
  .culture-highlight {
    display: flex;
    gap: 12px;
    align-items: flex-start;
  }
  .ch-icon {
    font-size: 24px;
    flex-shrink: 0;
    margin-top: 2px;
  }
  .ch-text { font-size: 13px; color: var(--text-mid); line-height: 1.5; }
  .ch-title {
    font-weight: 600;
    color: var(--green-deep);
    margin-bottom: 4px;
    font-size: 14px;
    font-family: 'Cinzel', serif;
    letter-spacing: 0.5px;
  }

  /* ============ BIG FIVE ============ */
  .big-five-section { background: var(--green-deep); overflow: hidden; }
  .big-five-section .section-title { color: white; }
  .big-five-section .section-label { color: var(--gold-light); }
  .big-five-section .section-label::before { background: var(--gold-light); }
  .big-five-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
  }
  .big-five-card {
    position: relative;
    overflow: hidden;
    height: 400px;
    cursor: pointer;
    transition: all 0.4s;
  }
  .big-five-card:hover { flex-grow: 2; }
  .big-five-card img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: brightness(0.75) saturate(0.8);
    transition: all 0.5s;
  }
  .big-five-card:hover img { filter: brightness(0.55) saturate(1.1); transform: scale(1.05); }
  .big-five-info {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 24px 20px;
    background: linear-gradient(to top, rgba(10,30,10,0.9) 0%, transparent 100%);
  }
  .big-five-name {
    font-family: 'Cinzel', serif;
    font-size: 18px;
    font-weight: 600;
    color: white;
    margin-bottom: 4px;
  }
  .big-five-latin {
    font-family: 'Cormorant Garamond', serif;
    font-size: 13px;
    font-style: italic;
    color: var(--gold-light);
  }
  .big-five-detail {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s;
    font-size: 12px;
    color: rgba(255,255,255,0.75);
    line-height: 1.5;
    margin-top: 0;
  }
  .big-five-card:hover .big-five-detail { max-height: 80px; margin-top: 10px; }

  /* ============ REVIEWS ============ */
  .reviews-section { background: linear-gradient(180deg, var(--cream) 0%, #f7f3e2 100%); }
  .reviews-carousel {
    position: relative;
    margin: 0 -8px;
    padding: 10px 8px 24px;
  }
  .reviews-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 6px 4px 14px;
  }
  .reviews-track::-webkit-scrollbar { display: none; }
  .review-card {
    flex: 0 0 min(420px, 92vw);
    scroll-snap-align: center;
    background: var(--white);
    border: 1px solid rgba(201,168,76,0.18);
    border-radius: 18px;
    padding: 40px 36px 32px;
    position: relative;
    box-shadow: 0 10px 30px rgba(26,46,26,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
  }
  .review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 44px rgba(26,46,26,0.12);
  }
  .review-quote {
    position: absolute;
    top: 12px;
    right: 28px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 110px;
    color: var(--gold-pale);
    opacity: 0.55;
    line-height: 0.8;
    font-weight: 700;
    pointer-events: none;
    user-select: none;
  }
  .review-stars {
    color: var(--gold);
    font-size: 18px;
    letter-spacing: 4px;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
  }
  .review-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-style: italic;
    color: #2a3a2a;
    line-height: 1.7;
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
    flex: 1;
  }
  .review-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 18px;
    border-top: 1px solid rgba(201,168,76,0.15);
  }
  .review-avatar {
    width: 54px; height: 54px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-pale) 0%, var(--gold-light) 100%);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Cinzel', serif;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--green-deep);
    flex-shrink: 0;
    border: 3px solid var(--white);
    box-shadow: 0 4px 14px rgba(201,168,76,0.30);
    overflow: hidden;
  }
  .review-avatar-img { padding: 0; }
  .review-avatar-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .review-name {
    font-family: 'Cinzel', serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--green-deep);
    margin-bottom: 3px;
  }
  .review-location {
    font-family: 'Jost', sans-serif;
    font-size: 12px;
    color: rgba(28,28,28,0.6);
    letter-spacing: 0.3px;
  }

  .carousel-controls { display: flex; gap: 12px; margin-top: 36px; justify-content: center; align-items: center; }
  .carousel-btn {
    width: 48px; height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(201,168,76,0.4);
    background: var(--white);
    cursor: pointer;
    font-size: 18px;
    color: var(--green-deep);
    display: flex; align-items: center; justify-content: center;
    transition: all 0.25s ease;
    box-shadow: 0 4px 12px rgba(26,46,26,0.06);
  }
  .carousel-btn:hover {
    background: var(--gold);
    color: var(--green-deep);
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(201,168,76,0.4);
  }
  .carousel-dots { display: flex; gap: 8px; align-items: center; padding: 0 8px; }
  .carousel-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(26,46,26,0.18);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s, transform 0.2s;
  }
  .carousel-dot.is-active {
    background: var(--gold);
    transform: scale(1.4);
  }
  .carousel-dot:hover { background: var(--gold-light); }

  /* ============ COURSES ============ */
  .courses-section { background: var(--cream); }
  .courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 28px;
  }
  .course-card {
    background: white;
    padding: 36px 28px;
    border-top: 3px solid var(--gold);
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }
  .course-card:hover { transform: translateY(-6px); box-shadow: 0 12px 36px rgba(0,0,0,0.1); }
  /* When an image is the first child, pin enroll button to the bottom for a clean grid */
  .course-card .btn-enrol { margin-top: auto; align-self: flex-start; }
  .course-icon { font-size: 36px; margin-bottom: 16px; }
  .course-title {
    font-family: 'Cinzel', serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--green-deep);
    margin-bottom: 12px;
  }
  .course-desc { font-size: 14px; color: var(--text-soft); line-height: 1.65; margin-bottom: 24px; }
  .course-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    padding-top: 16px;
    border-top: 1px solid var(--gold-pale);
    font-size: 12px;
    color: var(--text-soft);
  }
  .course-zoom {
    color: #2D7DD2;
    font-weight: 500;
  }
  .course-format { display: flex; align-items: center; gap: 6px; }
  .btn-enrol {
    background: var(--green-deep);
    color: white;
    padding: 10px 22px;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    font-family: 'Jost', sans-serif;
    font-weight: 500;
    transition: all 0.25s;
    display: inline-block;
    text-decoration: none;
    margin-top: 20px;
  }
  .btn-enrol:hover { background: var(--gold); color: var(--green-deep); }

  /* Cover-image variant (CMS courses with a real image) */
  .course-image-wrap {
    position: relative;
    margin: -36px -28px 22px;          /* -36 = card top padding; -28 = card side padding */
    height: 200px;                     /* fixed height keeps the grid tidy regardless of image dims */
    overflow: hidden;
    background: var(--cream);
    flex-shrink: 0;
  }
  .course-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.4s ease;
  }
  .course-card:hover .course-image-wrap img { transform: scale(1.05); }
  .course-image-wrap::after {
    /* subtle fade at the bottom so text below has breathing room visually */
    content: '';
    position: absolute;
    inset: auto 0 0 0;
    height: 40%;
    background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,0.18) 100%);
    pointer-events: none;
  }
  .course-feature-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--gold);
    color: var(--green-deep);
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 999px;
    box-shadow: 0 4px 12px rgba(201,168,76,0.3);
  }
  .course-card.is-featured { border-top-color: var(--gold-light); box-shadow: 0 6px 20px rgba(201,168,76,0.12); }
  .course-price {
    font-family: 'Cinzel', serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--gold);
    margin-top: 14px;
  }

  /* ============ BLOG ============ */
  .blog-section { background: var(--white); }
  .blog-card {
    overflow: hidden;
    background: var(--cream);
    text-decoration: none;
    color: inherit;
    display: block;
    transition: all 0.3s;
  }
  .blog-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,0.08); }
  .blog-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s;
  }
  .blog-card:hover .blog-img { transform: scale(1.04); }
  .blog-card.featured .blog-img { height: 320px; }
  .blog-body { padding: 24px; }
  .blog-cat {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
  }
  .blog-title {
    font-family: 'Cinzel', serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--green-deep);
    line-height: 1.4;
    margin-bottom: 10px;
  }
  .blog-card.featured .blog-title { font-size: 22px; }
  .blog-excerpt { font-size: 13px; color: var(--text-soft); line-height: 1.65; margin-bottom: 16px; }
  .blog-date { font-size: 11px; color: var(--text-soft); letter-spacing: 0.5px; }

  /* Featured Blog */
  .blog-featured { margin-bottom: 50px; }
  .blog-featured-card {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    background: var(--cream);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transition: all 0.4s;
  }
  .blog-featured-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.15); }
  .blog-featured-img {
    position: relative;
    overflow: hidden;
    height: 350px;
  }
  .blog-featured-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
  }
  .blog-featured-card:hover .blog-featured-img img { transform: scale(1.05); }
  .blog-featured-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--gold);
    color: var(--green-deep);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 20px;
  }
  .blog-featured-body {
    padding: 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .blog-featured-body .blog-cat {
    color: var(--gold);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
  }
  .blog-featured-title {
    font-family: 'Cinzel', serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--green-deep);
    line-height: 1.3;
    margin-bottom: 16px;
  }
  .blog-featured-excerpt {
    font-size: 15px;
    color: var(--text-mid);
    line-height: 1.7;
    margin-bottom: 20px;
  }
  .blog-featured-meta {
    display: flex;
    gap: 20px;
    font-size: 12px;
    color: var(--text-soft);
  }
  .blog-read-time { color: var(--green-soft); font-weight: 500; }

  /* Blog Categories */
  .blog-category-section { margin-bottom: 50px; }
  .blog-category-title {
    font-family: 'Cinzel', serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--green-deep);
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--gold-pale);
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .blog-category-title::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
  }
  .blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
  .blog-card .blog-img-wrap {
    overflow: hidden;
    height: 200px;
  }
  .blog-card .blog-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
  }
  .blog-card:hover .blog-img { transform: scale(1.05); }

  @media (max-width: 1100px) {
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .blog-featured-card { grid-template-columns: 1fr; }
    .blog-featured-img { height: 280px; }
  }
  @media (max-width: 768px) {
    .blog-grid { grid-template-columns: 1fr; }
    .blog-featured-body { padding: 24px; }
    .blog-featured-title { font-size: 20px; }
  }

  /* ============ CONTACT ============ */
  .contact-section {
    background: var(--green-deep);
    position: relative;
    overflow: hidden;
  }
  .contact-section::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 40%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1516426122078-c23e76319801?w=800&q=60') center/cover;
    opacity: 0.12;
  }
  .contact-section .section-title { color: white; }
  .contact-section .section-label { color: var(--gold-light); }
  .contact-section .section-label::before { background: var(--gold-light); }
  .contact-section .section-sub { color: rgba(255,255,255,0.6); }
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    position: relative;
    z-index: 1;
  }
  .contact-info {}
  .contact-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .contact-item:last-child { border-bottom: none; margin-bottom: 0; }
  .contact-icon {
    width: 46px; height: 46px;
    border: 1px solid var(--gold);
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
  }
  .contact-detail {}
  .contact-type {
    font-family: 'Jost', sans-serif;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 6px;
  }
  .contact-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    color: white;
    font-weight: 400;
  }
  .contact-value a { color: white; text-decoration: none; }
  .contact-value a:hover { color: var(--gold-light); }
  .contact-form {}
  .contact-form-error {
    background: rgba(239,68,68,0.12);
    border: 1px solid rgba(239,68,68,0.45);
    color: #fecaca;
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 18px;
    font-size: 14px;
  }
  .contact-thanks {
    text-align: center;
    padding: 30px 24px 36px;
    border: 1px solid rgba(201,168,76,0.35);
    border-radius: 14px;
    background: rgba(255,255,255,0.03);
  }
  .contact-thanks-icon {
    width: 64px; height: 64px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--green-deep);
    display: flex; align-items: center; justify-content: center;
    font-size: 32px; font-weight: 700;
    box-shadow: 0 10px 30px rgba(201,168,76,0.35);
  }
  .contact-thanks-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    color: white;
    margin: 0 0 10px;
    font-weight: 600;
  }
  .contact-thanks-sub {
    color: rgba(255,255,255,0.7);
    margin: 0 0 22px;
    font-size: 14.5px;
    line-height: 1.6;
  }
  .contact-thanks-sub a { color: var(--gold-light); text-decoration: underline; }
  .contact-thanks-cta { display: inline-block; }
  .form-group { margin-bottom: 20px; }
  .form-label {
    display: block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    margin-bottom: 8px;
  }
  .form-input, .form-select, .form-textarea {
    width: 100%;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.15);
    color: white;
    padding: 14px 16px;
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    outline: none;
    transition: border-color 0.25s;
  }
  .form-input::placeholder, .form-textarea::placeholder { color: rgba(255,255,255,0.3); }
  .form-input:focus, .form-textarea:focus { border-color: var(--gold); }
  .form-select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C9A84C' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }
  .form-select option { background: var(--green-deep); }
  .form-textarea { resize: vertical; min-height: 120px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .form-daterange {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .form-daterange .form-input {
    color-scheme: dark;
    flex: 1;
    min-width: 0;
    cursor: pointer;
  }
  .form-daterange .form-input::-webkit-calendar-picker-indicator {
    filter: invert(0.8) sepia(0.4) saturate(2) hue-rotate(10deg);
    cursor: pointer;
  }
  .form-daterange-sep {
    color: var(--gold);
    font-size: 14px;
    font-weight: 600;
    flex-shrink: 0;
  }

  /* ============ FOOTER ============ */
  footer {
    background: #0D1A0D;
    padding: 70px 40px 30px;
    color: rgba(255,255,255,0.6);
  }
  .footer-inner { max-width: 1300px; margin: 0 auto; }
  .footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
  }
  .footer-brand {}
  .footer-logo-name {
    font-family: 'Cinzel', serif;
    font-size: 22px;
    font-weight: 700;
    color: white;
    letter-spacing: 2px;
    margin-bottom: 6px;
  }
  .footer-logo-tag {
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px;
    font-style: italic;
    color: var(--gold);
    margin-bottom: 20px;
  }
  .footer-brand p { font-size: 13px; line-height: 1.7; max-width: 280px; }
  .footer-social { display: flex; gap: 10px; margin-top: 24px; flex-wrap: wrap; }
  .footer-social a {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.12);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
  }
  .footer-social a svg { width: 18px; height: 18px; display: block; }
  .footer-social a:hover {
    transform: translateY(-3px);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 6px 18px rgba(0,0,0,0.35);
  }
  .footer-social a.soc-fb:hover { background: #1877F2; }
  .footer-social a.soc-ig:hover {
    background: radial-gradient(circle at 30% 110%, #fdf497 0%, #fd5949 45%, #d6249f 70%, #285AEB 100%);
  }
  .footer-social a.soc-tt:hover { background: #000; box-shadow: 0 6px 18px rgba(0,0,0,0.5), -2px 0 0 #25F4EE inset, 2px 0 0 #FE2C55 inset; }
  .footer-social a.soc-yt:hover { background: #FF0000; }
  .footer-social a.soc-wa:hover { background: #25D366; }
  .footer-social a.soc-tg:hover { background: #229ED9; }
  .footer-social a.soc-vk:hover { background: #4C75A3; }
  .footer-social a.soc-ms:hover { background: linear-gradient(45deg, #0099FF, #A033FF, #FF6680); }

  /* ============ BOOKING MODAL ============ */
  .booking-modal {
    position: fixed;
    top: 0; right: 0; bottom: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 100000;
    display: none;
    align-items: flex-start;
    justify-content: center;
    overflow-y: auto;
    padding: 40px 16px;
    box-sizing: border-box;
  }
  .booking-modal.is-open { display: flex; }
  .booking-modal-backdrop {
    position: fixed; top:0; right:0; bottom:0; left:0;
    background: rgba(20, 30, 20, 0.65);
    backdrop-filter: blur(2px);
  }
  .booking-modal-card {
    position: relative;
    background: #FAF7F0;
    width: 100%;
    max-width: 620px;
    border-radius: 14px;
    border: 1px solid rgba(201,168,76,0.4);
    box-shadow: 0 24px 60px rgba(0,0,0,0.45);
    padding: 32px 36px;
    animation: bookingModalIn 0.22s ease-out;
  }
  @keyframes bookingModalIn {
    from { transform: scale(0.96) translateY(8px); opacity: 0; }
    to   { transform: scale(1) translateY(0); opacity: 1; }
  }
  .booking-modal-close {
    position: absolute;
    top: 14px; right: 16px;
    width: 32px; height: 32px;
    border-radius: 50%;
    background: rgba(0,0,0,0.06);
    color: #1A2E1A;
    border: none;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
  }
  .booking-modal-close:hover { background: rgba(0,0,0,0.12); }

  .booking-modal-head { text-align: center; margin-bottom: 18px; }
  .booking-modal-eyebrow {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #C9A84C;
    font-weight: 600;
  }
  .booking-modal-head h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    color: #1A2E1A;
    margin: 6px 0 4px;
    font-weight: 600;
  }
  .booking-modal-sub {
    font-size: 13.5px;
    color: #555;
    margin: 0;
  }

  .booking-form label {
    display: block;
    font-family: 'Jost', sans-serif;
    font-size: 12px;
    letter-spacing: 0.5px;
    color: #1A2E1A;
    font-weight: 500;
    margin-bottom: 12px;
  }
  .booking-form input[type="text"],
  .booking-form input[type="email"],
  .booking-form input[type="tel"],
  .booking-form input[type="number"],
  .booking-form input[type="date"],
  .booking-form textarea {
    display: block;
    width: 100%;
    padding: 10px 12px;
    margin-top: 5px;
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    border: 1px solid rgba(0,0,0,0.15);
    border-radius: 6px;
    background: #fff;
    box-sizing: border-box;
  }
  .booking-form input:focus,
  .booking-form textarea:focus {
    outline: none;
    border-color: #C9A84C;
    box-shadow: 0 0 0 3px rgba(201,168,76,0.18);
  }
  .booking-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  .booking-form-row-3 { grid-template-columns: 1fr 1fr 1.4fr; }
  @media (max-width: 540px) {
    .booking-form-row,
    .booking-form-row-3 { grid-template-columns: 1fr; }
    .booking-modal-card { padding: 28px 22px; }
  }
  .booking-form-check { display: flex; gap: 8px; align-items: center; cursor: pointer; }
  .booking-form-check input { width: auto; margin: 0; }
  .booking-form-hint { color: #888; font-weight: 400; font-size: 11px; }
  .booking-form-fine {
    font-size: 11.5px;
    color: #888;
    text-align: center;
    margin-top: 14px;
  }
  .booking-form-errors {
    background: #fcf3ee;
    border-left: 3px solid #b8531f;
    color: #6e2b0f;
    padding: 10px 14px;
    border-radius: 4px;
    margin: 12px 0;
    font-size: 13px;
  }
  .booking-form-actions {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: center;
    margin-top: 18px;
    flex-wrap: wrap;
  }
  .booking-btn-primary {
    background: #1A2E1A;
    color: #F5EFE3;
    border: none;
    padding: 14px 30px;
    border-radius: 6px;
    font-family: 'Cinzel', serif;
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
  }
  .booking-btn-primary:hover { background: #2E4A2E; transform: translateY(-1px); }
  .booking-btn-primary:disabled { opacity: 0.6; cursor: not-allowed; }
  .booking-btn-ghost {
    background: transparent;
    color: #1A2E1A;
    padding: 12px 22px;
    border-radius: 6px;
    border: 1px solid rgba(0,0,0,0.15);
    text-decoration: none;
    font-family: 'Jost', sans-serif;
    font-size: 13px;
    font-weight: 500;
  }
  .booking-btn-ghost:hover { background: rgba(0,0,0,0.05); }

  /* Processing state — shown while the booking request is in flight */
  .booking-processing {
    text-align: center;
    padding: 28px 12px 18px;
  }
  .booking-processing-spinner {
    position: relative;
    width: 78px;
    height: 78px;
    margin: 0 auto 22px;
  }
  .booking-processing-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 3px solid rgba(26,46,26,0.10);
    border-top-color: var(--gold, #C9A24B);
    border-right-color: var(--gold, #C9A24B);
    animation: bookingSpin 0.9s linear infinite;
  }
  .booking-processing-mark {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #1A2E1A;
    transform: rotate(-25deg);
  }
  .booking-processing-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    color: #1A2E1A;
    margin: 4px 0 10px;
    letter-spacing: 0.3px;
  }
  .booking-processing-sub {
    color: #555;
    font-size: 14px;
    line-height: 1.6;
    max-width: 420px;
    margin: 0 auto 18px;
  }
  .booking-processing-dots {
    display: inline-flex;
    gap: 6px;
    margin-top: 4px;
  }
  .booking-processing-dots span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold, #C9A24B);
    opacity: 0.35;
    animation: bookingDot 1.2s ease-in-out infinite;
  }
  .booking-processing-dots span:nth-child(2) { animation-delay: 0.18s; }
  .booking-processing-dots span:nth-child(3) { animation-delay: 0.36s; }
  @keyframes bookingSpin {
    to { transform: rotate(360deg); }
  }
  @keyframes bookingDot {
    0%, 100% { opacity: 0.35; transform: translateY(0); }
    50%      { opacity: 1;    transform: translateY(-3px); }
  }
  @media (prefers-reduced-motion: reduce) {
    .booking-processing-ring,
    .booking-processing-dots span { animation: none; }
  }

  /* Success state */
  .booking-success {
    text-align: center;
    padding: 14px 0 6px;
  }
  .booking-success-mark {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(140deg, #4f9c52, #7bbf6b);
    color: #fff;
    font-size: 32px;
    line-height: 64px;
    margin: 0 auto 14px;
    box-shadow: 0 6px 18px rgba(79,156,82,0.35);
  }
  .booking-success h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    color: #1A2E1A;
    margin: 6px 0;
  }
  .booking-success-msg { color: #555; font-size: 14px; line-height: 1.55; max-width: 440px; margin: 8px auto 18px; }
  .booking-success-ref {
    display: inline-block;
    background: #fffaf2;
    border: 1px solid #C9A84C;
    padding: 10px 22px;
    border-radius: 6px;
    margin: 8px 0 18px;
  }
  .booking-success-ref-label {
    display: block;
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #888;
  }
  .booking-success-ref strong {
    font-family: Georgia, serif;
    font-size: 22px;
    color: #1A2E1A;
    letter-spacing: 1.5px;
  }

  /* ============ VERIFY-BOOKING PAGE ============ */
  .verify-section {
    min-height: 70vh;
    padding: 80px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FAF7F0 0%, #fffaf2 100%);
  }
  .verify-card {
    background: #fff;
    border-radius: 14px;
    border: 1px solid rgba(201,168,76,0.4);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
    padding: 48px 44px;
    max-width: 560px;
    width: 100%;
    text-align: center;
  }
  .verify-mark {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    margin: 0 auto 20px;
    line-height: 88px;
    font-size: 44px;
    color: #fff;
    font-weight: 700;
    box-shadow: 0 10px 28px rgba(0,0,0,0.16);
  }
  .verify-mark-good { background: linear-gradient(140deg, #4f9c52, #7bbf6b); }
  .verify-mark-mid  { background: linear-gradient(140deg, #c79b3b, #e0b75a); font-size: 38px; }
  .verify-mark-bad  { background: linear-gradient(140deg, #b8531f, #e07a4a); }
  .verify-card h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    color: #1A2E1A;
    margin: 0 0 10px;
    font-weight: 600;
  }
  .verify-lead {
    color: #555;
    font-size: 14.5px;
    line-height: 1.6;
    margin: 0 auto 24px;
    max-width: 440px;
  }
  .verify-details {
    text-align: left;
    margin: 18px 0 24px;
    border: 1px solid #f0ebe0;
    border-radius: 8px;
    padding: 6px 18px;
    background: #fffaf2;
  }
  .verify-detail-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: baseline;
    padding: 10px 0;
    border-bottom: 1px dashed rgba(0,0,0,0.06);
    font-size: 13.5px;
  }
  .verify-detail-row:last-child { border-bottom: none; }
  .verify-detail-row > span { color: #6b6b6b; font-size: 12.5px; }
  .verify-detail-row > strong { color: #1A2E1A; font-weight: 600; text-align: right; }
  .verify-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 18px;
    flex-wrap: wrap;
  }
  .verify-btn-primary {
    background: #1A2E1A;
    color: #F5EFE3;
    padding: 12px 22px;
    border-radius: 6px;
    text-decoration: none;
    font-family: 'Cinzel', serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: background 0.2s;
  }
  .verify-btn-primary:hover { background: #2E4A2E; }
  .verify-btn-ghost {
    background: transparent;
    color: #1A2E1A;
    padding: 12px 22px;
    border-radius: 6px;
    border: 1px solid rgba(0,0,0,0.15);
    text-decoration: none;
    font-family: 'Jost', sans-serif;
    font-size: 13px;
    font-weight: 500;
  }
  .verify-btn-ghost:hover { background: rgba(0,0,0,0.04); }
  .footer-col h4 {
    font-family: 'Cinzel', serif;
    font-size: 12px;
    font-weight: 600;
    color: white;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(201,168,76,0.25);
  }
  .footer-col ul { list-style: none; }
  .footer-col ul li { margin-bottom: 10px; }
  .footer-col ul li a {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .footer-col ul li a::before { content: none; }
  .footer-col ul li a:hover { color: var(--gold-light); }
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.07);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: gap;
    font-size: 12px;
  }
  .footer-bottom p { line-height: 1.6; }
  .footer-bottom-links { display: flex; gap: 24px; }
  .footer-bottom-links a { color: rgba(255,255,255,0.4); text-decoration: none; font-size: 12px; transition: color 0.2s; }
  .footer-bottom-links a:hover { color: var(--gold); }
  /* Staff Mail — discreet, slightly accented so staff can find it */
  .footer-bottom-links a.footer-staff-mail {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(232,201,106,0.55);
  }
  .footer-bottom-links a.footer-staff-mail svg { width: 13px; height: 13px; flex-shrink: 0; }
  .footer-bottom-links a.footer-staff-mail:hover { color: var(--gold-light); }

  /* ============ FLOATING WHATSAPP (left side) ============ */
  .float-wa {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 9000;
    width: 60px; height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    box-shadow: 0 4px 20px rgba(37,211,102,0.5);
    text-decoration: none;
    animation: pulse 2s ease infinite;
    transition: transform 0.25s;
    border: 3px solid var(--white);
  }
  .float-wa:hover { transform: scale(1.1); }
  .float-wa svg { width: 32px; height: 32px; }
  .float-wa-tooltip {
    position: fixed;
    bottom: 46px;
    left: 100px;
    background: #128C7E;
    color: #fff;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.25s;
    z-index: 9000;
    font-family: 'Jost', sans-serif;
  }
  .float-wa-tooltip::after {
    content: '';
    position: absolute;
    left: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-right: 6px solid #128C7E;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
  }
  .float-wa:hover ~ .float-wa-tooltip { opacity: 1; }
  @keyframes pulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 4px 32px rgba(37,211,102,0.7); }
  }
  @media (max-width: 480px) {
    .float-wa { bottom: 16px; left: 16px; width: 54px; height: 54px; }
    .float-wa svg { width: 28px; height: 28px; }
    .float-wa-tooltip { display: none; }
  }

  /* ============ MOBILE NAV ============ */
  .mobile-nav {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--green-deep);
    z-index: 9999;
    padding: 80px 40px 40px;
    flex-direction: column;
    gap: 4px;
    overflow-y: auto;
  }
  .mobile-nav.open { display: flex; }
  .mobile-nav-close {
    position: absolute;
    top: 24px; right: 24px;
    background: none;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
  }
  .mobile-nav a {
    font-family: 'Cinzel', serif;
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    transition: color 0.2s;
  }
  .mobile-nav a:hover { color: var(--gold-light); }

  /* Mobile Language Selector */
  .mobile-lang-selector {
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 10px;
  }
  .mobile-lang-label {
    display: block;
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 12px;
    letter-spacing: 1px;
  }
  .mobile-lang-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
  }
  .mobile-lang-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 8px;
    color: white;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s;
  }
  .mobile-lang-btn:hover {
    background: rgba(255,255,255,0.15);
    border-color: var(--gold);
  }
  .mobile-lang-btn.active {
    background: var(--gold);
    color: var(--green-deep);
    border-color: var(--gold);
  }
  .mobile-lang-btn img {
    width: 20px;
    height: 14px;
    border-radius: 2px;
  }

  /* ============ REVEAL ANIMATION ============ */
  .reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }

  /* ============ RESPONSIVE ============ */
  @media (max-width: 1100px) {
    .about-grid, .contact-grid, .culture-grid { grid-template-columns: 1fr; gap: 50px; }
    .about-img-accent { display: none; }
    .blog-grid { grid-template-columns: 1fr 1fr; }
    .big-five-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  }
  @media (max-width: 768px) {
    section { padding: 70px 20px; }
    .top-bar { padding: 10px 20px; }
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .lang-switcher {
      display: flex;
      position: absolute;
      right: 70px;
      top: 12px;
    }
    .lang-dropdown {
      position: relative;
    }
    .lang-selected {
      padding: 6px 10px;
      font-size: 10px;
      gap: 6px;
    }
    .lang-flag {
      width: 18px;
      height: 12px;
    }
    .lang-selected span:first-of-type {
      display: none;
    }
    .lang-arrow {
      font-size: 8px;
    }
    .lang-menu {
      position: absolute;
      right: 0;
      top: 100%;
      min-width: 140px;
      z-index: 9999;
    }
    .nav-info-bar { display: none; }
    .main-nav-inner { margin-top: 0; }
    .nav-inner { padding: 0 20px; }
    .blog-grid { grid-template-columns: 1fr; }
    .big-five-grid { grid-template-columns: 1fr 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-item.large, .gallery-item.tall, .gallery-item.wide {
      grid-column: span 1; grid-row: span 1;
    }
    .review-card { min-width: calc(100% - 0px); }
    .review-submit-card { padding: 30px 22px; }
    .star-rating { font-size: 36px; }
    .footer-top { grid-template-columns: 1fr; gap: 30px; }
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
    .contact-section::before { display: none; }
    .form-row { grid-template-columns: 1fr; }
    .big-five-grid { grid-template-columns: 1fr; }
    .big-five-card { height: 260px; }
    .values-grid { grid-template-columns: 1fr; }
    .culture-highlights { grid-template-columns: 1fr; }
  }

/* ============ REVIEW SUBMIT (deep-green panel) ============ */
.review-submit-section {
  background: linear-gradient(180deg, var(--green-deep) 0%, var(--green-mid) 100%);
  padding: 100px 40px;
  position: relative;
}
.review-submit-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 0%, rgba(201,168,76,0.10), transparent 55%);
  pointer-events: none;
}
.review-submit-section .section-inner { position: relative; }

.review-submit-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 50px;
}
.review-submit-head .section-label { justify-content: center; }
.review-submit-section .section-title { color: white; margin-bottom: 14px; }
.review-submit-section .section-sub   { color: rgba(255,255,255,0.7); margin: 0 auto; }

.review-submit-card {
  max-width: 720px;
  margin: 0 auto;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 18px;
  padding: 48px 44px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

.review-form .form-label {
  color: rgba(255,255,255,0.78);
}
.review-form .form-label-optional {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: rgba(255,255,255,0.4);
  font-size: 11px;
  margin-left: 6px;
}
.review-form .form-input,
.review-form .form-textarea {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18);
  color: #ffffff;
}
.review-form .form-input::placeholder,
.review-form .form-textarea::placeholder { color: rgba(255,255,255,0.35); }
.review-form .form-input:focus,
.review-form .form-textarea:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.09);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.18);
}
.review-form .form-textarea { min-height: 140px; }
.review-form .btn-primary { margin-top: 6px; }

.review-form-error {
  background: rgba(239,68,68,0.12);
  border: 1px solid rgba(239,68,68,0.45);
  color: #fecaca;
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 22px;
  font-size: 14px;
}

/* Star rating widget (CSS-only, radio-based) */
.star-rating {
  display: inline-flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  font-size: 42px;
  line-height: 1;
  gap: 6px;
}
.star-rating input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.star-rating label {
  cursor: pointer;
  color: rgba(255,255,255,0.20);
  transition: color 0.15s ease, transform 0.15s ease;
  user-select: none;
}
.star-rating label:hover,
.star-rating label:hover ~ label,
.star-rating input:checked ~ label {
  color: var(--gold);
}
.star-rating label:hover { transform: scale(1.08); }
.star-rating input:focus-visible + label {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
  border-radius: 4px;
}

.review-thanks {
  text-align: center;
  padding: 20px 10px 14px;
}
.review-thanks-icon {
  width: 64px; height: 64px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--green-deep);
  display: flex; align-items: center; justify-content: center;
  font-size: 32px; font-weight: 700;
  box-shadow: 0 10px 30px rgba(201,168,76,0.35);
}
.review-thanks-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  color: white;
  margin: 0 0 10px;
  font-weight: 600;
}
.review-thanks-sub {
  color: rgba(255,255,255,0.7);
  margin: 0 0 22px;
  font-size: 15px;
  line-height: 1.6;
}
.review-thanks-cta { display: inline-block; }

/* ============ INNER PAGE SPACING ============
   Inner pages (no full-screen hero) need top padding so the first section
   isn't hidden behind the fixed nav. Also adds a styled page-banner block. */
body.inner-page { padding-top: 119px; }
@media (max-width: 900px) {
  body.inner-page { padding-top: 65px; }
}

.page-banner {
  background: linear-gradient(135deg, var(--green-deep), var(--green-mid));
  color: var(--cream);
  padding: 70px 40px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-banner::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 3px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.page-banner-label {
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 14px;
}
.page-banner-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 18px;
}
.page-banner-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(16px, 2vw, 22px);
  font-style: italic;
  color: rgba(250, 247, 240, 0.85);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.5;
}
.page-banner-breadcrumb {
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  letter-spacing: 1.5px;
  color: rgba(250, 247, 240, 0.65);
  margin-top: 22px;
}
.page-banner-breadcrumb a {
  color: var(--gold-light);
  text-decoration: none;
}
.page-banner-breadcrumb a:hover { color: var(--white); }

/* ============ SAFARI CALENDAR (Windows-style Dual-Month Picker) ============ */
.calendar-section {
  background: linear-gradient(180deg, var(--cream) 0%, #f3eed7 100%);
  padding: 90px 0 100px;
  position: relative;
}
.calendar-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 30px;
}
.calendar-head .section-label,
.calendar-head .section-title { display: inline-block; }
.calendar-head .divider-gold { margin: 18px auto; }
.calendar-sub {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 17px;
  color: rgba(28,28,28,0.7);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.55;
}
.calendar-legend {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 0 auto 32px;
}
.cal-legend-chip {
  padding: 5px 14px;
  border-radius: 999px;
  font-family: 'Cinzel', serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green-deep);
  border: 1px solid rgba(26,46,26,0.18);
  background: var(--white);
}
.cal-legend-chip.cal-tier-peak { background: var(--green-deep); color: var(--gold-light); border-color: var(--green-deep); }
.cal-legend-chip.cal-tier-high { background: var(--gold);       color: var(--green-deep);  border-color: var(--gold); }
.cal-legend-chip.cal-tier-mid  { background: #d8c89b;            color: var(--green-deep);  border-color: #c9b87a; }
.cal-legend-chip.cal-tier-low  { background: #e8eed2;            color: #3a5a3a;            border-color: #c8d4a4; }

/* ===== Windows-style dual-month picker ===== */
.cal-picker {
  max-width: 820px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(26,46,26,0.18), 0 4px 12px rgba(26,46,26,0.06);
  border: 1px solid rgba(26,46,26,0.08);
  overflow: hidden;
  font-family: 'Jost', sans-serif;
}

/* Header (selected date display) */
.cal-picker-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 22px 26px;
  border-bottom: 1px solid rgba(26,46,26,0.08);
  background: linear-gradient(180deg, #fbf8ec 0%, var(--white) 100%);
  gap: 18px;
}
.cal-picker-selected {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.cal-picker-day-name {
  font-size: 13px;
  color: rgba(26,46,26,0.6);
  font-weight: 500;
  letter-spacing: 0.5px;
}
.cal-picker-date-big {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--green-deep);
  line-height: 1.1;
}
.cal-picker-relative {
  font-size: 12px;
  color: rgba(26,46,26,0.55);
  letter-spacing: 0.3px;
  margin-top: 2px;
}
.cal-picker-icon {
  width: 38px; height: 38px;
  border-radius: 8px;
  border: 1px solid rgba(26,46,26,0.15);
  background: var(--white);
  color: var(--green-deep);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all 0.18s ease;
}
.cal-picker-icon svg { width: 20px; height: 20px; }
.cal-picker-icon:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--green-deep);
}

/* Body â€” two months side by side with nav arrows on the right */
.cal-picker-body {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  padding: 22px 26px;
  align-items: start;
}
.cal-picker-months {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.cal-picker-month {
  min-width: 0;
}
.cal-picker-month-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--green-deep);
  margin: 0 0 12px;
  letter-spacing: 0.2px;
}
.cal-picker-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  margin-bottom: 6px;
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  color: rgba(26,46,26,0.45);
  letter-spacing: 0.5px;
}
.cal-picker-weekdays > span { padding: 4px 0; }
.cal-picker-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}

/* Individual day cell */
.cal-pd {
  position: relative;
  aspect-ratio: 1 / 1;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 0;
  cursor: pointer;
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.cal-pd:hover:not(:disabled) {
  background: var(--gold-pale);
  border-color: var(--gold);
}
.cal-pd-other {
  color: rgba(26,46,26,0.28);
  cursor: default;
}
.cal-pd-other:hover { background: transparent; border-color: transparent; }
.cal-pd-past { color: rgba(26,46,26,0.55); }

/* Season-tint backgrounds (very subtle) */
.cal-pd.cal-tier-peak { background: rgba(26,46,26,0.04); }
.cal-pd.cal-tier-high { background: rgba(201,168,76,0.07); }
.cal-pd.cal-tier-mid  { background: rgba(216,200,155,0.11); }
.cal-pd.cal-tier-low  { background: rgba(182,200,135,0.10); }

.cal-pd-today {
  color: var(--green-deep);
  font-weight: 700;
  background: var(--gold-pale) !important;
  border-color: rgba(201,168,76,0.4);
}
.cal-pd-selected {
  color: var(--green-deep);
  font-weight: 700;
  background: var(--white) !important;
  border: 2px solid var(--gold) !important;
  box-shadow: 0 0 0 3px rgba(201,168,76,0.18);
}
.cal-pd-selected.cal-pd-today { background: var(--gold-pale) !important; }

/* ---- Range selection ---- */
.cal-pd-range-middle {
  background: rgba(201,168,76,0.22) !important;
  color: var(--green-deep);
  border-color: rgba(201,168,76,0.35);
  border-radius: 0;
}
.cal-pd-range-preview {
  background: rgba(201,168,76,0.10) !important;
  color: var(--green-deep);
  border-color: rgba(201,168,76,0.2);
  border-radius: 0;
}
.cal-pd-range-start,
.cal-pd-range-end {
  background: var(--gold) !important;
  color: var(--green-deep) !important;
  font-weight: 700;
  border: 2px solid var(--gold) !important;
  border-radius: 999px;
  box-shadow: 0 0 0 3px rgba(201,168,76,0.25);
  z-index: 1;
}
/* When start === end (1-day stay), draw a complete pill — no flat edge */
.cal-pd-range-start.cal-pd-range-end {
  border-radius: 999px;
}
/* When the range is wider than 1 day, give the endpoints rounded outer corners
   and a flat inner edge so they meet the middle band cleanly. */
.cal-pd-range-start:not(.cal-pd-range-end) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.cal-pd-range-end:not(.cal-pd-range-start) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
/* When an endpoint also marks an event, push the dot indicator below the pill */
.cal-pd-range-start.cal-pd-event::after,
.cal-pd-range-end.cal-pd-event::after { background: var(--green-deep); }
/* Past dates in a range still show as muted — but if accidentally selected
   we let them render in the range styling to avoid awkward gaps. */

/* Event indicator â€” small dot below the number */
.cal-pd-event::after {
  content: '';
  position: absolute;
  bottom: 3px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold);
}
.cal-pd-selected.cal-pd-event::after,
.cal-pd-today.cal-pd-event::after { background: var(--green-deep); }

/* Hover tooltip for event days */
.cal-pd-tip {
  position: absolute;
  bottom: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--green-deep);
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 500;
  padding: 5px 10px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s;
  z-index: 5;
  box-shadow: 0 4px 14px rgba(0,0,0,0.2);
}
.cal-pd-tip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: var(--green-deep);
}
.cal-pd-event:hover .cal-pd-tip { opacity: 1; }

/* Side navigation arrows */
.cal-picker-nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 30px;
}
.cal-picker-arrow {
  width: 32px; height: 32px;
  border-radius: 6px;
  border: 1px solid rgba(26,46,26,0.15);
  background: var(--white);
  color: var(--green-deep);
  cursor: pointer;
  font-size: 18px;
  font-family: 'Jost', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.18s ease;
  line-height: 0;
}
.cal-picker-arrow:hover {
  background: var(--green-deep);
  color: var(--gold-light);
  border-color: var(--green-deep);
}

/* Footer â€” season context strip */
.cal-picker-info {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 16px 26px;
  background: linear-gradient(180deg, var(--white) 0%, #fbf8ec 100%);
  border-top: 1px solid rgba(26,46,26,0.08);
  flex-wrap: wrap;
}
.cal-picker-info-col {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.cal-picker-info-mig { flex: 1; min-width: 200px; }
.cal-picker-info-label {
  font-family: 'Cinzel', serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(26,46,26,0.5);
}
.cal-picker-info-col > span:last-child {
  font-size: 13px;
  color: var(--text-dark);
  font-weight: 500;
}
.cal-picker-weather-icon { font-style: normal; }
.cal-picker-tier {
  display: inline-block;
  width: max-content;
  font-family: 'Cinzel', serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--gold-pale);
  color: var(--green-deep);
}
.cal-picker-tier.cal-tier-peak { background: var(--green-deep); color: var(--gold-light); }
.cal-picker-tier.cal-tier-high { background: var(--gold);        color: var(--green-deep); }
.cal-picker-tier.cal-tier-mid  { background: #d8c89b;            color: var(--green-deep); }
.cal-picker-tier.cal-tier-low  { background: #e8eed2;            color: #3a5a3a; }

.cal-picker-cta {
  margin-left: auto;
  white-space: nowrap;
  font-size: 12px !important;
  padding: 10px 18px !important;
}
.cal-picker-cta[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
  filter: grayscale(40%);
}

/* ============ PINNED ACTIVITY PANEL ============ */
.cal-activity {
  position: relative;
  margin: 22px auto 0;
  max-width: 920px;
  background: #fff;
  border: 1px solid rgba(201,168,76,0.4);
  border-left: 4px solid var(--gold, #C9A84C);
  border-radius: 14px;
  padding: 24px 28px 22px;
  box-shadow: 0 14px 36px rgba(26,46,26,0.14);
  animation: calActivityIn 0.3s cubic-bezier(0.2, 0.9, 0.3, 1.15);
}
@keyframes calActivityIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.cal-activity-close {
  position: absolute;
  top: 12px; right: 14px;
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 0;
  background: rgba(26,46,26,0.06);
  color: var(--green-deep, #1A2E1A);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.15s, transform 0.15s;
}
.cal-activity-close:hover { background: var(--gold, #C9A84C); transform: rotate(90deg); }

.cal-activity-head {
  text-align: left;
  padding-bottom: 14px;
  border-bottom: 1px dashed rgba(0,0,0,0.08);
  margin-bottom: 16px;
}
.cal-activity-eyebrow {
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold, #C9A84C);
  font-weight: 600;
}
.cal-activity-date {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 28px;
  color: var(--green-deep, #1A2E1A);
  margin: 4px 0 10px;
  font-weight: 600;
}
.cal-activity-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.cal-activity-meta-pill {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 999px;
  font-family: 'Jost', sans-serif;
  font-size: 11.5px;
  letter-spacing: 1px;
  font-weight: 500;
  background: #fffaf2;
  color: var(--green-deep, #1A2E1A);
  border: 1px solid rgba(201,168,76,0.35);
}
.cal-activity-meta-pill.cal-tier-peak { background: var(--green-deep, #1A2E1A); color: var(--gold-light, #E8C96A); border-color: var(--green-deep, #1A2E1A); }
.cal-activity-meta-pill.cal-tier-high { background: var(--gold, #C9A84C);      color: var(--green-deep, #1A2E1A); }
.cal-activity-meta-pill.cal-tier-mid  { background: #d8c89b;                   color: var(--green-deep, #1A2E1A); }
.cal-activity-meta-pill.cal-tier-low  { background: #e8eed2;                   color: #3a5a3a; }

.cal-activity-body {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 22px;
  margin-bottom: 18px;
}
@media (max-width: 720px) {
  .cal-activity-body { grid-template-columns: 1fr; gap: 16px; }
}
.cal-activity-section h4 {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold, #C9A84C);
  font-weight: 700;
  margin: 0 0 8px;
}
.cal-activity-section p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.55;
  color: #3c3c3c;
  font-family: 'Jost', sans-serif;
}

.cal-activity-events {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cal-activity-events li {
  position: relative;
  padding: 8px 0 8px 18px;
  font-size: 13.5px;
  line-height: 1.5;
  color: #2c2c2c;
  font-family: 'Jost', sans-serif;
  border-bottom: 1px dashed rgba(0,0,0,0.05);
}
.cal-activity-events li:last-child { border-bottom: none; }
.cal-activity-event-dot {
  position: absolute;
  left: 2px;
  top: 16px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold, #C9A84C);
  box-shadow: 0 0 0 2px rgba(201,168,76,0.25);
}
.cal-activity-event-tag {
  display: inline-block;
  margin-left: 8px;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #888;
  font-style: normal;
  background: #f5f0e3;
  padding: 1px 7px;
  border-radius: 999px;
}
.cal-activity-empty {
  color: #888;
  font-style: italic;
  padding-left: 0 !important;
}
.cal-activity-empty::before { display: none; }

.cal-activity-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px dashed rgba(0,0,0,0.08);
}
@media (max-width: 540px) {
  .cal-activity-actions { flex-direction: column; align-items: stretch; }
}
.cal-activity-pinned {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #555;
  font-family: 'Jost', sans-serif;
}
.cal-activity-pin-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #4f9c52;
  box-shadow: 0 0 0 3px rgba(79,156,82,0.2);
  animation: calActivityPulse 1.6s ease-in-out infinite;
}
@keyframes calActivityPulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(79,156,82,0.2); }
  50%      { box-shadow: 0 0 0 6px rgba(79,156,82,0.08); }
}
.cal-activity-plan {
  font-size: 12px !important;
  padding: 12px 22px !important;
  white-space: nowrap;
}


/* Responsive — dual-month picker */
@media (max-width: 720px) {
  .cal-picker-body { grid-template-columns: 1fr; padding: 18px; }
  .cal-picker-months { grid-template-columns: 1fr; gap: 24px; }
  .cal-picker-nav {
    flex-direction: row;
    justify-content: center;
    padding-top: 0;
    order: -1;
  }
  .cal-picker-head { padding: 18px 20px; }
  .cal-picker-info { padding: 14px 18px; gap: 14px; }
  .cal-picker-cta { width: 100%; margin: 4px 0 0; text-align: center; }
  .cal-picker-date-big { font-size: 22px; }
}
@media (max-width: 420px) {
  .cal-pd { font-size: 11px; }
  .cal-picker-weekdays { font-size: 10px; }
  .cal-picker-month-title { font-size: 15px; }
}
/* ============ CMS RICH-TEXT CONTENT BLOCK ============ */
/* Rendered between page-banner and structured page content when
   admin has saved body_html via the CMS Page Editor. */
.cms-content {
  background: var(--cream);
  padding: 60px 0;
  border-bottom: 1px solid var(--gold-pale);
}
.cms-content .section-inner { max-width: 820px; }
.cms-content h1, .cms-content h2, .cms-content h3, .cms-content h4 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--green-deep);
  margin: 32px 0 14px;
  font-weight: 600;
  line-height: 1.2;
}
.cms-content h1 { font-size: 36px; }
.cms-content h2 { font-size: 30px; }
.cms-content h3 { font-size: 24px; }
.cms-content h4 { font-size: 20px; }
.cms-content h1:first-child, .cms-content h2:first-child, .cms-content h3:first-child { margin-top: 0; }
.cms-content p {
  font-family: 'Jost', sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(28,28,28,0.82);
  margin: 0 0 18px;
}
.cms-content a {
  color: var(--gold);
  text-decoration: underline;
  text-decoration-color: rgba(201,168,76,0.4);
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.cms-content a:hover { color: var(--green-deep); text-decoration-color: var(--green-deep); }
.cms-content ul, .cms-content ol {
  font-family: 'Jost', sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(28,28,28,0.82);
  padding-left: 22px;
  margin: 0 0 18px;
}
.cms-content li { margin-bottom: 6px; }
.cms-content blockquote {
  border-left: 3px solid var(--gold);
  padding: 6px 0 6px 20px;
  margin: 22px 0;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 20px;
  color: var(--green-deep);
}
.cms-content img { max-width: 100%; height: auto; border-radius: 10px; margin: 22px 0; display: block; }
.cms-content table { width: 100%; border-collapse: collapse; margin: 22px 0; font-size: 14px; }
.cms-content th, .cms-content td { border: 1px solid var(--gold-pale); padding: 10px 14px; text-align: left; }
.cms-content th {
  background: var(--gold-pale);
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--green-deep);
}
.cms-content strong { color: var(--text-dark); font-weight: 600; }
.cms-content hr { border: none; border-top: 1px solid var(--gold-pale); margin: 32px 0; }
@media (max-width: 720px) {
  .cms-content { padding: 40px 0; }
  .cms-content h1 { font-size: 28px; }
  .cms-content h2 { font-size: 24px; }
  .cms-content h3 { font-size: 20px; }
  .cms-content p, .cms-content ul, .cms-content ol { font-size: 15px; }
}

/* ============ STORY DETAIL PAGE ============ */
.story-banner {
  position: relative;
  min-height: 460px;
  background: var(--green-deep);
  color: white;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.story-banner-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.story-banner-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.55;
}
.story-banner-overlay {
  position: relative;
  z-index: 1;
  width: 100%;
  background: linear-gradient(180deg, rgba(13,26,13,0) 0%, rgba(13,26,13,0.55) 55%, rgba(13,26,13,0.85) 100%);
  padding: 110px 40px 70px;
}
.story-banner-inner {
  max-width: 880px;
  margin: 0 auto;
}
.story-back-link {
  display: inline-block;
  color: rgba(255,255,255,0.75);
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  text-decoration: none;
  margin-bottom: 18px;
  transition: color 0.2s;
}
.story-back-link:hover { color: var(--gold-light); }
.story-banner .page-banner-label {
  color: var(--gold-light);
  margin-bottom: 14px;
  text-align: left;
  justify-content: flex-start;
}
.story-banner-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(30px, 5vw, 52px);
  line-height: 1.15;
  margin: 0 0 18px;
  font-weight: 600;
  color: white;
}
.story-banner-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 12px;
  color: rgba(255,255,255,0.78);
  font-family: 'Jost', sans-serif;
  font-size: 13.5px;
  letter-spacing: 0.5px;
}
.story-meta-dot { color: rgba(255,255,255,0.4); }

.story-detail-body {
  border-bottom: 0;
  padding: 70px 0 30px;
}
.story-detail-body .section-inner { max-width: 760px; padding: 0 20px; }
.story-lead {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-style: italic;
  line-height: 1.55;
  color: var(--green-deep);
  margin: 0 0 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--gold-pale);
}
.story-share {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid var(--gold-pale);
  text-align: center;
}
.story-related {
  background: var(--cream);
  padding-bottom: 90px;
}
.story-related .blog-category-title {
  text-align: center;
  margin-bottom: 36px;
}

@media (max-width: 720px) {
  .story-banner { min-height: 360px; }
  .story-banner-overlay { padding: 90px 22px 50px; }
  .story-banner-title { font-size: 28px; }
  .story-detail-body { padding: 50px 0 20px; }
  .story-lead { font-size: 19px; }
}

/* ============ PUBLIC PAGINATION (safaris page) ============ */
.public-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
  margin: 50px auto 8px;
}
.public-page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.78);
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.4px;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
}
.public-page-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--green-deep);
  transform: translateY(-1px);
}
.public-page-btn.is-current {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--green-deep);
  font-weight: 700;
  cursor: default;
}
.public-page-btn.is-disabled {
  opacity: 0.35;
  pointer-events: none;
}
.public-page-ellipsis {
  color: rgba(255,255,255,0.4);
  padding: 0 4px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
}
.public-pagination-summary {
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.5);
  margin: 0 0 10px;
}
@media (max-width: 520px) {
  .public-pagination { gap: 4px; }
  .public-page-btn { min-width: 34px; height: 34px; padding: 0 10px; font-size: 12px; }
}
