    /* ========== CSS VARIABLES ========== */
    :root {
      --charcoal: #1A1A1A;
      --charcoal-deep: #111111;
      --sand: #F5EDE0;
      --sand-light: #FAF6F0;
      --gold: #C4944A;
      --gold-light: #D4A85C;
      --teal: #1B5E6B;
      --teal-dark: #154C57;
      --white: #FFFFFF;
      --off-white: #E8E0D4;
      --text-dark: #1A1A1A;
      --text-light: #F5EDE0;
      --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
      --font-body: 'Source Sans 3', 'Segoe UI', Helvetica, Arial, sans-serif;
    }

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

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

    body {
      font-family: var(--font-body);
      color: var(--text-light);
      background: var(--charcoal);
      overflow-x: hidden;
      line-height: 1.6;
    }

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

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

    /* ========== UTILITY ========== */
    .reveal {
      opacity: 0;
      transform: translateY(40px);
      transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
    }
    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }
    .reveal-delay-1 { transition-delay: 0.15s; }
    .reveal-delay-2 { transition-delay: 0.3s; }
    .reveal-delay-3 { transition-delay: 0.45s; }
    .reveal-delay-4 { transition-delay: 0.6s; }

    /* ========== NAVIGATION ========== */
    .nav {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      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;
    }
    .nav.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;
    }
    .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: 28px;
      list-style: none;
      white-space: nowrap;
    }
    .nav-links a {
      font-family: var(--font-body);
      font-size: 0.75rem;
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--sand);
      transition: color 0.3s ease;
      position: relative;
      white-space: nowrap;
    }
    .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-btn {
      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-btn:hover {
      background: var(--gold-light);
      transform: translateY(-1px);
    }
    .nav-cta-btn::after {
      display: none !important;
    }

    /* Hamburger */
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      background: none;
      border: none;
      padding: 8px;
      z-index: 1001;
    }
    .hamburger span {
      display: block;
      width: 26px;
      height: 1.5px;
      background: var(--sand);
      transition: transform 0.3s ease, opacity 0.3s ease;
    }
    .hamburger.active span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 4px);
    }
    .hamburger.active span:nth-child(2) {
      opacity: 0;
    }
    .hamburger.active span:nth-child(3) {
      transform: rotate(-45deg) translate(5px, -4px);
    }

    /* Mobile menu */
    .mobile-menu {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      background: rgba(17, 17, 17, 0.98);
      z-index: 999;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 32px;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.4s ease;
    }
    .mobile-menu.open {
      opacity: 1;
      pointer-events: all;
    }
    .mobile-menu a {
      font-family: var(--font-display);
      font-size: 1.8rem;
      color: var(--sand);
      transition: color 0.3s ease;
      letter-spacing: 0.05em;
    }
    .mobile-menu a:hover {
      color: var(--gold);
    }

    /* ========== HERO ========== */
    .hero {
      position: relative;
      width: 100%;
      height: 100vh;
      min-height: 600px;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .hero-slide {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      opacity: 0;
      transition: opacity 2s ease-in-out;
      will-change: opacity;
    }
    .hero-slide.active {
      opacity: 1;
    }
    .hero-slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transform: scale(1.05);
      transition: transform 8s ease-out;
    }
    .hero-slide.active img {
      transform: scale(1.0);
    }
    .hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(
        to bottom,
        rgba(10, 8, 5, 0.55) 0%,
        rgba(10, 8, 5, 0.70) 50%,
        rgba(10, 8, 5, 0.80) 100%
      );
      z-index: 2;
    }
    .hero-content {
      position: relative;
      z-index: 3;
      text-align: center;
      max-width: 900px;
      padding: 0 24px;
    }
    .hero-eyebrow {
      font-family: var(--font-body);
      font-size: 0.78rem;
      font-weight: 500;
      letter-spacing: 0.4em;
      color: var(--gold);
      text-transform: uppercase;
      margin-bottom: 28px;
      text-shadow: 0 2px 20px rgba(0,0,0,0.8);
    }
    .hero-title {
      font-family: var(--font-display);
      font-size: clamp(2.8rem, 6vw, 5rem);
      font-weight: 500;
      line-height: 1.1;
      color: var(--white);
      margin-bottom: 28px;
      text-shadow: 0 2px 30px rgba(0,0,0,0.7), 0 4px 60px rgba(0,0,0,0.5);
    }
    .hero-subtitle {
      font-family: var(--font-body);
      font-size: 1.1rem;
      font-weight: 300;
      color: var(--off-white);
      letter-spacing: 0.08em;
      max-width: 600px;
      margin: 0 auto;
      text-shadow: 0 2px 20px rgba(0,0,0,0.8);
    }

    /* Scroll indicator */
    .scroll-indicator {
      position: absolute;
      bottom: 40px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 3;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      opacity: 0.7;
      animation: scrollBounce 2.5s infinite ease-in-out;
    }
    .scroll-indicator span {
      font-family: var(--font-body);
      font-size: 0.65rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--sand);
    }
    .scroll-indicator svg {
      width: 20px;
      height: 20px;
      stroke: var(--sand);
    }
    @keyframes scrollBounce {
      0%, 100% { transform: translateX(-50%) translateY(0); }
      50% { transform: translateX(-50%) translateY(8px); }
    }

    /* ========== PHILOSOPHY ========== */
    .philosophy {
      background: var(--sand);
      color: var(--text-dark);
      padding: 120px 48px;
    }
    .philosophy-grid {
      max-width: 1300px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }
    .philosophy-content {
      padding-right: 20px;
    }
    .section-label {
      font-family: var(--font-body);
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.35em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 20px;
      display: block;
    }
    .section-label.light {
      color: var(--gold);
    }
    .philosophy-title {
      font-family: var(--font-display);
      font-size: clamp(2rem, 3.5vw, 2.8rem);
      font-weight: 500;
      line-height: 1.2;
      color: var(--charcoal);
      margin-bottom: 32px;
    }
    .philosophy-text {
      font-family: var(--font-body);
      font-size: 1.05rem;
      font-weight: 400;
      line-height: 1.8;
      color: #3D3A36;
      margin-bottom: 20px;
    }
    .philosophy-text:last-of-type {
      margin-bottom: 0;
    }
    .philosophy-image {
      position: relative;
      overflow: hidden;
    }
    .philosophy-image img {
      width: 100%;
      height: 620px;
      object-fit: cover;
      filter: brightness(0.95);
      transition: transform 0.6s ease;
    }
    .philosophy-image:hover img {
      transform: scale(1.03);
    }
    .philosophy-image::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 30%;
      background: linear-gradient(to top, rgba(196, 148, 74, 0.15), transparent);
      pointer-events: none;
    }
    .gold-rule {
      width: 60px;
      height: 2px;
      background: var(--gold);
      margin-bottom: 32px;
      margin-top: 8px;
    }

    /* ========== EXPEDITIONS ========== */
    .expeditions {
      background: var(--charcoal-deep);
      padding: 120px 48px;
    }
    .expeditions-header {
      text-align: center;
      margin-bottom: 64px;
    }
    .expeditions-title {
      font-family: var(--font-display);
      font-size: clamp(2rem, 3.5vw, 2.8rem);
      font-weight: 500;
      color: var(--sand);
      margin-top: 12px;
    }
    .expeditions-grid {
      max-width: 1400px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
    }
    .expedition-card {
      position: relative;
      overflow: hidden;
      cursor: pointer;
      aspect-ratio: 3/4;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      width: 100%;
    }
    .expedition-card-img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    }
    .expedition-card:hover .expedition-card-img {
      transform: scale(1.08);
    }
    .expedition-card-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(
        to top,
        rgba(10, 8, 5, 0.85) 0%,
        rgba(10, 8, 5, 0.35) 50%,
        rgba(10, 8, 5, 0.20) 100%
      );
      z-index: 1;
      transition: background 0.4s ease;
    }
    .expedition-card:hover .expedition-card-overlay {
      background: linear-gradient(
        to top,
        rgba(10, 8, 5, 0.90) 0%,
        rgba(10, 8, 5, 0.40) 50%,
        rgba(10, 8, 5, 0.25) 100%
      );
    }
    .expedition-card-content {
      position: relative;
      z-index: 2;
      padding: 36px 28px;
    }
    .expedition-card-tag {
      font-family: var(--font-body);
      font-size: 0.68rem;
      font-weight: 600;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 12px;
    }
    .expedition-card-name {
      font-family: var(--font-display);
      font-size: 1.8rem;
      font-weight: 500;
      color: var(--white);
      line-height: 1.2;
      margin-bottom: 6px;
      text-shadow: 0 2px 12px rgba(0,0,0,0.5);
    }
    .expedition-card-subtitle {
      font-family: var(--font-display);
      font-size: 1.05rem;
      font-style: italic;
      color: var(--off-white);
      margin-bottom: 14px;
      opacity: 0.85;
    }
    .expedition-card-details {
      font-family: var(--font-body);
      font-size: 0.85rem;
      font-weight: 400;
      color: var(--off-white);
      margin-bottom: 20px;
      opacity: 0.8;
    }
    .expedition-card-details span {
      display: inline-block;
    }
    .expedition-card-details .separator {
      margin: 0 8px;
      color: var(--gold);
    }
    .expedition-card-link {
      font-family: var(--font-body);
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--gold);
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: gap 0.3s ease, color 0.3s ease;
    }
    .expedition-card:hover .expedition-card-link {
      gap: 14px;
    }
    .expedition-card-link svg {
      width: 16px;
      height: 16px;
      stroke: var(--gold);
      transition: transform 0.3s ease;
    }
    .expedition-card:hover .expedition-card-link svg {
      transform: translateX(4px);
    }

    /* ========== STATS STRIP ========== */
    .stats {
      position: relative;
      overflow: hidden;
      padding: 100px 48px;
    }
    .stats-bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .stats-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(10, 8, 5, 0.78);
      z-index: 1;
    }
    .stats-grid {
      position: relative;
      z-index: 2;
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 40px;
      text-align: center;
    }
    .stat-item {
      padding: 20px 0;
    }
    .stat-number {
      font-family: var(--font-display);
      font-size: clamp(2.8rem, 5vw, 3.8rem);
      font-weight: 500;
      color: var(--gold);
      line-height: 1;
      margin-bottom: 12px;
      text-shadow: 0 2px 20px rgba(0,0,0,0.5);
    }
    .stat-label {
      font-family: var(--font-body);
      font-size: 0.82rem;
      font-weight: 500;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--sand);
      opacity: 0.85;
    }
    .stat-divider {
      position: absolute;
      right: 0;
      top: 50%;
      transform: translateY(-50%);
      width: 1px;
      height: 50px;
      background: rgba(196, 148, 74, 0.3);
    }

    /* ========== TESTIMONIAL CAROUSEL ========== */
    .testimonial {
      background: var(--charcoal);
      padding: 120px 48px;
      text-align: center;
      overflow: hidden;
    }
    .testimonial-carousel-wrapper {
      max-width: 850px;
      margin: 0 auto;
      position: relative;
      overflow: hidden;
    }
    .testimonial-gold-line {
      width: 60px;
      height: 2px;
      background: var(--gold);
      margin: 0 auto 48px;
    }
    .testimonial-track {
      display: flex;
      transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
      touch-action: pan-y;
      cursor: grab;
    }
    .testimonial-track.dragging {
      transition: none;
      cursor: grabbing;
    }
    .testimonial-slide {
      min-width: 100%;
      width: 100%;
      flex-shrink: 0;
      padding: 0 20px;
      box-sizing: border-box;
    }
    .testimonial-quote {
      font-family: var(--font-display);
      font-size: clamp(1.3rem, 2.4vw, 1.8rem);
      font-weight: 400;
      font-style: italic;
      line-height: 1.6;
      color: var(--sand);
      margin-bottom: 36px;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }
    .testimonial-quote::before {
      content: '\201C';
      display: block;
      font-size: 4rem;
      color: var(--gold);
      line-height: 1;
      margin-bottom: 16px;
      font-style: normal;
    }
    .testimonial-attribution {
      font-family: var(--font-body);
      font-size: 0.85rem;
      font-weight: 500;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
      display: block;
      margin-bottom: 8px;
    }
    .testimonial-destination {
      font-family: var(--font-body);
      font-size: 0.75rem;
      font-weight: 400;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--off-white);
      opacity: 0.6;
    }
    .testimonial-nav {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 20px;
      margin-top: 48px;
    }
    .testimonial-arrow {
      background: none;
      border: 1px solid rgba(196, 148, 74, 0.4);
      color: var(--gold);
      width: 44px;
      height: 44px;
      border-radius: 50%;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
      flex-shrink: 0;
    }
    .testimonial-arrow:hover {
      background: rgba(196, 148, 74, 0.15);
      border-color: var(--gold);
    }
    .testimonial-arrow svg {
      width: 18px;
      height: 18px;
    }
    .testimonial-dots {
      display: flex;
      gap: 10px;
    }
    .testimonial-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: rgba(245, 237, 224, 0.25);
      border: none;
      cursor: pointer;
      padding: 0;
      transition: all 0.3s ease;
    }
    .testimonial-dot.active {
      background: var(--gold);
      transform: scale(1.25);
    }

    /* ========== FAQ ========== */
    .faq {
      background: var(--sand);
      color: var(--text-dark);
      padding: 120px 48px;
    }
    .faq-inner {
      max-width: 800px;
      margin: 0 auto;
    }
    .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(--text-dark);
      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;
    }

    /* ========== CTA ========== */
    .cta {
      background: var(--charcoal-deep);
      padding: 120px 48px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .cta::before {
      content: '';
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 1px;
      height: 80px;
      background: linear-gradient(to bottom, var(--gold), transparent);
    }
    .cta-inner {
      max-width: 700px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }
    .cta-title {
      font-family: var(--font-display);
      font-size: clamp(2rem, 3.5vw, 2.8rem);
      font-weight: 500;
      color: var(--sand);
      margin-bottom: 24px;
    }
    .cta-text {
      font-family: var(--font-body);
      font-size: 1.1rem;
      font-weight: 300;
      color: var(--off-white);
      line-height: 1.7;
      margin-bottom: 16px;
      opacity: 0.85;
    }
    .cta-email {
      font-family: var(--font-body);
      font-size: 1rem;
      color: var(--gold);
      transition: color 0.3s ease;
      display: inline-block;
      margin-bottom: 36px;
      letter-spacing: 0.05em;
    }
    .cta-email:hover {
      color: var(--gold-light);
    }
    .cta-contact-row {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 1.4rem;
      margin-bottom: 36px;
      flex-wrap: wrap;
    }
    .cta-contact-link {
      display: inline-flex;
      align-items: center;
      gap: 0.45rem;
      font-family: var(--font-body);
      font-size: 0.92rem;
      color: var(--gold);
      text-decoration: none;
      letter-spacing: 0.04em;
      transition: color 0.3s ease;
    }
    .cta-contact-link:hover {
      color: var(--gold-light);
    }
    .cta-contact-link svg {
      width: 17px;
      height: 17px;
      fill: currentColor;
      flex-shrink: 0;
    }
    .cta-contact-sep {
      width: 1px;
      height: 18px;
      background: rgba(245, 237, 224, 0.2);
    }
    .cta-button {
      display: inline-block;
      font-family: var(--font-body);
      font-size: 0.82rem;
      font-weight: 600;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--charcoal);
      background: var(--gold);
      padding: 18px 48px;
      border: none;
      cursor: pointer;
      transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    }
    .cta-button:hover {
      background: var(--gold-light);
      transform: translateY(-2px);
      box-shadow: 0 8px 30px rgba(196, 148, 74, 0.25);
    }

    /* ========== FOOTER ========== */
    .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: var(--font-body);
      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: var(--font-display);
      font-size: 0.88rem;
      font-style: italic;
      color: var(--off-white);
      opacity: 0.5;
      margin-bottom: 16px;
    }
    .footer-copy {
      font-family: var(--font-body);
      font-size: 0.75rem;
      color: var(--off-white);
      opacity: 0.35;
      letter-spacing: 0.1em;
    }

    /* ========== CUSTOM EXPEDITION ========== */
    .custom-expedition {
      padding: 100px 48px;
      background: var(--charcoal-deep);
      position: relative;
      overflow: hidden;
    }
    .custom-expedition::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: radial-gradient(ellipse at 30% 50%, rgba(27, 94, 107, 0.08) 0%, transparent 60%);
      pointer-events: none;
    }
    .custom-expedition-inner {
      max-width: 900px;
      margin: 0 auto;
      text-align: center;
      position: relative;
      z-index: 1;
    }
    .custom-expedition-title {
      font-family: var(--font-display);
      font-size: clamp(1.8rem, 3.5vw, 2.6rem);
      font-weight: 400;
      color: var(--sand);
      line-height: 1.25;
      margin-bottom: 24px;
      letter-spacing: 0.01em;
    }
    .custom-expedition-text {
      font-family: var(--font-body);
      font-size: 1.05rem;
      color: var(--off-white);
      opacity: 0.75;
      line-height: 1.75;
      max-width: 720px;
      margin: 0 auto 40px;
    }
    .custom-expedition-features {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 32px;
      margin-bottom: 48px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }
    .custom-feature {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 12px;
    }
    .custom-feature-icon {
      color: var(--gold);
      opacity: 0.8;
    }
    .custom-feature-text {
      font-family: var(--font-body);
      font-size: 0.82rem;
      font-weight: 500;
      letter-spacing: 0.06em;
      color: var(--sand);
      opacity: 0.7;
    }
    .custom-expedition-btn {
      display: inline-block;
      font-family: var(--font-body);
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--charcoal);
      background: var(--gold);
      padding: 16px 40px;
      transition: background 0.3s ease, transform 0.2s ease;
    }
    .custom-expedition-btn:hover {
      background: var(--gold-light);
      transform: translateY(-1px);
    }

    /* ========== PRINT STYLES ========== */
    @media print {
      .nav, .scroll-indicator, .hamburger, .mobile-menu { display: none !important; }
      .hero { height: auto; min-height: auto; page-break-after: always; }
      .hero-slide { position: relative; opacity: 1; }
      .hero-overlay { background: none; }
      .hero-title { color: #000; text-shadow: none; }
      .hero-eyebrow { color: #333; }
      body { color: #000; background: #fff; }
      .philosophy { background: #fff; }
      .expeditions, .stats, .testimonial, .cta, .footer { background: #fff; color: #000; }
      .section-label, .gold-rule, .testimonial-gold-line { display: none; }
      .testimonial-nav { display: none; }
      .testimonial-track { display: block; }
      .testimonial-slide { page-break-inside: avoid; margin-bottom: 24px; }
    }

    /* ========== RESPONSIVE ========== */
    @media (max-width: 1024px) {
      .philosophy-grid {
        grid-template-columns: 1fr;
        gap: 48px;
      }
      .philosophy-content {
        padding-right: 0;
      }
      .philosophy-image img {
        height: 400px;
      }
      .expeditions-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 900px) {
      .nav {
        padding: 18px 24px;
      }
      .nav.scrolled {
        padding: 14px 24px;
      }
      .nav-links {
        display: none;
      }
      .hamburger {
        display: flex;
      }
      .mobile-menu {
        display: flex;
      }
      .hero-eyebrow {
        font-size: 0.65rem;
        letter-spacing: 0.25em;
      }
      .philosophy {
        padding: 80px 24px;
      }
      .philosophy-image img {
        height: 350px;
      }
      .expeditions {
        padding: 80px 24px;
      }
      .expeditions-grid {
        grid-template-columns: 1fr;
        gap: 24px;
      }
      .expedition-card {
        aspect-ratio: 4/5;
      }
      .stats {
        padding: 80px 24px;
      }
      .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
      }
      .testimonial {
        padding: 80px 24px;
      }
      .faq {
        padding: 80px 24px;
      }
      .cta {
        padding: 80px 24px;
      }
      .custom-expedition {
        padding: 72px 24px;
      }
      .custom-expedition-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
      }
      .footer {
        padding: 48px 24px 32px;
      }
    }

    @media (max-width: 480px) {
      .custom-expedition-features {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
      }
      .hero-title {
        font-size: 2.2rem;
      }
      .philosophy-title {
        font-size: 1.8rem;
      }
      .expedition-card-name {
        font-size: 1.4rem;
      }
      .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
      }
      .stat-number {
        font-size: 2.4rem;
      }
      .testimonial-quote {
        font-size: 1.2rem;
      }
      .cta-title {
        font-size: 1.6rem;
      }
      .cta-button {
        padding: 16px 36px;
        font-size: 0.75rem;
      }
    }

    /* ========== EXPEDITION CARD DESCRIPTIONS ========== */
    .expedition-card-desc {
      font-family: 'Source Sans 3', sans-serif;
      font-size: 0.85rem;
      line-height: 1.5;
      color: rgba(255, 255, 255, 0.8);
      margin: 4px 0 8px;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    /* ========== HOW IT WORKS SECTION ========== */
    .how-it-works {
      background: var(--sand);
      padding: 80px 24px;
    }
    .how-it-works-inner {
      max-width: 1100px;
      margin: 0 auto;
    }
    .hiw-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 40px;
      margin-top: 48px;
    }
    .hiw-step {
      text-align: center;
    }
    .hiw-number {
      font-family: 'Playfair Display', serif;
      font-size: 2.5rem;
      color: var(--gold);
      margin-bottom: 16px;
      font-weight: 500;
    }
    .hiw-step-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.25rem;
      color: var(--charcoal);
      margin-bottom: 12px;
      font-weight: 500;
    }
    .hiw-step-text {
      font-family: 'Source Sans 3', sans-serif;
      font-size: 0.95rem;
      line-height: 1.7;
      color: #555;
    }

    /* Mobile responsive */
    @media (max-width: 768px) {
      .hiw-grid {
        grid-template-columns: 1fr;
        gap: 32px;
      }
      .how-it-works {
        padding: 60px 20px;
      }
      .expedition-card-desc {
        font-size: 0.8rem;
        -webkit-line-clamp: 2;
      }
    }
