  /* ── Header base ───────────────────────────────────────────────────── */
  .yl-header {
    position: fixed; top: 0; left: 0; right: 0;
    height: 72px;
    background: #0F0F0F;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 20px;
    z-index: 999;
    transition: transform 0.4s ease;
    /* subtle bottom highlight in YOULO yellow */
    border-bottom: 1px solid rgba(221,199,63,0.08);
  }
  .yl-header.is-up { transform: translateY(-100%); }

  /* ── Hamburger ─────────────────────────────────────────────────────── */
  .yl-header__hamburger {
    background: none; border: none; padding: 5px; cursor: pointer;
    width: 44px; height: 44px;
    display: flex; flex-direction: column; justify-content: center; gap: 5px;
    flex-shrink: 0;
  }
  .yl-header__hamburger span {
    display: block; width: 22px; height: 2px;
    background: #FFFFFF; border-radius: 1px;
    transition: background 0.2s ease;
  }
  .yl-header__hamburger:hover span,
  .yl-header__hamburger:focus-visible span { background: #DDC73F; }
  .yl-header__hamburger:focus-visible { outline: 2px solid #DDC73F; outline-offset: 2px; border-radius: 2px; }

  /* ── Mobile flag ───────────────────────────────────────────────────── */
  .yl-header__mobile-flag {
    background: none; border: none; padding: 8px; cursor: pointer;
    display: flex; align-items: center; gap: 4px;
    flex-shrink: 0; position: relative;
  }
  .yl-header__mobile-flag img {
    width: 22px; height: 15px; display: block; object-fit: cover; border-radius: 2px;
  }
  .yl-header__mobile-flag-chevron {
    width: 9px; height: 9px; fill: rgba(255,255,255,0.5); flex-shrink: 0;
  }

  /* ── Logo ──────────────────────────────────────────────────────────── */
  .yl-header__logo {
    text-decoration: none; flex-shrink: 0;
    position: absolute; left: 50%; transform: translateX(-50%);
    transition: opacity 0.2s ease;
    display: flex; align-items: center;
  }
  .yl-header__logo:hover { opacity: 0.85; }
  .yl-header__logo img {
    display: block;
    width: 90px;
    height: auto;
    max-height: 44px;
    object-fit: contain;
    /* YOULO source SVG is dark; invert to white on dark header */
    filter: invert(1) brightness(1.05);
  }

  /* ── Nav lists ─────────────────────────────────────────────────────── */
  .yl-header__nav-left, .yl-header__nav-right {
    list-style: none; padding: 0; margin: 0;
    display: none;
    align-items: center;
    gap: 6px;
  }

  .yl-header__nav-item {
    position: relative; list-style: none;
    display: flex; align-items: center;
  }

  .yl-header__nav-link {
    font-family: 'Bernoru-BlackMedium', 'Archivo Black', Impact, sans-serif;
    font-size: 19px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0;
    text-transform: none;
    color: #FFFFFF;
    text-decoration: none;
    display: flex; align-items: center; gap: 6px;
    padding: 8px 12px;
    transition: color 0.2s ease;
    white-space: nowrap;
    border-radius: 3px;
  }
  .yl-header__nav-link:hover { color: #DDC73F; }
  .yl-header__nav-link:focus-visible { outline: 2px solid #DDC73F; outline-offset: 2px; }
  .yl-header__nav-arrow {
    width: 10px; height: 10px; fill: rgba(255,255,255,0.55);
    transition: transform 0.2s ease, fill 0.2s ease;
    flex-shrink: 0;
  }
  .yl-header__nav-link:hover .yl-header__nav-arrow { fill: #DDC73F; }
  .yl-header__nav-item:hover .yl-header__nav-arrow,
  .yl-header__nav-item:focus-within .yl-header__nav-arrow { transform: rotate(180deg); }

  /* ── Desktop dropdown ──────────────────────────────────────────────── */
  .yl-header__dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-4px);
    min-width: 240px;
    background: #FFFFFF;
    border-radius: 6px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.35);
    padding: 8px 0;
    opacity: 0; visibility: hidden;
    transition: opacity 0.18s ease, visibility 0.18s ease, transform 0.18s ease;
    list-style: none;
    z-index: 1002;
  }
  .yl-header__dropdown::before {
    content: ''; position: absolute; top: -12px; left: 0; right: 0; height: 12px;
  }
  .yl-header__nav-item:hover .yl-header__dropdown,
  .yl-header__nav-item:focus-within .yl-header__dropdown {
    opacity: 1; visibility: visible;
    transform: translateX(-50%) translateY(0);
  }
  .yl-header__dropdown-link {
    display: block;
    padding: 11px 18px;
    font-family: 'Marcellus', Georgia, serif;
    font-size: 13px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #292929;
    text-decoration: none;
    transition: background 0.15s ease, color 0.15s ease;
    white-space: nowrap;
  }
  .yl-header__dropdown-link:hover,
  .yl-header__dropdown-link:focus-visible { background: #EFEBE5; color: #BEA81F; outline: none; }

  /* ── Reservar CTA ──────────────────────────────────────────────────── */
  .yl-header__cta {
    display: inline-flex; align-items: center; justify-content: center;
    gap: 8px;
    margin-left: 6px;
    padding: 12px 22px;
    font-family: 'Bernoru-BlackMedium', Impact, sans-serif;
    font-size: 18px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0;
    text-transform: none;
    text-decoration: none;
    background: #DDC73F;
    color: #0F0F0F;
    border: none; border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s ease;
    white-space: nowrap;
    height: 40px;
  }
  .yl-header__cta:hover { background: #BEA81F; }
  .yl-header__cta:focus-visible { outline: 2px solid #FFFFFF; outline-offset: 2px; }

  /* ── Language ──────────────────────────────────────────────────────── */
  .yl-header__lang { position: relative; display: none; }
  .yl-header__lang-btn {
    display: flex; align-items: center; gap: 6px;
    background: none; border: none; padding: 10px 12px;
    cursor: pointer; color: #FFFFFF;
    transition: opacity 0.2s ease;
  }
  .yl-header__lang-btn:hover { opacity: 0.75; }
  .yl-header__lang-btn:focus-visible { outline: 2px solid #DDC73F; outline-offset: 2px; border-radius: 2px; }
  .yl-header__lang-flag {
    width: 18px; height: 12px; display: block; object-fit: cover; border-radius: 2px;
  }
  .yl-header__lang-chevron {
    width: 9px; height: 9px; fill: rgba(255,255,255,0.5);
    transition: transform 0.2s ease;
    flex-shrink: 0;
  }
  .yl-header__lang.is-open .yl-header__lang-chevron { transform: rotate(180deg); }
  .yl-header__lang-dd {
    position: absolute; top: calc(100% + 4px); right: 0;
    min-width: 56px;
    background: #1E1E1E;
    border-radius: 4px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
    padding: 4px 0;
    opacity: 0; visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    z-index: 1002;
  }
  .yl-header__lang.is-open .yl-header__lang-dd { opacity: 1; visibility: visible; }
  .yl-header__lang-opt {
    display: flex; align-items: center; justify-content: center;
    padding: 8px 12px; text-decoration: none;
    transition: background 0.15s ease;
  }
  .yl-header__lang-opt:hover { background: rgba(255,255,255,0.08); }

  /* ── Mobile drawer (dark) ──────────────────────────────────────────── */
  .yl-drawer {
    position: fixed; top: 0; left: -100%;
    width: 85%; max-width: 360px; height: 100vh;
    background: #0F0F0F;
    z-index: 1001;
    padding: 76px 28px 40px;
    overflow-y: auto;
    transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 8px 0 32px rgba(0, 0, 0, 0.5);
  }
  .yl-drawer.is-open { left: 0; }
  .yl-drawer__close {
    position: absolute; top: 16px; right: 16px;
    background: none; border: none;
    width: 44px; height: 44px;
    font-size: 30px; font-weight: 300; line-height: 1;
    color: #FFFFFF; cursor: pointer;
    transition: color 0.2s ease;
  }
  .yl-drawer__close:hover { color: #DDC73F; }
  .yl-drawer__logo {
    display: block;
    margin: 0 auto 24px;
    text-align: center;
    text-decoration: none;
  }
  .yl-drawer__logo img { max-width: 180px; width: 100%; height: auto; filter: invert(1) brightness(1.05); }

  .yl-drawer__list { list-style: none; padding: 0; margin: 0; }
  .yl-drawer__item { position: relative; margin: 0; }
  .yl-drawer__link {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 0;
    font-family: 'Bernoru-BlackMedium', Impact, sans-serif;
    font-size: 22px;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: none;
    color: #FFFFFF;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.10);
    transition: color 0.2s ease;
  }
  .yl-drawer__link:hover { color: #DDC73F; }
  .yl-drawer__item--has-sub .yl-drawer__link { padding-right: 48px; }
  .yl-drawer__toggle {
    background: none; border: none; cursor: pointer;
    position: absolute; right: 0; top: 0;
    width: 48px; height: 48px;
    display: flex; align-items: center; justify-content: center;
  }
  .yl-drawer__toggle-arrow {
    width: 12px; height: 12px;
    fill: rgba(255,255,255,0.4);
    transition: transform 0.2s ease, fill 0.2s ease;
  }
  .yl-drawer__item.is-open .yl-drawer__toggle-arrow {
    transform: rotate(180deg);
    fill: #DDC73F;
  }
  .yl-drawer__item.is-open > .yl-drawer__link { color: #DDC73F; }
  .yl-drawer__sub {
    list-style: none; padding: 0; margin: 0;
    max-height: 0; overflow: hidden;
    background: rgba(255,255,255,0.03);
    transition: max-height 0.3s ease;
  }
  .yl-drawer__item.is-open .yl-drawer__sub { max-height: 600px; }
  .yl-drawer__sublink {
    display: block;
    padding: 12px 16px;
    font-family: 'Marcellus', Georgia, serif;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: color 0.2s ease, padding-left 0.15s ease;
  }
  .yl-drawer__sublink:hover { color: #DDC73F; padding-left: 22px; }

  .yl-drawer__footer {
    margin-top: 28px;
    display: flex; flex-direction: column; gap: 14px;
  }
  .yl-drawer__cta {
    display: block;
    text-align: center;
    padding: 12px 16px;
    font-family: 'Bernoru-BlackMedium', Impact, sans-serif;
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: none;
    text-decoration: none;
    background: #DDC73F;
    color: #0F0F0F;
    border-radius: 4px;
    transition: background 0.2s ease;
  }
  .yl-drawer__cta:hover { background: #BEA81F; }
  .yl-drawer__langs {
    display: flex; justify-content: center; gap: 10px; margin-top: 4px;
  }
  .yl-drawer__langs a {
    display: flex; align-items: center;
    padding: 8px; border-radius: 4px;
    opacity: 0.7;
    transition: opacity 0.2s ease;
  }
  .yl-drawer__langs a:hover { opacity: 1; }
  .yl-drawer__langs a.is-current { opacity: 1; outline: 1px solid rgba(255,255,255,0.4); }
  .yl-drawer__langs img {
    width: 24px; height: 16px; object-fit: cover; border-radius: 2px;
  }

  /* ── Backdrop ──────────────────────────────────────────────────────── */
  .yl-backdrop {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(2px);
    z-index: 1000;
    opacity: 0; visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  .yl-backdrop.is-open { opacity: 1; visibility: visible; }

  /* ── Desktop layout ────────────────────────────────────────────────── */
  @media (min-width: 1025px) {
    .yl-header { justify-content: center; }
    .yl-header__hamburger,
    .yl-header__mobile-flag { display: none; }
    .yl-header__nav-left,
    .yl-header__nav-right { display: flex; }
    .yl-header__nav-left { margin-right: 32px; }
    .yl-header__nav-right { margin-left: 32px; }
    .yl-header__logo { position: static; transform: none; }
    .yl-header__logo img { width: 110px; max-height: 52px; }
    .yl-header__lang { display: flex; align-items: center; }
  }
  @media (min-width: 1280px) {
    .yl-header { padding: 0 30px; }
  }
