/* ───────────────── Burj Khalifa Tickets — production CSS ───────────────── */
:root {
  --bg: #07070a;
  --bg-2: #0f0f14;
  --panel: #14141b;
  --panel-2: #1c1c25;
  --line: #25252f;
  --ink: #f4f4f7;
  --ink-2: #b9b9c4;
  --ink-3: #7a7a86;
  --gold: #c9a14a;
  --gold-2: #e6c878;
  --danger: #ff6b6b;
  --ok: #2ecc71;
  --radius: 14px;
  --max: 1240px;
  --shadow: 0 20px 60px -20px rgba(0,0,0,.7);
  --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --serif: "Cormorant Garamond", "Times New Roman", serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { background: var(--bg); color: var(--ink); font-family: var(--font); -webkit-font-smoothing: antialiased; }
body { line-height: 1.55; overflow-x: hidden; }
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, select, textarea { font-family: inherit; font-size: 1rem; color: inherit; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.eyebrow { font-size: .75rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.h1, .h2, .h3 { font-family: var(--serif); font-weight: 500; line-height: 1.05; letter-spacing: -.01em; }
.h1 { font-size: clamp(2.4rem, 6vw, 4.8rem); }
.h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin-bottom: .8rem; }
.h3 { font-size: 1.4rem; }
.lead { color: var(--ink-2); font-size: 1.05rem; max-width: 60ch; }
.section { padding: 100px 0; position: relative; }
.section--alt { background: var(--bg-2); }

/* ─────── Header ─────── */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 24px;
  background: linear-gradient(180deg, rgba(7,7,10,.85), rgba(7,7,10,0));
  backdrop-filter: blur(8px);
}
.nav.scrolled { background: rgba(7,7,10,.95); border-bottom: 1px solid var(--line); }
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--serif); font-size: 1.5rem; letter-spacing: .02em; }
.brand-mark { width: 30px; height: 30px; }
.nav-links { display: flex; gap: 32px; font-size: .92rem; color: var(--ink-2); }
.nav-links a:hover { color: var(--gold-2); }
@media (max-width: 760px) { .nav-links { display: none; } }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 26px; border-radius: 999px; font-weight: 600; font-size: .92rem;
  letter-spacing: .04em; text-transform: uppercase; transition: all .25s ease;
  border: 1px solid transparent;
}
.btn-primary { background: var(--gold); color: #1a1408; }
.btn-primary:hover { background: var(--gold-2); transform: translateY(-1px); box-shadow: 0 10px 30px -10px rgba(201,161,74,.6); }
.btn-ghost { border-color: var(--line); color: var(--ink); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-2); }
.btn-block { width: 100%; }
.btn[disabled] { opacity: .55; cursor: not-allowed; transform: none; }

/* ─────── Hero ─────── */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; padding-bottom: 80px; overflow: hidden; }
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media video, .hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7,7,10,.55) 0%, rgba(7,7,10,.2) 40%, rgba(7,7,10,.95) 100%);
}
.hero-inner { position: relative; z-index: 2; max-width: 760px; }
.hero h1 { margin-top: 18px; }
.hero p { color: var(--ink-2); margin-top: 18px; font-size: 1.15rem; max-width: 50ch; }
.hero-cta { margin-top: 32px; display: flex; gap: 14px; flex-wrap: wrap; }
.hero-cta .btn { min-width: 150px; }
.hero-cta .btn-ghost { background: rgba(255,255,255,.06); backdrop-filter: blur(10px); }
.hero-meta { margin-top: 36px; display: flex; gap: 28px; color: var(--ink-3); font-size: .85rem; flex-wrap: wrap; }
.hero-meta strong { color: var(--ink); font-weight: 600; }

/* ─────── Tickets ─────── */
.tickets-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; margin-top: 50px; }
.ticket-card {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column; transition: transform .3s ease, border-color .3s ease;
}
.ticket-card:hover { transform: translateY(-4px); border-color: var(--gold); }
.ticket-card .img { aspect-ratio: 4/3; overflow: hidden; }
.ticket-card .img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.ticket-card:hover .img img { transform: scale(1.05); }
.ticket-card .body { padding: 22px; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.ticket-card .name { font-family: var(--serif); font-size: 1.4rem; line-height: 1.15; }
.ticket-card .meta { color: var(--ink-3); font-size: .85rem; }
.ticket-card .price { display: flex; align-items: baseline; gap: 6px; margin-top: auto; }
.ticket-card .price strong { font-size: 1.6rem; color: var(--gold-2); font-weight: 600; }
.ticket-card .price small { color: var(--ink-3); font-size: .8rem; }
.ticket-card ul { font-size: .88rem; color: var(--ink-2); padding-left: 0; list-style: none; display: grid; gap: 6px; }
.ticket-card ul li::before { content: "✓"; color: var(--gold); margin-right: 8px; font-weight: 700; }
.badge { display: inline-block; padding: 4px 10px; border-radius: 999px; background: rgba(201,161,74,.15); color: var(--gold-2); font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 700; }

/* ─────── Experiences ─────── */
.exp-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; margin-top: 40px; }
.exp-card { position: relative; aspect-ratio: 4/5; border-radius: var(--radius); overflow: hidden; }
.exp-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.exp-card:hover img { transform: scale(1.06); }
.exp-card .label { position: absolute; left: 18px; bottom: 18px; right: 18px; color: #fff; font-family: var(--serif); font-size: 1.25rem; line-height: 1.2; text-shadow: 0 4px 18px rgba(0,0,0,.7); }
.exp-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.85) 100%); }

/* ─────── About ─────── */
.about { display: grid; grid-template-columns: 1.05fr 1fr; gap: 60px; align-items: center; margin-top: 40px; }
.about img { border-radius: var(--radius); aspect-ratio: 5/6; object-fit: cover; }
.about ul { list-style: none; margin-top: 18px; display: grid; gap: 10px; color: var(--ink-2); }
.about ul li::before { content: "✦"; color: var(--gold); margin-right: 10px; }
@media (max-width: 800px) { .about { grid-template-columns: 1fr; } }

/* ─────── Testimonials ─────── */
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; margin-top: 40px; }
.testi {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px;
}
.testi .stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 10px; }
.testi blockquote { color: var(--ink-2); font-style: italic; margin-bottom: 18px; }
.testi .who { display: flex; align-items: center; gap: 12px; }
.testi .who img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.testi .who div span { display: block; }
.testi .who .name { font-weight: 600; }
.testi .who .role { color: var(--ink-3); font-size: .8rem; }

/* ─────── FAQ ─────── */
.faq { display: grid; gap: 12px; margin-top: 40px; }
.faq details {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 18px 22px;
}
.faq summary { cursor: pointer; font-weight: 600; font-size: 1.05rem; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq summary::after { content: "+"; font-size: 1.4rem; color: var(--gold); }
.faq details[open] summary::after { content: "−"; }
.faq details p { margin-top: 12px; color: var(--ink-2); }

/* ─────── Final CTA ─────── */
.final { position: relative; min-height: 70vh; display: flex; align-items: center; overflow: hidden; }
.final-media { position: absolute; inset: 0; z-index: 0; }
.final-media img { width: 100%; height: 100%; object-fit: cover; }
.final-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7,7,10,.95) 30%, rgba(7,7,10,.4) 100%); }
.final-inner { position: relative; z-index: 2; max-width: 600px; padding: 80px 0; }

/* ─────── Footer ─────── */
.foot { padding: 60px 0 30px; background: var(--bg-2); border-top: 1px solid var(--line); color: var(--ink-3); font-size: .88rem; }
.foot-cols { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.foot-cols h4 { color: var(--ink); margin-bottom: 12px; font-size: .95rem; }
.foot-cols ul { list-style: none; display: grid; gap: 8px; }
.foot-cols a:hover { color: var(--gold-2); }
.foot-bottom { display: flex; justify-content: space-between; padding-top: 24px; border-top: 1px solid var(--line); flex-wrap: wrap; gap: 12px; }
@media (max-width: 700px) { .foot-cols { grid-template-columns: 1fr; gap: 28px; } }

/* ─────── Checkout modal ─────── */
.ck-modal {
  position: fixed; inset: 0; z-index: 100; background: rgba(0,0,0,.78); backdrop-filter: blur(6px);
  display: none; align-items: flex-start; justify-content: center; padding: 30px 16px; overflow-y: auto;
}
.ck-modal.is-open { display: flex; }
.ck-dialog {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  width: 100%; max-width: 720px; box-shadow: var(--shadow); overflow: hidden;
  animation: ckIn .25s ease;
}
@keyframes ckIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.ck-head { padding: 20px 24px; border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; }
.ck-head h3 { font-family: var(--serif); font-size: 1.4rem; }
.ck-close { width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--line); }
.ck-close:hover { border-color: var(--gold); color: var(--gold); }
.ck-stepper { display: flex; gap: 0; padding: 18px 24px 0; list-style: none; }
.ck-stepper li {
  flex: 1; padding: 10px 12px; font-size: .82rem; color: var(--ink-3); position: relative;
  border-bottom: 2px solid var(--line); text-align: center;
}
.ck-stepper li.is-on { color: var(--gold-2); border-bottom-color: var(--gold); }
.ck-body { padding: 22px 24px 24px; }
.ck-step { display: none; }
.ck-step.is-active { display: block; animation: ckIn .25s ease; }

.ck-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.ck-row.full { grid-template-columns: 1fr; }
@media (max-width: 540px) { .ck-row { grid-template-columns: 1fr; } }
.ck-field label { display: block; font-size: .78rem; color: var(--ink-3); margin-bottom: 6px; letter-spacing: .04em; text-transform: uppercase; font-weight: 600; }
.ck-field input, .ck-field select {
  width: 100%; background: var(--bg); border: 1px solid var(--line); border-radius: 10px;
  padding: 12px 14px; color: var(--ink);
}
.ck-field input:focus, .ck-field select:focus { outline: none; border-color: var(--gold); }
.ck-err { color: var(--danger); font-size: .78rem; margin-top: 4px; min-height: 1em; }

.ck-tickets { display: grid; gap: 10px; margin-top: 8px; }
.ck-ticket {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  background: var(--bg); border: 1px solid var(--line); border-radius: 10px; padding: 14px 16px;
}
.ck-ticket h4 { font-size: .98rem; font-weight: 600; }
.ck-ticket .ck-price { display: block; color: var(--gold-2); font-size: .9rem; margin-top: 2px; }
.ck-qty { display: flex; align-items: center; gap: 10px; }
.ck-qty button { width: 32px; height: 32px; border-radius: 50%; border: 1px solid var(--line); font-size: 1.2rem; }
.ck-qty button:hover { border-color: var(--gold); color: var(--gold); }
.ck-qty span { min-width: 22px; text-align: center; font-weight: 600; }

.ck-totals {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--line);
}
.ck-totals strong { font-size: 1.4rem; color: var(--gold-2); }
.ck-actions { display: flex; gap: 10px; margin-top: 20px; }
.ck-actions .btn { flex: 1 1 0; min-width: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; padding-left: 12px; padding-right: 12px; }

#ck-summary ul { list-style: none; margin-bottom: 14px; }
#ck-summary li { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--line); color: var(--ink-2); }
.ck-summary-total { display: flex; justify-content: space-between; padding-top: 10px; font-size: 1.2rem; font-weight: 600; }
.ck-summary-total span:last-child { color: var(--gold-2); }
.ck-summary-meta { color: var(--ink-3); font-size: .88rem; margin-top: 8px; }

.ck-secure {
  display: flex; gap: 10px; align-items: center; padding: 12px 14px; margin-top: 16px;
  background: rgba(46, 204, 113, .08); border: 1px solid rgba(46, 204, 113, .25);
  border-radius: 10px; font-size: .82rem; color: var(--ink-2);
}
.ck-secure svg { flex-shrink: 0; color: var(--ok); }
.ck-price-note { margin: -4px 0 12px; font-size: .8rem; color: var(--ink-3); line-height: 1.45; }
.ck-cardnum { position: relative; }
.ck-cardnum input { padding-right: 60px; font-family: ui-monospace, "SF Mono", Menlo, monospace; letter-spacing: .04em; }
.ck-card-brand {
  position: absolute; right: 10px; top: 50%; transform: translateY(-50%);
  width: 44px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: 6px; padding: 3px;
  opacity: 0; transition: opacity .15s ease;
  pointer-events: none;
}
.ck-card-brand.is-on { opacity: 1; }
.ck-card-brand img { width: 100%; height: 100%; object-fit: contain; display: block; }

/* ─────── Footer disclosure block ─────── */
.foot-disclosure {
  background: rgba(201,161,74,.06); border: 1px solid rgba(201,161,74,.25);
  border-radius: var(--radius); padding: 18px 22px; margin-bottom: 40px;
  color: var(--ink-2); font-size: .9rem; line-height: 1.6;
}
.foot-disclosure strong { color: var(--ink); }
.foot-disclosure > strong { color: var(--gold-2); display: inline-block; margin-right: 8px; letter-spacing: .04em; text-transform: uppercase; font-size: .8rem; }

.foot-fineprint {
  margin: 32px 0;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid; gap: 14px;
  color: var(--ink-3); font-size: .76rem; line-height: 1.65;
}
.foot-fineprint small { font-size: inherit; }
.foot-fineprint strong { color: var(--ink-2); }
.foot-fineprint a { color: var(--gold-2); text-decoration: underline; }

/* In-checkout affiliate notice */
.ck-affiliate {
  margin-top: 12px; font-size: .72rem; line-height: 1.55;
  color: var(--ink-3); padding: 10px 12px;
  background: var(--bg); border: 1px dashed var(--line); border-radius: 8px;
}
.ck-affiliate a { color: var(--gold-2); text-decoration: underline; }
.ck-affiliate strong { color: var(--ink-2); }

/* ─────── Country / Phone combobox ─────── */
.ck-phone { display: grid; grid-template-columns: auto 1fr; gap: 8px; position: relative; }
.ck-country { position: relative; }
.req { color: #e74c3c; }
.ck-cc-trigger {
  display: inline-flex; align-items: center; gap: 8px;
  height: 44px; padding: 0 12px;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px; color: var(--ink); font: inherit; cursor: pointer; white-space: nowrap;
}
.ck-cc-trigger:hover { border-color: var(--gold); }
.ck-cc-trigger img { width: 22px; height: 16px; object-fit: cover; border-radius: 2px; }
.ck-cc-trigger svg { opacity: .6; margin-left: 4px; }
.ck-cc-trigger-wide { width: 100%; justify-content: flex-start; }
.ck-cc-trigger-wide span:first-of-type { flex: 1; text-align: left; }
.ck-cc-pop {
  display: none; position: absolute; top: calc(100% + 6px); left: 0; z-index: 50;
  width: 320px; max-width: calc(100vw - 40px);
  background: #1a1a1a; border: 1px solid rgba(255,255,255,.15); border-radius: 12px;
  box-shadow: 0 18px 48px rgba(0,0,0,.55); overflow: hidden;
}
.ck-cc-pop-wide { width: 100%; min-width: 280px; }
.ck-cc-pop.is-open { display: block; }
.ck-cc-search { padding: 10px; border-bottom: 1px solid rgba(255,255,255,.08); }
.ck-cc-search input {
  width: 100%; height: 36px; padding: 0 10px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px; color: var(--ink); font: inherit; outline: none;
}
.ck-cc-search input:focus { border-color: var(--gold); }
.ck-cc-list { max-height: 260px; overflow-y: auto; }
.ck-cc-item {
  display: flex; align-items: center; gap: 10px; width: 100%;
  padding: 10px 12px; background: transparent; border: 0; color: var(--ink);
  font: inherit; cursor: pointer; text-align: left;
}
.ck-cc-item:hover { background: rgba(255,255,255,.06); }
.ck-cc-item.is-on { background: rgba(201,161,74,.18); color: var(--gold-2); }
.ck-cc-item img { width: 22px; height: 16px; object-fit: cover; border-radius: 2px; flex-shrink: 0; }
.ck-cc-name { flex: 1; font-size: .88rem; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.ck-cc-dial { color: var(--ink-3); font-size: .8rem; }

/* Phone input alignment with trigger */
.ck-phone .ck-cc-trigger { height: 44px; }
.ck-phone input[data-field="phone"] { min-width: 0; }

/* Card name uppercase */
input[data-field="cardName"] { text-transform: uppercase; }
