    :root {
      --gold: #C9A84C;
      --gold-light: #E8C96B;
      --gold-dark: #9A7A2E;
      --black: #0a0a0a;
      --dark: #111111;
      --dark2: #1a1a1a;
      --dark3: #222222;
      --white: #F8F5EF;
      --gray: #888888;
      --gray-light: #bbbbbb;
      --blue-fr: #002395;
      --red-fr: #ED2939;
    }

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

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

    body {
      background-color: var(--black);
      color: var(--white);
      font-family: 'Raleway', sans-serif;
      font-weight: 400;
      line-height: 1.7;
      overflow-x: hidden;
    }

    /* ─── SCROLLBAR ─────────────────────────── */
    ::-webkit-scrollbar { width: 6px; }
    ::-webkit-scrollbar-track { background: var(--dark); }
    ::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }

    /* ─── TYPOGRAPHY ────────────────────────── */
    h1,h2,h3,h4 { font-family: 'Playfair Display', serif; line-height: 1.2; }
    .section-eyebrow {
      font-family: 'Raleway', sans-serif;
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 0.35em;
      text-transform: uppercase;
      color: var(--gold);
    }
    .gold { color: var(--gold); }
    .gold-gradient {
      background: linear-gradient(135deg, #C9A84C 0%, #F0D87A 50%, #C9A84C 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    /* ─── NAV ───────────────────────────────── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 3rem;
      height: 80px;
      transition: all 0.4s ease;
    }
    nav.scrolled {
      background: rgba(10,10,10,0.97);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(201,168,76,0.15);
      height: 70px;
      box-shadow: 0 4px 30px rgba(0,0,0,0.6);
    }
    .nav-logo {
      display: flex;
      align-items: center;
      gap: 12px;
      text-decoration: none;
    }
    .nav-logo svg { height: 48px; width: auto; }
    .nav-logo-text {
      display: flex;
      flex-direction: column;
      line-height: 1.1;
    }
    .nav-logo-text span:first-child {
      font-family: 'Playfair Display', serif;
      font-size: 0.95rem;
      font-weight: 600;
      color: var(--gold);
      letter-spacing: 0.05em;
    }
    .nav-logo-text span:last-child {
      font-family: 'Raleway', sans-serif;
      font-size: 0.65rem;
      font-weight: 500;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gray-light);
    }
    .nav-links {
      display: flex;
      list-style: none;
      gap: 2.5rem;
      align-items: center;
    }
    .nav-links a {
      text-decoration: none;
      color: var(--gray-light);
      font-size: 0.78rem;
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      transition: color 0.3s;
    }
    .nav-links a:hover { color: var(--gold); }
    .nav-cta {
      background: transparent;
      border: 1px solid var(--gold);
      color: var(--gold) !important;
      padding: 0.55rem 1.4rem;
      transition: all 0.3s !important;
    }
    .nav-cta:hover {
      background: var(--gold) !important;
      color: var(--black) !important;
    }
    .nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
    .nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--gold); transition: all 0.3s; }

    /* ─── LANGUAGE SELECTOR ─────────────────── */
    .lang-selector {
      position: relative;
      display: flex;
      align-items: center;
      margin-left: 1.2rem;
    }
    .lang-btn {
      display: flex;
      align-items: center;
      gap: 6px;
      background: transparent;
      border: 1px solid rgba(201,168,76,0.4);
      border-radius: 3px;
      padding: 5px 10px;
      cursor: pointer;
      color: var(--gold);
      font-family: 'Raleway', sans-serif;
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      transition: all 0.3s ease;
      white-space: nowrap;
    }
    .lang-btn:hover {
      background: rgba(201,168,76,0.08);
      border-color: var(--gold);
    }
    .lang-btn .lang-flag { font-size: 1rem; line-height: 1; }
    .lang-btn .lang-arrow {
      font-size: 0.55rem;
      opacity: 0.7;
      transition: transform 0.25s ease;
      margin-left: 2px;
    }
    .lang-selector.open .lang-arrow { transform: rotate(180deg); }
    .lang-dropdown {
      display: none;
      position: absolute;
      top: calc(100% + 10px);
      right: 0;
      background: rgba(10,10,10,0.97);
      border: 1px solid rgba(201,168,76,0.25);
      border-radius: 4px;
      min-width: 180px;
      box-shadow: 0 12px 40px rgba(0,0,0,0.7);
      z-index: 2000;
      overflow: hidden;
      backdrop-filter: blur(12px);
    }
    .lang-selector.open .lang-dropdown { display: block; }
    .lang-option {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 10px 16px;
      cursor: pointer;
      transition: background 0.2s ease;
      border-bottom: 1px solid rgba(201,168,76,0.07);
    }
    .lang-option:last-child { border-bottom: none; }
    .lang-option:hover { background: rgba(201,168,76,0.1); }
    .lang-option.active { background: rgba(201,168,76,0.06); }
    .lang-option .opt-flag { font-size: 1.1rem; }
    .lang-option .opt-name {
      font-family: 'Raleway', sans-serif;
      font-size: 0.78rem;
      font-weight: 500;
      color: var(--white);
      flex: 1;
    }
    .lang-option .opt-native {
      font-size: 0.7rem;
      color: var(--gold);
      opacity: 0.75;
      font-style: italic;
    }
    .lang-option.active .opt-name { color: var(--gold); }

    /* ─── HERO ──────────────────────────────── */
    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }
    .hero-bg {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse at 20% 50%, rgba(201,168,76,0.07) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(201,168,76,0.05) 0%, transparent 50%),
        linear-gradient(180deg, rgba(10,10,10,0.3) 0%, rgba(10,10,10,0.85) 60%, var(--black) 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><defs><radialGradient id="g" cx="50%" cy="50%"><stop offset="0%" stop-color="%23C9A84C" stop-opacity="0.03"/><stop offset="100%" stop-color="transparent"/></radialGradient></defs><rect width="100" height="100" fill="url(%23g)"/></svg>');
    }

    /* Animated particle dots */
    .hero-particles {
      position: absolute;
      inset: 0;
      overflow: hidden;
    }
    .particle {
      position: absolute;
      width: 2px;
      height: 2px;
      background: var(--gold);
      border-radius: 50%;
      opacity: 0;
      animation: particleFloat linear infinite;
    }

    /* Paris skyline silhouette */
    .hero-skyline {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 280px;
      opacity: 0.06;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      text-align: center;
      padding: 0 2rem;
      max-width: 900px;
    }
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      border: 1px solid rgba(201,168,76,0.4);
      border-radius: 30px;
      padding: 0.45rem 1.2rem;
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 2rem;
      backdrop-filter: blur(8px);
      background: rgba(201,168,76,0.06);
    }
    .hero-badge::before {
      content: '';
      width: 6px; height: 6px;
      background: var(--gold);
      border-radius: 50%;
      animation: pulse 2s infinite;
    }
    @keyframes pulse {
      0%,100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.5; transform: scale(0.8); }
    }
    .hero h1 {
      font-size: clamp(2.8rem, 7vw, 5.5rem);
      font-weight: 700;
      line-height: 1.05;
      margin-bottom: 1.5rem;
      letter-spacing: -0.02em;
    }
    .hero-sub {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.1rem, 2.5vw, 1.5rem);
      font-style: italic;
      color: var(--gray-light);
      margin-bottom: 2.5rem;
      font-weight: 300;
    }
    .hero-divider {
      width: 80px;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
      margin: 0 auto 2.5rem;
    }
    .hero-ctas {
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap;
      margin-bottom: 4rem;
    }
    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
      color: var(--black);
      padding: 1rem 2.2rem;
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      text-decoration: none;
      border: none;
      cursor: pointer;
      transition: all 0.35s;
      position: relative;
      overflow: hidden;
    }
    .btn-primary::after {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(255,255,255,0.15);
      transform: translateX(-110%) skewX(-15deg);
      transition: transform 0.5s;
    }
    .btn-primary:hover::after { transform: translateX(110%) skewX(-15deg); }
    .btn-primary:hover { box-shadow: 0 8px 30px rgba(201,168,76,0.4); transform: translateY(-2px); }
    .btn-secondary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: transparent;
      color: var(--white);
      padding: 1rem 2.2rem;
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      text-decoration: none;
      border: 1px solid rgba(248,245,239,0.3);
      cursor: pointer;
      transition: all 0.35s;
    }
    .btn-secondary:hover {
      border-color: var(--gold);
      color: var(--gold);
      background: rgba(201,168,76,0.05);
    }
    .hero-stats {
      display: flex;
      justify-content: center;
      gap: 3rem;
      flex-wrap: wrap;
    }
    .hero-stat {
      text-align: center;
      border-top: 1px solid rgba(201,168,76,0.25);
      padding-top: 1rem;
    }
    .hero-stat-num {
      font-family: 'Playfair Display', serif;
      font-size: 2rem;
      font-weight: 700;
      color: var(--gold);
      display: block;
      line-height: 1;
    }
    .hero-stat-label {
      font-size: 0.68rem;
      font-weight: 500;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--gray);
      margin-top: 0.3rem;
      display: block;
    }
    .hero-scroll {
      position: absolute;
      bottom: 2.5rem;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      z-index: 2;
    }
    .hero-scroll span {
      font-size: 0.6rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--gray);
    }
    .scroll-line {
      width: 1px;
      height: 50px;
      background: linear-gradient(180deg, var(--gold), transparent);
      animation: scrollAnim 2s infinite;
    }
    @keyframes scrollAnim {
      0% { transform: scaleY(0); transform-origin: top; }
      50% { transform: scaleY(1); transform-origin: top; }
      51% { transform: scaleY(1); transform-origin: bottom; }
      100% { transform: scaleY(0); transform-origin: bottom; }
    }

    /* ─── SECTIONS ──────────────────────────── */
    section { padding: 7rem 2rem; }
    .container { max-width: 1200px; margin: 0 auto; }
    .section-header { margin-bottom: 4rem; }
    .section-header h2 {
      font-size: clamp(2rem, 4vw, 3rem);
      margin-top: 0.8rem;
      margin-bottom: 1rem;
    }
    .section-header p {
      color: var(--gray-light);
      font-size: 1rem;
      max-width: 600px;
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.2rem;
    }
    .section-header.centered { text-align: center; }
    .section-header.centered p { margin: 0 auto; }

    /* ─── STRIP / MARQUEE ───────────────────── */
    .strip {
      background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light), var(--gold), var(--gold-dark));
      color: var(--black);
      overflow: hidden;
      padding: 0.9rem 0;
    }
    .strip-track {
      display: flex;
      gap: 3rem;
      animation: marquee 30s linear infinite;
      white-space: nowrap;
    }
    .strip-item {
      display: flex;
      align-items: center;
      gap: 0.7rem;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      flex-shrink: 0;
    }
    .strip-dot { width: 5px; height: 5px; background: var(--black); border-radius: 50%; opacity: 0.4; }
    @keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

    /* ─── SERVICES ──────────────────────────── */
    #services { background: var(--dark); }
    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 1.5px;
      background: rgba(201,168,76,0.1);
    }
    .service-card {
      background: var(--dark);
      padding: 2.8rem 2.5rem;
      position: relative;
      overflow: hidden;
      transition: background 0.3s;
      cursor: default;
    }
    .service-card::before {
      content: '';
      position: absolute;
      bottom: 0; left: 0;
      width: 0; height: 2px;
      background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
      transition: width 0.4s ease;
    }
    .service-card:hover { background: var(--dark2); }
    .service-card:hover::before { width: 100%; }
    .service-card:hover img { opacity: 0.38 !important; }
    .service-icon {
      width: 56px; height: 56px;
      border: 1px solid rgba(201,168,76,0.3);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.5rem;
      transition: all 0.3s;
    }
    .service-card:hover .service-icon {
      border-color: var(--gold);
      background: rgba(201,168,76,0.08);
    }
    .service-icon svg { width: 26px; height: 26px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
    .service-card h3 {
      font-size: 1.15rem;
      margin-bottom: 0.8rem;
      color: var(--white);
    }
    .service-card p { font-size: 0.88rem; color: var(--gray); line-height: 1.8; }
    .service-tag {
      display: inline-block;
      margin-top: 1.2rem;
      font-size: 0.65rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--gold);
      border-bottom: 1px solid rgba(201,168,76,0.3);
      padding-bottom: 2px;
    }

    /* ─── FLEET ─────────────────────────────── */
    #fleet { background: var(--black); }
    .fleet-tabs {
      display: flex;
      gap: 0;
      margin-bottom: 3rem;
      border-bottom: 1px solid rgba(201,168,76,0.15);
    }
    .fleet-tab {
      padding: 1rem 2rem;
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--gray);
      cursor: pointer;
      border-bottom: 2px solid transparent;
      transition: all 0.3s;
      background: none;
      border-top: none;
      border-left: none;
      border-right: none;
    }
    .fleet-tab.active, .fleet-tab:hover {
      color: var(--gold);
      border-bottom-color: var(--gold);
    }
    .fleet-content { display: none; }
    .fleet-content.active { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1rem; }
    .fleet-card {
      background: var(--dark2);
      border: 1px solid rgba(201,168,76,0.08);
      overflow: hidden;
      transition: all 0.35s;
      position: relative;
    }
    .fleet-card:hover { border-color: rgba(201,168,76,0.3); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.5); }
    .fleet-card-img {
      height: 220px;
      overflow: hidden;
      position: relative;
      background: var(--dark3);
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .fleet-card-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      transition: transform 0.6s ease;
      display: block;
    }
    .fleet-card-img--full {
      height: auto !important;
      overflow: visible !important;
    }
    .fleet-card-img--full img {
      width: 100%;
      height: auto !important;
      object-fit: unset !important;
      max-height: none !important;
    }
    .fleet-card:hover .fleet-card-img img { transform: scale(1.06); }
    .fleet-card-img svg { opacity: 0.15; }
    .fleet-placeholder-icon { width: 80px; height: 80px; }
    .fleet-card-body { padding: 1.5rem; }
    .fleet-card-body h4 {
      font-size: 1rem;
      margin-bottom: 0.4rem;
      color: var(--white);
    }
    .fleet-card-body p { font-size: 0.82rem; color: var(--gray); }
    .fleet-badge {
      position: absolute;
      top: 1rem; right: 1rem;
      background: rgba(201,168,76,0.9);
      color: var(--black);
      font-size: 0.6rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 0.3rem 0.6rem;
    }
    .fleet-visual {
      height: 180px;
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: flex-end;
      justify-content: center;
    }

    /* ─── WHY US ─────────────────────────────── */
    #why {
      background: var(--dark);
      position: relative;
      overflow: hidden;
    }
    #why::before {
      content: '';
      position: absolute;
      top: -200px; right: -200px;
      width: 600px; height: 600px;
      background: radial-gradient(ellipse, rgba(201,168,76,0.05) 0%, transparent 70%);
      pointer-events: none;
    }
    .why-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: center;
    }
    .why-visual {
      position: relative;
    }
    .why-main-box {
      background: var(--dark2);
      border: 1px solid rgba(201,168,76,0.2);
      padding: 3rem;
      position: relative;
    }
    .why-main-box::before {
      content: '';
      position: absolute;
      top: -1px; left: 3rem;
      width: 60px; height: 3px;
      background: linear-gradient(90deg, var(--gold), var(--gold-light));
    }
    .why-accent-box {
      position: absolute;
      bottom: -2rem; right: -2rem;
      background: var(--dark3);
      border: 1px solid rgba(201,168,76,0.15);
      padding: 1.5rem 2rem;
      width: 200px;
    }
    .why-large-num {
      font-family: 'Playfair Display', serif;
      font-size: 4rem;
      font-weight: 700;
      color: var(--gold);
      display: block;
      line-height: 1;
    }
    .why-large-label {
      font-size: 0.7rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--gray);
      margin-top: 0.3rem;
    }
    .certif-row {
      display: flex;
      gap: 1rem;
      margin-top: 1.5rem;
      flex-wrap: wrap;
    }
    .certif-badge {
      border: 1px solid rgba(201,168,76,0.3);
      padding: 0.5rem 1rem;
      font-size: 0.68rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--gold);
    }
    .why-points { display: flex; flex-direction: column; gap: 2rem; }
    .why-point {
      display: flex;
      gap: 1.5rem;
      align-items: flex-start;
    }
    .why-point-icon {
      width: 48px; height: 48px;
      border: 1px solid rgba(201,168,76,0.25);
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .why-point-icon svg { width: 22px; height: 22px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
    .why-point h4 { font-size: 1rem; margin-bottom: 0.3rem; }
    .why-point p { font-size: 0.85rem; color: var(--gray); }

    /* ─── SECURITY ───────────────────────────── */
    #security {
      background: var(--black);
      padding: 7rem 2rem;
    }
    .security-banner {
      border: 1px solid rgba(201,168,76,0.2);
      background: linear-gradient(135deg, rgba(201,168,76,0.04), rgba(201,168,76,0.01));
      padding: 4rem;
      position: relative;
      overflow: hidden;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
    }
    .security-banner::before {
      content: '';
      position: absolute;
      left: 0; top: 0; bottom: 0;
      width: 3px;
      background: linear-gradient(180deg, var(--gold), var(--gold-dark), var(--gold));
    }
    .security-banner h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: 1rem; }
    .security-banner p { color: var(--gray-light); font-size: 0.95rem; margin-bottom: 2rem; }
    .security-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.8rem;
    }
    .security-list li {
      display: flex;
      align-items: center;
      gap: 0.8rem;
      font-size: 0.88rem;
      color: var(--gray-light);
    }
    .security-list li::before {
      content: '';
      width: 5px; height: 5px;
      background: var(--gold);
      border-radius: 50%;
      flex-shrink: 0;
    }
    .security-icons {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.5rem;
    }
    .security-icon-item {
      text-align: center;
      padding: 2rem 1rem;
      border: 1px solid rgba(201,168,76,0.1);
      transition: border-color 0.3s;
    }
    .security-icon-item:hover { border-color: rgba(201,168,76,0.3); }
    .security-icon-item svg { width: 36px; height: 36px; stroke: var(--gold); fill: none; stroke-width: 1.2; margin-bottom: 0.8rem; }
    .security-icon-item span { display: block; font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray); margin-top: 0.5rem; }

    /* ─── DESTINATIONS ───────────────────────── */
    #destinations { background: var(--dark); }
    .destinations-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      border: 1px solid rgba(201,168,76,0.1);
    }
    .destination-item {
      padding: 2rem 1.8rem;
      min-height: 220px;
      border-right: 1px solid rgba(201,168,76,0.1);
      border-bottom: 1px solid rgba(201,168,76,0.1);
      transition: background 0.3s;
      cursor: default;
    }
    .destination-item:hover { background: rgba(201,168,76,0.04); }
    .destination-item:nth-child(4n) { border-right: none; }
    .dest-name {
      font-family: 'Playfair Display', serif;
      font-size: 1rem;
      font-weight: 600;
      color: var(--white);
      margin-bottom: 0.3rem;
    }
    .dest-distance { font-size: 0.75rem; color: var(--gold); letter-spacing: 0.05em; }
    .dest-flag { font-size: 1.2rem; margin-bottom: 0.5rem; }

    /* ─── CONCIERGE ──────────────────────────── */
    #concierge { background: var(--black); }
    .concierge-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
    }
    .concierge-card {
      background: var(--dark2);
      padding: 2.5rem 2rem;
      border-top: 2px solid transparent;
      transition: all 0.35s;
      border-image: linear-gradient(90deg, transparent, transparent) 1;
    }
    .concierge-card:hover {
      border-top: 2px solid var(--gold);
      background: var(--dark3);
    }
    .concierge-card:hover img { opacity: 0.32 !important; }
    .concierge-num {
      font-family: 'Playfair Display', serif;
      font-size: 3rem;
      font-weight: 700;
      color: rgba(201,168,76,0.15);
      line-height: 1;
      margin-bottom: 1rem;
    }
    .concierge-card h3 { font-size: 1.05rem; margin-bottom: 0.8rem; }
    .concierge-card p { font-size: 0.85rem; color: var(--gray); line-height: 1.8; }

    /* ─── FAQ ────────────────────────────────── */
    #faq { background: var(--dark); }
    .faq-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.5rem;
    }
    .faq-item {
      border-bottom: 1px solid rgba(201,168,76,0.12);
      padding: 1.8rem 0;
    }
    .faq-q {
      font-family: 'Playfair Display', serif;
      font-size: 1rem;
      font-weight: 600;
      margin-bottom: 0.8rem;
      color: var(--white);
    }
    .faq-a { font-size: 0.87rem; color: var(--gray); line-height: 1.8; }

    /* ─── BOOKING ────────────────────────────── */
    #booking {
      background: var(--black);
      position: relative;
      overflow: hidden;
    }
    #booking::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at 50% 0%, rgba(201,168,76,0.08) 0%, transparent 60%);
      pointer-events: none;
    }
    .booking-wrapper {
      text-align: center;
      position: relative;
      z-index: 1;
    }
    .booking-wrapper h2 { font-size: clamp(2.2rem, 5vw, 3.5rem); margin-bottom: 1.5rem; }
    .booking-wrapper > p { font-size: 1.05rem; color: var(--gray-light); max-width: 600px; margin: 0 auto 3.5rem; font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; }
    .booking-options {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5px;
      background: rgba(201,168,76,0.1);
      max-width: 800px;
      margin: 0 auto 3.5rem;
    }
    .booking-option {
      background: var(--dark);
      padding: 2.5rem 2rem;
      text-decoration: none;
      transition: background 0.3s;
      display: block;
    }
    .booking-option:hover { background: var(--dark2); }
    .booking-option svg { width: 32px; height: 32px; stroke: var(--gold); fill: none; stroke-width: 1.5; margin-bottom: 1rem; }
    .booking-option h4 { font-size: 0.95rem; color: var(--white); margin-bottom: 0.4rem; }
    .booking-option p { font-size: 0.8rem; color: var(--gray); }
    .booking-contact {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 1.5rem;
      flex-wrap: wrap;
    }
    .booking-contact a {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      text-decoration: none;
      color: var(--gold);
      font-size: 1rem;
      font-weight: 500;
      letter-spacing: 0.03em;
      transition: color 0.3s;
    }
    .booking-contact a:hover { color: var(--gold-light); }
    .booking-sep { color: rgba(201,168,76,0.3); font-size: 1.2rem; }

    /* ─── FOOTER ─────────────────────────────── */
    footer {
      background: var(--dark);
      border-top: 1px solid rgba(201,168,76,0.1);
      padding: 5rem 2rem 2.5rem;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 3rem;
      max-width: 1200px;
      margin: 0 auto;
      padding-bottom: 3rem;
      border-bottom: 1px solid rgba(201,168,76,0.08);
    }
    .footer-about p {
      font-size: 0.85rem;
      color: var(--gray);
      margin-top: 1.2rem;
      margin-bottom: 1.5rem;
      line-height: 1.9;
      max-width: 300px;
    }
    .footer-socials { display: flex; gap: 0.8rem; }
    .footer-social {
      width: 38px; height: 38px;
      border: 1px solid rgba(201,168,76,0.2);
      border-radius: 6px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gray);
      text-decoration: none;
      font-size: 0.75rem;
      font-weight: 700;
      transition: all 0.3s;
    }
    .footer-social:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,168,76,0.05); }
    .footer-social svg { width: 18px; height: 18px; fill: currentColor; }
    /* Floating social buttons */
    .float-socials {
      position: fixed;
      bottom: 28px;
      right: 24px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      z-index: 9999;
    }
    .float-btn {
      width: 52px; height: 52px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      box-shadow: 0 4px 18px rgba(0,0,0,0.4);
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    }
    .float-btn:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(0,0,0,0.55); }
    .float-btn svg { width: 26px; height: 26px; fill: #fff; }
    .float-whatsapp { background: #25D366; }
    .float-instagram { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }
    .footer-col h5 {
      font-family: 'Raleway', sans-serif;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1.5rem;
    }
    .footer-col ul { list-style: none; }
    .footer-col ul li { margin-bottom: 0.7rem; }
    .footer-col ul a {
      text-decoration: none;
      color: var(--gray);
      font-size: 0.85rem;
      transition: color 0.3s;
    }
    .footer-col ul a:hover { color: var(--white); }
    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-top: 2rem;
      max-width: 1200px;
      margin: 0 auto;
      flex-wrap: wrap;
      gap: 1rem;
    }
    .footer-bottom p { font-size: 0.78rem; color: var(--gray); }
    .footer-bottom p span { color: var(--gold); }
    .footer-flag {
      display: flex;
      gap: 3px;
    }
    .flag-stripe { width: 8px; height: 18px; }
    .flag-blue { background: var(--blue-fr); }
    .flag-white { background: #EDEDED; }
    .flag-red { background: var(--red-fr); }

    /* ─── ANIMATIONS ──────────────────────────── */
    @keyframes particleFloat {
      0% { transform: translateY(100vh) scale(0); opacity: 0; }
      10% { opacity: 1; }
      90% { opacity: 1; }
      100% { transform: translateY(-10px) scale(1); opacity: 0; }
    }
    .fade-in {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .fade-in.visible { opacity: 1; transform: translateY(0); }

    /* ─── VIDEO SHOWCASE ─────────────────────── */
    #video-showcase {
      background: var(--black);
      position: relative;
      overflow: hidden;
    }
    #video-showcase::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse at 30% 50%, rgba(201,168,76,0.07) 0%, transparent 55%),
        radial-gradient(ellipse at 70% 50%, rgba(201,168,76,0.04) 0%, transparent 50%);
      pointer-events: none;
    }
    .video-showcase-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: center;
    }
    .video-content h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1.2rem; }
    .video-content p { color: var(--gray-light); font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; margin-bottom: 2rem; }
    .video-features { display: flex; flex-direction: column; gap: 1.2rem; margin-bottom: 2.5rem; }
    .video-feature {
      display: flex;
      align-items: center;
      gap: 1rem;
      font-size: 0.88rem;
      color: var(--gray-light);
    }
    .video-feature::before {
      content: '';
      width: 30px; height: 1px;
      background: linear-gradient(90deg, var(--gold), transparent);
      flex-shrink: 0;
    }
    .video-feature strong { color: var(--gold); margin-right: 0.3rem; }
    /* Portrait video frame */
    .video-frame-wrap {
      display: flex;
      justify-content: center;
      position: relative;
    }
    .video-frame {
      position: relative;
      width: 320px;
      border-radius: 24px;
      overflow: hidden;
      box-shadow:
        0 0 0 1px rgba(201,168,76,0.4),
        0 0 0 4px rgba(10,10,10,1),
        0 0 0 5px rgba(201,168,76,0.2),
        0 30px 80px rgba(0,0,0,0.7),
        0 0 60px rgba(201,168,76,0.08);
    }
    .video-frame video {
      width: 100%;
      display: block;
      border-radius: 22px;
    }
    /* Decorative gold lines behind video */
    .video-frame-wrap::before {
      content: '';
      position: absolute;
      top: -20px; right: -20px;
      width: 200px; height: 200px;
      border-top: 1px solid rgba(201,168,76,0.2);
      border-right: 1px solid rgba(201,168,76,0.2);
    }
    .video-frame-wrap::after {
      content: '';
      position: absolute;
      bottom: -20px; left: -20px;
      width: 200px; height: 200px;
      border-bottom: 1px solid rgba(201,168,76,0.2);
      border-left: 1px solid rgba(201,168,76,0.2);
    }
    .video-play-label {
      position: absolute;
      bottom: -3rem;
      left: 50%;
      transform: translateX(-50%);
      font-size: 0.65rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gray);
      white-space: nowrap;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }
    .video-play-label::before,
    .video-play-label::after {
      content: '';
      width: 20px; height: 1px;
      background: rgba(201,168,76,0.3);
    }
    /* Floating gold accent badge */
    .video-badge {
      position: absolute;
      top: 2rem;
      left: -3rem;
      background: var(--dark2);
      border: 1px solid rgba(201,168,76,0.3);
      padding: 1rem 1.2rem;
      min-width: 140px;
      text-align: center;
    }
    .video-badge-num {
      font-family: 'Playfair Display', serif;
      font-size: 1.8rem;
      font-weight: 700;
      color: var(--gold);
      display: block;
      line-height: 1;
    }
    .video-badge-label {
      font-size: 0.62rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--gray);
      margin-top: 0.3rem;
      display: block;
    }
    @media (max-width: 900px) {
      .video-showcase-grid { grid-template-columns: 1fr; gap: 3rem; }
      .video-frame { width: 280px; }
      .video-badge { left: -1rem; }
      .video-frame-wrap::before, .video-frame-wrap::after { display: none; }
    }

    /* ─── GALLERY ────────────────────────────── */
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      grid-auto-rows: 260px;
      gap: 3px;
      margin-bottom: 3px;
    }
    .gallery-item {
      position: relative;
      overflow: hidden;
      background: var(--dark2);
      cursor: pointer;
    }
    .gallery-item.gallery-wide { grid-column: span 2; }
    .gallery-item.gallery-tall { grid-row: span 2; }
    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      display: block;
      transition: transform 0.6s ease;
      filter: brightness(0.88);
    }
    .gallery-item:hover img {
      transform: scale(1.07);
      filter: brightness(0.7);
    }
    .gallery-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.75) 100%);
      display: flex;
      align-items: flex-end;
      padding: 1.5rem;
      opacity: 0;
      transition: opacity 0.3s;
    }
    .gallery-item:hover .gallery-overlay { opacity: 1; }
    .gallery-overlay span {
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--white);
      border-bottom: 1px solid var(--gold);
      padding-bottom: 2px;
    }
    @media (max-width: 1024px) {
      .gallery-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 220px; }
      .gallery-item.gallery-wide { grid-column: span 2; }
    }
    @media (max-width: 768px) {
      .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
      .gallery-item.gallery-tall { grid-row: span 1; }
      .gallery-item.gallery-wide { grid-column: span 1; }
    }

    /* ─── LOGO MARK (inline SVG) ─────────────── */
    /* Used in hero + navbar */

    /* ─── MOBILE ──────────────────────────────── */
    @media (max-width: 1024px) {
      .destinations-grid { grid-template-columns: repeat(3, 1fr); }
      .destination-item:nth-child(4n) { border-right: 1px solid rgba(201,168,76,0.1); }
      .destination-item:nth-child(3n) { border-right: none; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .why-grid { grid-template-columns: 1fr; }
      .why-visual { display: none; }
    }
    @media (max-width: 768px) {
      nav { padding: 0 1.5rem; }
      .nav-links { display: none; }
      .nav-hamburger { display: flex; }
      section { padding: 5rem 1.5rem; }
      .faq-grid { grid-template-columns: 1fr; }
      .concierge-grid { grid-template-columns: 1fr; }
      .booking-options { grid-template-columns: 1fr; }
      .security-banner { grid-template-columns: 1fr; }
      .destinations-grid { grid-template-columns: repeat(2, 1fr); }
      .destination-item:nth-child(3n) { border-right: 1px solid rgba(201,168,76,0.1); }
      .destination-item:nth-child(2n) { border-right: none; }
      .footer-grid { grid-template-columns: 1fr; }
      .hero-stats { gap: 1.5rem; }
      .fleet-tabs { overflow-x: auto; }
      .fleet-tab { white-space: nowrap; }
    }
    @media (max-width: 480px) {
      .hero h1 { font-size: 2.4rem; }
      .hero-ctas { flex-direction: column; align-items: center; }
    }
