/* =========================================================================
   worldcup-promo.css — homepage popup + floating re-open badge.
   Self-contained; uses site.css tokens where present, with hard fallbacks so
   it also works if loaded before tokens. Loaded on index.html only.
   ========================================================================= */

.wcp-scrim {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(20, 14, 9, 0.66);
  backdrop-filter: blur(6px) saturate(120%);
  -webkit-backdrop-filter: blur(6px) saturate(120%);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0; transition: opacity 420ms cubic-bezier(.16,1,.3,1);
}
.wcp-scrim.is-open { opacity: 1; }

.wcp-modal {
  position: relative;
  width: min(660px, 100%);
  background:
    radial-gradient(ellipse 700px 360px at 80% 0%, rgba(217,174,116,0.16), transparent 60%),
    #4D3826;
  border: 1px solid rgba(217,174,116,0.40);
  box-shadow: 0 40px 100px -20px rgba(0,0,0,0.7);
  padding: 44px 48px 40px;
  transform: translateY(18px) scale(0.985);
  opacity: 0;
  transition: transform 520ms cubic-bezier(.16,1,.3,1), opacity 420ms ease;
}
.wcp-scrim.is-open .wcp-modal { transform: translateY(0) scale(1); opacity: 1; }

.wcp-modal__close {
  position: absolute; top: 18px; right: 18px;
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  background: transparent; border: 1px solid rgba(250,241,221,0.24);
  color: #F4EFE6; font-size: 15px; cursor: pointer;
  transition: border-color 220ms, color 220ms;
}
.wcp-modal__close:hover { border-color: #D9AE74; color: #D9AE74; }

.wcp-modal__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Outfit','Helvetica Neue',Arial,sans-serif;
  font-size: 10px; font-weight: 700; letter-spacing: 0.26em;
  text-transform: uppercase; color: #ECC58F;
}
.wcp-modal__eyebrow::before {
  content: ""; width: 26px; height: 1px; background: #ECC58F;
}
.wcp-modal__pulse {
  width: 7px; height: 7px; border-radius: 50%; background: #ECC58F;
  box-shadow: 0 0 0 0 rgba(236,197,143,0.6);
  animation: wcp-pulse 2.2s infinite;
}
@keyframes wcp-pulse {
  0% { box-shadow: 0 0 0 0 rgba(236,197,143,0.5); }
  70% { box-shadow: 0 0 0 9px rgba(236,197,143,0); }
  100% { box-shadow: 0 0 0 0 rgba(236,197,143,0); }
}

.wcp-modal__title {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(26px, 3.6vw, 36px); line-height: 1.06;
  letter-spacing: -0.014em; color: #FFFFFF;
  margin: 18px 0 0; text-wrap: balance;
}
.wcp-modal__title em { font-style: italic; color: #ECC58F; }

.wcp-modal__lede {
  font-family: 'Outfit','Helvetica Neue',Arial,sans-serif; font-weight: 300;
  font-size: 15px; line-height: 1.55; color: #F4EFE6;
  margin: 16px 0 0; max-width: 52ch;
}

/* compact countdown */
.wcp-count { display: flex; align-items: center; gap: 8px; margin: 26px 0 4px; }
.wcp-count__cell {
  background: rgba(20,14,9,0.4); border: 1px solid rgba(250,241,221,0.18);
  padding: 9px 13px 7px; min-width: 58px; text-align: center;
}
.wcp-count__num {
  font-family: var(--font-display); font-size: 26px; line-height: 1;
  color: #FFFFFF; font-variant-numeric: tabular-nums; letter-spacing: -0.01em;
}
.wcp-count__lab {
  font-family: 'Outfit',Arial,sans-serif; font-size: 8px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase; color: #E6DCCB; margin-top: 6px;
}
.wcp-count__hint {
  font-family: 'Outfit',Arial,sans-serif; font-size: 10px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase; color: #D9AE74;
  margin-left: 6px;
}

/* city chips */
.wcp-chips { display: flex; flex-wrap: wrap; gap: 7px; margin: 22px 0 0; }
.wcp-chip {
  font-family: 'Outfit',Arial,sans-serif; font-size: 10px; font-weight: 500;
  letter-spacing: 0.06em; color: #F4EFE6;
  border: 1px solid rgba(250,241,221,0.18); padding: 5px 10px;
  white-space: nowrap;
}
.wcp-chip--more { color: #D9AE74; border-color: rgba(217,174,116,0.45); }

.wcp-cta { display: flex; align-items: center; gap: 18px; margin: 30px 0 0; flex-wrap: wrap; }
.wcp-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  height: 50px; padding: 0 26px; border: 1px solid #D9AE74;
  background: #D9AE74; color: #2A1E12;
  font-family: 'Outfit',Arial,sans-serif; font-size: 11px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase; text-decoration: none;
  border-radius: var(--radius); cursor: pointer;
  box-shadow: 0 12px 28px -8px rgba(160,106,56,0.5);
  transition: transform 180ms ease;
}
.wcp-btn:active { transform: translateY(1px); }
.wcp-later {
  background: transparent; border: 0; cursor: pointer;
  font-family: 'Outfit',Arial,sans-serif; font-size: 11px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase; color: #E6DCCB;
  transition: color 200ms;
}
.wcp-later:hover { color: #FFFFFF; }

@media (max-width: 560px) {
  .wcp-modal { padding: 36px 24px 30px; }
  .wcp-count__cell { min-width: 48px; padding: 8px 8px 6px; }
}

/* ── Floating re-open badge (bottom-right; concierge cue is bottom-left) ── */
.wcp-badge {
  position: fixed; right: 28px; bottom: 28px; z-index: 80;
  display: inline-flex; align-items: center; gap: 10px;
  height: 46px; padding: 0 18px;
  background: #4D3826; border: 1px solid rgba(217,174,116,0.5);
  color: #FFFFFF; cursor: pointer;
  font-family: 'Outfit',Arial,sans-serif; font-size: 10px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  box-shadow: 0 14px 36px -10px rgba(0,0,0,0.55);
  border-radius: var(--radius);
  transform: translateY(20px); opacity: 0;
  transition: transform 520ms cubic-bezier(.16,1,.3,1), opacity 420ms, border-color 220ms, color 220ms;
}
.wcp-badge.is-visible { transform: translateY(0); opacity: 1; }
.wcp-badge:hover { border-color: #ECC58F; color: #ECC58F; }
.wcp-badge__dot {
  width: 7px; height: 7px; border-radius: 50%; background: #ECC58F;
  box-shadow: 0 0 0 0 rgba(236,197,143,0.6);
  animation: wcp-pulse 2.2s infinite;
}
.wcp-badge__num { color: #ECC58F; }
@media (max-width: 720px) { .wcp-badge { right: 16px; bottom: 76px; } }

/* ============================================================
   World Cup '26 top ribbon (added) — always-visible announcement
   above the nav, with live countdown + Reserve CTA. Dismissible.
   ============================================================ */
:root { --wc-ribbon-h: 0px; }
.wc-ribbon-on { --wc-ribbon-h: 46px; }
.wc-ribbon-on .nav { top: var(--wc-ribbon-h); }
.wc-ribbon-on body { padding-top: var(--wc-ribbon-h); }
html.wc-ribbon-on { scroll-padding-top: calc(var(--wc-ribbon-h) + 78px); }

.wc-ribbon {
  position: fixed; top: 0; left: 0; right: 0; z-index: 95;
  height: var(--wc-ribbon-h, 46px);
  display: flex; align-items: center; justify-content: center; gap: 18px;
  padding: 0 48px 0 18px;
  background: linear-gradient(90deg, #2A1E12 0%, #4D3826 45%, #2A1E12 100%);
  border-bottom: 1px solid var(--hairline-gold, rgba(160,106,56,0.5));
  font-family: 'Outfit', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  transform: translateY(-100%); transition: transform 520ms cubic-bezier(.2,.8,.2,1);
}
.wc-ribbon.is-in { transform: translateY(0); }
.wc-ribbon__link {
  display: flex; align-items: center; gap: 16px;
  text-decoration: none; color: var(--fg, #FAF1DD);
  max-width: 100%; overflow: hidden;
}
.wc-ribbon__pulse {
  width: 8px; height: 8px; border-radius: 50%; flex: 0 0 auto;
  background: var(--terra-bright, #ECC58F);
  box-shadow: 0 0 0 0 rgba(236,197,143,0.55);
  animation: wcRibbonPulse 2.2s infinite;
}
@keyframes wcRibbonPulse {
  0% { box-shadow: 0 0 0 0 rgba(236,197,143,0.5); }
  70% { box-shadow: 0 0 0 9px rgba(236,197,143,0); }
  100% { box-shadow: 0 0 0 0 rgba(236,197,143,0); }
}
.wc-ribbon__lead {
  font-size: 12px; letter-spacing: 0.10em; text-transform: uppercase;
  white-space: nowrap; color: var(--fg-muted, #ECD5AD);
}
.wc-ribbon__lead b { color: var(--terra-bright, #ECC58F); font-weight: 600; }
.wc-ribbon__count {
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  white-space: nowrap; color: var(--fg, #FAF1DD);
  font-variant-numeric: tabular-nums;
}
.wc-ribbon__count b { color: var(--terra-bright, #ECC58F); font-weight: 600; }
.wc-ribbon__cta {
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600;
  white-space: nowrap; color: #2A1E12;
  background: var(--terra, #D9AE74); padding: 7px 14px; border-radius: var(--radius);
  transition: filter .2s;
}
.wc-ribbon__link:hover .wc-ribbon__cta { filter: brightness(1.07); }
.wc-ribbon__close {
  position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
  background: transparent; border: 0; cursor: pointer;
  color: var(--fg-subtle, #E2D0AF); font-size: 15px; line-height: 1; padding: 6px;
}
.wc-ribbon__close:hover { color: var(--fg, #FAF1DD); }

@media (max-width: 880px) {
  .wc-ribbon__lead { display: none; }
}
@media (max-width: 768px) {
  .wc-ribbon-on { --wc-ribbon-h: 42px; }
  .wc-ribbon { gap: 12px; padding: 0 40px 0 14px; }
  .wc-ribbon__cta { padding: 6px 11px; letter-spacing: 0.1em; }
}
