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

    :root {
      --container-padding: 20px;
      /* ── SKYHORSE DESIGN TOKENS ── */
      /* Brand: Midnight Black × Golden Hour Yellow */
      --bg-base:     #060606;
      --bg-surface:  #0e0e0e;
      --bg-elevated: #161616;
      --bg-card:     #111111;
      --border:     rgba(255,255,255,0.06);
      --border-mid:  rgba(255,255,255,0.12);
      --border-yellow: rgba(255,209,0,0.4);

      /* oklch-derived yellow — golden warmth, not neon */
      --gold:        #FFDC22;
      --gold-bright: #F5C94E;
      --gold-dim:    rgba(232,184,75,0.12);
      --gold-glow:   rgba(232,184,75,0.08);

      --ink-primary:   #F2F2F2;
      --ink-secondary: #B8B8B8;
      --ink-tertiary:  #8A8A8A;

      /* Semantic */
      --success: #34C759;
      --info:    #0A84FF;

      /* Typography */
      --font-display: 'Space Grotesk', 'Noto Sans TC', sans-serif;
      --font-body:    'Space Grotesk', 'Noto Sans TC', sans-serif;
      --font-zh:      'Space Grotesk', 'Noto Sans TC', sans-serif;
      --font-mono:    'JetBrains Mono', 'Space Grotesk', monospace;

      /* Spacing (4px base) */
      --sp-1: 4px;  --sp-2: 8px;  --sp-3: 12px; --sp-4: 16px;
      --sp-5: 20px; --sp-6: 24px; --sp-8: 32px; --sp-10: 40px;
      --sp-12: 48px; --sp-16: 64px; --sp-20: 80px; --sp-24: 96px;

      /* Radii */
      --r-sm: 6px; --r-md: 10px; --r-lg: 16px; --r-xl: 24px;

      /* Shadows */
      --shadow-card: 0 2px 12px rgba(0,0,0,0.4);
      --shadow-gold: 0 0 40px rgba(232,184,75,0.15);

      /* Motion */
      --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
      --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: var(--font-body);
      background: var(--bg-base);
      color: var(--ink-primary);
      line-height: 1.7;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    html, body, * {
      scrollbar-width: none;
      -ms-overflow-style: none;
    }
    *::-webkit-scrollbar {
      width: 0;
      height: 0;
      display: none;
      background: transparent;
    }

    /* ══════════════════════════════════════
       NAV
    ══════════════════════════════════════ */
    .site-nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      background: rgba(6,6,6,0.92);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--border);
      transition: border-color 0.3s;
    }
    .nav-inner {
      max-width: 1200px; margin: 0 auto; padding: 0 40px;
      height: 64px; display: flex; align-items: center; justify-content: space-between;
      gap: 24px;
    }
    .nav-left {
      display: flex;
      align-items: center;
      gap: 18px;
      min-width: 0;
    }
    .nav-logo {
      display: flex; align-items: center; gap: 12px; text-decoration: none;
      flex-shrink: 0;
    }
    .nav-logo img {
      display: block;
      width: 118px;
      height: 24px;
      flex-shrink: 0;
    }
    .nav-logo-mark {
      width: 36px; height: 36px;
      background: var(--gold);
      border-radius: var(--r-sm);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .nav-logo-mark svg { width: 20px; height: 20px; }
    .nav-logo-text {
      font-family: var(--font-zh);
      font-size: 15px; font-weight: 600;
      color: var(--ink-primary); letter-spacing: -0.2px;
    }
    .nav-logo-sub {
      font-size: 10px; font-weight: 400;
      color: var(--ink-tertiary); letter-spacing: 0.5px;
      display: block; margin-top: -2px;
    }
    .nav-business-switch {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      padding: 4px;
      border-radius: 999px;
      background: rgba(255,255,255,0.10);
      width: 184px;
      flex-shrink: 0;
      position: relative;
    }
    .nav-switch-pill {
      position: absolute;
      top: 4px;
      left: 4px;
      height: calc(100% - 8px);
      border-radius: 999px;
      background: var(--gold);
      z-index: 0;
      transition: transform 0.3s cubic-bezier(0.16,1,0.3,1), width 0.3s cubic-bezier(0.16,1,0.3,1);
      pointer-events: none;
    }
    .nav-business-link {
      font-family: var(--font-zh);
      font-size: 13px;
      font-weight: 700;
      color: rgba(255,255,255,0.55);
      text-decoration: none;
      line-height: 1;
      padding: 7px 16px;
      border-radius: 999px;
      transition: color 0.2s;
      white-space: nowrap;
      position: relative;
      z-index: 1;
    }
    .nav-business-link:hover {
      color: rgba(255,255,255,0.85);
    }
    .nav-business-link.is-active {
      background: var(--gold);
    color: #060606;
    }
    .nav-links {
      display: flex; align-items: center; gap: 4px;
    }
    .nav-links a {
      font-family: var(--font-zh);
      font-size: 14px; font-weight: 400;
      color: var(--ink-secondary);
      text-decoration: none; padding: 6px 14px;
      border-radius: var(--r-sm);
      transition: color 0.15s, background 0.15s;
    }
    .nav-links a:hover { color: var(--ink-primary); background: rgba(255,255,255,0.04); }
    .nav-menu-group {
      position: relative;
      display: flex;
      align-items: center;
    }
    .nav-menu-toggle::after {
      content: "";
      display: inline-block;
      width: 10px;
      height: 10px;
      margin-left: 6px;
      vertical-align: -1px;
      background: currentColor;
      mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") center / contain no-repeat;
      -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") center / contain no-repeat;
      opacity: 0.7;
    }
    .nav-submenu {
      position: absolute;
      top: calc(100% + 10px);
      right: 0;
      min-width: 140px;
      padding: 8px;
      border: 1px solid rgba(255,255,255,0.10);
      border-radius: 10px;
      background: rgba(18,18,18,0.96);
      box-shadow: 0 16px 40px rgba(0,0,0,0.28);
      opacity: 0;
      visibility: hidden;
      transform: translateY(-4px);
      transition: opacity 0.16s, transform 0.16s, visibility 0.16s;
      z-index: 40;
    }
    .nav-menu-group:hover .nav-submenu,
    .nav-menu-group:focus-within .nav-submenu {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }
    .nav-links .nav-submenu a {
      display: block;
      padding: 9px 10px;
      white-space: nowrap;
    }
    .nav-mobile-menu-label {
      display: block;
      margin-top: 6px;
      padding: 12px 0 4px;
      font-size: 12px;
      font-weight: 700;
      color: var(--ink-tertiary);
      text-transform: uppercase;
    }
    .nav-link-disabled {
      cursor: default;
      opacity: 0.85;
    }
    .nav-link-disabled:hover {
      color: var(--ink-secondary) !important;
      background: transparent !important;
    }
    .nav-cta {
      color: var(--gold) !important;
      /* color: #060606 !important; */
      font-family: var(--font-zh) !important;
      font-weight: 700 !important;
      font-size: 14px !important;
      height: 36px !important;
      padding: 0 20px !important;
      display: inline-flex !important;
      align-items: center !important;
      border-radius: var(--r-sm) !important;
      transition: background 0.15s !important;
    }
    .nav-cta:hover { 
      opacity: 0.75 !important;
      background: none !important; }
    .nav-menu-btn {
      width: 44px;
      height: 44px;
      display: none;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      padding: 0;
      background: transparent;
      border: 1px solid var(--border);
      border-radius: 12px;
      color: #fff;
      cursor: pointer;
      position: relative;
      z-index: 121;
    }
    .nav-menu-btn .nav-icon {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      height: 100%;
      line-height: 0;
    }
    .nav-menu-btn .nav-icon-close { display: none; }
    .nav-menu-btn:hover { color: #fff; }
    .nav-menu-btn.is-open {
      position: fixed;
      top: 14px;
      right: 40px;
      width: 36px;
      height: 36px;
      border: none;
      border-radius: 0;
      background: transparent;
      color: var(--ink-primary);
      z-index: 122;
    }
    .nav-menu-btn.is-open .nav-icon-close,
    .nav-menu-btn.is-open .nav-icon-close svg {
      width: 24px;
      height: 24px;
    }
    .nav-menu-btn.is-open .nav-icon-menu { display: none; }
    .nav-menu-btn.is-open .nav-icon-close { display: flex; }
    .nav-menu-btn.is-open:hover {
      border: none;
      background: transparent;
      color: var(--ink-primary);
    }
    .nav-mobile-close {
      position: absolute;
      top: 10px;
      right: 20px;
      width: 44px;
      height: 44px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: transparent;
      border: none;
      color: #fff;
      cursor: pointer;
      padding: 0;
      z-index: 123;
      opacity: 0.9;
      transition: opacity .15s ease;
    }
    .nav-mobile-close:hover { opacity: 1; }
    .nav-mobile-panel {
      position: fixed;
      inset: 0;
      z-index: 120;
      background: #060606;
      display: none;
      flex-direction: column;
      align-items: center;
      min-height: 100dvh;
      overflow-x: hidden;
      overflow-y: auto;
    }
    .nav-mobile-panel.is-open { display: flex; }
    .nav-mobile-brand {
      display: flex;
      justify-content: center;
      padding-top: 72px;
      text-decoration: none;
      flex-shrink: 0;
    }
    .nav-mobile-brand img {
      display: block;
      width: 142px;
      max-width: min(50vw, 142px);
      height: auto;
    }
    .nav-mobile-brand svg {
      width: 142px;
      height: auto;
      max-width: min(50vw, 142px);
    }
    .nav-mobile-links {
      flex: 1;
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 0;
    }
    .nav-mobile-links a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0;
      background: none;
      color: var(--ink-primary);
      font-family: var(--font-display);
      font-size: 20px;
      font-weight: 500;
      line-height: 72px;
      letter-spacing: -0.5px;
      transition: color .15s ease;
      text-decoration: none;
    }
    .nav-mobile-links a:hover { color: var(--gold); }
    .nav-mobile-links a.active { color: var(--gold); }
    .nav-mobile-submenu-group {
      width: min(280px, calc(100% - 40px));
      margin-top: 8px;
    }
    .nav-mobile-submenu-toggle {
      align-items: center;
      background: transparent;
      border: 0;
      color: var(--ink-primary);
      cursor: pointer;
      display: flex;
      font-family: var(--font-display);
      font-size: 20px;
      font-weight: 500;
      justify-content: center;
      gap: 8px;
      padding: 18px 0;
      width: 100%;
    }
    .nav-mobile-submenu-chevron {
      transition: transform .2s ease;
    }
    .nav-mobile-submenu-group.is-open .nav-mobile-submenu-chevron {
      transform: rotate(180deg);
    }
    .nav-mobile-submenu-links {
      display: none;
      padding-bottom: 12px;
    }
    .nav-mobile-submenu-group.is-open .nav-mobile-submenu-links {
      display: block;
    }
    .nav-mobile-links .nav-mobile-submenu-link {
      font-size: 15px;
      line-height: 44px;
      padding: 0;
      width: 100%;
    }
    .nav-mobile-links .nav-mobile-submenu-link.current-language-menu-item {
      color: var(--gold);
    }
    .nav-mobile-panel a.nav-link-disabled {
      color: rgba(255,255,255,0.3);
      pointer-events: none;
    }
    .nav-mobile-cta {
      align-self: stretch;
      background: var(--gold);
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 88px;
      padding-bottom: env(safe-area-inset-bottom, 0px);
      flex-shrink: 0;
    }
    .nav-mobile-book {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      color: #060606;
      font-family: var(--font-display);
      font-size: 18px;
      font-weight: 700;
      letter-spacing: -0.3px;
      text-decoration: none;
      line-height: 1;
    }
    .nav-mobile-book svg { flex-shrink: 0; }
    .nav-mobile-backdrop {
      display: none !important;
    }
    .nav-mobile-backdrop.is-open { display: none !important; }

    /* ══════════════════════════════════════
       HERO — Positioning, Features, Quick Booking
    ══════════════════════════════════════ */
    .hero {
      position: relative;
      min-height: max(580px, 65vh);
      background: #060606 url('/wp-content/themes/ks_skyhorse_new/assets/images/hero_bg.jpg') center/cover no-repeat;
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      text-align: center;
      width: 100%;
      max-width: 100vw;
      overflow: hidden;
    }
    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(180deg, rgba(6,6,6,0.42) 0%, rgba(6,6,6,0.18) 26%, rgba(6,6,6,0.54) 100%),
        linear-gradient(90deg, rgba(6,6,6,0.5) 0%, rgba(6,6,6,0.12) 44%, rgba(6,6,6,0.42) 100%);
    }
    .hero-content {
      position: relative; z-index: 2;
      padding: 120px 40px 60px;
      max-width: 1200px; width: 100%;
      margin: 0 auto;
    }
    .hero-head {
      width: 100%;
      max-width: 980px;
      display: flex;
      flex: 1 1 auto;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 15px;
      margin: 0 auto;
    }
    .hero-copy {
      width: 100%;
      max-width: none;
      text-align: center;
    }
    .hero-eyebrow {
      font-family: var(--font-mono);
      font-size: 11px; font-weight: 500;
      letter-spacing: 3px; text-transform: uppercase;
      color: #ffffff;
      margin-bottom: 24px;
      display: inline-flex; align-items: center; gap: 10px;
      justify-content: center;
      margin-left: auto;
      margin-right: auto;
      opacity: 0; transform: translateY(12px);
      animation: fadeUp 0.6s var(--ease-out) 0.2s forwards;
    }
    .hero-eyebrow::before { content: none; }
    .hero h1 {
      font-family: var(--font-display);
      font-size: clamp(36px, 4.7vw, 68px);
      font-weight: 800; line-height: 1.08; letter-spacing: -2px;
      color: #fff;
      margin-bottom: 20px;
      opacity: 0; transform: translateY(16px); filter: blur(10px);
      animation: fadeUp 1.4s var(--ease-out) 0.35s forwards;
    }
    .hero-sub {
      font-size: 16px; font-weight: 500;
      color: #ffffff;
      line-height: 1.8; margin-bottom: 40px;
      max-width: 600px; margin-left: auto; margin-right: auto;
      opacity: 0; transform: translateY(12px); filter: blur(8px);
      animation: fadeUp 1.2s var(--ease-out) 0.5s forwards;
    }
    .hero-pills {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 10px;
      max-width: 980px;
      width: 100%;
      margin: 0 auto;
      opacity: 0;
      transform: translateY(12px);
      animation: fadeUp 0.6s var(--ease-out) 0.55s forwards;
    }
    .hero-pill {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-family: var(--font-zh);
      font-size: 12px;
      font-weight: 600;
      color: rgba(255,255,255,0.72);
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,220,34,0.2);
      border-radius: 20px;
      padding: 6px 16px;
      white-space: nowrap;
      letter-spacing: 0.3px;
      transition: all 0.2s;
    }
    .hero-pill i {
      width: 13px;
      height: 13px;
      color: #FFDC22;
      flex-shrink: 0;
    }
    .hero-booking-card {
      width: 100%;
      max-width: 1320px;
      margin: auto auto 8px;
      padding: 24px 28px 20px;
      border-radius: 16px;
      background: rgba(14,14,14,0.96);
      border: 1px solid rgba(255,255,255,0.12);
      box-shadow: 0 8px 40px rgba(0,0,0,0.5), 0 0 60px rgba(255,220,34,0.06);
      -webkit-backdrop-filter: blur(20px);
      backdrop-filter: blur(20px);
      opacity: 0;
      transform: translateY(12px);
      animation: fadeUp 0.6s var(--ease-out) 0.72s forwards;
    }
    .hero-booking-form {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 10fr)) minmax(0, 6fr);
      gap: 14px;
      align-items: end;
    }
    .hero-booking-group {
      display: grid;
      gap: 8px;
      min-width: 0;
    }
    .hero-booking-group-title {
      font-size: 10px;
      font-weight: 700;
      color: var(--ink-tertiary);
      letter-spacing: 1.5px;
      text-transform: uppercase;
      text-align: left;
    }
    .hero-booking-combo,
    .hero-booking-single {
      min-height: 52px;
      border: 1px solid var(--border);
      border-radius: var(--r-md);
      background: var(--bg-elevated);
      overflow: hidden;
      transition: border-color 0.18s, box-shadow 0.18s, transform 0.18s;
    }
    .hero-booking-combo:focus-within,
    .hero-booking-single:focus-within {
      border-color: #FFDC22;
      box-shadow: 0 0 0 3px rgba(255,220,34,0.10);
      transform: translateY(-1px);
    }
    .hero-booking-combo {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 1px minmax(0, 1fr);
    }
    .hero-booking-combo--datetime {
      grid-template-columns: minmax(0, 1fr) 1px minmax(0, 1fr);
    }
    .hero-booking-divider {
      width: 1px;
      background: var(--border);
      align-self: stretch;
      margin: 12px 0;
    }
    .hero-booking-segment,
    .hero-booking-single {
      display: flex;
      align-items: center;
      gap: 12px;
      min-width: 0;
      width: 100%;
      height: 100%;
      padding: 0 16px;
      color: var(--ink-primary);
      cursor: pointer;
    }
    .hero-booking-segment:hover,
    .hero-booking-single:hover {
      background: rgba(255,255,255,0.02);
      transition: background 0.18s;
    }
    .hero-booking-segment i,
    .hero-booking-single i {
      width: 16px;
      height: 16px;
      color: #FFDC22;
      flex-shrink: 0;
    }
    .hero-booking-input,
    .hero-booking-select,
    .hero-booking-display {
      width: 100%;
      min-width: 0;
      min-height: 52px;
      padding: 0;
      border: none;
      background: transparent;
      color: var(--ink-primary);
      font-family: var(--font-body);
      font-size: 13px;
      font-weight: 500;
      outline: none;
      appearance: none;
      -webkit-appearance: none;
      cursor: pointer;
    }
    .hero-booking-display {
      display: flex;
      align-items: center;
      color: rgba(255,255,255,0.82);
      cursor: default;
    }
    .hero-booking-display.is-placeholder {
      color: rgba(255,255,255,0.35);
    }
    .hero-booking-select option {
      color: #111111;
      background: #ffffff;
    }
    .hero-booking-input {
      cursor: text;
    }
    .hero-booking-card .hero-booking-input,
    .hero-booking-card .hero-booking-select {
      pointer-events: none;
    }
    .hero-booking-select-wrap {
      position: relative;
      width: 100%;
      min-width: 0;
      display: inline-flex;
      align-items: center;
    }
    .hero-booking-select-wrap::after,
    .hero-booking-date-wrap::after {
      content: none;
    }
    .hero-booking-date-wrap {
      position: relative;
      width: 100%;
      min-width: 0;
      display: inline-flex;
      align-items: center;
    }
    .hero-booking-date-wrap .hero-booking-input {
      padding-right: 28px;
    }
    .hero-booking-date-wrap .hero-booking-input[type="date"] {
      color: transparent;
      -webkit-text-fill-color: transparent;
    }
    .date-display {
      position: absolute;
      left: 0;
      pointer-events: none;
      font-size: 13px;
      color: rgba(255,255,255,0.35);
      white-space: nowrap;
    }
    .date-display.has-value { color: var(--ink-primary); }
    .hero-booking-input::-webkit-calendar-picker-indicator {
      opacity: 0;
      position: absolute;
      right: 0;
      width: 100%;
      height: 100%;
      cursor: pointer;
    }
    .hero-booking-submit {
      min-height: 52px;
      min-width: unset;
      width: 100%;
      padding: 12px 24px;
      border: none;
      border-radius: var(--r-md);
      background: #FFDC22;
      color: #060606;
      font-family: var(--font-zh);
      font-size: 14px;
      font-weight: 700;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: background 0.2s, transform 0.15s;
      white-space: nowrap;
      letter-spacing: 0.5px;
      box-shadow: 0 2px 8px rgba(255,220,34,0.20);
      text-decoration: none !important;
    }
    .hero-booking-submit:hover {
      background: #ffe640;
      transform: translateY(-1px);
      box-shadow: 0 4px 14px rgba(255,220,34,0.30);
      text-decoration: none !important;
    }
    .hero-booking-submit:focus,
    .hero-booking-submit:active {
      text-decoration: none !important;
    }
    .hero-booking-submit i { display: none; }
    @media (min-width: 1440px) {
      .hero-booking-form {
        grid-template-columns: repeat(3, minmax(0, 10fr)) minmax(0, 6fr);
      }
      .hero-booking-submit {
        min-width: unset;
        max-width: unset;
      }
    }
    .hero-booking-trust {
      display: flex;
      justify-content: center;
      gap: 20px;
      margin-top: 16px;
      padding-top: 14px;
      border-top: 1px solid var(--border);
      flex-wrap: wrap;
    }
    .hero-trust-item {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      font-size: 10px;
      color: #ffffff;
    }
    .hero-booking-trust .hero-trust-item > .hero-trust-icon,
    .hero-booking-trust .hero-trust-item > img,
    .hero-booking-trust .hero-trust-item > svg {
      width: 12px !important;
      min-width: 12px;
      max-width: 12px;
      height: 12px !important;
      min-height: 12px;
      max-height: 12px;
      inline-size: 12px !important;
      block-size: 12px !important;
      aspect-ratio: 1;
      display: block;
      flex: 0 0 12px;
      object-fit: contain;
    }
    .hero-actions {
      display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
      margin-bottom: 40px;
      opacity: 0; transform: translateY(12px);
      animation: fadeUp 0.6s var(--ease-out) 0.7s forwards;
    }
    .btn-primary {
      display: inline-flex; align-items: center; justify-content: center; gap: 8px;
      min-height: 52px; min-width: 168px;
      background: #FFDC22; color: #060606;
      font-family: var(--font-zh);
      font-size: 14px; font-weight: 700;
      padding: 0 28px; border-radius: 8px;
      text-decoration: none;
      transition: background 0.2s, transform 0.15s;
      letter-spacing: 0.3px;
      white-space: nowrap;
    }
    .btn-primary:hover { background: #ffe640; transform: translateY(-2px); }
    .btn-primary svg,
    .btn-primary i { width: 16px; height: 16px; }
    .btn-ghost {
      display: inline-flex; align-items: center; justify-content: center; gap: 8px;
      min-height: 52px; min-width: 168px;
      background: transparent;
      border: 1.5px solid rgba(255,255,255,0.2);
      color: rgba(255,255,255,0.7);
      font-family: var(--font-zh);
      font-size: 14px; font-weight: 600;
      padding: 0 28px; border-radius: 8px;
      text-decoration: none;
      transition: border-color 0.2s, color 0.2s;
      white-space: nowrap;
    }
    .btn-ghost:hover { border-color: rgba(255,255,255,0.5); color: #fff; }
    .btn-ghost svg,
    .btn-ghost i { width: 16px; height: 16px; }
    .hero-social-proof {
      opacity: 0; transform: translateY(12px);
      animation: fadeUp 0.6s var(--ease-out) 0.8s forwards;
    }
    .hero-social-label {
      font-size: 10px; color: #8A8A8A;
      letter-spacing: 2px; text-transform: uppercase;
      margin-bottom: 8px;
    }
    .hero-social-names {
      font-size: 14px; font-weight: 500;
      color: rgba(255,255,255,0.5);
    }
    .hero-social-names strong { color: #FFDC22; font-weight: 600; }

    /* ── BLOG CTA ── */
    .blog-cta-section {
      background: var(--bg-base);
      padding: 64px 0;
    }
    .blog-cta-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 40px;
      box-sizing: border-box;
      display: grid;
      grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
      align-items: center;
      gap: 72px;
    }
    .blog-cta-content { max-width: 520px; }
    .blog-cta-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: var(--font-mono);
      font-size: 10px;
      font-weight: 500;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 16px;
    }
    .blog-cta-title {
      font-family: var(--font-zh);
      font-size: clamp(20px, 2.8vw, 36px);
      font-weight: 800;
      letter-spacing: -1px;
      line-height: 1.2;
      color: var(--ink-primary);
      margin-bottom: 14px;
      display: -webkit-box;
      -webkit-box-orient: vertical;
      -webkit-line-clamp: 3;
      overflow: hidden;
    }
    .blog-cta-sub {
      font-size: 14px;
      font-weight: 300;
      color: var(--ink-secondary);
      line-height: 1.8;
      max-width: 480px;
      margin-bottom: 20px;
      display: -webkit-box;
      -webkit-box-orient: vertical;
      -webkit-line-clamp: 3;
      overflow: hidden;
    }
    .blog-cta-actions {
      display: flex;
      align-items: center;
      gap: 12px;
      justify-content: space-between;
      margin-top: 24px;
    }
    .blog-cta-primary {
      display: flex;
      align-items: center;
      gap: 12px;
      flex-wrap: wrap;
    }
    .blog-cta-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      min-width: 168px;
      background: rgba(255,255,255,0.05);
      color: #fff;
      font-family: var(--font-zh);
      font-size: 14px;
      font-weight: 700;
      padding: 14px 24px;
      border-radius: 10px;
      border: 1px solid rgba(255,255,255,0.20);
      transition: background 0.15s, border-color 0.15s;
      white-space: nowrap;
      text-decoration: none;
    }
    .blog-cta-btn:hover {
      background: rgba(255,255,255,0.08);
      border-color: #8A8A8A;
      text-decoration: none;
    }
    .blog-cta-btn svg,
    .blog-cta-btn i { width: 16px; height: 16px; }
    .blog-cta-controls {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-left: auto;
    }
    .blog-cta-switch {
      width: 48px;
      height: 48px;
      padding: 0;
      border: 0;
      border-radius: 50%;
      background: transparent;
      cursor: pointer;
      opacity: 0.86;
      transition: opacity 0.2s, transform 0.2s;
    }
    .blog-cta-switch:hover {
      opacity: 1;
      transform: translateY(-2px);
    }
    .blog-cta-switch img {
      width: 100%;
      height: 100%;
      display: block;
    }
    .blog-cta-switch.is-prev img {
      transform: rotate(180deg);
    }
    .blog-cta-media {
      position: relative;
      display: block;
      border-radius: 20px;
      overflow: hidden;
      border: 1px solid rgba(255,255,255,0.14);
      background: #080808;
      box-shadow: 0 24px 80px rgba(0,0,0,0.45);
      aspect-ratio: 465 / 265;
      text-decoration: none;
    }
    .blog-cta-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      opacity: 1;
      transition: opacity 0.48s var(--ease-out), transform 0.35s var(--ease-out), filter 0.35s var(--ease-out);
    }
    .blog-cta-media.is-switching img {
      opacity: 0.18;
    }
    .blog-cta-media:hover img {
      transform: scale(1.03);
      filter: brightness(1.08);
    }
    .blog-cta-media-label {
      position: absolute;
      left: 20px;
      bottom: 18px;
      z-index: 2;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: #fff;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 1.2px;
      text-transform: uppercase;
      background: rgba(6,6,6,0.72);
      border: 1px solid rgba(255,255,255,0.16);
      border-radius: 999px;
      padding: 8px 12px;
      backdrop-filter: blur(12px);
    }
    .blog-cta-media-label svg {
      width: 14px;
      height: 14px;
      color: var(--gold);
    }
    .blog-cta-media-label img,
    .blog-cta-media-icon {
      display: block;
      width: 14px !important;
      height: 14px !important;
      min-width: 14px !important;
      min-height: 14px !important;
      max-width: 14px !important;
      max-height: 14px !important;
      flex: 0 0 14px;
      object-fit: contain;
      opacity: 1 !important;
      transform: none !important;
      filter: none !important;
    }
    @media (max-width: 900px) {
      .nav-links { display: none; }
      .nav-menu-btn { display: flex; }
      .nav-inner { max-width: 100%; }
    }
    @media (max-width: 768px) {
    .blog-cta-section { padding: 32px 0; }
    .blog-cta-inner { padding: 0 20px; }
      .blog-cta-inner {
        display: flex;
        flex-direction: column;
        gap: 18px;
        text-align: center;
      }
      .blog-cta-content {
        display: contents;
        max-width: none;
      }
      .blog-cta-eyebrow { order: 1; justify-content: center; }
      .blog-cta-title { display: none; }
      .blog-cta-sub { display: none; }
      .blog-cta-media {
        order: 4;
        border-radius: 20px;
        max-width: 480px;
        width: 100%;
        margin: 0 auto;
      }
      .blog-cta-actions {
        order: 5;
        width: 100%;
        max-width: 480px;
        justify-content: space-between;
        align-items: center;
        flex-direction: row;
        gap: 12px;
        margin: 4px auto 0;
      }
      .blog-cta-primary {
        justify-content: flex-start;
        flex: 0 1 auto;
      }
      .blog-cta-btn {
        min-height: 48px;
        min-width: 152px;
        padding: 0 24px;
        color: #fff;
      }
      .blog-cta-btn i,
      .blog-cta-btn svg { display: none; }
      .blog-cta-controls { justify-content: center; margin-left: 0; flex-shrink: 0; }
      .blog-cta-switch {
        width: 44px;
        height: 44px;
      }
    }

    /* Booking Form Section */
    .booking-form-section {
      padding: 40px 0;
      background: var(--bg-base);
    }
    .booking-form-inner { max-width: 1200px; margin: 0 auto; padding: 0 40px; box-sizing: border-box; }
    .booking-form-title {
      font-family: var(--font-zh);
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: #FFDC22;
      text-align: center;
      margin-bottom: 12px;
    }
    .booking-form-sub {
      font-family: var(--font-zh);
      font-size: 28px;
      font-weight: 700;
      color: #fff;
      text-align: center;
      margin-bottom: 48px;
      letter-spacing: -1px;
    }
    .booking-form-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
    }
    .bf-field { display: flex; flex-direction: column; gap: 8px; }
    .bf-field label {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: rgba(255,255,255,0.4);
      display: flex;
      align-items: center;
      gap: 6px;
    }
    .bf-field label svg { width: 12px; height: 12px; color: #fff; }
    .bf-field input,
    .bf-field select {
      width: 100%;
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: var(--r-md);
      padding: 14px 16px;
      font-family: var(--font-body);
      font-size: 14px;
      color: #fff;
      outline: none;
      transition: border-color 0.2s, box-shadow 0.2s;
      appearance: none;
    }
    .bf-field input::placeholder { color: #8A8A8A; }
    .bf-field input:focus,
    .bf-field select:focus {
      border-color: rgba(255,220,34,0.5);
      box-shadow: 0 0 0 3px rgba(255,220,34,0.08);
    }
    .bf-field select {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.3)' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 14px center;
      padding-right: 40px;
      cursor: pointer;
    }
    .bf-field select option {
      background: #111111;
      color: #fff;
    }
    .bf-submit {
      width: 100%;
      background: #FFDC22;
      color: #060606;
      font-family: var(--font-zh);
      font-size: 15px;
      font-weight: 700;
      padding: 16px;
      border: none;
      border-radius: var(--r-md);
      cursor: pointer;
      margin-top: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      transition: background 0.2s, transform 0.15s;
      letter-spacing: 0.5px;
    }
    .bf-submit:hover { background: #ffe640; transform: translateY(-1px); }
    .bf-submit svg { width: 16px; height: 16px; }

    /* ══════════════════════════════════════
       STATS BAR
    ══════════════════════════════════════ */
    .stats-bar {
      background: var(--bg-base);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      padding: 48px 0;
    }
    .stats-inner {
      max-width: 1200px; margin: 0 auto; padding: 0 40px; box-sizing: border-box;
      display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 40px;
    }
    .stat-item {
      text-align: center;
      position: relative;
      padding: 20px 16px;
      border-radius: 20px;
      transition: background 0.2s ease, transform 0.15s ease;
      overflow: hidden;
    }
    .stat-item--link {
      display: block;
      cursor: pointer;
      text-decoration: none;
    }
    .stat-item--link:hover {
      background: rgba(255,255,255,0.06);
      transform: translateY(-2px);
    }

    .stat-num {
      font-family: var(--font-zh);
      font-size: 40px; font-weight: 700;
      color: #fff;
      letter-spacing: -2px; line-height: 1;
      margin-bottom: 6px;
    }
    .stat-label {
      font-size: 12px; color: var(--ink-tertiary);
      letter-spacing: 0.5px;
    }

    /* ══════════════════════════════════════
       SECTION BASE
    ══════════════════════════════════════ */
    .section { padding: 80px 40px; max-width: 1200px; margin: 0 auto; }
    .section-header { display: flex; flex-direction: column; gap: 12px;
      margin-bottom: 56px; }
    .section-eyebrow {
      display: inline-flex; align-items: center; gap: 10px;
      font-family: var(--font-mono);
      font-size: 11px; font-weight: 500;
      letter-spacing: 3.5px; text-transform: uppercase;
      color: var(--gold); }
    .section-eyebrow::before {
      content: ''; display: block;
      width: 28px; height: 1px; background: var(--gold);
    }
    .section-title {
      font-family: var(--font-display);
      font-size: clamp(30px, 4vw, 48px);
      font-weight: 700; line-height: 1.35;
      letter-spacing: 0;
      color: var(--ink-primary);
      }
    .section-sub {
      font-size: 15px; font-weight: 300;
      color: var(--ink-secondary);
      max-width: 480px; line-height: 1.75;
    }

    /* ══════════════════════════════════════
       ADVANTAGES — 2×2 editorial grid
    ══════════════════════════════════════ */
    .adv-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1px;
      background: var(--border);
      border: 1px solid var(--border);
      border-radius: var(--r-lg);
      overflow: hidden;
    }
    #advantages .advantages-inner {
      width: 100%;
      max-width: 1120px;
      margin: 0 auto;
      box-sizing: border-box;
    }
    .adv-card {
      background: var(--bg-card);
      padding: 44px 40px;
      display: flex; gap: 24px;
      align-items: flex-start;
      position: relative;
      transition: background 0.25s;
    }
    .adv-icon-wrap {
      width: 48px; height: 48px; flex-shrink: 0;
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.2);
      border-radius: var(--r-md);
      display: flex; align-items: center; justify-content: center;
      transition: background 0.25s, border-color 0.25s;
    }
    .adv-icon-wrap svg {
      width: 22px; height: 22px; color: #fff;
      transition: color 0.25s;
    }
    .adv-icon-wrap img,
    .adv-icon-img {
      display: block;
      width: 22px;
      height: 22px;
      object-fit: contain;
    }
    .adv-body {}
    .adv-title {
      font-family: var(--font-zh);
      font-size: 17px; font-weight: 600;
      color: var(--ink-primary);
      margin-bottom: 8px;
      letter-spacing: -0.2px;
    }
    .adv-desc {
      font-size: 13px; font-weight: 300;
      color: var(--ink-secondary);
      line-height: 1.7;
    }

    /* ══════════════════════════════════════
       CARS — Full-bleed horizontal scroll
    ══════════════════════════════════════ */
    .cars-section { padding: 80px 0; background: var(--bg-base); }
    .cars-header {
      padding: 0 40px; margin: 0 auto 56px;
      max-width: 1200px;
    }
    .car-category {
      max-width: 1200px;
      margin: 0 auto 56px;
      padding: 0 40px;
    }
    .car-cat-label {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 20px;
      padding-bottom: 12px;
      border-bottom: 1px solid var(--border-subtle);
    }
    .car-cat-icon { font-size: 20px; }
    .car-cat-name {
      font-size: 16px;
      font-weight: 700;
      color: var(--ink-primary);
      letter-spacing: 0.02em;
    }
    .car-strip-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 16px;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 40px;
    }
    .car-strip-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--r-lg);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      text-decoration: none;
      color: inherit;
      transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
    }
    .car-strip-card:hover {
      border-color: var(--border-yellow);
      transform: translateY(-4px);
      box-shadow: var(--shadow-gold);
    }
    .car-strip-img {
      width: 100%;
      aspect-ratio: 4 / 3;
      overflow: hidden;
    }
    .car-strip-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.35s var(--ease-out);
    }
    .car-strip-card:hover .car-strip-img img { transform: scale(1.04); }
    .car-strip-body {
      padding: 16px 18px 20px;
      display: flex;
      flex-direction: column;
      gap: 6px;
    }
    .car-strip-name {
      font-size: 15px;
      font-weight: 700;
      color: var(--ink-primary);
    }
    .car-strip-desc {
      font-size: 13px;
      font-weight: 300;
      color: var(--ink-secondary);
      line-height: 1.6;
      margin: 0;
    }
    .cars-footer {
      text-align: center;
      padding: 40px 40px 0;
      max-width: 1200px;
      margin: 0 auto;
    }
    .section-view-all-wrap {
      display: flex;
      justify-content: center;
      padding-top: 40px;
    }
    .section-view-all {
      font-family: var(--font-zh);
      font-size: 12px;
      font-weight: 700;
      color: #060606;
      background: #FFDC22;
      text-decoration: none;
      padding: 12px 26px;
      border-radius: 6px;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      transition: background 0.15s, transform 0.15s;
      letter-spacing: 0.3px;
    }
    .section-view-all:hover {
      background: #ffe640;
      transform: translateY(-1px);
    }
    .section-view-all svg {
      width: 12px;
      height: 12px;
    }
    .car-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--r-lg);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
      cursor: pointer;
    }
    .car-card:hover {
      border-color: var(--border-yellow);
      transform: translateY(-4px);
      box-shadow: var(--shadow-gold);
    }
    .car-img {
      width: 100%; height: 200px;
      object-fit: cover;
      background: var(--bg-elevated);
      display: block;
    }
    .car-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
    .car-badge {
      display: inline-flex; align-items: center; gap: 5px;
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.16);
      color: #fff;
      font-size: 9px; font-weight: 600;
      letter-spacing: 1px; text-transform: uppercase;
      padding: 3px 8px; border-radius: 4px;
      margin-bottom: 12px;
      align-self: flex-start;
    }
    .car-badge svg { width: 9px; height: 9px; }
    .car-name {
      font-family: var(--font-zh);
      font-size: 22px; font-weight: 700;
      color: #fff;
      letter-spacing: -0.5px;
      margin-bottom: 4px;
    }
    .car-example { font-size: 12px; color: rgba(255,255,255,0.4); margin-bottom: 20px; }
    .car-specs { display: flex; flex-direction: column; gap: 8px; flex: 1; }
    .car-spec {
      display: flex; align-items: center; gap: 8px;
      font-size: 13px; color: rgba(255,255,255,0.6);
    }
    .car-spec::before {
      content: '•'; color: #FFDC22;
      font-size: 16px; line-height: 1;
    }
    .car-spec-label { color: rgba(255,255,255,0.4); }
    .car-spec-value {
      font-size: 12px; color: rgba(255,255,255,0.7); font-weight: 500;
    }
    .car-footer {
      display: flex; align-items: center; justify-content: space-between;
      margin-top: 20px; padding-top: 20px;
      border-top: 1px solid rgba(255,255,255,0.06);
    }
    .car-price {
      font-family: var(--font-zh);
      font-size: 20px; font-weight: 700;
      color: #FFDC22;
    }
    .car-price span { font-size: 12px; font-weight: 400; color: rgba(255,255,255,0.4); margin-left: 2px; }
    /* ══════════════════════════════════════
       AIRPORTS — Large type editorial
    ══════════════════════════════════════ */
    .airports-section {
      background: var(--bg-base);
      padding: 80px 0;
    }
    .airports-inner { max-width: 1200px; margin: 0 auto; padding: 0 40px; box-sizing: border-box; }
    .airports-grid {
      display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px;
      background: var(--border);
      border: 1px solid var(--border);
      border-radius: var(--r-lg);
      overflow: hidden;
    }
    .airport-card {
      background: var(--bg-card);
      padding: 32px 28px;
      display: flex; flex-direction: column; gap: 10px;
      transition: background 0.2s;
      cursor: default;
    }
    .airport-code {
      font-family: var(--font-zh);
      font-size: 32px; font-weight: 700;
      color: var(--gold);
      letter-spacing: -1px; line-height: 1;
      transition: color 0.2s;
    }
    .airport-iata { font-size: 14px; font-weight: 500; color: rgba(242,242,242,0.85); }
    .airport-city { font-size: 14px; font-weight: 500; color: var(--ink-primary); }
    .airport-code--more {
      color: var(--ink-secondary);
      font-size: 22px;
    }
    .airports-city-banner {
      margin-top: 24px;
      display: flex; align-items: center; gap: 32px;
      padding: 40px 48px;
      border: 1px solid var(--border);
      border-radius: var(--r-lg);
      background: var(--bg-card);
      position: relative; overflow: hidden;
    }
    .airports-city-banner-icon {
      display: flex; align-items: center; justify-content: center;
      width: 24px !important;
      height: 24px !important;
      min-width: 24px !important;
      min-height: 24px !important;
      max-width: 24px !important;
      max-height: 24px !important;
      flex: 0 0 24px;
      color: var(--gold);
      line-height: 0;
    }
    .airports-city-banner-icon i { width: 24px; height: 24px; }
    .airports-city-banner-icon img,
    .airports-city-banner-icon-img {
      display: block;
      width: 24px !important;
      height: 24px !important;
      min-width: 24px !important;
      min-height: 24px !important;
      max-width: 24px !important;
      max-height: 24px !important;
      flex: 0 0 24px;
      object-fit: contain;
    }
    .airports-city-banner-title {
      font-family: var(--font-zh);
      font-size: 28px; font-weight: 400;
      color: var(--gold);
      letter-spacing: -0.5px; line-height: 1.4;
    }
    .airports-city-banner-sub {
      font-size: 14px; font-weight: 500;
      color: var(--ink-primary);
      margin-top: 6px;
    }

    /* ══════════════════════════════════════
       CELEBRITY / SOCIAL PROOF
    ══════════════════════════════════════ */
    .celeb-section { padding: 80px 40px; max-width: 1200px; margin: 0 auto; box-sizing: border-box; }
    .celeb-grid {
      display: grid; grid-template-columns: 1fr 2fr; gap: 1px;
      background: var(--border);
      border: 1px solid var(--border);
      border-radius: var(--r-lg);
      overflow: hidden;
    }
    .celeb-quote-panel {
      background: var(--bg-card);
      padding: 48px 40px;
      display: flex; flex-direction: column; justify-content: center;
      position: relative;
    }
    .celeb-quote-mark {
      font-family: var(--font-zh);
      font-size: 120px; font-weight: 700;
      color: var(--gold-dim);
      line-height: 0.7; margin-bottom: 24px;
      user-select: none;
    }
    .celeb-quote-text {
      font-family: var(--font-zh);
      font-size: 20px; font-weight: 500;
      color: var(--ink-primary);
      line-height: 1.5;
      letter-spacing: -0.3px;
      margin-bottom: 24px;
    }
    .celeb-quote-attr {
      font-size: 13px; color: var(--ink-tertiary);
      display: flex; align-items: center; gap: 8px;
    }
    .celeb-quote-attr strong { color: var(--gold); font-weight: 600; }
    .celeb-mini-grid {
      display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px;
      background: var(--border);
    }
    .celeb-mini {
      background: var(--bg-card);
      padding: 32px 28px;
      transition: background 0.2s;
    }
    .celeb-mini-text {
      font-size: 13px; font-style: italic;
      color: var(--ink-secondary);
      line-height: 1.6;
      margin-bottom: 12px;
    }
    .celeb-mini-name {
      font-family: var(--font-zh);
      font-size: 13px; font-weight: 600;
      color: var(--ink-primary);
    }

    /* ══════════════════════════════════════
       CTA STRIP
    ══════════════════════════════════════ */
    .cta-strip {
      background: var(--gold);
      padding: 48px 0;
    }
    .cta-inner {
      max-width: 1200px; margin: 0 auto; padding: 0 40px; box-sizing: border-box;
      display: flex; align-items: center; justify-content: space-between;
      gap: 40px;
    }
    .cta-text {}
    .cta-title {
      font-family: var(--font-zh);
      font-size: clamp(28px, 4vw, 42px);
      font-weight: 700;
      color: #060606;
      letter-spacing: -1.5px;
      margin-bottom: 8px;
    }
    .cta-sub { font-size: 15px; color: rgba(6,6,6,0.6); font-weight: 400; }
    .cta-actions { display: flex; gap: 12px; flex-shrink: 0; }
    .btn-dark {
      display: inline-flex; align-items: center; justify-content: center; gap: 8px;
      min-height: 52px; min-width: 168px;
      background: #060606; color: var(--gold);
      font-family: var(--font-zh);
      font-size: 14px; font-weight: 600;
      padding: 0 28px; border-radius: var(--r-md);
      text-decoration: none;
      transition: background 0.2s, transform 0.15s;
      white-space: nowrap;
    }
    .btn-dark:hover { background: #1a1a1a; transform: translateY(-1px); }
    .btn-dark svg,
    .btn-dark i { width: 16px; height: 16px; }
    .btn-outline-dark {
      display: inline-flex; align-items: center; justify-content: center; gap: 8px;
      min-height: 52px; min-width: 168px;
      background: transparent;
      border: 1.5px solid rgba(6,6,6,0.3);
      color: #060606;
      font-family: var(--font-zh);
      font-size: 14px; font-weight: 600;
      padding: 0 28px; border-radius: var(--r-md);
      text-decoration: none;
      transition: border-color 0.2s, background 0.2s;
      white-space: nowrap;
    }
    .btn-outline-dark:hover { border-color: #060606; background: rgba(6,6,6,0.06); }
    .btn-outline-dark svg,
    .btn-outline-dark i { width: 16px; height: 16px; }
    .home-cta-btn-icon {
      width: 16px;
      height: 16px;
      flex: 0 0 auto;
      object-fit: contain;
    }
    .btn-outline-dark .home-cta-btn-icon { filter: brightness(0); }

    /* ══════════════════════════════════════
       BLOG SECTION
    ══════════════════════════════════════ */
    .blog-section {
      padding: 80px 0;
      background: var(--bg-base);
    }
    .blog-inner { max-width: 1200px; margin: 0 auto; padding: 0 40px; box-sizing: border-box; }
    .blog-inner .section-header { margin-bottom: 24px; }
    .blog-header {
      display: flex;
      flex-direction: column;
      align-items: center;
      margin-bottom: 24px;
    }
    .blog-tags {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
      justify-content: flex-start;
      margin-bottom: 8px;
    }
    .blog-tag {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: rgba(255,255,255,0.4);
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.08);
      padding: 6px 14px;
      border-radius: 20px;
      cursor: pointer;
      transition: all 0.2s;
    }
    .blog-tag.active,
    .blog-tag:hover {
      background: rgba(255,255,255,0.06);
      border-color: rgba(255,255,255,0.92);
      color: #fff;
    }
    .blog-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    .blog-card {
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.06);
      border-radius: var(--r-lg);
      overflow: hidden;
      cursor: pointer;
      transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
    }
    .blog-card:hover {
      border-color: var(--border-yellow);
      transform: translateY(-4px);
      box-shadow: var(--shadow-gold);
    }
    .blog-card-img {
      width: 100%;
      height: 180px;
      object-fit: cover;
      display: block;
      background: var(--bg-elevated);
    }
    .blog-card-body {
      padding: 24px;
    }
    .blog-card-category {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: rgba(255,255,255,0.82);
      margin-bottom: 10px;
    }
    .blog-card-title {
      font-family: var(--font-zh);
      font-size: 16px;
      font-weight: 600;
      color: #fff;
      line-height: 1.4;
      margin-bottom: 10px;
      letter-spacing: -0.3px;
    }
    .blog-card-title a,
    .blog-card-link {
      color: inherit;
      text-decoration: none;
    }
    .blog-card-excerpt {
      font-size: 13px;
      color: rgba(255,255,255,0.4);
      line-height: 1.7;
      margin-bottom: 16px;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
    .blog-card-date {
      font-size: 11px;
      color: #8A8A8A;
      letter-spacing: 0.5px;
    }

    /* ══════════════════════════════════════
       FOOTER
    ══════════════════════════════════════ */
    footer,
    .footer-shell {
      background: var(--bg-base);
      padding: 32px 0 40px;
    }
    footer > .footer-shell {
      background: transparent;
      padding: 0;
    }
    .footer-inner { max-width: 1200px; margin: 0 auto; padding: 0 40px; box-sizing: border-box; }
    .footer-top {
      display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 48px; padding-bottom: 48px;
      border-bottom: 1px solid var(--border);
      margin-bottom: 32px;
    }
    .footer-brand {}
    .footer-logo {
      display: flex; align-items: center; gap: 12px;
      text-decoration: none; margin-bottom: 16px;
    }
    .footer-logo-mark {
      width: 36px; height: 36px;
      background: var(--gold); border-radius: var(--r-sm);
      display: flex; align-items: center; justify-content: center;
    }
    .footer-logo-mark svg { width: 20px; height: 20px; }
    .footer-logo-text {
      font-family: var(--font-zh);
      font-size: 15px; font-weight: 600;
      color: var(--ink-primary);
    }
    .footer-desc {
      font-size: 13px; font-weight: 300;
      color: var(--ink-secondary);
      line-height: 1.7;
      max-width: 280px;
    }
    .footer-social {
      display: flex; gap: 10px; margin-top: 20px;
    }
    .footer-social a {
      width: 36px; height: 36px;
      background: var(--bg-elevated);
      border: 1px solid var(--border);
      border-radius: var(--r-sm);
      display: flex; align-items: center; justify-content: center;
      color: var(--ink-primary);
      text-decoration: none;
      transition: border-color 0.2s, color 0.2s, background 0.2s;
    }
    .footer-social a:hover {
      border-color: var(--gold);
      color: var(--gold);
      background: var(--gold-dim);
    }
    .footer-social a img { width: 16px; height: 16px; object-fit: contain; display: block; }
    .footer-col-title {
      font-family: var(--font-zh);
      font-size: 12px; font-weight: 600;
      color: var(--ink-primary);
      letter-spacing: 1px; text-transform: uppercase;
      margin-bottom: 16px;
    }
    .footer-links { display: flex; flex-direction: column; gap: 10px; }
    .footer-links a {
      font-size: 13px; color: var(--ink-secondary);
      text-decoration: none;
      transition: color 0.15s;
    }
    .footer-links a:hover { color: var(--ink-primary); }
    .footer-bottom {
      display: flex; justify-content: space-between; align-items: center;
      font-size: 12px; color: var(--ink-tertiary);
    }
    .footer-bottom a {
      color: var(--ink-tertiary); text-decoration: none;
      transition: color 0.15s;
    }
    .footer-bottom a:hover { color: var(--ink-secondary); }

    /* ══════════════════════════════════════
       FAQ
    ══════════════════════════════════════ */
    body.home .section-inner { max-width: 1200px; margin: 0 auto; padding: 0 40px; box-sizing: border-box; }
    body.home .faq-section {
      background: var(--bg-base);
      padding: 80px 0;
    }
    body.home .faq-header { text-align: left; margin-bottom: 56px; }
    body.home .faq-eyebrow {
      font-family: var(--font-mono);
      font-size: 11px; font-weight: 500;
      letter-spacing: 3px; text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 16px;
      display: inline-flex; align-items: center; gap: 10px;
    }
    body.home .faq-eyebrow::before {
      content: ''; display: block; width: 24px; height: 1.5px; background: var(--gold);
    }
    body.home .faq-list {
      max-width: 800px; margin: 0 auto;
      display: flex; flex-direction: column; gap: 0;
      border: 1px solid rgba(255,255,255,0.10);
      border-radius: var(--r-lg); overflow: hidden;
    }
    body.home .faq-item { border-bottom: 1px solid rgba(255,255,255,0.06); }
    body.home .faq-item:last-child { border-bottom: none; }
    body.home .faq-q {
      width: 100%; display: flex; align-items: center; justify-content: space-between;
      gap: 16px; padding: 20px 24px;
      margin: 0; box-sizing: border-box;
      background: var(--bg-card);
      border: none; cursor: pointer;
      font-family: var(--font-body);
      font-size: 14px; font-weight: 500;
      line-height: normal;
      color: var(--ink-primary); text-align: left;
      transition: color 0.2s;
    }
    body.home .faq-q:hover { color: var(--gold); }
    body.home .faq-q:focus-visible {
      outline: 2px solid rgba(198, 166, 100, 0.65);
      outline-offset: -2px;
    }
    body.home .faq-q::after {
      content: '';
      width: 16px; height: 16px;
      background: currentColor;
      flex: 0 0 auto;
      color: var(--ink-tertiary);
      mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") center / contain no-repeat;
      -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") center / contain no-repeat;
      transform: rotate(0deg);
      transition: transform 0.2s, color 0.2s, opacity 0.2s;
    }
    body.home .faq-item.open .faq-q { color: var(--gold); }
    body.home .faq-item.open .faq-q::after {
      color: var(--gold);
      transform: rotate(180deg);
    }
    body.home .faq-a {
      display: none; padding: 0 24px 20px;
      margin: 0; box-sizing: border-box;
      font-size: 14px; font-weight: 300;
      color: var(--ink-secondary); line-height: 1.8;
      background: var(--bg-card);
    }
    body.home .faq-item.open .faq-a { display: block; }

    /* ══════════════════════════════════════
       ANIMATIONS
    ══════════════════════════════════════ */
    @keyframes fadeUp {
      from { filter: blur(10px); }
      to { opacity: 1; transform: translateY(0); filter: blur(0); }
    }
    @keyframes fadeLeft {
      to { opacity: 1; transform: translateX(0); }
    }
    .reveal {
      opacity: 0; transform: translateY(24px);
      transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }

    /* ══════════════════════════════════════
       RESPONSIVE
    ══════════════════════════════════════ */
    @media (max-width: 1280px) {
      .hero { min-height: max(520px, 65vh); }
      .hero-content {
        position: absolute;
        inset: 0;
        padding: 64px 40px 24px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
      }
      .hero h1 { margin-top: auto; }
      .hero-sub { margin-bottom: 16px; }
      .hero-head {
        gap: 12px;
        flex: 1 1 auto;
      }
      .hero-pills { gap: 10px; }
      .hero-booking-card {
        padding: 18px;
        border-radius: 16px;
        margin: auto 0 0;
        width: 100%;
      }
      .hero-booking-form {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
      .hero-booking-submit {
        width: 100%;
        min-width: 0;
        max-width: none;
      }
      .hero-booking-trust { gap: 12px; }
      .stats-inner { grid-template-columns: repeat(4, minmax(0, 1fr)); }
      .airports-grid { grid-template-columns: repeat(2, 1fr); }
      .footer-top { grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 24px; }
      .celeb-grid { grid-template-columns: 1fr; }
      /* car-strip: keep 4 cols on tablet */
    }
    @media (max-width: 768px) {
      .nav-inner { padding: 0 20px; }
      .nav-menu-btn.is-open { right: 20px; }
      .nav-left { gap: 10px; }
      .nav-business-switch { padding: 3px 4px 3px 3px; width: max-content; }
      .nav-switch-pill { top: 3px; left: 3px; height: calc(100% - 6px); }
      .nav-business-link {
        font-size: 11px;
        padding: 8px 10px;
      }
      .hero { overflow: hidden; min-height: calc(80vh - 64px); }
      .hero-content {
        position: absolute;
        inset: 0;
        padding: 64px 16px 16px;
        align-items: center;
        justify-content: flex-start;
      }
      .hero h1 { margin-top: auto; }
      .hero-copy {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: calc(100% - 32px);
        text-align: center;
      }
      .hero-pills { display: none; }
      .hero-booking-card {
        position: relative;
        left: auto; right: auto; bottom: auto;
        width: 100%;
        margin-top: auto;
        margin-bottom: 0;
        padding: 12px;
        border-radius: 16px;
      }
      .hero-booking-form { grid-template-columns: 1fr; gap: 8px; }
      .hero-booking-combo,
      .hero-booking-single,
      .hero-booking-input,
      .hero-booking-select,
      .hero-booking-submit { min-height: 52px; }
      .hero-booking-combo {
        grid-template-columns: minmax(0, 1fr) 1px minmax(0, 1fr);
      }
      .hero-booking-divider {
        width: 1px;
        height: auto;
        margin: 10px 0;
      }
      .hero-booking-segment,
      .hero-booking-single {
        padding: 0 12px;
        gap: 10px;
      }
      .hero-booking-group {
        gap: 4px;
      }
      .hero-booking-group-title {
        font-size: 9px;
        letter-spacing: 1px;
      }
      .hero-booking-segment i,
      .hero-booking-single i {
        width: 16px;
        height: 16px;
      }
      .hero-booking-input,
      .hero-booking-select {
        min-height: 46px;
        font-size: 12px;
      }
      .date-display { font-size: 12px; }
      .hero-booking-submit {
        font-size: 14px;
        border-radius: var(--r-md);
        margin-top: 8px;
      }
      .hero-booking-trust {
        gap: 10px;
        margin-top: 12px;
        padding-top: 12px;
      }
      .hero-trust-item { font-size: 9px; }
      .hero-sub { margin-bottom: 16px; }
      .section { padding: 60px 20px; }
      .section-header { display: flex; flex-direction: column; gap: 12px;
      margin-bottom: 56px; }
      .adv-grid { grid-template-columns: 1fr; }
      .adv-card { padding: 28px 24px; }
      .cars-section { padding: 48px 0; }
      .cars-header { padding: 0 0 0 var(--container-padding); margin: 0 0 32px 0; max-width: none; }
      .car-strip-grid { display: flex; flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; scroll-snap-type: x mandatory; gap: 12px; padding: 0 var(--container-padding); scroll-padding-left: var(--container-padding); }
      .car-strip-card:first-child { margin-left: 0; }
      .car-strip-card:last-child { margin-right: 0; }
      .car-strip-card { flex: 0 0 68vw; max-width: 68vw; scroll-snap-align: start; }
      .car-strip-card:hover { transform: none; box-shadow: none; }
      .cat-card-img { width: 100%; margin: 0; height: 120px; }
      .cat-card-body { padding: 8px 10px 0; gap: 2px; }
      .cat-card-footer { padding: 4px 10px 10px; }
      .cat-card-type { font-size: 12px; }
      .cat-card-models { display: none; }
      .cat-card-specs {
        gap: 4px;
        font-size: 10px;
        padding-top: 4px;
        border-top: 0;
      }
      .cars-footer { padding: 24px 20px 0; }
      .section-view-all-wrap { padding-top: 28px; }
      .section-view-all { padding: 11px 24px; }
      .airports-inner { padding: 0 20px; }
      .celeb-section { padding: 60px 20px; }
      .celeb-quote-panel { padding: 28px 24px; }
      .celeb-quote-mark { font-size: 72px; margin-bottom: 16px; }
      .celeb-quote-text { font-size: 17px; margin-bottom: 16px; }
      .celeb-mini { padding: 24px 20px; }
      .airports-grid { grid-template-columns: repeat(2, 1fr); }
      .booking-form-inner { padding: 0 20px; }
      .car-category { padding: 0 20px; }
      .cta-inner { flex-direction: column; text-align: center; padding: 0 20px; }
      body.home .faq-section { padding: 48px 0; }
      body.home .faq-section .section-inner { padding: 0 20px; }
      .footer-inner { padding: 0 20px; }
      .footer-top { grid-template-columns: 1fr; gap: 32px; }
      .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
      .stats-inner { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; padding: 0 20px; }
      .stat-num { font-size: 22px; letter-spacing: -1px; }
      .cat-card-price {
        display: none;
      }
      .stat-label { font-size: 11px; }
      .airports-section { padding: 48px 0; }
      .airports-city-banner {
        align-items: flex-start;
        gap: 18px;
        padding: 28px 24px;
      }
      .airports-city-banner-icon {
        width: 24px !important;
        height: 24px !important;
        min-width: 24px !important;
        min-height: 24px !important;
        max-width: 24px !important;
        max-height: 24px !important;
        flex-basis: 24px;
      }
      .airports-city-banner-icon i,
      .airports-city-banner-icon img,
      .airports-city-banner-icon-img {
        width: 24px !important;
        height: 24px !important;
        min-width: 24px !important;
        min-height: 24px !important;
        max-width: 24px !important;
        max-height: 24px !important;
        flex-basis: 24px;
      }
      .airports-city-banner-title {
        font-size: 22px;
      }
      .stats-bar { padding: 32px 0; }
      .blog-section { padding: 48px 0; }
      .blog-inner { padding: 0 20px; }
      .blog-tags { gap: 8px; margin-bottom: 28px; }
      .blog-tag { font-size: 10px; padding: 6px 12px; }
      .blog-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
      .blog-grid .blog-card:nth-child(n+5) { display: none; }
      .blog-card { border-radius: var(--r-md); }
      .blog-card-img { height: 118px; }
      .blog-card-body { padding: 16px 14px; }
      .blog-card-category {
        font-size: 9px;
        letter-spacing: 1px;
        margin-bottom: 8px;
      }
      .blog-card-title {
        font-size: 14px;
        line-height: 1.45;
        margin-bottom: 8px;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
      }
      .blog-card-excerpt {
        font-size: 12px;
        line-height: 1.55;
        margin-bottom: 12px;
        -webkit-line-clamp: 2;
      }
      .blog-card-date { font-size: 10px; }
    }


    /* hero-card-mb-cta: hidden on desktop */
    .hero-card-mb-cta { display: none; }
    .mb-sheet { display: none; }

    @media (max-width: 768px) {
      /* Hide date/time groups and original submit in hero card */
      .hero-booking-form .hero-booking-group:nth-child(2),
      .hero-booking-form .hero-booking-group:nth-child(3),
      .hero-booking-form .hero-booking-submit { display: none; }

      /* Location combo → 2 independent rounded boxes */
      .hero-booking-card .hero-booking-combo {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        border: none;
        background: transparent;
        overflow: visible;
        min-height: unset;
        box-shadow: none;
      }
      .hero-booking-card .hero-booking-combo .hero-booking-segment {
        border: 1px solid var(--border);
        border-radius: var(--r-md);
        background: var(--bg-elevated);
        min-height: 52px;
        width: 100%;
      }
      .hero-booking-card .hero-booking-combo .hero-booking-divider { display: none; }

      /* Mobile CTA button */
      .hero-card-mb-cta {
        display: block;
        width: 100%;
        min-height: 56px;
        border: none;
        border-radius: var(--r-md);
        background: #FFDC22;
        color: #060606;
        font-family: var(--font-zh);
        font-size: 14px;
        font-weight: 700;
        cursor: pointer;
        letter-spacing: 0.5px;
        margin-top: 10px;
      }

      /* Bottom sheet */
      .mb-sheet {
        display: none;
        position: fixed;
        inset: 0;
        z-index: 9999;
        flex-direction: column;
        justify-content: flex-end;
      }
      .mb-sheet.open { display: flex; }
      .mb-sheet__backdrop {
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,0.6);
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
      }
      .mb-sheet__panel {
        position: relative;
        background: rgba(14,14,14,0.98);
        border: 1px solid rgba(255,255,255,0.10);
        border-bottom: none;
        border-radius: 20px 20px 0 0;
        padding: 20px 16px 36px;
        display: flex;
        flex-direction: column;
        gap: 16px;
        max-height: 92svh;
        overflow-y: auto;
        animation: mbUp 0.32s cubic-bezier(0.32,0.72,0,1);
      }
      @keyframes mbUp {
        from { transform: translateY(100%); }
        to   { transform: translateY(0); }
      }
      .mb-sheet__header {
        display: flex;
        align-items: center;
        justify-content: space-between;
      }
      .mb-sheet__title {
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        color: var(--ink-tertiary);
      }
      .mb-sheet__close {
        width: 32px; height: 32px;
        border-radius: 50%;
        background: rgba(255,255,255,0.08);
        border: none;
        color: var(--ink-primary);
        font-size: 20px;
        cursor: pointer;
        display: flex; align-items: center; justify-content: center;
      }
      .mb-sheet__form {
        display: flex;
        flex-direction: column;
        gap: 14px;
      }
      .mb-sheet__submit {
        width: 100%;
        min-height: 56px;
        border: none;
        border-radius: var(--r-md);
        background: #FFDC22;
        color: #060606;
        font-family: var(--font-zh);
        font-size: 15px;
        font-weight: 700;
        cursor: pointer;
        letter-spacing: 0.5px;
        margin-top: 4px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
      }
      .mb-sheet__trust {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px 14px;
        padding-top: 12px;
        border-top: 1px solid var(--border);
      }
      .mb-sheet__trust .hero-trust-item { font-size: 10px; }
    }

    /* ── Viewport edge blur ── */
    .vp-blur-top, .vp-blur-bottom {
      position: fixed;
      left: 0; right: 0;
      height: 80px;
      z-index: 48;
      pointer-events: none;
      -webkit-backdrop-filter: blur(8px);
      backdrop-filter: blur(8px);
      opacity: 0;
      transition: opacity 0.3s ease;
    }
    body.is-scrolling .vp-blur-top,
    body.is-scrolling .vp-blur-bottom { opacity: 1; }
    .vp-blur-top {
      top: 64px;
      -webkit-mask-image: linear-gradient(to bottom, black 0%, transparent 100%);
      mask-image: linear-gradient(to bottom, black 0%, transparent 100%);
    }
    .vp-blur-bottom {
      bottom: 0;
      -webkit-mask-image: linear-gradient(to top, black 0%, transparent 100%);
      mask-image: linear-gradient(to top, black 0%, transparent 100%);
    }

    /* ── Blur Fade In ── */
    .blur-fade {
      opacity: 0;
      filter: blur(10px);
      transform: translateY(8px);
      transition: opacity 1.2s ease, filter 1.2s ease, transform 1.2s ease;
    }
    .blur-fade.is-visible {
      opacity: 1;
      filter: blur(0);
      transform: translateY(0);
    }

    /* ── BACK TO TOP ── */
    .back-to-top { display: none; }
    @media (max-width: 900px) {
    .back-to-top {
      position: fixed;
      bottom: 28px;
      right: 24px;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 10px 20px;
      background: rgba(34,34,34,0.85);
      border: 1px solid #3b3b3b;
      border-radius: 26px;
      color: #fff;
      font-family: var(--font-display);
      font-size: 13px;
      font-weight: 700;
      white-space: nowrap;
      cursor: pointer;
      z-index: 89;
      opacity: 0;
      pointer-events: none;
      transform: translateY(10px);
      transition: opacity 0.25s var(--ease-out), transform 0.25s var(--ease-out);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      text-decoration: none;
    }
    .back-to-top.btt-visible {
      opacity: 1;
      pointer-events: auto;
      transform: translateY(0);
    }
    .back-to-top:hover {
      background: rgba(55,55,55,0.9);
      border-color: #555;
    }
    .back-to-top svg { flex-shrink: 0; }
    } /* end back-to-top mobile */
  
    body.home .faq-view-all-wrap { text-align: center; margin-top: 32px; }
    body.home .faq-view-all {
      display: inline-flex; align-items: center; justify-content: center;
      padding: 10px 44px; background: rgba(255,255,255,0.10);
      border-radius: 30px; color: #ffffff;
      font-family: var(--font-display); font-size: 12px; font-weight: 700;
      text-decoration: none; white-space: nowrap; transition: background 0.2s;
    }
    body.home .faq-view-all:hover { background: rgba(255,255,255,0.16); }

/* WordPress wrapper reset for pixel handoff homepage */
body.home .wp-site-blocks,
body.home .entry-content,
body.home .wp-block-post-content {
    margin: 0 !important;
    padding: 0 !important;
    max-width: none !important;
    width: 100% !important;
}

body.home .is-layout-flow > * {
    margin-block-start: 0 !important;
    margin-block-end: 0 !important;
}

body.home .entry-content > * {
    max-width: none !important;
}

body.home .entry-content > .celeb-section {
    box-sizing: border-box;
    margin-left: auto !important;
    margin-right: auto !important;
    max-width: 1200px !important;
    width: 100%;
}

body.skyhorse-alaska .wp-site-blocks,
body.skyhorse-alaska .entry-content,
body.skyhorse-alaska .wp-block-post-content {
    margin: 0 !important;
    padding: 0 !important;
    max-width: none !important;
    width: 100% !important;
}

body.skyhorse-alaska .is-layout-flow > * {
    margin-block-start: 0 !important;
    margin-block-end: 0 !important;
}

body.skyhorse-alaska .entry-content > * {
    max-width: none !important;
}

body.skyhorse-alaska .hero-section,
body.skyhorse-alaska .sky-section,
body.skyhorse-alaska .final-cta {
    box-sizing: border-box;
    margin-left: 0 !important;
    margin-right: 0 !important;
    max-width: none !important;
    width: 100% !important;
}

body.skyhorse-alaska .sky-section.is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)),
body.skyhorse-alaska .final-cta.is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)) {
    max-width: 1200px !important;
}

body.skyhorse-alaska .sky-section > .card-grid {
    max-width: 1200px !important;
    width: 100%;
}

/* Gutenberg block compatibility for the editable handoff homepage */
body.home .wp-block-group,
body.home .wp-block-image,
body.home .wp-block-buttons,
body.home .wp-block-button,
body.home .wp-block-details,
body.home .wp-block-heading,
body.home p {
    margin-block-start: 0;
    margin-block-end: 0;
}

body.home .wp-block-image img {
    display: block;
}

body.home .car-strip-img .wp-block-image,
body.home .car-strip-img .wp-block-image img,
body.home .blog-card-img,
body.home .blog-card-img img,
body.home .blog-cta-media,
body.home .blog-cta-media img {
    width: 100%;
    height: 100%;
}

body.home .car-strip-img .wp-block-image img,
body.home .blog-card-img img,
body.home .blog-cta-media img {
    object-fit: cover;
}

body.home img.blog-card-img {
    height: 180px;
    object-fit: cover;
}

body.home .blog-card[hidden] {
    display: none !important;
}

@media (max-width: 768px) {
    body.home img.blog-card-img {
        height: 118px;
    }

    body.home .blog-grid.is-filtered .blog-card:nth-child(n+5) {
        display: block;
    }
}

body.home .wp-block-button__link {
    background: transparent;
    border: 0;
    border-radius: inherit;
    color: inherit;
    font: inherit;
    letter-spacing: inherit;
    line-height: inherit;
    padding: 0;
    text-decoration: none;
}

body.home .blog-cta-btn .wp-block-button__link {
    align-items: center;
    color: #fff;
    display: inline-flex;
    height: 100%;
    justify-content: center;
    width: 100%;
}

body.home .cta-actions .wp-block-button__link,
body.home .faq-view-all:not(.wp-block-button) .wp-block-button__link {
    align-items: center;
    display: inline-flex;
    justify-content: center;
    width: 100%;
    min-height:52px;
}

body.home .cta-actions .wp-block-button__link {
    gap: 8px;
}

body.home .cars-header.section-header,
body.home #advantages .advantages-inner > .section-header,
body.home .airports-inner > .section-header,
body.home .celeb-section > .section-header {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    margin-bottom: 56px !important;
}

body.home .celeb-section,
body.home .celeb-section .celeb-grid,
body.home .celeb-section .celeb-quote-panel,
body.home .celeb-section .celeb-mini-grid,
body.home .celeb-section .celeb-mini {
    margin-block-start: 0 !important;
    margin-block-end: 0 !important;
}

body.home .celeb-section .celeb-grid > *,
body.home .celeb-section .celeb-mini-grid > * {
    margin-block-start: 0 !important;
}

body.home .celeb-section .celeb-quote-mark,
body.home .celeb-section .celeb-quote-text,
body.home .celeb-section .celeb-quote-attr,
body.home .celeb-section .celeb-mini-text,
body.home .celeb-section .celeb-mini-name {
    margin-block-start: 0 !important;
}

body.home .celeb-section .celeb-quote-mark {
    margin-block-end: 24px !important;
}

body.home .celeb-section .celeb-quote-text {
    margin-block-end: 24px !important;
}

body.home .celeb-section .celeb-quote-attr,
body.home .celeb-section .celeb-mini-name {
    margin-block-end: 0 !important;
}

body.home .celeb-section .celeb-mini-text {
    margin-block-end: 12px !important;
}

body.home .blog-inner > .section-header {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    margin-bottom: 24px !important;
}

body.home .section-header .section-eyebrow,
body.home .section-header .section-title,
body.home .section-header .section-sub,
body.home .section-header .blog-tags {
    margin-block-start: 0 !important;
    margin-block-end: 0 !important;
}

body.home .section-header .section-title {
    margin: 0 !important;
}

body.home .section-header .blog-tags {
    margin-bottom: 8px !important;
}

body.home .airports-grid,
body.home .airports-grid > .airport-card,
body.home .airport-card > .airport-code,
body.home .airport-card > .airport-iata,
body.home .airport-card > .airport-city,
body.home .airports-city-banner-title,
body.home .airports-city-banner-sub {
    margin-block-start: 0 !important;
    margin-block-end: 0 !important;
}

body.home .airports-grid > .airport-card {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
}

body.home .faq-header {
    margin-bottom: 56px !important;
}

body.home .faq-header .faq-eyebrow {
    margin-bottom: 16px !important;
    margin-block-end: 16px !important;
}

body.home .faq-header .section-title {
    margin: 0 !important;
}

body.home .faq-view-all-wrap.wp-block-buttons {
    display: flex;
    justify-content: center !important;
    margin-top: 32px !important;
    width: 100%;
}

body.home .faq-view-all.wp-block-button {
    background: transparent;
    border-radius: 0;
    display: inline-block;
    padding: 0;
}

body.home .faq-view-all.wp-block-button .wp-block-button__link {
    align-items: center;
    background: rgba(255,255,255,0.10);
    border-radius: 30px;
    color: #ffffff;
    display: inline-flex;
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    justify-content: center;
    line-height: normal;
    min-height: 0;
    padding: 10px 44px;
    text-decoration: none;
    white-space: nowrap;
    width: auto;
}

body.home .faq-view-all.wp-block-button .wp-block-button__link:hover {
    background: rgba(255,255,255,0.16);
}

@media (max-width: 768px) {
    body.home .cars-header.section-header {
        margin-bottom: 32px !important;
    }

    body.home #advantages .advantages-inner > .section-header,
    body.home .airports-inner > .section-header,
    body.home .celeb-section > .section-header {
        margin-bottom: 56px !important;
    }

    body.home .celeb-section .celeb-quote-mark,
    body.home .celeb-section .celeb-quote-text {
        margin-block-end: 16px !important;
    }

    body.home .section-header .blog-tags {
        margin-bottom: 28px !important;
    }
}

body.home .nav-logo,
body.home .footer-logo {
    margin: 0;
}

body.home .nav-logo a,
body.home .footer-logo a {
    align-items: center;
    display: inline-flex;
}

body.home .nav-business-switch {
    flex-grow: 0;
    padding: 3px;
    width: 138px;
}

body.home .nav-business-switch .nav-business-link {
    background: transparent;
    box-shadow: none;
    color: rgba(255,255,255,0.55);
    font-family: var(--font-zh);
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    padding: 8px 10px;
}

body.home .nav-business-switch .nav-business-link:hover {
    color: rgba(255,255,255,0.85);
}

body.home .nav-business-switch .nav-business-link.is-active {
    background: var(--gold);
    color: #060606;
}

body.home .footer-links p,
body.home .footer-bottom p {
    margin: 0;
}

body.home .footer-logo {
    margin-bottom: 16px;
}

body.home .footer-logo img {
    display: block;
}

body.home .footer-col-title {
    margin-bottom: 16px;
}

body.home .footer-inner > .footer-top {
    margin-block-end: 32px !important;
}

body.home .footer-links p {
    line-height: 1;
}

body.home .hero h1.wp-block-heading {
    margin-bottom: 20px;
}

body.home .hero .hero-sub {
    margin-bottom: 40px;
}

@media (max-width: 1280px) {
    body.home .hero .hero-sub {
        margin-bottom: 16px;
    }
}

@media (max-width: 768px) {
    body.home .hero h1.wp-block-heading {
        margin-top: auto;
    }

    body.home .hero .hero-sub {
        margin-bottom: 16px;
    }
}
