/* =========================================================
   RegSymp — Production Stylesheet
   UHNW Redesign — Institutional Finance Edition
   ========================================================= */

/* The user-agent rule for [hidden] is `display: none`, which any author rule
   setting `display` outranks — so an element hidden from script stayed on
   screen. The hero CTA did exactly that. */
[hidden] {
  display: none !important;
}

:root {
  --navy:        #1C2B4A;
  --navy-light:  #2A3D60;
  --navy-deep:   #0D1322;
  --blue:        #6B7FA0;
  --blue-light:  #8B9BB4;
  --blue-soft:   #B0BCCC;
  --white:       #FFFFFF;
  --off-white:   #FAFAF8;
  --off-white-2: #EDE8E0;
  --text-dark:   #2C2E3A;
  --text-muted:  #6B6E7A;
  --border:      #D8D3C8;
  --gold:        #B8963A;
  --gold-soft:   #F9F5EC;
  --gold-text:   #7A5E22;

  --serif:   "Playfair Display", Georgia, "Times New Roman", serif;
  --display: "Cinzel", "Playfair Display", Georgia, serif;
  --sans:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  --maxw:       1280px;
  --gutter:     clamp(20px, 4vw, 64px);
  --section-py: clamp(72px, 9vw, 128px);

  --r-sm:   4px;
  --r-md:   8px;
  --r-lg:   14px;
  --r-pill: 999px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; cursor: pointer; }

:focus-visible {
  outline: 3px solid #4A5D7E;
  outline-offset: 3px;
  border-radius: 3px;
}

.skip-link {
  position: absolute; top: -100%; left: 16px;
  background: #1C2B4A; color: white;
  padding: 8px 16px; border-radius: 0 0 8px 8px;
  font-size: 14px; font-weight: 600; z-index: 10001;
}
.skip-link:focus { top: 0; }

@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
  .hero-video { display: none; }
  .reveal { transition: none; opacity: 1; transform: none; }
}

button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ------- Typography ------- */
.eyebrow {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue);
  display: inline-block;
  margin: 0 0 20px;
}
.eyebrow.on-dark { color: var(--blue-light); }

h1, h2, h3, h4 { margin: 0; font-weight: 500; letter-spacing: -0.01em; line-height: 1.1; }

.h-display {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(40px, 6.4vw, 88px);
  line-height: 1.06;
  letter-spacing: 0.01em;
}
.h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(32px, 4.2vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.015em;
}
.h3 {
  font-family: var(--sans);
  font-weight: 500;
  font-size: clamp(20px, 2vw, 26px);
  letter-spacing: -0.01em;
}
.h4 {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 17px;
}

.lede { font-size: clamp(15px, 1.2vw, 17px); line-height: 1.72; color: var(--text-muted); max-width: 62ch; }
.on-dark .lede, .lede.on-dark { color: rgba(246,242,235,0.58); }

/* ------- Layout ------- */
.container { max-width: var(--maxw); margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }

section.section { padding-top: var(--section-py); padding-bottom: var(--section-py); position: relative; }
.section.dark      { background: var(--navy-deep);  color: var(--white); }
.section.dark-deep { background: var(--navy-deep); color: var(--white); }
.section.light     { background: var(--off-white);  color: var(--text-dark); }

.section.dark h1, .section.dark h2, .section.dark h3, .section.dark h4 { color: var(--white); }

.section-head { max-width: 760px; margin-bottom: clamp(48px, 6vw, 80px); }
.section-head .h2 { margin-bottom: 18px; }

/* ------- Buttons ------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 15px 28px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 0;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
  position: relative;
}
.btn .arrow { transition: transform 0.25s ease; }
.btn:hover .arrow { transform: translateX(4px); }

.btn-primary { background: var(--navy); color: var(--white); }
.btn-primary:hover { background: var(--navy-deep); }
.btn-primary.on-light { background: var(--navy-deep); }
.btn-primary.on-light:hover { background: var(--navy); }

.btn-ghost {
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.22);
  background: transparent;
}
.btn-ghost:hover { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.4); }

.btn-link {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 2px;
  border-bottom: 1px solid currentColor;
  color: inherit;
}
.btn-link:hover { color: var(--blue-light); }

/* ------- Navigation ------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: background 0.35s ease, padding 0.35s ease, border-color 0.35s ease;
  padding: 22px 0;
  background: transparent;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(13,19,34,0.92);
  -webkit-backdrop-filter: saturate(120%) blur(14px);
  backdrop-filter: saturate(120%) blur(14px);
  padding: 14px 0;
  border-bottom-color: rgba(255,255,255,0.06);
}
.nav-inner { display: flex; align-items: center; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; color: var(--white); flex: 0 0 auto; }
.brand.brand-hex { display: inline-flex; align-items: center; line-height: 0; gap: 0; }
.brand.brand-hex img { height: 44px; width: auto; display: block; filter: brightness(0) invert(1); }
.brand.brand-hex:hover img { transform: none; }
.nav.scrolled .brand.brand-hex img { height: 38px; }
.brand-wordmark { display: block; line-height: 0; }
.brand-wordmark img { height: 28px; width: auto; object-fit: contain; display: block; filter: brightness(0) invert(1); }
.nav .brand-wordmark img { height: 30px; }
.footer .brand-wordmark img { height: 36px; filter: brightness(0) invert(1); }

.city-pick { position: relative; margin-left: 4px; }
.city-pick-btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600;
  color: rgba(255,255,255,0.72);
  padding: 9px 14px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 0;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.city-pick-btn:hover { border-color: rgba(255,255,255,0.32); color: var(--white); }
.city-pick-btn .chev { transition: transform 0.2s ease; }
.city-pick.open .city-pick-btn .chev { transform: rotate(180deg); }
.city-menu {
  position: absolute; top: calc(100% + 10px); left: 0;
  min-width: 240px;
  background: var(--white);
  color: var(--text-dark);
  border-radius: var(--r-md);
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
  padding: 8px;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}
.city-pick.open .city-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.city-menu-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 12px;
  border-radius: var(--r-sm);
  font-size: 13px;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}
.city-menu-item:hover,
.city-menu-item:focus-visible { background: var(--off-white); outline: none; }
.city-menu-item.active { background: var(--off-white); color: var(--navy); font-weight: 600; }
.city-menu-item.soon { color: var(--text-muted); cursor: not-allowed; }
.city-menu-item .tag { font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; padding: 3px 8px; border-radius: var(--r-pill); background: var(--off-white-2); color: var(--text-muted); }
.city-menu-item.active .tag { background: var(--navy); color: var(--white); }

.nav-links { display: flex; gap: 28px; margin: 0 auto; }
.nav-links a {
  font-size: 13px; color: rgba(255,255,255,0.6); font-weight: 500;
  position: relative; padding: 6px 0;
  transition: color 0.2s ease;
}
.nav-links a:hover { color: var(--white); }
.nav-links a.active { color: var(--white); }
.nav-links a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 1px; background: var(--gold);
}

.nav-intro-link {
  color: var(--gold) !important;
  border: 1px solid rgba(184,150,58,0.35);
  padding: 5px 12px !important;
  font-size: 11px !important;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: border-color 0.2s ease, color 0.2s ease !important;
}
.nav-intro-link:hover { border-color: var(--gold) !important; }

.drawer-intro-link { color: var(--gold) !important; }

.nav-cta { display: flex; align-items: center; gap: 16px; flex: 0 0 auto; }
.nav-write-link {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(184,150,58,0.85);
  border-bottom: 1px solid rgba(184,150,58,0.28);
  padding-bottom: 2px;
  transition: color 0.2s ease, border-color 0.2s ease;
  text-decoration: none;
}
.nav-write-link:hover { color: var(--gold); border-color: rgba(184,150,58,0.55); }

.nav-burger {
  display: none;
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--r-sm);
  align-items: center; justify-content: center;
  flex-direction: column; gap: 5px;
}
.nav-burger span { width: 16px; height: 1.5px; background: var(--white); }

/* ------- Invitation signal ------- */
.invitation-signal {
  font-size: 10px;
  letter-spacing: 0.32em;
  color: rgba(184,150,58,0.72);
  text-transform: uppercase;
  margin: 0 0 26px;
}

/* ------- Marquee ------- */
.marquee {
  display: flex;
  width: 100%;
  overflow: hidden;
  user-select: none;
  position: relative;
  z-index: 3;
}
.marquee-track {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  gap: 56px;
  padding-right: 56px;
  animation: marquee-scroll 55s linear infinite;
  will-change: transform;
}
.marquee.fast .marquee-track { animation-duration: 40s; }
.marquee.reverse .marquee-track { animation-direction: reverse; }
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 56px;
  font-family: var(--display);
  letter-spacing: 0.02em;
  white-space: nowrap;
  color: var(--white);
}
.marquee-item .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: inline-block;
  flex: 0 0 auto;
}
.marquee.meta .marquee-item {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.26em;
  font-weight: 500;
  color: rgba(246,242,235,0.65);
  gap: 32px;
  padding: 16px 0;
}
.marquee.meta .marquee-track { gap: 32px; padding-right: 32px; }
.marquee.meta .dot { width: 4px; height: 4px; }

.marquee-item .gold-item {
  color: rgba(184,150,58,0.8);
  letter-spacing: 0.34em;
}
.marquee-item .gold-dot {
  background: rgba(184,150,58,0.45) !important;
}

@keyframes marquee-scroll {
  from { transform: translate3d(0,0,0); }
  to   { transform: translate3d(-50%, 0, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation-duration: 180s; }
}

/* ------- Hero ------- */
.hero {
  position: relative;
  min-height: 100vh;
  background: #000;
  color: var(--white);
  display: flex; flex-direction: column;
  overflow: hidden;
  padding-top: 110px;
  padding-bottom: 0;
}
.hero-stage {
  flex: 1;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 3;
  padding-bottom: 40px;
}
.hero-foot {
  position: relative;
  z-index: 3;
  border-top: 1px solid rgba(255,255,255,0.07);
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.65;
  filter: brightness(0.6) saturate(0.8) contrast(1.05);
}
.hero-vignette {
  position: absolute; inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg,
      rgba(0,0,0,0.82) 0%,
      rgba(0,0,0,0.65) 30%,
      rgba(0,0,0,0.30) 58%,
      rgba(0,0,0,0.05) 78%,
      rgba(0,0,0,0) 100%),
    linear-gradient(180deg,
      rgba(0,0,0,0.35) 0%,
      rgba(0,0,0,0.08) 22%,
      rgba(0,0,0,0) 55%,
      rgba(0,0,0,0.28) 85%,
      rgba(0,0,0,0.78) 100%);
}
.hero .hex-bg { display: none; }

.hero-inner {
  position: relative; z-index: 3; width: 100%;
  max-width: var(--maxw); margin: 0 auto;
  padding-left: var(--gutter); padding-right: var(--gutter);
}

.hero .eyebrow.on-dark { color: rgba(184,150,58,0.78); font-weight: 600; }

.hero-inner h1.h-display {
  color: var(--white);
  text-shadow: 0 2px 24px rgba(0,0,0,0.45), 0 1px 2px rgba(0,0,0,0.4);
  -webkit-font-smoothing: antialiased;
}

.hero-body {
  max-width: 620px; margin-top: 28px; font-size: 16px; line-height: 1.8;
  color: rgba(255,255,255,0.82) !important;
  text-shadow: 0 1px 10px rgba(0,0,0,0.55);
  font-weight: 400;
}
.hero-body p + p { margin-top: 14px; }

.hero-ctas { display: flex; flex-wrap: wrap; gap: 16px 32px; align-items: center; margin-top: 36px; }

.hero-inner .btn-ghost {
  color: rgba(255,255,255,0.88);
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(0,0,0,0.28);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.hero-inner .btn-ghost:hover {
  background: rgba(255,255,255,0.92);
  color: var(--navy-deep);
  border-color: rgba(255,255,255,0.9);
}

/* Hero invite link */
.hero-invite-link {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(184,150,58,0.82);
  border-bottom: 1px solid rgba(184,150,58,0.25);
  padding-bottom: 2px;
  text-decoration: none;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.hero-invite-link:hover { color: var(--gold); border-color: rgba(184,150,58,0.5); }

.hex-bg {
  position: absolute; inset: 0; z-index: 1;
  background-image:
    radial-gradient(ellipse at top, rgba(28,43,74,0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 90%, rgba(28,43,74,0.12) 0%, transparent 50%);
  pointer-events: none;
}
.hex-bg::before {
  content: "";
  position: absolute; inset: 0;
  opacity: 0.06;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 104' width='120' height='104'><polygon points='30,0 90,0 120,52 90,104 30,104 0,52' fill='none' stroke='%23B8963A' stroke-width='0.8'/></svg>");
  background-size: 180px 156px;
  background-position: center;
  mask-image: radial-gradient(ellipse at center, black 35%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 35%, transparent 80%);
}

/* ------- Editorial Strip (replaces Stats Bar) ------- */
.editorial-strip {
  background: var(--off-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}
.editorial-strip-inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  row-gap: 8px;
}
.editorial-strip-inner .strip-item {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-right: 20px;
}
.editorial-strip-inner .strip-sep {
  width: 1px;
  height: 10px;
  background: var(--border);
  margin-right: 20px;
  flex-shrink: 0;
  display: inline-block;
}
.editorial-strip-inner .strip-gold {
  color: rgba(184,150,58,0.72);
}

/* ------- Countdown Strip ------- */
.countdown-strip {
  background: var(--navy-deep);
  color: var(--white);
  padding: clamp(48px, 6vw, 80px) 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  position: relative;
  overflow: hidden;
}
.countdown-strip::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 15% 50%, rgba(28,43,74,0.3) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 50%, rgba(28,43,74,0.2) 0%, transparent 55%);
  pointer-events: none;
}
.countdown-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(32px, 5vw, 80px);
  position: relative;
  flex-wrap: wrap;
}
.countdown-strip-copy { flex: 0 1 auto; }
.countdown-strip-copy .h2 { color: var(--white); }
.cd-strip {
  font-size: clamp(34px, 4.4vw, 64px);
  gap: clamp(16px, 2.4vw, 32px);
  align-items: baseline;
  flex-wrap: wrap;
}
.cd-strip .seg { flex-direction: column; align-items: center; gap: 6px; }
.cd-strip .suf {
  display: block;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(184,150,58,0.65);
  margin-top: 2px;
}
.cd-strip .sep {
  width: 1px;
  height: clamp(40px, 4vw, 56px);
  background: rgba(255,255,255,0.1);
  align-self: center;
}
.cd-inline {
  display: inline-flex;
  align-items: baseline;
  gap: 18px;
  font-family: var(--display);
  font-size: clamp(28px, 3.4vw, 52px);
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--white);
  font-variant-numeric: tabular-nums;
}
.cd-inline .seg { display: inline-flex; align-items: baseline; gap: 4px; }
.cd-inline .suf { font-family: var(--sans); font-size: 0.36em; letter-spacing: 0.12em; color: rgba(184,150,58,0.65); font-weight: 600; }

/* ------- About ------- */
.about-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(40px, 6vw, 96px); align-items: start; }
.about-copy p { margin: 0 0 18px; font-size: 16px; line-height: 1.82; color: var(--text-muted); max-width: 56ch; }
.about-copy p strong { color: var(--text-dark); font-weight: 600; }

/* Centred variant — narrow column, used above a full-bleed gallery */
.about-copy--centered { max-width: 720px; margin: 0 auto clamp(48px, 6vw, 72px); text-align: center; }
.about-copy--centered p { margin-left: auto; margin-right: auto; }

/* ------- About gallery — full-bleed horizontal scroller ------- */
.about-gallery { position: relative; width: 100%; margin-bottom: clamp(48px, 6vw, 80px); }
.gallery-track {
  display: flex;
  gap: 0.5cm;
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding: 0 var(--gutter);
}
.gallery-track::-webkit-scrollbar { display: none; }

.gallery-item { flex: 0 0 auto; width: clamp(240px, 26vw, 380px); margin: 0; }

.gallery-item-img { width: 100%; aspect-ratio: 3 / 4; border-radius: var(--r-sm); overflow: hidden; }
.gallery-item-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 48px;
  height: 48px;
  border-radius: var(--r-pill);
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.92);
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0,0,0,0.10);
  transition: background 0.2s ease;
}
.gallery-arrow:hover { background: var(--white); }
.gallery-arrow-prev { left: clamp(12px, 2vw, 28px); }
.gallery-arrow-next { right: clamp(12px, 2vw, 28px); }
.gallery-arrow svg { display: block; }

@media (max-width: 640px) {
  .gallery-arrow { display: none; }
}

/* Feature stack — editorial thin-rule list */
.feature-stack { display: flex; flex-direction: column; border-bottom: 1px solid var(--border); }
.feature-card {
  background: transparent;
  border: none;
  border-radius: 0;
  border-top: 1px solid var(--border);
  padding: 20px 0;
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 16px;
  align-items: baseline;
  position: relative;
  transition: none;
}
.feature-card:hover { transform: none; box-shadow: none; }
.feature-card .num {
  position: static;
  font-family: var(--serif);
  font-size: 11px;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.06em;
}
.feature-card .h4 {
  color: var(--text-dark);
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 500;
  grid-column: 2;
}
.feature-card p {
  margin: 0;
  font-size: 13px;
  line-height: 1.65;
  color: var(--text-muted);
  grid-column: 2;
}

/* ------- Themes ------- */
.themes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.theme-card {
  position: relative;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  border-right: 1px solid rgba(255,255,255,0.08);
  border-radius: 0;
  padding: 32px 28px;
  min-height: 220px;
  overflow: hidden;
  transition: background 0.25s ease;
}
.theme-card:nth-child(3n) { border-right: none; }
.theme-card:hover { background: rgba(255,255,255,0.025); }
.theme-card .num {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1;
  font-weight: 400;
  color: rgba(184,150,58,0.5);
  display: block;
  margin-bottom: 16px;
}
.theme-card .h3 { margin-bottom: 10px; font-size: clamp(18px, 1.8vw, 22px); }
.theme-card p { font-size: 14px; line-height: 1.65; color: rgba(255,255,255,0.58); margin: 0; }
.theme-card .hex-mark {
  position: absolute; right: -40px; bottom: -40px;
  width: 160px; height: 160px;
  opacity: 0.03;
  pointer-events: none;
}

.attendee-block { margin-top: clamp(60px, 7vw, 100px); }
.attendee-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 5vw, 72px); align-items: start; }

/* Role list — editorial italic prose (replaces pill tags) */
.role-list {
  font-family: var(--serif);
  font-size: 17px;
  font-style: italic;
  color: rgba(255,255,255,0.58);
  line-height: 1.8;
  max-width: 60ch;
  margin: 20px 0 0;
}

/* Keep .role-tags and .role-tag as fallback if used elsewhere */
.role-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.role-tag {
  font-size: 11px;
  padding: 8px 14px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 0;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  background: rgba(255,255,255,0.02);
}

/* ------- Speakers ------- */
.speakers-teaser {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 2px solid var(--gold);
  padding: clamp(56px, 7vw, 96px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.speakers-teaser .teaser-num {
  font-family: var(--display);
  font-size: clamp(80px, 11vw, 160px);
  line-height: 1;
  font-weight: 400;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.speakers-teaser .teaser-num sup {
  color: var(--navy-light);
  font-size: 0.4em;
  vertical-align: top;
  margin-left: 6px;
}
.speakers-teaser .teaser-sub {
  display: block;
  margin-top: 14px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
}
.speakers-teaser p { font-size: 16px; line-height: 1.78; color: var(--text-muted); margin: 0 0 28px; }
.speakers-teaser .h3 { margin-bottom: 16px; }
.speakers-teaser .btn-link { color: var(--navy); }
.speakers-teaser .btn-link:hover { color: var(--navy-light); border-bottom-color: var(--navy-light); }

/* ------- Speaker Cards ------- */
.speaker-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.speaker-card {
  background: var(--navy-deep);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.speaker-card__photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.speaker-card__body {
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.speaker-card__eyebrow {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 16px;
}
.speaker-card__name {
  font-family: var(--display);
  font-size: clamp(24px, 2.8vw, 36px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--white);
  margin: 0 0 20px;
  letter-spacing: 0.01em;
}
.speaker-card__rule {
  width: 40px;
  height: 1px;
  background: var(--gold);
  border: none;
  margin: 0 0 20px;
}
.speaker-card__title {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin: 0 0 4px;
}
.speaker-card__org {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--blue-soft);
  margin: 0 0 16px;
}
.speaker-card__bio {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  line-height: 1.7;
  color: var(--blue-soft);
  margin: 0 0 24px;
  flex: 1;
}
.speaker-card__footer {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 16px;
}
.speaker-card__link {
  display: inline-block;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
  border-bottom: 1px solid rgba(184,150,58,0.4);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.speaker-card__link:hover { color: var(--white); border-bottom-color: var(--white); }
@media (max-width: 768px) {
  .speaker-grid { grid-template-columns: 1fr; }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .speaker-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ------- Agenda ------- */
.tabs {
  display: inline-flex;
  gap: 0;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 0;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.tab {
  padding: 13px 24px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  border-radius: 0;
  border-right: 1px solid rgba(255,255,255,0.12);
  transition: background 0.2s ease, color 0.2s ease;
}
.tab:last-child { border-right: none; }
.tab.active { background: var(--navy); color: var(--white); }
.tab:hover:not(.active) { color: var(--white); }

.tab-panel { display: none; }
.tab-panel.active { display: block; animation: fadein 0.35s ease; }
@keyframes fadein { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }

.agenda-row {
  display: grid;
  grid-template-columns: 100px 1fr 200px;
  gap: 32px;
  padding: 20px 22px;
  border-radius: 0;
  align-items: start;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.agenda-row:nth-child(odd) { background: rgba(255,255,255,0.015); }
.agenda-row.break { opacity: 0.45; }
.agenda-row .time { font-family: var(--serif); font-size: 20px; color: rgba(184,150,58,0.7); font-weight: 400; }
.agenda-row .title { color: var(--white); font-weight: 500; font-size: 16px; margin-bottom: 8px; line-height: 1.3; }
.agenda-row .format { font-size: 13.5px; color: rgba(255,255,255,0.55); line-height: 1.58; margin-bottom: 12px; max-width: 56ch; }
.agenda-row .output {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; letter-spacing: 0.04em;
  color: rgba(184,150,58,0.75);
  padding: 5px 11px;
  background: rgba(184,150,58,0.08);
  border-radius: 0;
}
.agenda-row .spk-meta { font-size: 12px; color: rgba(255,255,255,0.55); text-align: right; letter-spacing: 0.04em; }
.agenda-row .spk-meta .badge {
  display: inline-block;
  padding: 5px 11px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 0;
}

.dinner-summary {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-left: 2px solid var(--gold);
  border-radius: 0;
  padding: clamp(36px, 5vw, 64px);
}
.dinner-summary .h3 { color: var(--white); margin-bottom: 12px; }
.dinner-summary p { font-size: 15px; line-height: 1.75; color: rgba(255,255,255,0.7); max-width: 64ch; }
.dinner-summary .eyebrow.on-dark { color: var(--gold); }

/* ------- Sponsors ------- */
.tier-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.tier-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 0;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  display: flex; flex-direction: column;
}
.tier-card.platinum {
  background: var(--navy-deep); color: var(--white);
  border-color: var(--navy-deep);
  border-left: 3px solid var(--gold);
  padding-left: 32px;
}
.tier-card.gold  { border-top: 2px solid #B8963A; }
.tier-card.silver { border-top: 2px solid #9DA7B8; }
.tier-card.bronze { border-top: 2px solid #B97A4A; }
.tier-badge {
  font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 700;
  margin-bottom: 16px; display: inline-block; padding: 5px 10px; border: 1px solid currentColor;
}
.tier-card.platinum .tier-badge { background: var(--gold); color: #1B1407; padding: 5px 12px; border: none; }
.tier-card.gold    .tier-badge { color: #8A6B20; }
.tier-card.silver  .tier-badge { color: #6C7589; }
.tier-card.bronze  .tier-badge { color: #8A5A35; }
.tier-card .tier-name  { font-family: var(--serif); font-size: 20px; margin-bottom: 6px; font-weight: 400; }
.tier-card .tier-price { font-size: 12px; color: var(--text-muted); margin-bottom: 18px; }
.tier-card.platinum .tier-price { color: rgba(255,255,255,0.55); }
.tier-card ul { list-style: none; padding: 0; margin: 0 0 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.tier-card li { font-size: 13px; line-height: 1.5; padding-left: 18px; position: relative; color: var(--text-muted); }
.tier-card.platinum li { color: rgba(255,255,255,0.68); }
.tier-card li::before { content: ""; position: absolute; left: 0; top: 8px; width: 8px; height: 1px; background: currentColor; opacity: 0.4; }

.sponsor-logos { margin-top: 0; display: flex; flex-direction: column; gap: 28px; }
.sponsor-row .label { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 600; color: var(--text-muted); margin-bottom: 14px; }
.sponsor-row .label.platinum { color: var(--navy); }
.sponsor-row .label.gold { color: #8A6B20; }
.sponsor-row .label.silver { color: #6C7589; }
.sponsor-row .label.bronze { color: #8A5A35; }
.sponsor-row .slots { display: grid; gap: 14px; }
.sponsor-row.platinum .slots { grid-template-columns: 1fr; }
.sponsor-row.gold   .slots { grid-template-columns: repeat(2, 1fr); }
.sponsor-row.silver .slots { grid-template-columns: repeat(3, 1fr); }
.sponsor-row.bronze .slots { grid-template-columns: repeat(4, 1fr); }
/* Partners section — public-facing logo grid (no tier labels shown) */
.sponsor-row.partner-primary .slots { grid-template-columns: repeat(4, 1fr); }
/* Founding / Strategic partner tiers — sized for up to 20 logos across both rows */
.sponsor-row.founding-partner .slots  { grid-template-columns: repeat(4, 1fr); }
.sponsor-row.strategic-partner .slots { grid-template-columns: repeat(5, 1fr); }
.sponsor-row.founding-partner  .label { color: var(--navy); }
.sponsor-row.strategic-partner .label { color: var(--text-muted); }
/* No box — logos placed directly, full colour */
.sponsor-row.founding-partner  .logo-slot,
.sponsor-row.strategic-partner .logo-slot { border: none; background: none; height: auto; justify-content: flex-start; }
.sponsor-row.founding-partner  .logo-slot img { max-height: 110px; max-width: 100%; filter: none; opacity: 1; }
.sponsor-row.strategic-partner .logo-slot img { max-height: 140px; max-width: 100%; filter: none; opacity: 1; }
.sponsor-row.founding-partner  .logo-slot:hover img,
.sponsor-row.strategic-partner .logo-slot:hover img { filter: none; opacity: 1; }

.sponsor-row.session-partner .slots { grid-template-columns: repeat(5, 1fr); }
.sponsor-row.session-partner .label { color: var(--text-muted); }
.sponsor-row.session-partner .logo-slot { border: none; background: none; height: auto; justify-content: flex-start; }
.sponsor-row.session-partner .logo-slot img { max-height: 100px; max-width: 100%; filter: none; opacity: 1; }
.sponsor-row.session-partner .logo-slot:hover img { filter: none; opacity: 1; }
.logo-slot {
  border: 1px solid var(--border);
  border-radius: 0;
  height: 100px;
  display: flex; align-items: center; justify-content: center;
  background: var(--white);
  transition: border-color 0.2s ease;
}
.logo-slot img {
  max-height: 48px;
  max-width: 75%;
  width: auto;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.65;
  transition: opacity 0.2s ease, filter 0.2s ease;
}
.logo-slot:hover img { opacity: 1; filter: grayscale(0); }
.sponsor-row.platinum .logo-slot { height: 140px; font-size: 13px; }
.sponsor-row.bronze  .logo-slot { height: 76px; }

/* Quiet partnership enquiry link */
.partners-enquiry {
  margin-top: clamp(36px, 4vw, 52px);
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.01em;
}
.partners-enquiry a {
  color: var(--navy);
  border-bottom: 1px solid var(--border);
  padding-bottom: 1px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.partners-enquiry a:hover { color: var(--gold); border-color: var(--gold); }

/* Legacy sponsor-cta (kept for potential internal use; fix contrast) */
.sponsor-cta {
  background: var(--navy-deep);
  color: var(--white);
  padding: clamp(28px, 4vw, 44px) clamp(32px, 5vw, 56px);
  border-radius: 0;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
  margin-top: clamp(48px, 5vw, 72px);
}
.sponsor-cta .h3 { color: var(--white); margin: 0 0 6px; }
.sponsor-cta p { margin: 0; color: rgba(255,255,255,0.80); font-size: 14px; max-width: 56ch; }

/* ------- Dinner ------- */
.dinner-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(40px, 6vw, 96px); align-items: start; }
.dinner-text p { font-size: 16px; line-height: 1.8; color: rgba(255,255,255,0.7); }

.timeline { position: relative; padding-left: 28px; }
.timeline::before {
  content: ""; position: absolute; left: 6px; top: 8px; bottom: 8px;
  width: 1px; background: rgba(255,255,255,0.12);
}
.timeline-item { position: relative; padding: 12px 0 12px 12px; }
.timeline-item::before {
  content: ""; position: absolute; left: -28px; top: 18px;
  width: 11px; height: 11px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0.6;
}
.timeline-item .time  { font-family: var(--serif); font-size: 17px; color: rgba(184,150,58,0.7); font-weight: 400; display: block; }
.timeline-item .title { font-size: 14px; color: var(--white); font-weight: 500; margin-top: 2px; display: block; }
.timeline-item .desc  { font-size: 13px; color: rgba(255,255,255,0.52); margin-top: 4px; }

.dinner-spec {
  margin: 32px 0 0; padding: 24px 0 0;
  border-top: 1px solid rgba(184,150,58,0.14);
  display: grid; gap: 14px;
}
.dinner-spec > div { display: grid; grid-template-columns: 110px 1fr; gap: 24px; align-items: baseline; }
.dinner-spec dt { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(184,150,58,0.55); font-weight: 600; }
.dinner-spec dd { margin: 0; font-size: 14px; color: rgba(255,255,255,0.75); line-height: 1.55; }

/* ------- Venue ------- */
.venue-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.venue-card { background: var(--white); border: 1px solid var(--border); border-radius: 0; padding: clamp(28px, 4vw, 44px); }
.venue-image, .venue-map {
  background: var(--off-white);
  border-radius: 0;
  height: 360px; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  position: relative; overflow: hidden;
}
.venue-image::after, .venue-map::after {
  content: ""; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(135deg, transparent 0 10px, rgba(27,45,74,0.03) 10px 11px);
}
.venue-image .lbl, .venue-map .lbl {
  position: relative; display: inline-flex; align-items: center; gap: 8px;
  font-family: monospace; font-size: 11px;
  padding: 8px 14px; background: rgba(255,255,255,0.9);
  border: 1px solid var(--border); border-radius: var(--r-sm); color: var(--text-muted);
}

.placeholder {
  border: 1px dashed var(--gold);
  background: var(--gold-soft);
  padding: 16px 20px; border-radius: 0;
  color: var(--gold-text); font-style: italic; font-size: 13px; display: block; margin: 14px 0;
}
.placeholder strong { font-style: normal; color: var(--gold-text); }

/* ------- Tickets ------- */
.tickets-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 1080px; }
.ticket-card {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 0; padding: 28px 24px; display: flex; flex-direction: column; position: relative;
}
.ticket-card.best { border-color: var(--gold); background: rgba(184,150,58,0.06); }
.ticket-card.best .best-badge {
  position: absolute; top: -12px; left: 24px;
  font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase;
  background: var(--gold); color: #1B1407;
  padding: 5px 12px; border-radius: 0; font-weight: 700;
}
.ticket-card .t-name  { font-size: 12px; color: rgba(184,150,58,0.75); letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600; margin-bottom: 10px; }
.ticket-card .t-price { font-family: var(--serif); font-size: 40px; font-weight: 400; color: var(--white); line-height: 1; }
.ticket-card .t-price .cur { font-size: 17px; color: rgba(184,150,58,0.7); vertical-align: top; margin-right: 4px; }
.ticket-card .t-meta { font-size: 13px; color: rgba(255,255,255,0.55); margin-top: 14px; line-height: 1.5; }
.ticket-card .t-cta { margin-top: auto; padding-top: 22px; }
.ticket-card .t-cta .btn { width: 100%; justify-content: center; padding: 12px 18px; font-size: 11px; }

.tickets-info { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 36px; }
.info-card {
  background: rgba(255,255,255,0.025); border: 1px solid rgba(255,255,255,0.07);
  border-radius: 0; padding: 28px 30px;
}
.info-card .h4 { color: var(--white); margin-bottom: 8px; }
.info-card p   { color: rgba(255,255,255,0.62); font-size: 14px; margin: 0; line-height: 1.6; }

/* ------- Media & Press ------- */
.media-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: stretch; }
.media-card { background: var(--white); border: 1px solid var(--border); border-radius: 0; padding: 36px 32px; }
.media-card .h3 { margin-bottom: 8px; }
.media-card p   { color: var(--text-muted); margin: 0 0 22px; font-size: 14px; }

/* ------- About the Organiser ------- */
.organiser-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(56px, 7vw, 120px); align-items: start; }
.organiser-copy p { font-size: 16px; line-height: 1.82; color: var(--text-muted); margin: 0 0 22px; max-width: 58ch; }
.organiser-copy p strong { color: var(--text-dark); font-weight: 600; }
.organiser-aside {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 2px solid var(--gold);
  padding: clamp(36px, 4vw, 52px);
}
.organiser-aside .h3 { margin-bottom: 18px; }
.organiser-aside p { color: var(--text-muted); font-size: 14px; line-height: 1.72; margin: 0 0 18px; }
.organiser-aside .contact-row {
  display: flex; flex-direction: column; gap: 14px;
  margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--border);
}
.organiser-aside .contact-row a {
  font-family: var(--display); font-size: 17px; letter-spacing: 0.04em;
  color: var(--navy); border-bottom: 1px solid var(--gold); padding-bottom: 4px;
  align-self: flex-start;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.organiser-aside .contact-row a:hover { color: var(--navy-light); border-color: var(--navy); }
.organiser-aside .contact-label { font-size: 9px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--text-muted); font-weight: 600; }

/* ------- Footer ------- */
.footer { background: var(--navy-deep); color: rgba(255,255,255,0.65); padding: 72px 0 32px; }
.footer-top { display: grid; grid-template-columns: 1fr 1.8fr; gap: clamp(56px, 8vw, 120px); align-items: start; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.footer-brand .footer-social { margin-top: 28px; }
.footer-brand p { font-size: 13px; line-height: 1.68; color: rgba(255,255,255,0.45); margin-top: 18px; max-width: 36ch; }
.footer-nav { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(24px, 4vw, 56px); }
.footer-nav h5 { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(184,150,58,0.65); margin: 0 0 14px; font-weight: 600; }
.footer-nav ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-nav a { font-size: 13px; color: rgba(255,255,255,0.62); }
.footer-nav a:hover { color: var(--white); }
.footer-nav .footer-email a { color: rgba(255,255,255,0.8); }
.footer-nav .footer-email a:hover { color: var(--gold); }
.footer-nav .footer-email .em-label { display: block; font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 4px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.12); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.65);
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: #1B1407; }
.footer-bot { display: flex; justify-content: space-between; align-items: center; gap: 32px; padding-top: 28px; font-size: 12px; color: rgba(255,255,255,0.38); }
.footer-bot .links a { margin: 0; }
.footer-bot .links a + a { margin-left: 22px; }
.footer-bot .links { display: flex; flex-wrap: wrap; align-items: baseline; gap: 8px 22px; }
/* Inside a sentence the 22px gap between footer links reads as a mistake. */
.footer-credit a + a,
.footer-credit a { margin-left: 0; }
.footer-credit a { color: inherit; text-decoration: underline; text-underline-offset: 2px; }
.footer-credit a:hover { color: var(--gold, #B8963A); }

/* ------- Reveal Animations ------- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ------- Mobile Drawer ------- */
.drawer {
  position: fixed; inset: 0; z-index: 60;
  background: var(--navy-deep); color: var(--white);
  padding: 24px var(--gutter);
  transform: translateX(100%);
  transition: transform 0.3s ease, visibility 0.3s ease;
  display: flex; flex-direction: column;
  pointer-events: none;
  visibility: hidden;
}
.drawer.open { transform: translateX(0); pointer-events: auto; visibility: visible; }
.drawer-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 32px; }
.drawer-close { font-size: 24px; color: var(--white); padding: 8px; }
.drawer-links { display: flex; flex-direction: column; gap: 4px; }
.drawer-links a { font-family: var(--serif); font-size: 26px; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.06); color: var(--white); }

/* ------- Responsive ------- */
@media (max-width: 1080px) {
  .nav-links { display: none; }

  /* The text CTA is ~184px wide. On a 375px bar, alongside the logo and the
     edition picker, it pushed the burger to x=434 — clean off the right edge,
     where the nav clips it — leaving no way to open the drawer at all.
     The drawer carries the same call to action, so hide it here. */
  .nav-intro-link,
  .nav-write-link { display: none; }

  /* Never let the edition picker squeeze the burger out again. */
  .nav-burger { flex: 0 0 auto; }
  .city-pick { min-width: 0; }
  .city-pick-btn { max-width: 46vw; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .themes-grid { grid-template-columns: repeat(2, 1fr); }
  .themes-grid .theme-card:nth-child(2n)  { border-right: none; }
  .themes-grid .theme-card:nth-child(3n)  { border-right: 1px solid rgba(255,255,255,0.08); }
  .tier-grid { grid-template-columns: repeat(2, 1fr); }
  .tickets-grid { grid-template-columns: repeat(3, 1fr); }
  .organiser-grid, .speakers-teaser { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 760px) {
  .nav-burger { display: flex; }
  .city-pick { display: flex; }
  .nav-cta .btn { padding: 8px 14px; font-size: 11px; }
  .about-grid, .attendee-grid, .dinner-grid, .venue-grid, .media-grid, .tickets-info { grid-template-columns: 1fr; gap: 36px; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-nav { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; }
  .themes-grid { grid-template-columns: 1fr; }
  .themes-grid .theme-card { border-right: none !important; }
  .tier-grid, .tickets-grid { grid-template-columns: 1fr; }
  .agenda-row { grid-template-columns: 72px 1fr; gap: 14px; }
  .agenda-row .spk-meta { display: none; }
  .sponsor-cta { flex-direction: column; align-items: flex-start; }
  .sponsor-row.partner-primary .slots { grid-template-columns: repeat(2, 1fr); }
  .footer-bot { flex-direction: column; align-items: flex-start; gap: 12px; }
  .hero { padding-top: 110px; }
  .hero-vignette {
    background:
      linear-gradient(180deg,
        rgba(0,0,0,0.58) 0%,
        rgba(0,0,0,0.28) 25%,
        rgba(0,0,0,0.22) 55%,
        rgba(0,0,0,0.55) 85%,
        rgba(0,0,0,0.88) 100%);
  }
  .countdown-strip-inner { flex-direction: column; align-items: flex-start; }
  .cd-strip .sep { display: none; }
  .cd-strip { gap: 24px 20px; }
  .dinner-spec > div { grid-template-columns: 1fr; gap: 4px; }
  .editorial-strip-inner { flex-direction: column; align-items: flex-start; gap: 8px; }
  .editorial-strip-inner .strip-sep { display: none; }
}

/* ------- Editorial Hero (UHNW direction) ------- */
.hero-editorial {
  min-height: auto;
  background: var(--navy-deep);
  color: var(--white);
  padding: clamp(140px, 14vw, 200px) 0 clamp(56px, 7vw, 96px);
  display: block;
  overflow: hidden;
}
.hero-editorial .hero-video,
.hero-editorial .hero-vignette,
.hero-editorial .hex-bg,
.hero-editorial .hero-foot { display: none; }
.hero-editorial .hero-stage {
  flex: none;
  display: block;
  padding-bottom: 0;
  background: transparent;
}
.hero-editorial .hero-inner {
  max-width: 720px;
  margin: 0;
  padding-left: 0;
  padding-right: 0;
}
.hero-editorial .invitation-signal { margin-bottom: 26px; }
.hero-editorial h1.h-display {
  margin: 0 0 26px;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 5.2vw, 62px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: rgba(246,242,235,0.96);
  text-shadow: none;
}
.hero-editorial .hero-body {
  margin: 0 0 36px;
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.78;
  color: rgba(246,242,235,0.6) !important;
  text-shadow: none;
  max-width: 56ch;
  font-weight: 400;
}
.hero-editorial .hero-ctas {
  margin-top: 0;
  display: flex;
  align-items: center;
  gap: 28px 36px;
  flex-wrap: wrap;
}
.hero-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(246,242,235,0.7);
  border-bottom: 1px solid rgba(246,242,235,0.2);
  padding-bottom: 3px;
  text-decoration: none;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.hero-link:hover { color: var(--white); border-color: rgba(246,242,235,0.55); }
.hero-link .arrow { transition: transform 0.2s ease; }
.hero-link:hover .arrow { transform: translateX(4px); }
.hero-link--gold {
  color: rgba(184,150,58,0.82);
  border-bottom-color: rgba(184,150,58,0.28);
}
.hero-link--gold:hover { color: var(--gold); border-color: rgba(184,150,58,0.6); }

.hero-detail-strip {
  margin-top: clamp(48px, 6vw, 72px);
  padding-top: 22px;
  border-top: 1px solid rgba(246,242,235,0.08);
  display: grid;
  grid-template-columns: max-content 1px max-content 1px max-content;
  column-gap: 18px;
  row-gap: 10px;
  align-items: center;
  justify-content: start;
  justify-items: start;
}
.hero-detail-row { display: contents; }
.hero-detail-row--meta > span:first-child,
.hero-detail-row--meta > .hero-sep {
  margin-top: 6px;
  padding-top: 12px;
  border-top: 1px solid rgba(246,242,235,0.05);
}
.hero-detail-row--meta > span:last-child {
  margin-top: 6px;
  padding-top: 12px;
  border-top: 1px solid rgba(246,242,235,0.05);
}
.hero-detail-strip > .hero-detail-row > span {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(246,242,235,0.4);
  margin-right: 0;
}
.hero-detail-strip .hero-sep {
  width: 1px;
  height: 9px;
  background: rgba(246,242,235,0.1);
  margin-right: 0;
  flex-shrink: 0;
  display: inline-block;
  padding: 0;
  justify-self: center;
}
.hero-detail-strip .hero-gold { color: rgba(184,150,58,0.55); }

@media (max-width: 640px) {
  .hero-detail-strip {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .hero-detail-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
  }
  .hero-detail-row .hero-sep {
    display: inline-block;
  }
  .hero-detail-row--meta {
    margin-top: 4px;
    padding-top: 10px;
    border-top: 1px solid rgba(246,242,235,0.05);
  }
  .hero-detail-row--meta > span:first-child,
  .hero-detail-row--meta > .hero-sep {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
  }
  .hero-detail-row--meta > span:last-child {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
  }
}

/* ------- Editorial Themes List (replaces 3-col card grid) ------- */
.themes-editorial {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.5fr);
  gap: clamp(40px, 6vw, 88px);
  align-items: start;
}
.themes-intro .eyebrow { color: var(--blue); }
.themes-intro .h2 {
  margin: 12px 0 18px;
  color: rgba(246,242,235,0.92);
}
.themes-intro .lede { font-size: 14px; color: rgba(246,242,235,0.5); }

.themes-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-bottom: 1px solid rgba(246,242,235,0.08);
}
.themes-list .theme-row {
  border-top: 1px solid rgba(246,242,235,0.08);
  padding: 18px 0;
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 16px;
  align-items: baseline;
}
.themes-list .theme-row .num {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  color: rgba(184,150,58,0.5);
  letter-spacing: 0.04em;
}
.themes-list .theme-title {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  color: rgba(246,242,235,0.9);
  margin: 0 0 6px;
  letter-spacing: 0.01em;
  line-height: 1.3;
}
.themes-list .theme-row p {
  margin: 0;
  font-size: 13px;
  line-height: 1.65;
  color: rgba(246,242,235,0.46);
}

@media (max-width: 880px) {
  .themes-editorial { grid-template-columns: 1fr; gap: 32px; }
}

/* ------- The Thirty-Three (dinner) ------- */
.thirty-three {
  display: grid;
  grid-template-columns: minmax(220px, 320px) 1fr;
  gap: clamp(48px, 7vw, 120px);
  align-items: start;
  padding-top: clamp(24px, 3vw, 48px);
  border-top: 1px solid rgba(184,150,58,0.18);
}
.tt-mark {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.tt-mark .tt-roman {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(64px, 9vw, 120px);
  line-height: 0.95;
  letter-spacing: 0.04em;
  color: var(--gold);
  display: block;
}
.tt-mark .tt-rule {
  width: 64px;
  height: 1px;
  background: rgba(184,150,58,0.55);
  display: block;
}
.tt-mark .tt-label {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(184,150,58,0.78);
}
.tt-body .h2 {
  color: var(--white);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.01em;
}
.tt-body p {
  margin: 22px 0 0;
  font-size: 15.5px;
  line-height: 1.78;
  color: rgba(255,255,255,0.7);
  max-width: 62ch;
}
.tt-body p + p { margin-top: 14px; }
.tt-body .dinner-spec {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(184,150,58,0.18);
}
.tt-body .dinner-spec > div { grid-template-columns: 130px 1fr; }

@media (max-width: 860px) {
  .thirty-three { grid-template-columns: 1fr; gap: 32px; }
  .tt-mark .tt-roman { font-size: 80px; }
}

/* ------- Hero detail row active/inactive (city switcher) ------- */
.hero-detail-row { transition: opacity 0.3s ease; }
.hero-detail-row.is-inactive { opacity: 0.38; }
.hero-detail-row.is-inactive .hero-sep { background: rgba(246,242,235,0.06); }
.hero-detail-row.is-active > span:not(.hero-sep) { color: rgba(246,242,235,0.78); }

/* ------- Why Attend grid ------- */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 32px; margin-top: 40px; }
.why-card { padding: 28px; border: 1px solid rgba(13,19,34,0.08); border-radius: 0; }
.why-card .h4 { margin-bottom: 10px; }
.why-card p { font-size: 15px; line-height: 1.6; color: rgba(13,19,34,0.72); }

.format-blocks {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
}

.format-block {
  border-bottom: 1px solid var(--border);
  padding: clamp(28px, 3.5vw, 48px) 0;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: clamp(24px, 4vw, 80px);
  align-items: baseline;
}

.format-block .h4 {
  color: var(--text-dark);
  font-size: 14px;
  font-weight: 500;
  flex-shrink: 0;
}

.format-block p {
  margin: 0;
  font-size: 15px;
  line-height: 1.82;
  color: var(--text-muted);
  max-width: 68ch;
}

@media (max-width: 640px) {
  .format-block {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

/* ------- FAQ ------- */
.faq-list { max-width: 800px; margin: 40px auto 0; }
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.1); padding: 20px 0; }
.faq-q { cursor: pointer; font-size: 17px; font-weight: 500; color: var(--white); list-style: none; padding-right: 24px; position: relative; }
.faq-q::after { content: '+'; position: absolute; right: 0; top: 0; font-size: 22px; line-height: 1; color: var(--gold); transition: transform 0.2s; }
details[open] .faq-q::after { content: '−'; }
.faq-q::-webkit-details-marker { display: none; }
.faq-a { margin-top: 12px; font-size: 15px; line-height: 1.7; color: rgba(255,255,255,0.75); }
.faq-a a { color: var(--gold); text-decoration: underline; }

/* ------- Organiser NAP ------- */
.organiser-nap { margin-top: 36px; }
.nap-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }
.nap-grid div { display: flex; flex-direction: column; gap: 4px; }
.nap-grid dt { font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(13,19,34,0.5); }
.nap-grid dd { font-size: 15px; }
.nap-grid a { color: inherit; text-decoration: underline; }

/* ------- Email signup ------- */
.signup-block { text-align: center; max-width: 600px; margin: 0 auto; }
.signup-form { margin-top: 28px; }
.signup-field { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.signup-field input[type="email"] { flex: 1; min-width: 240px; padding: 14px 18px; border-radius: 0; border: 1px solid rgba(255,255,255,0.2); background: rgba(255,255,255,0.06); color: var(--white); font-size: 15px; }
.signup-field input[type="email"]::placeholder { color: rgba(255,255,255,0.4); }
.signup-field input[type="email"]:focus { outline: 2px solid var(--gold); border-color: transparent; }
.signup-privacy { margin-top: 14px; font-size: 13px; color: rgba(255,255,255,0.5); }
.signup-success p { font-size: 17px; color: var(--gold); }

/* ------- Edition Colour System ------- */
/*
  Each edition page adds a modifier class to the hero <section>.
  The gradient shifts the atmospheric temperature of the navy base —
  barely perceptible as a colour, read as a mood.
  All editions share the same gold texture overlay via ::before.
*/

/* ------- Fine grain — institutional material depth ------- */
/*
  SVG feTurbulence noise tiled at 256px.
  Renders as fine film grain at ~4% opacity — reads as paper/linen, not digital.
  Uses ::after so it layers above the gradient but below hero content (z-index: 1 < content z-index).
*/
.hero-editorial::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.042;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='256' height='256'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='256' height='256' filter='url(%23g)'/%3E%3C/svg%3E");
  background-size: 256px 256px;
  background-repeat: repeat;
}

/* ------- Base atmospheric texture — all editions ------- */
.hero-editorial::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    radial-gradient(ellipse 80% 50% at 68% 0%, rgba(184,150,58,0.055) 0%, transparent 58%),
    radial-gradient(ellipse 55% 45% at 8% 95%, rgba(0,0,0,0.38) 0%, transparent 65%);
}

/* Base gradient — replaces flat navy (fallback / default) */
.hero-editorial {
  background: linear-gradient(
    150deg,
    #060c18 0%,
    #0D1322 52%,
    #111b30 100%
  );
}

/* Palma de Mallorca — warm Mediterranean: amber-ochre undertone */
.hero-editorial.edition-palma {
  background: linear-gradient(
    150deg,
    #0b0d09 0%,
    #0e1216 35%,
    #0D1322 62%,
    #0e1428 100%
  );
}

/* Luxembourg — cool institutional slate */
.hero-editorial.edition-luxembourg {
  background: linear-gradient(
    150deg,
    #06091a 0%,
    #0a1226 42%,
    #0c1530 80%,
    #08101e 100%
  );
}

/* Merano — Alpine sage-grey: crisp, mineral */
.hero-editorial.edition-merano {
  background: linear-gradient(
    150deg,
    #07100e 0%,
    #0a1410 42%,
    #0c1420 76%,
    #091018 100%
  );
}

/* Málaga — warm Andalusian terracotta */
.hero-editorial.edition-malaga {
  background: linear-gradient(
    150deg,
    #150c06 0%,
    #14100a 32%,
    #101422 66%,
    #0a0e1c 100%
  );
}

/* Mexico City — deep volcanic warmth */
.hero-editorial.edition-mexico {
  background: linear-gradient(
    150deg,
    #160d08 0%,
    #13100b 30%,
    #0f1220 66%,
    #0a0c1a 100%
  );
}

/* London — cool pewter, overcast grey-blue */
.hero-editorial.edition-london {
  background: linear-gradient(
    150deg,
    #08090e 0%,
    #0a1018 42%,
    #0c1422 76%,
    #090d18 100%
  );
}

/* ------- The Setting + The Thirty-Three — immersive bg sections ------- */
@media (max-width: 768px) {
  .setting-bg-img { object-position: center 40%; }
  .tt-bg { object-position: 70% center; }

  [data-screen-label="The Setting"] { padding: 80px 24px !important; min-height: 80vh !important; }
  [data-screen-label="The Setting"] > div:last-child { padding: 80px 24px !important; }

  [data-screen-label="07 Thirty-Three"] { padding: 80px 24px !important; }

  .tt-details { flex-direction: column !important; align-items: center !important; gap: 32px !important; }
  .tt-divider { display: none !important; }
}

/* ------- Print ------- */
@media print {
  .nav, .drawer, .hex-bg, .footer-social { display: none !important; }
  .section, .hero, .editorial-strip { padding: 24px !important; page-break-inside: avoid; }
  body { color: #000; background: #fff; }
  .section.dark, .editorial-strip, .hero, .countdown-strip { background: #fff !important; color: #000 !important; }
  h1, h2, h3, h4 { color: #000 !important; }
}


/* ==========================================================
   Ported from speakers.html
   ========================================================== */
/* =============================================
   SPEAKERS PAGE — Additional Styles
   ============================================= */

/* ---- Page Hero ---- */
.speakers-hero {
  background: var(--navy-deep);
  padding: clamp(130px, 13vw, 190px) 0 clamp(48px, 6vw, 80px);
  position: relative;
  overflow: hidden;
}
.speakers-hero::before {
  content: "";
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 70% 55% at 72% -10%, rgba(184,150,58,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 55% 50% at 5% 100%, rgba(0,0,0,0.42) 0%, transparent 65%);
}
.speakers-hero::after {
  content: "";
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  opacity: 0.038;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='256' height='256'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='256' height='256' filter='url(%23g)'/%3E%3C/svg%3E");
  background-size: 256px 256px;
}
.speakers-hero .container { position: relative; z-index: 2; }
.speakers-hero-inner { max-width: 700px; }
.speakers-hero .invitation-signal { margin-bottom: 22px; color: rgba(184,150,58,0.72); font-size: 10px; letter-spacing: 0.32em; }
.speakers-hero h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 5.2vw, 62px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: rgba(246,242,235,0.96);
  margin: 0 0 22px;
}
.speakers-hero p {
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.78;
  color: rgba(246,242,235,0.58);
  max-width: 54ch;
  margin: 0 0 40px;
}
.speakers-hero-meta {
  padding-top: 22px;
  border-top: 1px solid rgba(246,242,235,0.08);
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.speakers-hero-meta span {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(246,242,235,0.38);
}
.speakers-hero-meta .gold { color: rgba(184,150,58,0.6); }
.speakers-hero-meta .sep {
  width: 1px; height: 9px;
  background: rgba(246,242,235,0.1);
  display: inline-block;
}

/* ---- Speakers Section ---- */
.speakers-page-section {
  background: var(--white);
  padding: clamp(56px, 7vw, 96px) 0 clamp(80px, 10vw, 140px);
}

/* ---- Result count ---- */
.speakers-result-bar {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.speakers-result-count {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
}
.speakers-result-count em {
  font-style: normal;
  color: var(--navy);
}
/* ---- Speaker Grid (page version — portrait cards) ---- */
.speaker-page-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.speaker-page-card {
  background: var(--white);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: background 0.22s ease;
  cursor: default;
}
.speaker-page-card:hover { background: var(--off-white); }

.speaker-page-card__photo-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--off-white-2);
}
.speaker-page-card__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.5s ease;
}
.speaker-page-card:hover .speaker-page-card__photo {
  transform: scale(1.03);
}
.speaker-page-card__photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #0D1322 0%, #1C2B4A 100%);
}
.speaker-page-card__photo-placeholder svg {
  width: 56px;
  height: 56px;
  opacity: 0.12;
}
.speaker-page-card__body {
  padding: 22px 22px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
  border-top: 2px solid var(--gold);
}
.speaker-page-card__name {
  font-family: var(--serif);
  font-size: clamp(16px, 1.4vw, 20px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--navy-deep);
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}
.speaker-page-card__title {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0 0 2px;
  line-height: 1.4;
}
.speaker-page-card__org {
  font-size: 12px;
  color: var(--text-muted);
  margin: 0 0 16px;
}
.speaker-page-card__bio {
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0 0 18px;
  flex: 1;
}
.speaker-page-card__footer {
  border-top: 1px solid var(--border);
  padding-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.speaker-page-card__linkedin {
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--blue);
  border-bottom: 1px solid rgba(107,127,160,0.28);
  padding-bottom: 2px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.speaker-page-card__linkedin:hover { color: var(--navy); border-color: var(--navy); }

/* Edition pill */
.edition-pill {
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--off-white-2);
  padding: 4px 8px;
  border: 1px solid var(--border);
}

/* ---- CTA Banner ---- */
.speakers-cta-banner {
  background: var(--navy-deep);
  padding: clamp(52px, 7vw, 88px) 0;
  border-top: 1px solid rgba(255,255,255,0.04);
  position: relative;
  overflow: hidden;
}
.speakers-cta-banner::before {
  content: "";
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 60% 80% at 85% 50%, rgba(28,43,74,0.4) 0%, transparent 65%);
}
.speakers-cta-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(32px, 5vw, 80px);
  flex-wrap: wrap;
}
.speakers-cta-copy .h2 { color: var(--white); margin-bottom: 12px; font-size: clamp(26px, 3vw, 38px); }
.speakers-cta-copy p { font-size: 15px; color: rgba(255,255,255,0.6); max-width: 52ch; margin: 0; line-height: 1.7; }
.speakers-cta-actions { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; flex-shrink: 0; }

/* ---- Responsive ---- */
@media (max-width: 1100px) {
  .speaker-page-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 760px) {
  .speaker-page-grid { grid-template-columns: repeat(2, 1fr); }
  .speakers-cta-inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .speaker-page-grid { grid-template-columns: 1fr; }
}


/* ==========================================================
   Ported from partners.html
   ========================================================== */
/* ---- Page Hero ---- */
.partners-hero {
  background: var(--navy-deep);
  padding: clamp(130px, 13vw, 190px) 0 clamp(48px, 6vw, 80px);
  position: relative;
  overflow: hidden;
}
.partners-hero::before {
  content: "";
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 70% 55% at 72% -10%, rgba(184,150,58,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 55% 50% at 5% 100%, rgba(0,0,0,0.42) 0%, transparent 65%);
}
.partners-hero .container { position: relative; z-index: 2; }
.partners-hero-inner { max-width: 700px; }
.partners-hero .invitation-signal { color: rgba(184,150,58,0.72); font-size: 10px; letter-spacing: 0.32em; }
.partners-hero h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 5.2vw, 62px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: rgba(246,242,235,0.96);
  margin: 0 0 22px;
}
.partners-hero p {
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.78;
  color: rgba(246,242,235,0.58);
  max-width: 54ch;
  margin: 0 0 40px;
}
.partners-hero-meta {
  padding-top: 22px;
  border-top: 1px solid rgba(246,242,235,0.08);
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.partners-hero-meta span {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(246,242,235,0.38);
}
.partners-hero-meta .gold { color: rgba(184,150,58,0.6); }
.partners-hero-meta .sep {
  width: 1px; height: 9px;
  background: rgba(246,242,235,0.1);
  display: inline-block;
}

/* ---- Partners content ---- */
.partners-page-section {
  background: var(--off-white);
  padding: clamp(56px, 7vw, 96px) 0 clamp(80px, 10vw, 140px);
}
.partners-page-section .sponsor-logos {
  margin-top: clamp(48px, 6vw, 80px);
}
.partners-page-section .sponsor-row {
  margin-bottom: clamp(40px, 5vw, 64px);
}

/* ---- CTA Banner ---- */
.partners-cta-banner {
  background: var(--navy-deep);
  padding: clamp(52px, 7vw, 88px) 0;
  border-top: 1px solid rgba(255,255,255,0.04);
  position: relative;
  overflow: hidden;
}
.partners-cta-banner::before {
  content: "";
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 60% 80% at 85% 50%, rgba(28,43,74,0.4) 0%, transparent 65%);
}
.partners-cta-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(32px, 5vw, 80px);
  flex-wrap: wrap;
}
.partners-cta-copy .h2 { color: var(--white); margin-bottom: 12px; font-size: clamp(26px, 3vw, 38px); }
.partners-cta-copy p { font-size: 15px; color: rgba(255,255,255,0.6); max-width: 52ch; margin: 0; line-height: 1.7; }
.partners-cta-actions { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; flex-shrink: 0; }

@media (max-width: 760px) {
  .partners-cta-inner { flex-direction: column; align-items: flex-start; }
}


/* ==========================================================
   Ported from pillars.html
   ========================================================== */
/* ========================================================
   The Pillars — page-specific styles
   ======================================================== */

/* --- Hero --- */
.section.dark-deep.pillars-hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding-top: clamp(140px, 14vw, 200px);
  padding-bottom: clamp(80px, 10vw, 128px);
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    150deg,
    #060c18 0%,
    #0D1322 52%,
    #111b30 100%
  );
}

/* Atmospheric gradient — gold warmth at top, shadow at base */
.section.dark-deep.pillars-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(184,150,58,0.055) 0%, transparent 58%),
    radial-gradient(ellipse 55% 45% at 50% 100%, rgba(0,0,0,0.38) 0%, transparent 65%);
}

/* Fine grain — institutional paper texture */
.section.dark-deep.pillars-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.042;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='256' height='256'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='256' height='256' filter='url(%23g)'/%3E%3C/svg%3E");
  background-size: 256px 256px;
  background-repeat: repeat;
}

.pillars-hero .container {
  position: relative;
  z-index: 1;
}

.pillars-hero-inner {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pillars-hero-inner .eyebrow {
  color: rgba(184,150,58,0.78);
}

/* Headline — two-line h1 with decorative rule */
.pillars-headline {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 16px 0 0;
}

.pillars-headline-main {
  display: block;
  color: rgba(246,242,235,0.96);
  text-shadow: none;
}

.pillars-headline-rule {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 20px auto;
  opacity: 0.7;
}

/* "Plus Ultra" — Playfair Display italic, ~60% of h-display max */
.pillars-headline-sub {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(24px, 3.84vw, 53px);
  line-height: 1.1;
  letter-spacing: 0.005em;
  color: rgba(246,242,235,0.72);
}

.pillars-hero-lede {
  margin: 32px auto 36px;
  max-width: 58ch;
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.72;
  color: rgba(246,242,235,0.58);
  text-align: center;
}

.pillars-hero-inner .btn-ghost {
  color: rgba(255,255,255,0.88);
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(0,0,0,0.28);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.pillars-hero-inner .btn-ghost:hover {
  background: rgba(255,255,255,0.92);
  color: var(--navy-deep);
  border-color: rgba(255,255,255,0.9);
}

/* --- Responsive --- */
@media (prefers-reduced-motion: reduce) {
  .reveal { transition: none; opacity: 1; transform: none; }
}


/* ==========================================================
   Ported from legal.html
   ========================================================== */
body { background: var(--off-white); }

  .legal-header {
    background: var(--navy-deep);
    color: var(--white);
    padding: 140px 0 80px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .legal-header .back {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600;
    color: var(--blue-light);
    padding-bottom: 6px;
    border-bottom: 1px solid var(--blue-light);
    margin-bottom: 32px;
  }
  .legal-header .back:hover { color: var(--white); border-color: var(--white); }
  .legal-header h1 {
    font-family: var(--display);
    font-size: clamp(48px, 6vw, 80px);
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: 0.02em;
    color: var(--white);
    text-transform: uppercase;
    margin: 0;
  }
  .legal-header .meta {
    margin-top: 24px;
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
  }

  .legal-main {
    padding: clamp(64px, 7vw, 112px) 0 clamp(80px, 9vw, 140px);
  }
  .legal-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: clamp(40px, 5vw, 88px);
    align-items: start;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 var(--gutter);
  }
  .legal-toc {
    position: sticky;
    top: 100px;
    background: var(--white);
    border: 1px solid var(--border);
    padding: 28px 24px;
  }
  .legal-toc h2 {
    font-family: var(--sans);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin: 0 0 18px;
    font-weight: 600;
  }
  .legal-toc ol {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: toc;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  .legal-toc li { counter-increment: toc; }
  .legal-toc a {
    display: flex;
    gap: 12px;
    padding: 10px 0;
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 500;
    border-bottom: 1px solid transparent;
    transition: color 0.2s ease;
  }
  .legal-toc a::before {
    content: counter(toc, decimal-leading-zero);
    font-family: var(--display);
    font-size: 12px;
    color: var(--navy-light);
    font-weight: 500;
    letter-spacing: 0.06em;
    width: 24px;
    flex: 0 0 auto;
  }
  .legal-toc a:hover { color: var(--navy-light); }
  .legal-toc a.active {
    color: var(--navy);
    border-bottom-color: var(--navy);
  }

  .legal-content { max-width: 760px; }
  .legal-section { padding-bottom: clamp(56px, 6vw, 96px); }
  .legal-section + .legal-section { padding-top: clamp(56px, 6vw, 96px); border-top: 1px solid var(--border); }
  .legal-section h2.legal-h {
    font-family: var(--display);
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 600;
    line-height: 1.1;
    color: var(--navy);
    letter-spacing: 0.01em;
    text-transform: uppercase;
    margin: 0 0 24px;
    scroll-margin-top: 100px;
  }
  .legal-section h3 {
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--navy);
    margin: 32px 0 12px;
  }
  .legal-section p {
    font-size: 16px;
    line-height: 1.75;
    color: var(--text-muted);
    margin: 0 0 18px;
    max-width: 64ch;
  }
  .legal-section p strong { color: var(--text-dark); font-weight: 600; }
  .legal-section ul {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .legal-section li {
    position: relative;
    padding-left: 22px;
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-muted);
  }
  .legal-section li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 12px;
    width: 10px;
    height: 1px;
    background: var(--navy);
  }
  .legal-section a { color: var(--navy); border-bottom: 1px solid var(--navy); }
  .legal-section a:hover { color: var(--navy-light); border-color: var(--navy-light); }

  .legal-eyebrow {
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--navy-light);
    font-weight: 600;
    margin: 0 0 18px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }
  .legal-eyebrow::before {
    content: "";
    width: 28px; height: 1px; background: var(--navy-light);
  }

  .legal-footer {
    background: var(--navy-deep);
    color: rgba(255,255,255,0.7);
    padding: 56px 0 32px;
  }
  .legal-footer .container { display: flex; justify-content: space-between; align-items: center; gap: 32px; flex-wrap: wrap; }
  .legal-footer p { margin: 0; font-size: 13px; }
  .legal-footer a { color: rgba(255,255,255,0.85); }
  .legal-footer a:hover { color: var(--white); }
  .legal-footer .links a { margin-left: 22px; font-size: 12.5px; }

  @media (max-width: 900px) {
    .legal-layout { grid-template-columns: 1fr; }
    .legal-toc { position: static; }
    .legal-toc ol { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
  }
  @media (max-width: 600px) {
    .legal-toc ol { grid-template-columns: 1fr; }
    .legal-footer .container { flex-direction: column; align-items: flex-start; }
    .legal-footer .links a { margin-left: 0; margin-right: 18px; }
  }


/* ==========================================================
   Rebuild additions
   ========================================================== */

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* Session Partner tier */
.sponsor-row.session-partner .label { color: var(--text-muted); }
.sponsor-row.session-partner .logo-slot { border: none; background: none; height: auto; justify-content: flex-start; }
.sponsor-row.session-partner .logo-slot img { max-height: 100px; filter: none; opacity: 1; }
.sponsor-row.session-partner .logo-slot:hover img { filter: none; opacity: 1; }

/* A fixed column grid squeezes wide logos: a 6:1 logo in a 221px cell
   letterboxes to ~29px tall regardless of max-height. Letting these rows
   flow lets each logo take its natural width, so max-height actually
   governs how large it renders. */
/* Applies to every tier, not an enumerated list: the admin can create new
   tiers, and one added later must lay out correctly without a CSS change. */
.sponsor-row .slots {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(28px, 4vw, 56px);
  grid-template-columns: none;
}
.sponsor-row .logo-slot {
  width: auto;
  max-width: 100%;
  border: none;
  background: none;
  height: auto;
  justify-content: flex-start;
}
/* Default logo size. Individual tiers override below. */
.sponsor-row .logo-slot img {
  height: clamp(56px, 7vw, 100px);
  width: auto;
  max-width: 100%;
  max-height: none;
  filter: none;
  opacity: 1;
}
.sponsor-row .logo-slot:hover img { filter: none; opacity: 1; }
.sponsor-row .label { color: var(--text-muted); }
.sponsor-row.founding-partner .label { color: var(--navy); }
.sponsor-row.founding-partner .logo-slot img {
  height: clamp(60px, 8vw, 110px);
  width: auto;
  max-width: 100%;
  max-height: none;
}

/* An explicit height, not max-height. With max-height the slot shrink-wraps
   the image while the image sizes against the slot — a circular constraint
   that settled at 300px and left wide logos far smaller than intended.
   Fixing the height makes width follow from the aspect ratio.
   The two clamps stay in an 80:100 ratio so the LMAX/Asensi letter match
   holds at every viewport, not just on desktop. */
.sponsor-row.session-partner .logo-slot img {
  height: clamp(56px, 7vw, 100px);
  width: auto;
  max-width: 100%;
  max-height: none;
}
/* Optional per-logo size adjustments.
   Logos differ in how much of their image the lettering actually fills, so
   two logos at the same box height can look very different. These let one be
   nudged without touching the tier.

   logo-lmax is the original name for the smaller size, kept so existing data
   keeps working; logo-smaller is the same thing, named for what it does. */
.sponsor-row .logo-slot.logo-lmax img,
.sponsor-row .logo-slot.logo-smaller img {
  height: clamp(45px, 5.6vw, 80px);
  max-height: none;
}
.sponsor-row .logo-slot.logo-larger img {
  height: clamp(72px, 9vw, 130px);
  max-height: none;
}
.sponsor-row .logo-slot.logo-largest img {
  height: clamp(90px, 11vw, 165px);
  max-height: none;
}
.sponsor-row.strategic-partner .logo-slot img {
  height: clamp(70px, 9vw, 140px);
  width: auto;
  max-width: 100%;
  max-height: none;
}

/* ---------- Invitation modal ---------- */
/* The Admin link, revealed by site.js only for a signed-in admin. Quieter
   than the profile link beside it: it is a shortcut, not a call to action. */
.nav-admin-link {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  margin-right: 20px;
  white-space: nowrap;
}
.nav-admin-link:hover { color: var(--gold-text); }

.invite-modal { position: fixed; inset: 0; z-index: 10000; display: flex; align-items: center; justify-content: center; padding: 24px; }
.invite-modal[hidden] { display: none; }
.invite-modal__backdrop { position: absolute; inset: 0; background: rgba(6, 10, 20, 0.78); backdrop-filter: blur(3px); }
.invite-modal__panel {
  position: relative; z-index: 1;
  width: 100%; max-width: 560px; max-height: 90vh; overflow-y: auto;
  background: var(--navy-deep);
  border: 1px solid rgba(184, 150, 58, 0.28);
  padding: clamp(28px, 4vw, 44px);
  color: #F6F3EC;
}
.invite-modal__close {
  position: absolute; top: 14px; right: 18px;
  font-size: 26px; line-height: 1; color: rgba(246, 243, 236, 0.55);
}
.invite-modal__close:hover { color: var(--gold); }
.invite-modal__title { font-family: var(--serif); font-weight: 400; font-size: clamp(26px, 3.4vw, 34px); margin: 10px 0 14px; color: #F6F3EC; }
.invite-modal__lede { font-size: 14px; line-height: 1.7; color: rgba(246, 243, 236, 0.62); margin: 0 0 26px; }

.invite-field { margin-bottom: 16px; }
.invite-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px) { .invite-row { grid-template-columns: 1fr; } }

.invite-modal label { display: block; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600; color: rgba(246, 243, 236, 0.72); margin-bottom: 7px; }
.invite-modal .req { color: var(--gold); }
.invite-modal .opt { text-transform: none; letter-spacing: 0; font-weight: 400; color: rgba(246, 243, 236, 0.38); }

.invite-modal input[type="text"],
.invite-modal input[type="email"],
.invite-modal input[type="tel"],
.invite-modal textarea {
  width: 100%; padding: 11px 13px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(246, 243, 236, 0.16);
  color: #F6F3EC; font-family: var(--sans); font-size: 15px;
}
.invite-modal input:focus, .invite-modal textarea:focus { border-color: var(--gold); outline: none; }
.invite-modal textarea { resize: vertical; }

.invite-consent { display: flex; gap: 11px; align-items: flex-start; margin: 20px 0 24px; text-transform: none; letter-spacing: 0; font-weight: 400; font-size: 13px; line-height: 1.6; color: rgba(246, 243, 236, 0.62); }
.invite-consent input { margin-top: 3px; flex-shrink: 0; }
.invite-consent a { color: var(--gold); text-decoration: underline; }

.invite-submit {
  width: 100%; padding: 14px 20px;
  background: var(--gold); color: var(--navy-deep);
  font-family: var(--sans); font-size: 12px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  transition: opacity 0.2s ease;
}
.invite-submit:hover { opacity: 0.88; }
.invite-submit:disabled { opacity: 0.5; cursor: default; }

.invite-status { min-height: 20px; margin: 14px 0 0; font-size: 14px; color: var(--gold); text-align: center; }
.invite-status.is-error { color: #E4A0A0; }

/* Honeypot: off-screen rather than display:none, which some bots skip */
.invite-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
