:root {
    --deep-blue: #081534;
    --gold: #C5A059;
    --gold-light: #e8c97a;
    --gold-dark: #a07d38;
    --ocean-blue: #1A3A6D;
    --off-white: #F4F4F4;
    --white: #ffffff;
    --gold-gradient: linear-gradient(135deg, #C5A059, #e8c97a, #C5A059);
    --gold-gradient-h: linear-gradient(90deg, #C5A059, #e8c97a, #C5A059);
    --dark-overlay: rgba(8, 21, 52, 0.85);
  }

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

  html { scroll-behavior: smooth; }

  body {
    background: var(--deep-blue);
    color: var(--off-white);
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    overflow-x: hidden;
  }

  /* ── NAVIGATION ── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 0 5vw;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.5s ease;
  }
  nav.scrolled {
    background: rgba(8, 21, 52, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(197, 160, 89, 0.15);
    height: 68px;
  }
  .nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
  }
  .nav-logo-img {
    height: 100px;
    width: auto;
    object-fit: contain;
  }
  nav.scrolled .nav-logo-img {
    height: 76px;
    transition: height 0.5s ease;
  }
  .nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
  }
  .nav-links a {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(244, 244, 244, 0.75);
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
  }
  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 1px;
    background: var(--gold);
    transition: width 0.4s ease;
  }
  .nav-links a:hover { color: var(--gold); }
  .nav-links a:hover::after { width: 100%; }
  .nav-cta {
    font-family: 'Cinzel', serif !important;
    font-size: 0.65rem !important;
    letter-spacing: 0.2em !important;
    color: var(--gold) !important;
    border: 1px solid var(--gold) !important;
    padding: 10px 22px !important;
    transition: all 0.4s ease !important;
  }
  .nav-cta::after { display: none !important; }
  .nav-cta:hover {
    background: var(--gold) !important;
    color: var(--deep-blue) !important;
  }
  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
  }
  .hamburger span {
    display: block;
    width: 24px; height: 1px;
    background: var(--off-white);
    transition: all 0.3s ease;
  }

  /* ── HERO ── */
  .hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--deep-blue);
  }
  #hero-canvas {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
  }
  .hero-bg-gradient {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 80% 50% at 50% 100%, rgba(26, 58, 109, 0.6) 0%, transparent 70%),
      radial-gradient(ellipse 40% 40% at 80% 20%, rgba(197, 160, 89, 0.06) 0%, transparent 60%),
      linear-gradient(180deg, rgba(8,21,52,0.2) 0%, rgba(8,21,52,0.5) 60%, rgba(8,21,52,0.98) 100%);
    z-index: 1;
  }
  .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 5vw;
    max-width: 1000px;
  }
  .hero-eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0.55em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.9s ease 0.3s forwards;
  }
  .hero-eyebrow::before,
  .hero-eyebrow::after {
    content: '——';
    margin: 0 1rem;
    opacity: 0.5;
  }
  .hero-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(2.8rem, 7vw, 6.5rem);
    font-weight: 700;
    line-height: 1.05;
    color: var(--off-white);
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease 0.6s forwards;
  }
  .hero-title .gold-word {
    color: var(--gold);
    position: relative;
    display: inline-block;
  }
  .hero-title .gold-word::after {
    content: '';
    position: absolute;
    bottom: 2px; left: 0; right: 0;
    height: 1px;
    background: var(--gold-gradient-h);
    opacity: 0.4;
  }
  .hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(0.85rem, 1.8vw, 1.05rem);
    font-weight: 300;
    letter-spacing: 0.06em;
    color: rgba(244, 244, 244, 0.7);
    line-height: 1.9;
    max-width: 600px;
    margin: 0 auto 3rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s ease 0.9s forwards;
  }
  .hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s ease 1.2s forwards;
  }
  .btn-primary {
    font-family: 'Cinzel', serif;
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--deep-blue);
    background: var(--gold-gradient);
    background-size: 200% 100%;
    border: none;
    padding: 18px 44px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
  }
  .btn-primary:hover {
    background-position: right center;
    box-shadow: 0 8px 40px rgba(197, 160, 89, 0.35);
    transform: translateY(-2px);
  }
  .btn-secondary {
    font-family: 'Cinzel', serif;
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    background: transparent;
    border: 1px solid rgba(197, 160, 89, 0.5);
    padding: 17px 44px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.4s ease;
  }
  .btn-secondary:hover {
    border-color: var(--gold);
    background: rgba(197, 160, 89, 0.08);
    box-shadow: 0 0 30px rgba(197, 160, 89, 0.15);
  }
  .hero-scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: fadeIn 1s ease 2s forwards;
  }
  .scroll-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.55rem;
    letter-spacing: 0.45em;
    color: rgba(197, 160, 89, 0.6);
    text-transform: uppercase;
  }
  .scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s ease infinite;
  }

  /* ── MARQUEE STRIP ── */
  .marquee-strip {
    background: rgba(197, 160, 89, 0.08);
    border-top: 1px solid rgba(197, 160, 89, 0.15);
    border-bottom: 1px solid rgba(197, 160, 89, 0.15);
    padding: 14px 0;
    overflow: hidden;
    position: relative;
  }
  .marquee-track {
    display: flex;
    gap: 0;
    animation: marquee 30s linear infinite;
    white-space: nowrap;
  }
  .marquee-item {
    font-family: 'Cinzel', serif;
    font-size: 0.6rem;
    letter-spacing: 0.35em;
    color: var(--gold);
    text-transform: uppercase;
    padding: 0 2.5rem;
    display: flex;
    align-items: center;
    gap: 2.5rem;
  }
  .marquee-item .sep {
    width: 4px; height: 4px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0.5;
    flex-shrink: 0;
  }

  /* ── SECTION COMMONS ── */
  section { position: relative; }
  .section-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 5vw;
  }
  .section-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.6rem;
    letter-spacing: 0.5em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  .section-label::before {
    content: '';
    display: block;
    width: 30px; height: 1px;
    background: var(--gold);
  }
  .section-title {
    font-family: 'Cinzel', serif;
    font-weight: 600;
    line-height: 1.1;
    color: var(--off-white);
  }
  .gold-text { color: var(--gold); }
  .gold-line {
    width: 60px; height: 1px;
    background: var(--gold-gradient-h);
    margin: 2rem 0;
  }
  .gold-line.centered { margin: 2rem auto; }

  /* ── COMPASS ── */
  .compass-section {
    padding: 100px 0;
    overflow: hidden;
  }
  .compass-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
  }
  .compass-text .section-title {
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    margin-bottom: 1.5rem;
  }
  .compass-text p {
    font-size: 0.92rem;
    line-height: 2;
    color: rgba(244,244,244,0.65);
    margin-bottom: 1.2rem;
  }
  .compass-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
  }
  .stat-item {
    border-left: 1px solid rgba(197, 160, 89, 0.3);
    padding-left: 1.2rem;
  }
  .stat-number {
    font-family: 'Cinzel', serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--gold);
    line-height: 1;
  }
  .stat-label {
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    color: rgba(244,244,244,0.5);
    text-transform: uppercase;
    margin-top: 4px;
  }
  .compass-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  .compass-svg-wrap {
    position: relative;
    width: 380px;
    height: 380px;
  }
  .compass-ring-outer {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(197, 160, 89, 0.15);
    border-radius: 50%;
    animation: rotateSlow 60s linear infinite;
  }
  .compass-ring-outer::before {
    content: '';
    position: absolute;
    inset: 10px;
    border: 1px dashed rgba(197, 160, 89, 0.1);
    border-radius: 50%;
  }
  .compass-ring-mid {
    position: absolute;
    inset: 30px;
    border: 1px solid rgba(197, 160, 89, 0.2);
    border-radius: 50%;
    animation: rotateSlowReverse 40s linear infinite;
  }
  .compass-ring-inner {
    position: absolute;
    inset: 65px;
    border: 2px solid rgba(197, 160, 89, 0.3);
    border-radius: 50%;
    background: rgba(8, 21, 52, 0.4);
    animation: rotateSlow 25s linear infinite;
  }
  .compass-center {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .compass-needle-wrap {
    position: relative;
    width: 180px; height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .compass-svg {
    width: 100%; height: 100%;
    filter: drop-shadow(0 0 20px rgba(197, 160, 89, 0.3));
  }
  .compass-cardinal {
    position: absolute;
    font-family: 'Cinzel', serif;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    color: rgba(197, 160, 89, 0.6);
    font-weight: 600;
  }
  .compass-N { top: 8px; left: 50%; transform: translateX(-50%); }
  .compass-S { bottom: 8px; left: 50%; transform: translateX(-50%); }
  .compass-E { right: 8px; top: 50%; transform: translateY(-50%); }
  .compass-W { left: 8px; top: 50%; transform: translateY(-50%); }
  .compass-glow {
    position: absolute;
    inset: 80px;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 3s ease infinite;
  }
  .compass-tick-marks {
    position: absolute;
    inset: 0;
    border-radius: 50%;
  }

  /* ── DESTINATIONS ── */
  .destinations {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--deep-blue) 0%, #060f24 100%);
  }
  .destinations-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 4rem;
  }
  .destinations-header .section-title {
    font-size: clamp(2rem, 3.5vw, 3rem);
    max-width: 500px;
  }
  .dest-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    gap: 1.5px;
  }
  .dest-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 3/4;
    background: var(--ocean-blue);
  }
  .dest-card:first-child {
    grid-row: span 2;
    aspect-ratio: auto;
  }
  .dest-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  .dest-card:hover .dest-card-bg { transform: scale(1.08); }
  .dest-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8,21,52,0.95) 0%, rgba(8,21,52,0.3) 50%, transparent 100%);
    transition: opacity 0.4s ease;
  }
  .dest-card:hover .dest-card-overlay { opacity: 0.75; }
  .dest-card-border {
    position: absolute;
    inset: 0;
    border: 1px solid transparent;
    transition: border-color 0.4s ease;
    pointer-events: none;
  }
  .dest-card:hover .dest-card-border { border-color: rgba(197, 160, 89, 0.4); }
  .dest-card-content {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 2rem;
  }
  .dest-region {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.58rem;
    letter-spacing: 0.45em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
  }
  .dest-name {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.2rem, 2.5vw, 1.7rem);
    font-weight: 600;
    color: var(--off-white);
    line-height: 1.1;
    margin-bottom: 0.5rem;
  }
  .dest-desc {
    font-size: 0.78rem;
    color: rgba(244,244,244,0.6);
    line-height: 1.7;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, opacity 0.5s ease;
    opacity: 0;
  }
  .dest-card:hover .dest-desc {
    max-height: 80px;
    opacity: 1;
  }
  .dest-card-tag {
    position: absolute;
    top: 1.5rem; right: 1.5rem;
    background: rgba(197, 160, 89, 0.15);
    border: 1px solid rgba(197, 160, 89, 0.3);
    padding: 6px 14px;
    font-family: 'Cinzel', serif;
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    color: var(--gold);
  }
  /* Placeholder gradients for dest cards */
  .dest-card-bg.santorini { background: linear-gradient(135deg, #1a3a6d 0%, #0d2147 30%, #2d6ea8 80%, #1a4a7a 100%); }
  .dest-card-bg.maldives { background: linear-gradient(160deg, #0e5e73 0%, #0a3d52 40%, #1a6d84 70%, #0d4a60 100%); }
  .dest-card-bg.paris { background: linear-gradient(145deg, #2a1a3a 0%, #1a1530 40%, #3d2a50 70%, #251d40 100%); }
  .dest-card-bg.tokyo { background: linear-gradient(135deg, #3a1a1a 0%, #2a0f0f 40%, #4d2020 70%, #380f0f 100%); }
  .dest-card-bg.venice { background: linear-gradient(150deg, #1a2e4a 0%, #0d1e30 40%, #2a4060 70%, #172535 100%); }

  /* ── VALUES / PILARES ── */
  .values-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
  }
  .values-bg-decor {
    position: absolute;
    top: -200px; right: -200px;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(26,58,109,0.3) 0%, transparent 70%);
    pointer-events: none;
  }
  .values-header {
    text-align: center;
    margin-bottom: 5rem;
  }
  .values-header .section-title { font-size: clamp(2rem, 3.5vw, 3rem); }
  .values-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1px;
    background: rgba(197, 160, 89, 0.1);
    border: 1px solid rgba(197, 160, 89, 0.1);
  }
  .value-item {
    background: var(--deep-blue);
    padding: 3rem 2rem;
    text-align: center;
    transition: background 0.4s ease;
    position: relative;
    overflow: hidden;
  }
  .value-item::before {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    transform: translateX(-50%);
    width: 0; height: 2px;
    background: var(--gold-gradient-h);
    transition: width 0.5s ease;
  }
  .value-item:hover::before { width: 100%; }
  .value-item:hover { background: rgba(26, 58, 109, 0.3); }
  .value-icon {
    width: 52px; height: 52px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(197, 160, 89, 0.3);
    border-radius: 50%;
    transition: all 0.4s ease;
  }
  .value-item:hover .value-icon {
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(197, 160, 89, 0.2);
  }
  .value-icon svg {
    width: 22px; height: 22px;
    fill: none;
    stroke: var(--gold);
    stroke-width: 1.5;
  }
  .value-name {
    font-family: 'Cinzel', serif;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    color: var(--off-white);
    margin-bottom: 0.8rem;
  }
  .value-desc {
    font-size: 0.73rem;
    line-height: 1.8;
    color: rgba(244,244,244,0.5);
  }

  /* ── MISSION / VISION ── */
  .mission-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #060f24 0%, var(--ocean-blue) 50%, #060f24 100%);
    position: relative;
    overflow: hidden;
  }
  .mission-decor {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 800px; height: 800px;
    border: 1px solid rgba(197, 160, 89, 0.05);
    border-radius: 50%;
    pointer-events: none;
  }
  .mission-decor::before {
    content: '';
    position: absolute;
    inset: 60px;
    border: 1px solid rgba(197, 160, 89, 0.04);
    border-radius: 50%;
  }
  .mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
    position: relative;
    z-index: 1;
  }
  .mission-card {
    padding: 4rem;
    border: 1px solid rgba(197, 160, 89, 0.1);
    position: relative;
    overflow: hidden;
    transition: border-color 0.4s ease;
  }
  .mission-card:hover { border-color: rgba(197, 160, 89, 0.3); }
  .mission-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 50px; height: 1px;
    background: var(--gold);
    opacity: 0.5;
  }
  .mission-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 1px; height: 50px;
    background: var(--gold);
    opacity: 0.5;
  }
  .mission-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.58rem;
    letter-spacing: 0.55em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
  }
  .mission-title {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--off-white);
    line-height: 1.2;
    margin-bottom: 1.5rem;
  }
  .mission-text {
    font-size: 0.88rem;
    line-height: 2.1;
    color: rgba(244,244,244,0.62);
  }
  .mission-divider {
    width: 1px;
    background: rgba(197,160,89,0.15);
    position: absolute;
    top: 0; bottom: 0;
    left: 50%;
    display: none;
  }
  .full-philosophy {
    margin-top: 4px;
    border: 1px solid rgba(197, 160, 89, 0.1);
    padding: 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: border-color 0.4s ease;
  }
  .full-philosophy:hover { border-color: rgba(197, 160, 89, 0.25); }
  .philosophy-quote {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.1rem, 2.5vw, 1.6rem);
    font-weight: 400;
    color: var(--off-white);
    line-height: 1.6;
    max-width: 780px;
    margin: 0 auto;
    position: relative;
    padding: 0 2rem;
  }
  .philosophy-quote::before {
    content: '"';
    position: absolute;
    top: -30px; left: -10px;
    font-size: 8rem;
    color: var(--gold);
    opacity: 0.1;
    font-family: Georgia, serif;
    line-height: 1;
  }
  .philosophy-sub {
    font-size: 0.78rem;
    letter-spacing: 0.15em;
    color: rgba(197, 160, 89, 0.7);
    margin-top: 1.5rem;
  }

  /* ── EXPERIENCE ── */
  .experience-section {
    padding: 120px 0;
  }
  .experience-header { margin-bottom: 5rem; }
  .experience-header .section-title { font-size: clamp(2rem, 3.5vw, 3rem); }
  .exp-list {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .exp-item {
    display: grid;
    grid-template-columns: 80px 1fr auto;
    align-items: center;
    gap: 2rem;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(197, 160, 89, 0.1);
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
  }
  .exp-item::before {
    content: '';
    position: absolute;
    left: -5vw; right: -5vw;
    top: 0; bottom: 0;
    background: rgba(26, 58, 109, 0.15);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
  }
  .exp-item:hover::before { opacity: 1; }
  .exp-num {
    font-family: 'Cinzel', serif;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    color: rgba(197, 160, 89, 0.4);
    transition: color 0.4s ease;
  }
  .exp-item:hover .exp-num { color: var(--gold); }
  .exp-body {}
  .exp-name {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.1rem, 2vw, 1.6rem);
    font-weight: 500;
    color: var(--off-white);
    margin-bottom: 0.4rem;
    transition: color 0.4s ease;
  }
  .exp-item:hover .exp-name { color: var(--gold); }
  .exp-tagline {
    font-size: 0.78rem;
    color: rgba(244,244,244,0.45);
    letter-spacing: 0.08em;
  }
  .exp-cta {
    font-family: 'Cinzel', serif;
    font-size: 0.62rem;
    letter-spacing: 0.3em;
    color: rgba(197, 160, 89, 0.5);
    text-transform: uppercase;
    transition: all 0.4s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .exp-item:hover .exp-cta {
    color: var(--gold);
  }
  .exp-arrow {
    width: 20px; height: 1px;
    background: var(--gold);
    position: relative;
    transition: width 0.4s ease;
    opacity: 0;
  }
  .exp-item:hover .exp-arrow { opacity: 1; width: 30px; }
  .exp-arrow::after {
    content: '';
    position: absolute;
    right: 0; top: -3px;
    width: 7px; height: 7px;
    border-right: 1px solid var(--gold);
    border-top: 1px solid var(--gold);
    transform: rotate(45deg);
  }

  /* ── TESTIMONIALS ── */
  .testimonials {
    padding: 120px 0;
    background: linear-gradient(180deg, #060f24 0%, var(--deep-blue) 100%);
    overflow: hidden;
  }
  .testimonials-header {
    text-align: center;
    margin-bottom: 4rem;
  }
  .testimonials-header .section-title { font-size: clamp(2rem, 3.5vw, 3rem); }
  .testimonials-track-wrap {
    overflow: hidden;
    position: relative;
  }
  .testimonials-track-wrap::before,
  .testimonials-track-wrap::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 150px;
    z-index: 2;
    pointer-events: none;
  }
  .testimonials-track-wrap::before {
    left: 0;
    background: linear-gradient(to right, #060f24, transparent);
  }
  .testimonials-track-wrap::after {
    right: 0;
    background: linear-gradient(to left, #060f24, transparent);
  }
  .testimonials-track {
    display: flex;
    gap: 2rem;
    padding: 1rem 0;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  .testimonial-card {
    flex-shrink: 0;
    width: 380px;
    border: 1px solid rgba(197, 160, 89, 0.12);
    padding: 3rem;
    background: rgba(26, 58, 109, 0.08);
    position: relative;
    transition: all 0.4s ease;
  }
  .testimonial-card:hover {
    border-color: rgba(197, 160, 89, 0.3);
    background: rgba(26, 58, 109, 0.2);
  }
  .testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 1.5rem;
  }
  .star {
    width: 12px; height: 12px;
    background: var(--gold);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  }
  .testimonial-text {
    font-family: 'Cinzel', serif;
    font-size: 0.88rem;
    line-height: 1.9;
    color: rgba(244,244,244,0.75);
    margin-bottom: 2rem;
    font-style: italic;
    font-weight: 400;
  }
  .testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  .author-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(197, 160, 89, 0.3);
    background: var(--ocean-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cinzel', serif;
    font-size: 0.9rem;
    color: var(--gold);
    flex-shrink: 0;
  }
  .author-info {}
  .author-name {
    font-family: 'Cinzel', serif;
    font-size: 0.8rem;
    color: var(--off-white);
    margin-bottom: 2px;
  }
  .author-detail {
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    color: rgba(197, 160, 89, 0.6);
  }
  .testimonials-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
  }
  .testi-btn {
    width: 44px; height: 44px;
    border: 1px solid rgba(197, 160, 89, 0.3);
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    color: var(--gold);
  }
  .testi-btn:hover {
    border-color: var(--gold);
    background: rgba(197, 160, 89, 0.1);
  }
  .testi-btn svg { width: 16px; height: 16px; }

  /* ── CTA FINAL ── */
  .cta-section {
    padding: 140px 0;
    position: relative;
    overflow: hidden;
    text-align: center;
  }
  .cta-bg {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 60% 60% at 50% 50%, rgba(26,58,109,0.5) 0%, transparent 70%),
      var(--deep-blue);
  }
  .cta-decor-line {
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 1px; height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(197,160,89,0.15) 30%, rgba(197,160,89,0.15) 70%, transparent);
    pointer-events: none;
  }
  .cta-inner { position: relative; z-index: 1; }
  .cta-eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.6rem;
    letter-spacing: 0.5em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
  }
  .cta-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(2.5rem, 5vw, 5rem);
    font-weight: 700;
    color: var(--off-white);
    line-height: 1.1;
    margin-bottom: 1.5rem;
  }
  .cta-subtitle {
    font-size: 0.95rem;
    font-weight: 300;
    color: rgba(244,244,244,0.6);
    line-height: 1.8;
    max-width: 520px;
    margin: 0 auto 3rem;
    letter-spacing: 0.04em;
  }
  .cta-form {
    display: flex;
    gap: 0;
    max-width: 500px;
    margin: 0 auto;
    border: 1px solid rgba(197, 160, 89, 0.3);
  }
  .cta-input {
    flex: 1;
    background: rgba(8,21,52,0.8);
    border: none;
    padding: 18px 24px;
    color: var(--off-white);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.82rem;
    letter-spacing: 0.05em;
    outline: none;
  }
  .cta-input::placeholder { color: rgba(244,244,244,0.3); }
  .cta-submit {
    background: var(--gold-gradient);
    border: none;
    padding: 18px 30px;
    color: var(--deep-blue);
    font-family: 'Cinzel', serif;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.4s ease;
  }
  .cta-submit:hover { opacity: 0.9; }

  /* ── FOOTER ── */
  footer {
    border-top: 1px solid rgba(197, 160, 89, 0.1);
    padding: 5rem 5vw 3rem;
    background: #050d1e;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
    max-width: 1280px;
    margin: 0 auto;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(197, 160, 89, 0.08);
  }
  .footer-brand {}
  .footer-logo-img {
    height: 160px;
    width: auto;
    object-fit: contain;
    display: block;
    margin-bottom: 1.2rem;
  }
  .footer-tagline {
    font-size: 0.8rem;
    line-height: 1.9;
    color: rgba(244,244,244,0.45);
    max-width: 280px;
  }
  .footer-socials {
    display: flex;
    gap: 10px;
    margin-top: 1.5rem;
  }
  .footer-social {
    width: 36px; height: 36px;
    border: 1px solid rgba(197,160,89,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    text-decoration: none;
    color: var(--gold);
  }
  .footer-social:hover {
    border-color: var(--gold);
    background: rgba(197,160,89,0.1);
  }
  .footer-social svg { width: 14px; height: 14px; }
  .footer-col-title {
    font-family: 'Cinzel', serif;
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    color: var(--off-white);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
  }
  .footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
  }
  .footer-links a {
    font-size: 0.78rem;
    color: rgba(244,244,244,0.45);
    text-decoration: none;
    letter-spacing: 0.04em;
    transition: color 0.3s ease;
    display: inline-block;
  }
  .footer-links a:hover { color: var(--gold); }
  .footer-contact-item {
    display: flex;
    gap: 10px;
    margin-bottom: 1rem;
    align-items: flex-start;
  }
  .contact-icon {
    width: 14px; height: 14px;
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
  }
  .contact-icon svg { width: 100%; height: 100%; }
  .contact-text {
    font-size: 0.78rem;
    color: rgba(244,244,244,0.5);
    line-height: 1.6;
  }
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    max-width: 1280px;
    margin: 0 auto;
  }
  .footer-copy {
    font-size: 0.68rem;
    color: rgba(244,244,244,0.3);
    letter-spacing: 0.06em;
  }
  .footer-legal {
    display: flex;
    gap: 2rem;
  }
  .footer-legal a {
    font-size: 0.68rem;
    color: rgba(244,244,244,0.3);
    text-decoration: none;
    letter-spacing: 0.06em;
    transition: color 0.3s ease;
  }
  .footer-legal a:hover { color: var(--gold); }

  /* ── WAVE DIVIDER ── */
  .wave-divider {
    height: 60px;
    overflow: hidden;
    position: relative;
    line-height: 0;
  }
  .wave-divider svg { display: block; width: 100%; }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes fadeIn {
    to { opacity: 1; }
  }
  @keyframes rotateSlow {
    to { transform: rotate(360deg); }
  }
  @keyframes rotateSlowReverse {
    to { transform: rotate(-360deg); }
  }
  @keyframes scrollPulse {
    0%, 100% { opacity: 0.6; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(0.8); }
  }
  @keyframes pulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
  }
  @keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }
  @keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
  }
  @keyframes needleSway {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(3deg); }
    75% { transform: rotate(-3deg); }
  }

  /* ── REVEAL ── */
  .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s ease, transform 0.9s ease;
  }
  .reveal.revealed {
    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; }
  .reveal-delay-4 { transition-delay: 0.4s; }

  /* ── MOBILE ── */
  @media (max-width: 1024px) {
    .values-grid { grid-template-columns: repeat(3, 1fr); }
    .dest-grid { grid-template-columns: 1fr 1fr; }
    .dest-card:first-child { grid-row: span 1; }
    .compass-wrapper { grid-template-columns: 1fr; gap: 3rem; }
    .compass-visual { order: -1; }
    .compass-svg-wrap { width: 280px; height: 280px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  }

  @media (max-width: 768px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .dest-grid { grid-template-columns: 1fr; }
    .mission-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr 1fr; }
    .destinations-header { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
    .exp-item { grid-template-columns: 50px 1fr; }
    .exp-cta { display: none; }
    .compass-stats { grid-template-columns: 1fr 1fr; }
    .hero-actions { flex-direction: column; align-items: center; }
    .cta-form { flex-direction: column; border: none; gap: 0; }
    .cta-input { border: 1px solid rgba(197,160,89,0.3); }
    .cta-submit { width: 100%; padding: 16px; }
  }

  @media (max-width: 480px) {
    .values-grid { grid-template-columns: 1fr; }
    .compass-svg-wrap { width: 240px; height: 240px; }
  }