picture{display:contents}
    :root {
      --charcoal: #1A1A1A;
      --sand: #F5EDE0;
      --gold: #C4944A;
      --gold-light: #D9AB6A;
      --gold-dark: #9B7038;
      --teal: #1B5E6B;
      --teal-light: #2A7D8E;
      --white: #FFFFFF;
      --text-muted: rgba(245, 237, 224, 0.65);
      --overlay: rgba(20, 15, 10, 0.62);
      --overlay-heavy: rgba(15, 10, 5, 0.80);
      --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      --transition-fast: 0.2s ease;
    }

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

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

    body {
      background-color: var(--charcoal);
      color: var(--sand);
      font-family: 'Source Sans 3', sans-serif;
      font-weight: 400;
      line-height: 1.7;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }

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

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

    .container {
      max-width: 1180px;
      margin: 0 auto;
      padding: 0 2rem;
    }

    .section-label {
      display: inline-block;
      font-family: 'Source Sans 3', sans-serif;
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1.2rem;
    }

    .section-title {
      font-family: 'Playfair Display', serif;
      font-weight: 700;
      line-height: 1.1;
      color: var(--sand);
    }

    .gold-line {
      display: block;
      width: 60px;
      height: 2px;
      background: var(--gold);
      margin: 1.4rem 0;
    }

    .fade-in {
      opacity: 0;
      transform: translateY(36px);
      transition: opacity 0.85s ease, transform 0.85s ease;
    }

    .fade-in.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .fade-in-left {
      opacity: 0;
      transform: translateX(-40px);
      transition: opacity 0.85s ease, transform 0.85s ease;
    }

    .fade-in-left.visible {
      opacity: 1;
      transform: translateX(0);
    }

    .fade-in-right {
      opacity: 0;
      transform: translateX(40px);
      transition: opacity 0.85s ease, transform 0.85s ease;
    }
    @media (max-width: 1199px) {
      .fade-in-right { transform: none; }
    }

    .fade-in-right.visible {
      opacity: 1;
      transform: translateX(0);
    }

    #navbar {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      padding: 24px 48px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
    }

    #navbar.scrolled {
      background: rgba(17, 17, 17, 0.95);
      padding: 16px 48px;
      box-shadow: 0 2px 40px rgba(0,0,0,0.3);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 14px;
      flex-shrink: 0;
    }
    .nav-logo svg {
      width: 36px;
      height: 36px;
    }
    .nav-logo-text {
      font-family: var(--font-body);
      font-weight: 600;
      font-size: 0.72rem;
      letter-spacing: 0.35em;
      color: var(--sand);
      text-transform: uppercase;
    }

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

    .nav-links a {
      font-family: var(--font-body);
      font-size: 0.78rem;
      font-weight: 500;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--sand);
      transition: color 0.3s ease;
      position: relative;
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 0;
      height: 1px;
      background: var(--gold);
      transition: width 0.3s ease;
    }

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

    .nav-links a:hover::after {
      width: 100%;
    }

    .nav-cta {
      font-family: var(--font-body);
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--charcoal) !important;
      background: var(--gold);
      padding: 10px 24px;
      border: none;
      cursor: pointer;
      transition: background 0.3s ease, transform 0.2s ease;
    }

    .nav-cta:hover {
      background: var(--gold-light) !important;
      transform: translateY(-1px);
    }

    .nav-cta::after {
      display: none !important;
    }

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 8px;
      background: none;
      border: none;
      z-index: 1001;
    }

    .hamburger span {
      display: block;
      width: 26px;
      height: 1.5px;
      background: var(--sand);
      transition: transform 0.3s ease, opacity 0.3s ease;
      transform-origin: center;
    }

    .hamburger.open span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 4px);
    }
    .hamburger.open span:nth-child(2) {
      opacity: 0;
    }
    .hamburger.open span:nth-child(3) {
      transform: rotate(-45deg) translate(5px, -4px);
    }

    .mobile-menu {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(15, 10, 8, 0.97);
      z-index: 999;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 2.5rem;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s ease;
    }

    .mobile-menu.open {
      opacity: 1;
      pointer-events: all;
    }

    .mobile-menu a {
      font-family: 'Playfair Display', serif;
      font-size: 2rem;
      font-weight: 500;
      color: var(--sand);
      letter-spacing: 0.04em;
      transition: color var(--transition-fast);
    }

    .mobile-menu a:hover {
      color: var(--gold);
    }

    #hero {
      position: relative;
      height: 100vh;
      min-height: 680px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background-image: var(--hero-img);
      background-size: cover;
      background-position: var(--hero-pos, center 40%);
      will-change: transform;
      transform: scale(1.12);
      z-index: 0;
    }

    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to bottom,
        rgba(10, 8, 5, 0.72) 0%,
        rgba(10, 8, 5, 0.62) 30%,
        rgba(15, 10, 8, 0.74) 55%,
        rgba(20, 14, 8, 0.94) 100%
      );
      z-index: 1;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      text-align: center;
      padding: 0 1.5rem;
      max-width: 900px;
    }

    .hero-eyebrow {
      font-size: 0.7rem;
      letter-spacing: 0.35em;
      font-weight: 600;
      color: var(--gold);
      text-transform: uppercase;
      margin-bottom: 1.4rem;
      animation: fadeUp 0.9s ease 0.3s both;
      text-shadow: 0 2px 6px rgba(0,0,0,0.8);
    }

    .hero-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(4.5rem, 12vw, 8.5rem);
      font-weight: 900;
      line-height: 0.9;
      letter-spacing: -0.02em;
      color: var(--white);
      margin-bottom: 1rem;
      animation: fadeUp 1s ease 0.55s both;
      text-shadow: 0 2px 8px rgba(0,0,0,0.9), 0 4px 40px rgba(0,0,0,0.6);
    }

    .hero-subtitle {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.2rem, 3vw, 1.85rem);
      font-style: italic;
      font-weight: 400;
      color: rgba(245, 237, 224, 0.95);
      margin-bottom: 2rem;
      animation: fadeUp 1s ease 0.75s both;
      text-shadow: 0 2px 6px rgba(0,0,0,0.8), 0 4px 20px rgba(0,0,0,0.5);
    }

    .hero-dates {
      font-size: 0.82rem;
      letter-spacing: 0.22em;
      font-weight: 600;
      color: var(--gold);
      text-transform: uppercase;
      margin-bottom: 0.5rem;
      animation: fadeUp 1s ease 0.9s both;
      text-shadow: 0 2px 6px rgba(0,0,0,0.8);
    }

    .hero-tagline {
      font-size: 1rem;
      color: rgba(245, 237, 224, 0.85);
      font-weight: 300;
      letter-spacing: 0.06em;
      margin-bottom: 2.8rem;
      animation: fadeUp 1s ease 1s both;
      text-shadow: 0 2px 6px rgba(0,0,0,0.8);
    }

    .hero-cta {
      display: inline-block;
      background: transparent;
      border: 1.5px solid var(--gold);
      color: var(--gold);
      font-family: 'Source Sans 3', sans-serif;
      font-size: 0.8rem;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      padding: 1rem 2.4rem;
      cursor: pointer;
      transition: background var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
      animation: fadeUp 1s ease 1.15s both;
    }

    .hero-cta:hover {
      background: var(--gold);
      color: var(--charcoal);
      transform: translateY(-2px);
    }

    .hero-scroll {
      position: absolute;
      bottom: 2.5rem;
      left: 50%;
      transform: translateX(-50%);
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
      animation: fadeIn 1s ease 1.5s both;
    }

    .hero-scroll span {
      font-size: 0.6rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: rgba(245, 237, 224, 0.5);
    }

    .scroll-arrow {
      width: 20px;
      height: 20px;
      border-right: 1.5px solid rgba(196, 148, 74, 0.7);
      border-bottom: 1.5px solid rgba(196, 148, 74, 0.7);
      transform: rotate(45deg);
      animation: bounce 2s ease infinite;
    }

    @keyframes bounce {
      0%, 100% { transform: rotate(45deg) translateY(0); }
      50% { transform: rotate(45deg) translateY(6px); }
    }

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

    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    #overview {
      background: var(--sand);
      color: var(--charcoal);
      padding: 7rem 0;
    }

    .intro-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 6rem;
      align-items: start;
    }

    .intro-text .section-label {
      color: var(--gold-dark);
    }

    .intro-text .section-title {
      color: var(--charcoal);
      font-size: clamp(2.2rem, 4vw, 3.2rem);
      margin-bottom: 0.5rem;
    }

    .intro-text .gold-line {
      margin: 1.2rem 0 2rem;
    }

    .intro-text p {
      font-size: 1.05rem;
      line-height: 1.82;
      color: rgba(26, 26, 26, 0.8);
      margin-bottom: 1.4rem;
    }

    .pull-quote {
      margin: 3rem 0 2.5rem;
      padding-left: 2rem;
      border-left: 3px solid var(--gold);
      position: relative;
    }

    .pull-quote blockquote {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.15rem, 2.2vw, 1.55rem);
      font-style: italic;
      font-weight: 500;
      color: var(--charcoal);
      line-height: 1.55;
    }

    .intro-image-wrap {
      position: relative;
    }

    .intro-image-wrap img {
      width: 100%;
      height: 700px;
      object-fit: cover;
      display: block;
    }

    .intro-image-caption {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: linear-gradient(to top, rgba(10,8,5,0.8) 0%, transparent 100%);
      padding: 2.5rem 1.5rem 1.5rem;
    }

    .intro-image-caption span {
      font-size: 0.7rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: rgba(245, 237, 224, 0.7);
    }

    #highlights {
      background: var(--charcoal);
      padding: 7rem 0;
    }

    .highlights-header {
      text-align: center;
      margin-bottom: 4rem;
    }

    .highlights-header .section-title {
      font-size: clamp(2rem, 4vw, 3rem);
    }

    .highlights-header .gold-line {
      margin: 1.2rem auto;
    }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5px;
      background: rgba(196, 148, 74, 0.15);
      border: 1px solid rgba(196, 148, 74, 0.15);
    }

    .feature-card {
      background: var(--charcoal);
      padding: 2.8rem 2.2rem;
      transition: background var(--transition-fast), transform var(--transition-fast);
      position: relative;
      overflow: hidden;
    }

    .feature-card::before {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: var(--gold);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.4s ease;
    }

    .feature-card:hover {
      background: #222018;
      transform: translateY(-3px);
    }

    .feature-card:hover::before {
      transform: scaleX(1);
    }

    .feature-icon {
      width: 44px;
      height: 44px;
      margin-bottom: 1.4rem;
    }

    .feature-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.15rem;
      font-weight: 600;
      color: var(--gold);
      margin-bottom: 0.8rem;
      line-height: 1.3;
    }

    .feature-desc {
      font-size: 0.92rem;
      color: var(--text-muted);
      line-height: 1.72;
    }

    #itinerary {
      background: #141210;
      padding: 7rem 0;
      position: relative;
    }

    .itinerary-header {
      text-align: center;
      margin-bottom: 5.5rem;
    }

    .itinerary-header .section-title {
      font-size: clamp(2rem, 4vw, 3rem);
      letter-spacing: 0.08em;
    }

    .itinerary-header .gold-line {
      margin: 1.4rem auto;
      width: 80px;
    }

    .timeline {
      position: relative;
      padding: 0 0 2rem;
    }

    .timeline::before {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 1px;
      background: linear-gradient(to bottom, transparent, var(--gold) 8%, var(--gold) 92%, transparent);
    }

    .timeline-item {
      display: grid;
      grid-template-columns: 1fr 80px 1fr;
      gap: 0;
      margin-bottom: 3.5rem;
      align-items: start;
    }

    .timeline-item:nth-child(odd) .timeline-card {
      grid-column: 1;
    }

    .timeline-item:nth-child(even) .timeline-card {
      grid-column: 3;
    }

    .timeline-card {
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(196, 148, 74, 0.18);
      padding: 2.2rem 2rem;
      position: relative;
      transition: border-color var(--transition-fast), background var(--transition-fast);
    }

    .timeline-card:hover {
      border-color: rgba(196, 148, 74, 0.45);
      background: rgba(196, 148, 74, 0.04);
    }

    .day-dot {
      grid-column: 2;
      display: flex;
      justify-content: center;
      align-items: flex-start;
      padding-top: 1.8rem;
    }

    .day-dot-inner {
      width: 14px;
      height: 14px;
      border-radius: 50%;
      background: var(--gold);
      border: 3px solid #141210;
      box-shadow: 0 0 0 3px var(--gold);
      flex-shrink: 0;
    }

    .timeline-item:nth-child(odd) .timeline-card {
      grid-column: 1;
      grid-row: 1;
    }

    .timeline-item:nth-child(odd) .day-dot {
      grid-column: 2;
      grid-row: 1;
    }

    .timeline-item:nth-child(odd) .timeline-empty {
      grid-column: 3;
      grid-row: 1;
    }

    .timeline-item:nth-child(even) .timeline-empty {
      grid-column: 1;
      grid-row: 1;
    }

    .timeline-item:nth-child(even) .day-dot {
      grid-column: 2;
      grid-row: 1;
    }

    .timeline-item:nth-child(even) .timeline-card {
      grid-column: 3;
      grid-row: 1;
    }

    .day-label {
      font-size: 0.68rem;
      letter-spacing: 0.25em;
      font-weight: 700;
      color: var(--gold);
      text-transform: uppercase;
      margin-bottom: 0.3rem;
    }

    .day-location {
      font-family: 'Playfair Display', serif;
      font-size: 1.35rem;
      font-weight: 700;
      color: var(--sand);
      margin-bottom: 0.4rem;
      line-height: 1.3;
    }

    .day-date {
      font-size: 0.72rem;
      letter-spacing: 0.12em;
      color: rgba(196, 148, 74, 0.7);
      font-style: italic;
      margin-bottom: 1rem;
    }

    .day-desc {
      font-size: 0.93rem;
      color: var(--text-muted);
      line-height: 1.78;
    }

    #details {
      background: var(--sand);
      padding: 7rem 0;
    }

    .details-header {
      text-align: center;
      margin-bottom: 4rem;
    }

    .details-header .section-title {
      color: var(--charcoal);
      font-size: clamp(2rem, 4vw, 2.8rem);
    }

    .details-header .section-label {
      color: var(--gold-dark);
    }

    .details-header .gold-line {
      margin: 1.2rem auto;
      background: var(--gold-dark);
    }

    .details-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
      border: 1px solid rgba(26, 26, 26, 0.12);
    }

    .detail-row {
      display: flex;
      align-items: flex-start;
      padding: 1.5rem 2rem;
      border-bottom: 1px solid rgba(26, 26, 26, 0.1);
      gap: 1.5rem;
    }

    .detail-row:nth-child(even) {
      background: rgba(26, 26, 26, 0.03);
    }

    .detail-label {
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--gold-dark);
      min-width: 110px;
      flex-shrink: 0;
      padding-top: 0.1rem;
    }

    .detail-value {
      font-size: 0.97rem;
      color: rgba(26, 26, 26, 0.82);
      line-height: 1.6;
    }

    .gallery-strip {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      height: 340px;
      overflow: hidden;
    }

    .gallery-strip-item {
      position: relative;
      overflow: hidden;
    }

    .gallery-strip-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.7s ease;
    }

    .gallery-strip-item:hover img {
      transform: scale(1.08);
    }

    .gallery-strip-overlay {
      position: absolute;
      inset: 0;
      background: rgba(10, 8, 5, 0.35);
      transition: background 0.4s ease;
    }

    .gallery-strip-item:hover .gallery-strip-overlay {
      background: rgba(10, 8, 5, 0.1);
    }


    /* ========== FAQ ========== */
    .faq {
      background: var(--sand);
      color: var(--charcoal);
      padding: 120px 48px;
    }
    .faq-inner {
      max-width: 800px;
      margin: 0 auto;
    }
    .faq-header-label {
      font-family: var(--font-body);
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--teal);
      margin-bottom: 12px;
    }
    .faq-header-rule {
      width: 48px;
      height: 2px;
      background: var(--gold);
      margin-bottom: 20px;
    }
    .faq-header-title {
      font-family: var(--font-display);
      font-size: clamp(1.6rem, 3vw, 2.2rem);
      font-weight: 500;
      color: var(--charcoal);
      margin-bottom: 48px;
    }
    .faq-item {
      border-bottom: 1px solid rgba(26, 26, 26, 0.12);
    }
    .faq-item:last-child {
      border-bottom: none;
    }
    .faq-question {
      width: 100%;
      background: none;
      border: none;
      padding: 28px 40px 28px 0;
      font-family: var(--font-display);
      font-size: clamp(1.05rem, 1.8vw, 1.2rem);
      font-weight: 500;
      color: var(--charcoal);
      text-align: left;
      cursor: pointer;
      position: relative;
      line-height: 1.4;
      transition: color 0.3s ease;
    }
    .faq-question:hover {
      color: var(--teal);
    }
    .faq-question::after {
      content: '+';
      position: absolute;
      right: 0;
      top: 50%;
      transform: translateY(-50%);
      font-family: var(--font-body);
      font-size: 1.4rem;
      font-weight: 300;
      color: var(--gold);
      transition: transform 0.3s ease;
    }
    .faq-item.active .faq-question::after {
      content: '\2212';
    }
    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease, padding 0.4s ease;
    }
    .faq-answer-inner {
      padding: 0 0 28px 0;
      font-family: var(--font-body);
      font-size: 0.95rem;
      line-height: 1.75;
      color: rgba(26, 26, 26, 0.75);
    }
    .faq-item.active .faq-answer {
      max-height: 300px;
    }

    #book {
      position: relative;
      padding: 8rem 0;
      background: var(--charcoal);
      overflow: hidden;
    }

    .pricing-bg {
      position: absolute;
      inset: 0;
      background-image: var(--pricing-img, var(--hero-img));
      background-size: cover;
      background-position: center;
      opacity: 0.18;
    }

    .pricing-content {
      position: relative;
      z-index: 1;
      text-align: center;
      max-width: 680px;
      margin: 0 auto;
    }

    .pricing-label {
      font-size: 0.72rem;
      letter-spacing: 0.3em;
      font-weight: 600;
      color: var(--gold);
      text-transform: uppercase;
      margin-bottom: 2rem;
    }

    .pricing-amount {
      font-family: 'Playfair Display', serif;
      font-size: clamp(4.5rem, 10vw, 7.5rem);
      font-weight: 900;
      color: var(--gold);
      line-height: 1;
      letter-spacing: -0.02em;
      margin-bottom: 0.3rem;
    }

    .pricing-per {
      font-size: 1rem;
      color: var(--text-muted);
      letter-spacing: 0.12em;
      text-transform: uppercase;
      font-weight: 300;
      margin-bottom: 2.2rem;
    }

    .pricing-divider {
      width: 60px;
      height: 1px;
      background: rgba(196, 148, 74, 0.4);
      margin: 0 auto 2.2rem;
    }

    .pricing-includes {
      font-size: 1.05rem;
      color: rgba(245, 237, 224, 0.75);
      line-height: 1.7;
      margin-bottom: 0.9rem;
    }

    .pricing-note {
      font-size: 0.82rem;
      color: rgba(245, 237, 224, 0.45);
      font-style: italic;
      margin-bottom: 3.5rem;
    }

    .book-cta {
      display: inline-block;
      background: var(--gold);
      color: var(--charcoal);
      font-family: 'Source Sans 3', sans-serif;
      font-size: 0.85rem;
      font-weight: 700;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      padding: 1.1rem 3rem;
      cursor: pointer;
      transition: background var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
    }

    .book-cta:hover {
      background: var(--gold-light);
      transform: translateY(-3px);
      box-shadow: 0 12px 40px rgba(196, 148, 74, 0.3);
    }

    .contact-options {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 1.2rem;
      margin-top: 2.2rem;
      flex-wrap: wrap;
    }

    .contact-option {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-family: 'Source Sans 3', sans-serif;
      font-size: 0.82rem;
      letter-spacing: 0.06em;
      color: rgba(245, 237, 224, 0.6);
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .contact-option:hover {
      color: var(--gold);
    }

    .contact-option svg {
      width: 16px;
      height: 16px;
      fill: currentColor;
      flex-shrink: 0;
    }

    .contact-separator {
      width: 1px;
      height: 16px;
      background: rgba(245, 237, 224, 0.15);
    }

    #security {
      background: #111;
      border-top: 1px solid rgba(27, 94, 107, 0.3);
      border-bottom: 1px solid rgba(27, 94, 107, 0.3);
      padding: 3.5rem 0;
    }

    .security-inner {
      display: flex;
      align-items: flex-start;
      gap: 2rem;
      max-width: 780px;
      margin: 0 auto;
    }

    .security-icon {
      flex-shrink: 0;
      width: 42px;
      height: 42px;
      background: rgba(27, 94, 107, 0.25);
      border: 1px solid rgba(27, 94, 107, 0.5);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .security-text .security-title {
      font-family: 'Playfair Display', serif;
      font-size: 1rem;
      font-weight: 600;
      color: var(--sand);
      margin-bottom: 0.5rem;
    }

    .security-text p {
      font-size: 0.93rem;
      color: rgba(245, 237, 224, 0.6);
      line-height: 1.72;
    }

    .footer {
      background: #0D0D0D;
      padding: 60px 48px 40px;
      text-align: center;
      border-top: 1px solid rgba(196, 148, 74, 0.15);
    }
    .footer-logo {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      margin-bottom: 24px;
    }
    .footer-logo svg {
      width: 28px;
      height: 28px;
    }
    .footer-logo-text {
      font-family: 'Source Sans 3', sans-serif;
      font-weight: 600;
      font-size: 0.68rem;
      letter-spacing: 0.35em;
      color: var(--sand);
      text-transform: uppercase;
      opacity: 0.8;
    }
    .footer-social {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 20px;
      margin-bottom: 28px;
    }
    .footer-social a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      border: 1px solid rgba(196, 148, 74, 0.3);
      border-radius: 50%;
      transition: border-color 0.3s ease, background 0.3s ease;
    }
    .footer-social a:hover {
      border-color: var(--gold);
      background: rgba(196, 148, 74, 0.1);
    }
    .footer-social a svg {
      width: 16px;
      height: 16px;
      fill: var(--sand);
      opacity: 0.7;
      transition: opacity 0.3s ease;
    }
    .footer-social a:hover svg {
      opacity: 1;
    }
    .footer-tagline {
      font-family: 'Playfair Display', serif;
      font-size: 0.88rem;
      font-style: italic;
      color: rgba(245, 237, 224, 0.7);
      letter-spacing: 0.02em;
      margin-bottom: 20px;
    }
    .footer-copy {
      font-size: 0.72rem;
      letter-spacing: 0.15em;
      color: rgba(245, 237, 224, 0.7);
    }

    @media (max-width: 768px) {
      #navbar {
        padding: 18px 24px;
      }
      #navbar.scrolled {
        padding: 14px 24px;
      }
      .nav-links {
        display: none;
      }
      .hamburger {
        display: flex;
      }
      .mobile-menu {
        display: flex;
      }
    }

    @media (max-width: 900px) {
      .intro-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
      }

      .intro-image-wrap img {
        height: 420px;
      }

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

      .timeline::before {
        left: 20px;
        transform: none;
      }

      .timeline-item {
        grid-template-columns: 40px 1fr;
        gap: 0 1.2rem;
      }

      .timeline-item:nth-child(odd) .timeline-card,
      .timeline-item:nth-child(even) .timeline-card {
        grid-column: 2;
        grid-row: 1;
      }

      .timeline-item:nth-child(odd) .day-dot,
      .timeline-item:nth-child(even) .day-dot {
        grid-column: 1;
        grid-row: 1;
      }

      .timeline-empty {
        display: none !important;
      }

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

      .gallery-strip {
        grid-template-columns: repeat(2, 1fr);
        height: 420px;
      }

      .nav-links {
        display: none;
      }

      .hamburger {
        display: flex;
      }

      .mobile-menu {
        display: flex;
      }
    }

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

      .gallery-strip {
        grid-template-columns: 1fr 1fr;
        height: 360px;
      }

      .detail-row {
        flex-direction: column;
        gap: 0.4rem;
      }

      .detail-label {
        min-width: auto;
      }
    }

    @media print {
      #navbar, .hero-scroll, .hamburger, .mobile-menu { display: none !important; }
      body { background: white; color: black; }
      #hero { height: 50vh; }
      .hero-bg { transform: none; }
      section { page-break-inside: avoid; }
      .timeline::before { background: #999; }
      .book-cta, .hero-cta { border: 1px solid #000; }
    }
  
    /* MOBILE-SECTION-PADDING: reduce big section gaps on phones */
    @media (max-width: 768px) {
      #overview, #highlights, #itinerary, #details, #book, #security {
        padding-top: 3.5rem !important;
        padding-bottom: 3.5rem !important;
      }
      .gallery-strip {
        margin-top: 0 !important;
      }
      .related-expeditions {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
      }
    }
  
  /* align nav breakpoint to 900 to match language toggle (no dead zone) */
  @media (max-width: 900px){.nav-links{display:none}.hamburger{display:flex}.mobile-menu{display:flex}}
