/* EU Events — premium, mobile-first, no framework. Fast by default. */
:root {
  --ink: #0e0e14;
  --ink-soft: #1a1a24;
  --paper: #ffffff;
  --mist: #f5f5f7;
  --line: #e6e6ea;
  --muted: #6b6b78;
  --gold: #b8874a;
  --gold-deep: #96692f;
  --good: #1f8a4c;
  --bad: #c23b3b;
  --radius: 14px;
  --radius-sm: 9px;
  --shadow: 0 12px 32px rgba(14,14,20,.10), 0 2px 6px rgba(14,14,20,.06);
  --container: 1180px;
  font-size: 16px;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button { font-family: inherit; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(255,255,255,.9);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header .bar { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.brand { font-weight: 800; font-size: 1.15rem; letter-spacing: -.01em; text-decoration: none; }
.brand span { color: var(--gold); }
.header-links { display: flex; gap: 20px; align-items: center; }
.header-links a { text-decoration: none; font-size: .92rem; font-weight: 600; color: var(--ink-soft); }
.btn-ghost-link { display: none; }
@media (min-width: 720px) { .btn-ghost-link { display: inline-flex; } }

/* ---------- Buttons ---------- */
.btn-primary, .btn-secondary, .btn-outline {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border-radius: 999px; font-weight: 700; font-size: .95rem;
  padding: 13px 22px; border: 1px solid transparent; cursor: pointer;
  text-decoration: none; transition: transform .12s ease, box-shadow .12s ease, opacity .12s ease;
  min-height: 48px;
}
.btn-primary { background: var(--ink); color: #fff; }
.btn-primary:hover { transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-primary:disabled { opacity: .55; cursor: not-allowed; transform: none; box-shadow: none; }
.btn-secondary { background: var(--gold); color: #1a1200; }
.btn-secondary:hover { transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-outline { background: transparent; border-color: var(--line); color: var(--ink); }
.btn-outline:hover { border-color: var(--ink); }
.btn-block { width: 100%; }
.btn-sm { padding: 8px 14px; min-height: 36px; font-size: .85rem; }

/* ---------- Hero / marketing ---------- */
.hero { padding: 40px 0 24px; }
.hero h1 { font-size: clamp(1.7rem, 4vw, 2.6rem); line-height: 1.1; letter-spacing: -.02em; margin: 0 0 10px; }
.hero p { color: var(--muted); font-size: 1.05rem; max-width: 640px; margin: 0; }

/* ---------- Event cards / grid ---------- */
.event-grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: 22px; padding: 8px 0 60px; }
@media (min-width: 640px) { .event-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1000px) { .event-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

.event-card { border-radius: var(--radius); overflow: hidden; background: var(--paper); box-shadow: var(--shadow); text-decoration: none; color: var(--ink); display: flex; flex-direction: column; }
.event-card:hover .event-media img { transform: scale(1.04); }
.event-media { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--mist); }
.event-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.badge { position: absolute; top: 12px; left: 12px; background: var(--gold); color: #1a1200; font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; padding: 6px 10px; border-radius: 999px; }
.badge.badge-dark { background: var(--ink); color: #fff; }
.badge.badge-danger { background: var(--bad); color: #fff; }
.countdown-chip, .seats-chip {
  position: absolute; bottom: 10px; left: 12px; right: 12px;
  background: rgba(14,14,20,.78); color: #fff; font-size: .78rem; font-weight: 600;
  padding: 8px 10px; border-radius: var(--radius-sm); display: flex; justify-content: space-between; gap: 8px;
  backdrop-filter: blur(4px);
}
.seats-chip { background: rgba(194,59,59,.88); }
.event-body { padding: 16px 16px 18px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.event-body .evt-date { font-size: .8rem; color: var(--gold-deep); font-weight: 700; text-transform: uppercase; letter-spacing: .03em; }
.event-body h3 { margin: 0; font-size: 1.08rem; line-height: 1.3; }
.event-body .evt-venue { font-size: .85rem; color: var(--muted); }
.event-body .evt-desc { font-size: .88rem; color: var(--muted); margin: 4px 0 8px; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.event-body .evt-footer { margin-top: auto; display: flex; align-items: center; justify-content: space-between; }
.evt-price { font-weight: 800; }
.evt-price small { display: block; font-weight: 500; font-size: .7rem; color: var(--muted); text-transform: uppercase; }

/* ---------- Event detail ---------- */
.gallery { border-radius: var(--radius); overflow: hidden; }
.gallery-main { aspect-ratio: 16/9; background: var(--mist); overflow: hidden; }
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumbs { display: flex; gap: 8px; margin-top: 8px; overflow-x: auto; padding-bottom: 4px; }
.gallery-thumbs img { width: 84px; height: 56px; object-fit: cover; border-radius: 8px; cursor: pointer; opacity: .65; flex: none; }
.gallery-thumbs img.active { opacity: 1; outline: 2px solid var(--gold); }

.event-detail-grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: 32px; padding: 24px 0 70px; align-items: start; }
.event-detail-grid > * { min-width: 0; }
@media (min-width: 960px) { .event-detail-grid { grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr); } }
.event-meta-row { display: flex; flex-wrap: wrap; gap: 18px; margin: 14px 0 18px; font-size: .92rem; }
.event-meta-row .meta-item { display: flex; gap: 8px; align-items: center; color: var(--ink-soft); }
.event-meta-row .meta-item strong { display: block; font-size: .95rem; }
.event-meta-row .meta-item small { display: block; color: var(--muted); font-size: .78rem; }
.map-embed { border-radius: var(--radius); overflow: hidden; margin: 18px 0; border: 1px solid var(--line); }
.map-embed iframe { width: 100%; height: 260px; border: 0; display: block; }
.prose { color: var(--ink-soft); font-size: .98rem; }
.prose p { margin: 0 0 14px; }

/* ---------- Ticket selector ---------- */
.ticket-panel { position: sticky; top: 84px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 18px; box-shadow: var(--shadow); }
.ticket-panel h2 { margin: 0 0 14px; font-size: 1.1rem; }
.ticket-card { border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 14px; margin-bottom: 12px; }
.ticket-card.sold-out { opacity: .55; }
.ticket-card-top { display: flex; justify-content: space-between; gap: 10px; align-items: flex-start; }
.ticket-card h4 { margin: 0; font-size: 1rem; }
.ticket-card .tt-price { font-weight: 800; white-space: nowrap; }
.ticket-card .tt-price s { color: var(--muted); font-weight: 500; margin-right: 6px; }
.tt-availability { font-size: .78rem; color: var(--muted); margin-top: 2px; }
.tt-availability.low { color: var(--bad); font-weight: 700; }
.qty-stepper { display: flex; align-items: center; gap: 10px; margin-top: 10px; }
.qty-stepper button { width: 36px; height: 36px; border-radius: 999px; border: 1px solid var(--line); background: #fff; font-size: 1.1rem; cursor: pointer; }
.qty-stepper button:disabled { opacity: .4; cursor: not-allowed; }
.qty-stepper output { min-width: 26px; text-align: center; font-weight: 700; }
.accordion-toggle { background: none; border: 0; padding: 8px 0 0; color: var(--gold-deep); font-weight: 700; font-size: .82rem; cursor: pointer; display: flex; align-items: center; gap: 6px; }
.accordion-panel { max-height: 0; overflow: hidden; transition: max-height .25s ease; font-size: .85rem; color: var(--muted); }
.accordion-panel.open { max-height: 400px; }
.accordion-panel .inner { padding-top: 8px; }

.order-summary { border-top: 1px solid var(--line); margin-top: 14px; padding-top: 14px; }
.summary-row { display: flex; justify-content: space-between; font-size: .92rem; padding: 4px 0; }
.summary-row.total { font-size: 1.1rem; font-weight: 800; border-top: 1px solid var(--line); margin-top: 8px; padding-top: 10px; }
.summary-row.discount { color: var(--good); }

/* ---------- Forms ---------- */
.field { margin-bottom: 16px; }
.field label { display: block; font-weight: 700; font-size: .88rem; margin-bottom: 6px; }
.field .hint { font-size: .78rem; color: var(--muted); margin-top: 4px; }
input[type=text], input[type=email], input[type=tel], input[type=password], input[type=number], input[type=datetime-local], textarea, select {
  width: 100%; padding: 13px 14px; border: 1px solid var(--line); border-radius: var(--radius-sm);
  font-size: 1rem; background: #fff; color: var(--ink); min-height: 48px;
}
textarea { min-height: 110px; }
input:focus, textarea:focus, select:focus, button:focus-visible, a:focus-visible {
  outline: 3px solid rgba(184,135,74,.45); outline-offset: 1px;
}
.checkbox-row { display: flex; align-items: flex-start; gap: 10px; font-size: .88rem; }
.checkbox-row input { width: 18px; height: 18px; margin-top: 3px; flex: none; }
.error-text { color: var(--bad); font-size: .82rem; margin-top: 4px; }
.form-error-banner { background: #fdecec; border: 1px solid #f3c7c7; color: #7a1f1f; padding: 12px 14px; border-radius: var(--radius-sm); margin-bottom: 16px; font-size: .9rem; }
.form-success-banner { background: #eaf7ee; border: 1px solid #bfe6cb; color: #1c5c34; padding: 12px 14px; border-radius: var(--radius-sm); margin-bottom: 16px; font-size: .9rem; }

/* ---------- Checkout ---------- */
.checkout-shell { display: grid; grid-template-columns: minmax(0, 1fr); gap: 28px; padding: 20px 0 100px; }
.checkout-shell > * { min-width: 0; }
@media (min-width: 960px) { .checkout-shell { grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr); align-items: start; } }
.checkout-section { border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; margin-bottom: 18px; background: #fff; }
.checkout-section h2 { font-size: 1.05rem; margin: 0 0 14px; display: flex; align-items: center; gap: 8px; }
.checkout-section h2 .step-num { width: 26px; height: 26px; border-radius: 50%; background: var(--ink); color: #fff; font-size: .8rem; display: inline-flex; align-items: center; justify-content: center; }
.upsell-row { display: flex; flex-wrap: wrap; gap: 10px 12px; align-items: center; padding: 12px 0; border-bottom: 1px solid var(--line); }
.upsell-row:last-child { border-bottom: 0; }
.upsell-row img { width: 56px; height: 56px; border-radius: 10px; object-fit: cover; flex: none; background: var(--mist); }
.upsell-info { flex: 1 1 160px; min-width: 0; }
.upsell-info strong { display: block; font-size: .92rem; }
.upsell-info span { font-size: .78rem; color: var(--muted); }
.upsell-price { font-weight: 700; white-space: nowrap; margin-left: auto; }
@media (max-width: 480px) {
  .upsell-row { position: relative; padding-left: 68px; }
  .upsell-row img { position: absolute; left: 0; top: 12px; }
  .upsell-info { flex-basis: 100%; }
  .upsell-price { margin-left: 0; }
}
.attendee-grid { display: grid; grid-template-columns: 1fr; gap: 12px; }
.promo-row { display: flex; gap: 10px; }
.promo-row input { flex: 1; }
.summary-sticky { position: sticky; top: 84px; border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; background: var(--mist); }
.pay-tabs { display: flex; gap: 8px; margin-bottom: 14px; }
.pay-tab { flex: 1; text-align: center; padding: 12px; border: 1px solid var(--line); border-radius: var(--radius-sm); cursor: pointer; font-weight: 700; font-size: .88rem; background: #fff; }
.pay-tab.active { border-color: var(--ink); background: var(--ink); color: #fff; }
.pay-panel { display: none; }
.pay-panel.active { display: block; }
.invoice-fields { display: none; margin-top: 12px; }
.invoice-fields.open { display: block; }
.demo-note { background: #fff7e6; border: 1px solid #f0dca8; color: #6b5116; padding: 10px 12px; border-radius: var(--radius-sm); font-size: .82rem; margin-bottom: 14px; }

/* ---------- Success / bank ---------- */
.status-hero { text-align: center; padding: 50px 0 20px; }
.status-icon { width: 68px; height: 68px; border-radius: 50%; background: var(--good); color: #fff; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-size: 2rem; }
.status-icon.pending { background: var(--gold); }
.bank-details { display: grid; gap: 0; margin: 18px 0; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.bank-row { display: flex; justify-content: space-between; padding: 12px 16px; border-bottom: 1px solid var(--line); font-size: .92rem; }
.bank-row:last-child { border-bottom: 0; }
.bank-row dt { color: var(--muted); margin: 0; }
.bank-row dd { margin: 0; font-weight: 700; }

.carousel-strip { display: flex; gap: 16px; overflow-x: auto; padding: 10px 0 24px; scroll-snap-type: x mandatory; }
.carousel-strip .event-card { min-width: 260px; scroll-snap-align: start; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--line); margin-top: 40px; padding: 32px 0; color: var(--muted); font-size: .85rem; }
.site-footer a { color: var(--muted); text-decoration: none; margin-right: 14px; }
.site-footer a:hover { color: var(--ink); }

/* ---------- Utility ---------- */
.muted { color: var(--muted); }
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.stack { display: flex; flex-direction: column; gap: 10px; }
.section { padding: 30px 0; }
.skip-link { position: absolute; left: -999px; top: 0; background: #fff; padding: 10px; z-index: 100; }
.skip-link:focus { left: 10px; top: 10px; }

/* Premium editorial layer */
:root { --ink:#172235; --ink-soft:#344155; --paper:#f7f5f0; --mist:#eeece5; --line:#d9d8d0; --muted:#6d7480; --gold:#c6843d; --gold-deep:#9a5b23; --navy:#172235; --radius:18px; --radius-sm:12px; --shadow:0 14px 36px rgba(23,34,53,.09); --container:1180px; }
body { background:var(--paper); color:var(--ink); font-family:Inter, ui-sans-serif, system-ui, -apple-system, sans-serif; }
.site-header { background:rgba(247,245,240,.9); border-bottom:1px solid rgba(23,34,53,.1); }
.site-header .bar { height:72px; }
.brand { font-size:1.05rem; letter-spacing:.02em; text-transform:uppercase; }
.brand-mark { color:var(--ink); margin-right:2px; }.brand > span:last-child { color:var(--gold); }
.header-links { gap:24px; }.header-links a { font-size:.8rem; letter-spacing:.02em; text-transform:uppercase; }
.btn-primary { background:var(--navy); border-radius:10px; }.btn-outline { border-radius:10px; border-color:rgba(23,34,53,.2); }
.hero { min-height:390px; padding:72px 20px 58px; display:grid; grid-template-columns:minmax(0,1fr) 240px; gap:40px; align-items:center; border-bottom:1px solid var(--line); }
.eyebrow { color:var(--gold-deep); font-size:.7rem; font-weight:800; letter-spacing:.16em; text-transform:uppercase; margin:0 0 16px; }
.hero h1 { max-width:720px; font-family:Georgia, 'Times New Roman', serif; font-size:clamp(3.2rem,7vw,6.2rem); font-weight:500; line-height:.94; letter-spacing:-.055em; margin:0 0 24px; }
.hero-lede { max-width:580px; font-size:1.03rem; color:var(--muted); line-height:1.7; margin:0; }.hero-trust { display:flex; flex-wrap:wrap; gap:18px; margin-top:30px; color:var(--ink-soft); font-size:.75rem; }.hero-trust b { color:var(--gold); margin-right:6px; }
.hero-mark { width:220px; height:220px; background:var(--navy); color:#f4e8d2; border-radius:50%; position:relative; display:grid; place-items:center; overflow:hidden; transform:rotate(-8deg); }.hero-mark span { position:relative; z-index:2; font:500 2rem/ .82 Georgia,serif; letter-spacing:-.08em; }.hero-mark em { font:700 .52rem/1 system-ui; letter-spacing:.24em; color:var(--gold); }.hero-mark i { position:absolute; border:1px solid rgba(198,132,61,.55); border-radius:50%; width:160px; height:160px; }.hero-mark i:nth-child(2){width:120px;height:120px}.hero-mark i:nth-child(3){width:280px;height:280px}.hero-mark i:nth-child(4){width:340px;height:340px}
.section-intro { display:flex; justify-content:space-between; align-items:end; padding-top:56px; }.section-intro h2 { font:500 2.2rem/1 Georgia,serif; letter-spacing:-.04em; margin:0; }.section-intro > p { max-width:270px; color:var(--muted); font-size:.9rem; margin:0 0 2px; }
.event-grid { gap:26px; padding:28px 0 76px; }.event-card { border:1px solid var(--line); border-radius:16px; background:#fbfaf7; box-shadow:none; }.event-card:hover { box-shadow:var(--shadow); transform:translateY(-3px); transition:transform .2s ease, box-shadow .2s ease; }.event-media { aspect-ratio:1.18/1; background:var(--navy); }.event-media img { mix-blend-mode:normal; }.badge { top:16px; left:16px; border-radius:5px; background:#e1a25f; font-size:.63rem; letter-spacing:.1em; padding:7px 9px; }.badge.badge-danger { background:#b9463d; }.countdown-chip,.seats-chip { left:14px; right:14px; bottom:14px; border-radius:7px; background:rgba(23,34,53,.9); }.seats-chip { background:#b9463d; }.event-body { padding:20px 20px 22px; gap:8px; }.event-body .evt-date { font-size:.68rem; letter-spacing:.12em; color:var(--gold-deep); }.event-body h3 { font:600 1.3rem/1.12 Georgia,serif; letter-spacing:-.025em; }.event-body .evt-venue { font-size:.8rem; }.event-body .evt-desc { font-size:.84rem; line-height:1.5; }.evt-price { font-size:1.05rem; }.evt-price small { letter-spacing:.1em; }.card-link { color:var(--ink); font-size:.78rem; font-weight:800; letter-spacing:.02em; }.card-link span { color:var(--gold-deep); font-size:1rem; margin-left:4px; }
.gallery { border-radius:0; margin-top:10px; }.gallery-main { aspect-ratio:2.05/1; border-radius:18px; }.event-detail-grid { gap:52px; padding-top:36px; }.event-detail-grid h1 { font:500 clamp(2.4rem,5vw,4.8rem)/.96 Georgia,serif !important; letter-spacing:-.055em; }.event-meta-row { border-top:1px solid var(--line); border-bottom:1px solid var(--line); padding:16px 0; margin:22px 0; gap:28px; }.map-embed { background:var(--mist); min-height:150px; }.map-embed iframe { height:180px; opacity:.85; }.ticket-panel { top:92px; border:1px solid var(--line); border-radius:18px; background:#fbfaf7; box-shadow:var(--shadow); padding:22px; }.ticket-panel h2 { font:500 1.6rem Georgia,serif; }.ticket-card { background:#fff; border-color:var(--line); border-radius:12px; padding:16px; }.ticket-card:has(.qty-stepper output:not(:empty)) { border-color:var(--gold); }.ticket-card h4 { font:600 1.15rem Georgia,serif; }.ticket-card .tt-price { font-size:1.12rem; }.qty-stepper button { border-radius:9px; background:var(--paper); }.accordion-toggle { color:var(--gold-deep); }.summary-row.total { font-size:1.25rem; }.site-footer { background:var(--navy); color:#c8ced5; border-top:0; margin-top:0; padding:44px 0; }.site-footer a { color:#c8ced5; }.site-footer p[style] { color:#f7f5f0 !important; }
@media (max-width:720px){ .site-header .bar{height:60px;padding:0 14px}.header-links{gap:10px}.header-links a{font-size:.65rem}.btn-ghost-link{padding:7px 9px;min-height:32px}.hero{display:block;min-height:0;padding:52px 20px 42px}.hero h1{font-size:clamp(3rem,16vw,4.3rem)}.hero-mark{display:none}.hero-trust{display:grid;gap:9px}.section-intro{display:block;padding-top:38px}.section-intro h2{font-size:1.9rem}.section-intro>p{margin-top:10px}.event-grid{gap:18px;padding-top:22px}.event-media{aspect-ratio:1.35/1}.event-body{padding:16px}.event-body h3{font-size:1.18rem}.gallery{margin-top:0}.gallery-main{border-radius:0;aspect-ratio:1.35/1}.event-detail-grid{padding-top:26px;gap:30px}.event-detail-grid h1{font-size:2.65rem !important}.ticket-panel{position:relative;top:auto;margin:0 -2px}.site-footer{padding:34px 0}.container{padding-left:16px;padding-right:16px} }

/* BrandTalks-inspired event energy */
.hero--dark { background: var(--navy); color: #f7f5f0; max-width: none; padding-left: 0; padding-right: 0; border: 0; }
.hero--dark .hero-inner { min-height: 560px; display:grid; grid-template-columns:minmax(0,1fr) 260px; gap:48px; align-items:center; }
.hero--dark .hero-lede, .hero--dark .hero-trust { color:#c8ced5; }
.hero--dark .eyebrow { color:#e1a25f; }
.hero--dark h1 em { color:#e1a25f; font-style:normal; }
.hero-next { display:grid; gap:2px; border-left:2px solid var(--gold); padding:10px 0 10px 16px; margin:28px 0 20px; max-width:520px; }
.hero-next span { color:#e1a25f; text-transform:uppercase; letter-spacing:.14em; font-size:.68rem; font-weight:800; }
.hero-next strong { font:500 1.35rem Georgia,serif; }
.hero-next small { color:#c8ced5; font-size:.82rem; }
.hero-cta { width:max-content; }
.event-hero-wrap { background:var(--navy); padding-bottom:18px; }
.event-hero-wrap .gallery-main { border-radius:18px; }
.event-mobile-cta { display:none; }
.map-embed { display:none; }
.ticket-panel { border-top:4px solid var(--gold); }
.ticket-card .tt-price { color:var(--navy); }
.ticket-card .tt-price s { font-size:.82rem; }
.carousel-strip { scrollbar-width:thin; }
@media (max-width:720px){ .hero--dark .hero-inner{display:block;min-height:0;padding-top:48px;padding-bottom:44px}.hero--dark h1{font-size:clamp(3rem,15vw,4.2rem)}.hero-mark{display:none}.event-hero-wrap{padding-bottom:0}.event-hero-wrap .container{padding-left:0;padding-right:0}.event-hero-wrap .gallery-main{border-radius:0}.event-hero-wrap .gallery-thumbs{padding-left:16px}.event-mobile-cta{display:inline-flex;margin:0 0 22px}.event-detail-grid h1{margin-top:0!important}.hero-cta{width:100%} }

/* Premium cleanup — editorial covers, one decisive purchase surface */
:root { --accent:#e5a04b; --cream:#f4f0e8; --panel:#fffdf9; --navy:#111b2b; --line-strong:#c8c6bf; }
.btn-primary,.btn-secondary,.btn-outline { border-radius:8px; min-height:48px; }
.btn-secondary { background:var(--accent); color:#171008; }
.event-grid { align-items:stretch; }
.event-card { min-height:560px; border-radius:12px; background:var(--panel); transition:transform .22s ease,border-color .22s ease,box-shadow .22s ease; }
.event-card:hover { transform:translateY(-5px); border-color:#b8b4a9; box-shadow:0 20px 50px rgba(17,27,43,.12); }
.event-card:focus-visible { outline:3px solid rgba(229,160,75,.55); outline-offset:4px; }
.event-media { aspect-ratio:4/3; }
.event-media:after { content:""; position:absolute; inset:55% 0 0; background:linear-gradient(transparent,rgba(8,12,20,.5)); pointer-events:none; }
.event-media img { object-position:center; }
.badge { z-index:2; background:rgba(255,253,249,.94); color:var(--navy); border:1px solid rgba(255,255,255,.55); box-shadow:0 4px 15px rgba(0,0,0,.12); }
.badge.badge-danger { background:#9c3e36; }
.countdown-chip,.seats-chip { z-index:2; padding:10px 12px; text-transform:uppercase; letter-spacing:.08em; font-size:.65rem; background:rgba(17,27,43,.91); }
.seats-chip { background:rgba(112,38,34,.92); }
.event-body { padding:21px 21px 20px; gap:9px; }
.event-card-kicker { display:flex; align-items:center; justify-content:space-between; border-bottom:1px solid var(--line); padding-bottom:10px; }
.event-body .evt-date,.evt-time { color:var(--gold-deep); font-size:.68rem; font-weight:800; letter-spacing:.1em; text-transform:uppercase; }
.event-body h3 { font-size:1.48rem; line-height:1.08; min-height:3.2rem; }
.event-body .evt-venue { display:flex; align-items:center; gap:7px; color:var(--ink); font-size:.8rem; font-weight:700; }
.event-body .evt-venue:before { content:""; width:6px; height:6px; border-radius:50%; background:var(--accent); flex:none; }
.event-body .evt-desc { min-height:2.55rem; margin:2px 0 8px; }
.evt-footer { border-top:1px solid var(--line); padding-top:14px; gap:10px; }
.evt-price { display:flex; align-items:baseline; flex-wrap:wrap; gap:3px 7px; }
.evt-price small { width:100%; }
.evt-price strong { font-size:1.35rem; letter-spacing:-.03em; }
.evt-price-old { color:var(--muted); text-decoration:line-through; font-size:.76rem; font-weight:500; }
.evt-saving { color:var(--good); font-size:.67rem; font-weight:800; text-transform:uppercase; letter-spacing:.05em; }
.card-link { flex:none; padding:9px 0; }

.event-hero-wrap { padding:44px 0; }
.event-hero-grid { display:grid; grid-template-columns:minmax(0,1.2fr) minmax(330px,.8fr); gap:54px; align-items:center; }
.event-hero-wrap .gallery { margin:0; }
.event-hero-wrap .gallery-main { aspect-ratio:1.32/1; border-radius:10px; }
.event-hero-copy { color:#f7f5f0; }
.event-hero-copy h1 { margin:0; font:500 clamp(2.8rem,5.2vw,5.4rem)/.94 Georgia,serif; letter-spacing:-.055em; }
.event-hero-lede { color:#bfc6d0; font-size:1rem; line-height:1.65; margin:20px 0; max-width:540px; }
.event-hero-facts { display:grid; grid-template-columns:1fr 1fr; gap:18px; border-top:1px solid rgba(255,255,255,.15); padding-top:18px; margin-top:22px; }
.event-hero-facts span { display:block; color:var(--accent); font-size:.63rem; font-weight:800; letter-spacing:.13em; text-transform:uppercase; margin-bottom:5px; }
.event-hero-facts strong { display:block; font-size:.83rem; line-height:1.45; }
.event-hero-cta { margin-top:26px; min-width:215px; }
.event-detail-grid { grid-template-columns:minmax(0,1.45fr) minmax(350px,.75fr); padding-top:48px; gap:58px; }
.event-about { padding-bottom:36px; }
.event-about .prose { font-size:1.02rem; line-height:1.76; max-width:720px; }
.location-card { display:grid; grid-template-columns:54px minmax(0,1fr) auto; gap:18px; align-items:center; background:#ebe7de; border:1px solid #d6d0c4; padding:22px; border-radius:12px; margin:8px 0 48px; }
.location-card .eyebrow { margin-bottom:4px; }
.location-card h2 { margin:0; font:600 1.25rem Georgia,serif; }
.location-card p:not(.eyebrow) { margin:4px 0 0; color:var(--muted); font-size:.82rem; }
.location-mark { width:52px; height:52px; display:grid; place-items:center; background:var(--navy); color:var(--accent); border-radius:50%; font-size:1.4rem; }
.related-heading { margin-top:48px; }
.related-heading h2 { margin:0; font:500 2rem Georgia,serif; letter-spacing:-.035em; }
.carousel-strip { gap:14px; padding-bottom:32px; scroll-padding-inline:2px; }
.carousel-strip .event-card { min-width:285px; max-width:285px; min-height:510px; }

.ticket-panel { scroll-margin-top:92px; padding:0; overflow:hidden; border:1px solid #c9c5ba; border-top:0; border-radius:12px; background:var(--panel); box-shadow:0 18px 46px rgba(17,27,43,.14); }
.ticket-panel-head { background:var(--navy); color:white; padding:23px 24px 20px; }
.ticket-panel-head .eyebrow { margin:0 0 7px; color:var(--accent); }
.ticket-panel-head h2 { margin:0; font:500 1.7rem Georgia,serif; }
.ticket-panel-head > p:last-child { color:#abb4c1; margin:6px 0 0; font-size:.78rem; }
.ticket-panel > .ticket-card,.ticket-panel > .order-summary,.ticket-panel > .btn-primary,.ticket-panel > .ticket-trust,.ticket-panel > .muted { margin-left:20px; margin-right:20px; }
.ticket-panel > .ticket-card:first-of-type { margin-top:20px; }
.ticket-card { border:0; border-bottom:1px solid var(--line); border-radius:0; padding:16px 2px; margin-bottom:0; background:transparent; transition:background .18s ease; }
.ticket-card.is-selected { background:#f2eadf; margin-left:12px; margin-right:12px; padding-left:10px; padding-right:10px; border-radius:9px; border-bottom-color:transparent; }
.ticket-card h4 { font:600 1.18rem Georgia,serif; }
.ticket-description { margin:5px 0 0; color:var(--muted); font-size:.79rem; line-height:1.45; }
.ticket-card .tt-price { display:flex; flex-direction:column; align-items:flex-end; line-height:1.1; }
.ticket-card .tt-price strong { font-size:1.32rem; letter-spacing:-.035em; }
.ticket-card .tt-price s { margin:0 0 3px; font-size:.72rem; }
.ticket-card .tt-price small { color:var(--good); font-size:.65rem; font-weight:800; text-transform:uppercase; margin-top:4px; }
.accordion-toggle { min-height:38px; }
.accordion-panel .inner { padding:8px 0 4px 14px; border-left:2px solid var(--accent); line-height:1.55; }
.ticket-choice-row { display:flex; align-items:center; justify-content:space-between; gap:16px; margin-top:12px; }
.ticket-choice-row > span { color:var(--muted); font-size:.7rem; font-weight:800; letter-spacing:.09em; text-transform:uppercase; }
.qty-stepper { margin:0; gap:0; border:1px solid var(--line-strong); border-radius:8px; overflow:hidden; background:#fff; }
.qty-stepper button { width:44px; height:44px; border:0; border-radius:0; background:#fff; font-size:1.2rem; }
.qty-stepper button:hover { background:var(--navy); color:#fff; }
.qty-stepper output { min-width:38px; }
.ticket-panel .order-summary { margin-top:17px; padding-top:15px; }
.ticket-panel .summary-row.total { border:0; font-size:1.35rem; }
.ticket-panel > .btn-primary { width:calc(100% - 40px); margin-top:14px!important; min-height:56px; background:var(--accent); color:#171008; font-size:1rem; }
.ticket-trust { display:flex; justify-content:center; flex-wrap:wrap; gap:5px 14px; color:var(--muted); font-size:.63rem; padding:13px 0 18px; }
.ticket-trust span:before { content:"✓"; color:var(--good); font-weight:900; margin-right:4px; }

.checkout-heading { padding:34px 0 24px; }
.checkout-heading > a { color:var(--muted); font-size:.8rem; text-decoration:none; }
.checkout-heading .eyebrow { margin:25px 0 8px; }
.checkout-heading h1 { margin:0; font:500 clamp(2.4rem,5vw,4rem)/1 Georgia,serif; letter-spacing:-.045em; }
.checkout-heading > p:last-child { color:var(--muted); margin:8px 0 0; }
.checkout-shell { padding-top:0; gap:42px; }
.checkout-section { border-radius:11px; padding:23px; background:var(--panel); box-shadow:none; }
.checkout-section h2 { font:600 1.18rem Georgia,serif; }
.checkout-section h2 .step-num { background:var(--accent); color:var(--navy); font-family:system-ui; }
.checkout-section .ticket-card { border:1px solid var(--line); border-radius:9px; padding:15px; margin-bottom:10px; }
.pay-tabs { gap:10px; }
.pay-tab { min-height:66px; border-radius:8px; text-align:left; }
.pay-tab small { display:block; margin-top:2px; font-weight:500; opacity:.68; }
.summary-sticky { border-radius:11px; background:var(--navy); color:#fff; padding:24px; border:0; }
.summary-sticky .eyebrow { color:var(--accent); margin-bottom:7px; }
.summary-sticky h2 { margin:0 0 18px; font:500 1.5rem/1.15 Georgia,serif; }
.summary-sticky .muted { color:#aeb6c2; }
.summary-sticky .promo-row input { background:#fff; }
.summary-sticky .btn-outline { color:#fff; border-color:#687282; }
.summary-sticky .order-summary { border-color:#475365; }
.summary-sticky .summary-row.total { border-color:#475365; }
.summary-sticky .btn-primary { background:var(--accent); color:#171008; min-height:54px; }
.status-shell { max-width:720px; padding-top:54px; padding-bottom:80px; }
.status-card { background:var(--panel); border:1px solid var(--line); border-radius:12px; padding:42px; box-shadow:var(--shadow); }
.status-card h1 { font-family:Georgia,serif; font-size:2rem!important; }
.status-card .btn-outline { margin-top:18px; }
.bank-steps { text-align:left; padding-left:22px; }
.find-ticket-shell { max-width:620px; padding-top:58px; padding-bottom:90px; }
.find-ticket-card { background:var(--panel); border:1px solid var(--line); border-radius:12px; padding:38px; box-shadow:var(--shadow); }
.find-ticket-card h1 { margin:0 0 12px; font:500 2.5rem/1.02 Georgia,serif; letter-spacing:-.04em; }
.privacy-note { color:var(--muted); font-size:.72rem; text-align:center; margin:14px 0 0; }

@media (max-width:959px) {
  .event-hero-grid { grid-template-columns:1fr; gap:30px; }
  .event-hero-copy { max-width:720px; }
  .event-detail-grid { grid-template-columns:1fr; }
  .event-detail-grid > aside { order:-1; }
  .ticket-panel { position:relative; top:auto; max-width:620px; margin:0 auto; }
}
@media (max-width:720px) {
  .event-card { min-height:0; }
  .event-body h3 { min-height:0; font-size:1.35rem; }
  .event-body .evt-desc { min-height:0; }
  .event-hero-wrap { padding:0 0 34px; }
  .event-hero-wrap .container { padding:0; }
  .event-hero-grid { gap:27px; }
  .event-hero-copy { padding:0 17px; }
  .event-hero-copy h1 { font-size:clamp(2.6rem,13vw,3.65rem); }
  .event-hero-facts { grid-template-columns:1fr; gap:12px; }
  .event-hero-cta { width:100%; }
  .event-detail-grid { padding-top:24px; gap:28px; }
  .event-detail-grid > aside { order:-1; }
  .ticket-panel { scroll-margin-top:72px; }
  .event-about { padding:18px 2px 24px; }
  .location-card { grid-template-columns:46px 1fr; padding:18px; margin-bottom:36px; }
  .location-mark { width:46px; height:46px; }
  .location-card .btn-outline { grid-column:1/-1; width:100%; }
  .carousel-strip { margin-right:-16px; padding-right:16px; }
  .carousel-strip .event-card { min-width:278px; max-width:278px; }
  .checkout-heading { padding-top:26px; }
  .checkout-heading h1 { font-size:2.6rem; }
  .checkout-section { padding:17px; }
  .summary-sticky { position:relative; top:auto; }
  .find-ticket-shell { padding:34px 16px 70px; }
  .find-ticket-card { padding:25px 20px; }
  .find-ticket-card h1 { font-size:2.15rem; }
  .status-shell { padding:30px 16px 60px; }
  .status-card { padding:29px 19px; }
}
@media (max-width:390px) {
  .event-body { padding:17px; }
  .evt-footer { align-items:flex-end; }
  .card-link { font-size:.72rem; }
  .ticket-panel > .ticket-card,.ticket-panel > .order-summary,.ticket-panel > .btn-primary,.ticket-panel > .ticket-trust,.ticket-panel > .muted { margin-left:14px; margin-right:14px; }
  .ticket-panel > .btn-primary { width:calc(100% - 28px); }
  .ticket-card-top { gap:7px; }
  .ticket-card .tt-price strong { font-size:1.18rem; }
  .pay-tabs { flex-direction:column; }
  .promo-row { flex-direction:column; }
  .promo-row .btn-sm { min-height:44px; }
}

/* Brand Talks client identity */
.brand-logo-link{display:flex;align-items:center;line-height:1}.brandtalks-header-logo{display:block;width:132px;height:auto;max-height:46px;object-fit:contain}.brandtalks-footer-logo{display:block;width:150px;height:auto;margin:0 0 18px}.hero-brand-logo{display:flex;align-items:center;justify-content:center;min-height:220px}.hero-brand-logo img{width:min(320px,100%);height:auto;filter:drop-shadow(0 12px 30px rgba(0,0,0,.25))}.event-brand-logo{width:min(330px,80%);height:auto;margin:0 0 22px}.brandtalks-content{display:grid;gap:34px}.brandtalks-intro{font-size:1.08rem;line-height:1.8}.brandtalks-highlight{border-left:3px solid #e5a04b;padding:6px 0 6px 20px;color:#4c5564}.brandtalks-section h2{font:600 2rem/1.05 Georgia,serif;letter-spacing:-.035em;margin:0 0 16px}.brandtalks-topic-grid,.brandtalks-speaker-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px}.brandtalks-topic,.brandtalks-speaker{background:#fffdf9;border:1px solid #d9d8d0;border-radius:10px;padding:16px}.brandtalks-topic strong,.brandtalks-speaker strong{display:block;color:#172235;margin-bottom:5px}.brandtalks-topic span,.brandtalks-speaker span{display:block;color:#6d7480;font-size:.85rem;line-height:1.5}.brandtalks-benefits{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:12px}.brandtalks-benefit{background:#172235;color:#fff;border-radius:10px;padding:18px}.brandtalks-benefit b{display:block;color:#e5a04b;margin-bottom:6px}.brandtalks-benefit span{font-size:.84rem;line-height:1.55;color:#cbd1db}@media(max-width:720px){.brandtalks-header-logo{width:104px}.header-links{gap:7px}.event-brand-logo{width:240px}.hero-brand-logo{display:none}.brandtalks-topic-grid,.brandtalks-speaker-grid,.brandtalks-benefits{grid-template-columns:1fr}.brandtalks-section h2{font-size:1.65rem}}

.ticket-party-size{display:inline-block;margin-top:6px;color:var(--gold-deep);font-size:.68rem;font-weight:800;letter-spacing:.06em;text-transform:uppercase}
