/* ==========================================================================
   Think Tank Live 2026 — site styles
   Built on Growmentum tokens (colors_and_type.css)
   ========================================================================== */

/* Page-level palette knobs (set by [data-palette] on body) */
body { 
  --page-bg:        #2B1238;       /* plum */
  --page-bg-elev:   #3B1E4C;       /* plum-700 */
  --page-fg:        #DED9C9;       /* beige */
  --page-fg-muted:  #CBC3FF;       /* lilac */
  --page-fg-strong: #FFFFFF;
  --page-accent:    #FF4A12;       /* orange */
  --page-accent-2:  #D9D421;       /* lime */
  --page-rule:      rgba(255,255,255,0.10);
  --page-card:      #3B1E4C;
  --page-card-fg:   #DED9C9;
}
body[data-palette="charcoal"] {
  --page-bg:        #15100F;
  --page-bg-elev:   #201717;
  --page-fg:        #DED9C9;
  --page-fg-muted:  #CBC3FF;
  --page-fg-strong: #FFFFFF;
  --page-accent:    #FF4A12;
  --page-accent-2:  #D9D421;
  --page-rule:      rgba(255,255,255,0.08);
  --page-card:      #201717;
  --page-card-fg:   #DED9C9;
}
body[data-palette="beige"] {
  --page-bg:        #F5F2E9;
  --page-bg-elev:   #FFFFFF;
  --page-fg:        #2B1238;
  --page-fg-muted:  #4A3F3F;
  --page-fg-strong: #2B1238;
  --page-accent:    #FF4A12;
  --page-accent-2:  #2B1238;
  --page-rule:      rgba(43,18,56,0.10);
  --page-card:      #FFFFFF;
  --page-card-fg:   #201717;
}
body[data-palette="orange"] {
  --page-bg:        #FF4A12;
  --page-bg-elev:   #E03C0A;
  --page-fg:        #FFFFFF;
  --page-fg-muted:  #FFD9C7;
  --page-fg-strong: #FFFFFF;
  --page-accent:    #2B1238;
  --page-accent-2:  #D9D421;
  --page-rule:      rgba(0,0,0,0.18);
  --page-card:      #2B1238;
  --page-card-fg:   #DED9C9;
}

/* ---- Reset ----------------------------------------------------------- */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--page-bg);
  color: var(--page-fg);
  font-family: var(--font-ui);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }
a { color: inherit; }

/* ---- Page wrapper ---------------------------------------------------- */
.page { position: relative; }
.wrap { max-width: 1280px; margin: 0 auto; padding: 0 48px; }
@media (max-width: 720px) { .wrap { padding: 0 24px; } }

/* ---- Nav ------------------------------------------------------------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  background: color-mix(in srgb, var(--page-bg) 78%, transparent);
  border-bottom: 1px solid var(--page-rule);
}
.nav__row {
  display: flex; align-items: center; gap: 28px;
  height: 72px; padding: 0 48px;
  max-width: 1280px; margin: 0 auto;
}
@media (max-width: 720px) {
  .nav__row { padding: 0 20px; gap: 12px; height: 64px; }
}
.nav__brand {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; color: var(--page-fg-strong);
  font-family: var(--font-display); font-weight: 600; font-size: 17px;
  letter-spacing: -0.01em;
}
.nav__brand-mark {
  width: 32px; height: 32px;
  display: grid; place-items: center;
  background: var(--page-accent); color: #fff;
  font-family: var(--font-display); font-weight: 800; font-size: 13px;
  letter-spacing: 0; border-radius: 6px;
}
.nav__brand-mark.alt { background: var(--page-fg-strong); color: var(--page-bg); }
.nav__divider { width: 1px; height: 22px; background: var(--page-rule); }
.nav__year {
  font-family: var(--font-mono); font-size: 12px;
  letter-spacing: 0.08em; color: var(--page-fg-muted);
}
.nav__links { display: flex; gap: 28px; margin-left: auto; }
.nav__links a {
  text-decoration: none; color: var(--page-fg);
  font-size: 14px; font-weight: 500;
  padding: 8px 0; position: relative;
  transition: color 200ms var(--ease-standard);
}
.nav__links a:hover { color: var(--page-accent); }
.nav__cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--page-accent); color: #fff;
  padding: 11px 20px; border: 0; border-radius: 6px;
  font-weight: 600; font-size: 14px; text-decoration: none;
  transition: background 200ms var(--ease-standard), transform 120ms;
}
.nav__cta:hover { background: var(--gm-orange-600); }
.nav__cta:active { transform: translateY(1px); }
@media (max-width: 920px) {
  .nav__links { display: none; }
}
@media (max-width: 520px) {
  .nav__brand { font-size: 15px; gap: 8px; }
  .nav__divider, .nav__year { display: none; }
  .nav__cta { padding: 9px 14px; font-size: 13px; gap: 6px; }
}

/* ---- Buttons --------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-ui); font-weight: 600; font-size: 15px;
  padding: 14px 24px; border-radius: 6px; border: 1px solid transparent;
  text-decoration: none; cursor: pointer;
  transition: background 200ms var(--ease-standard), color 200ms, transform 120ms, border-color 200ms;
}
.btn-lg { font-size: 17px; padding: 18px 30px; }
.btn-primary { background: var(--page-accent); color: #fff; }
.btn-primary:hover { background: var(--gm-orange-600); }
.btn-primary:active { transform: translateY(1px); }
.btn-ghost {
  background: transparent; color: var(--page-fg-strong);
  border-color: var(--page-rule);
}
.btn-ghost:hover { border-color: var(--page-fg-strong); }

/* Eyebrow */
.eyebrow {
  font-family: var(--font-ui); font-weight: 600;
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--page-accent);
}
.eyebrow-mute { color: var(--page-fg-muted); }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  padding: 96px 0 0;
  overflow: hidden;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 64px;
  align-items: end;
  padding-bottom: 0;
}
.hero__left { padding-bottom: 96px; }

.hero__eyebrow-row {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 28px;
  flex-wrap: nowrap;
  white-space: nowrap;
}
@media (max-width: 720px) {
  .hero__eyebrow-row {
    flex-wrap: wrap;
    white-space: normal;
    gap: 8px 12px;
  }
}
.hero__eyebrow-row .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--page-accent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--page-accent) 25%, transparent);
  animation: pulse 2.4s var(--ease-standard) infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(0.85); }
}
.hero__ttl {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--page-fg-strong);
}
.hero__ttl-sep {
  font-family: var(--font-mono); color: var(--page-fg-muted);
  font-size: 12px; letter-spacing: 0.08em;
}

.hero__headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(56px, 8.4vw, 144px);
  line-height: 0.92;
  letter-spacing: -0.035em;
  margin: 0 0 32px;
  color: var(--page-fg-strong);
  text-wrap: balance;
}
.hero__headline em {
  font-family: 'PT Serif', serif;
  font-style: italic; font-weight: 400;
  color: var(--page-accent);
  letter-spacing: -0.015em;
}
.hero__sub {
  font-size: 20px;
  line-height: 1.45;
  max-width: 540px;
  margin: 0 0 40px;
  color: var(--page-fg-muted);
}
.hero__ctas {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 64px;
}
.hero__seats {
  font-size: 13px; color: var(--page-fg-muted);
  letter-spacing: 0.04em;
  display: inline-flex; align-items: center; gap: 8px;
}
.hero__seats::before {
  content: ""; display: inline-block;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--page-accent-2);
}

/* Massive date stamp on the right */
.hero__stamp {
  position: relative;
  align-self: end;
  border-left: 1px solid var(--page-rule);
  padding: 0 0 96px 48px;
  display: flex; flex-direction: column; gap: 24px;
}
.hero__stamp-label {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--page-fg-muted);
}
.hero__stamp-dates {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(52px, 7vw, 112px);
  line-height: 0.86;
  letter-spacing: -0.04em;
  color: var(--page-fg-strong);
}
.hero__stamp-dates .month {
  display: block;
  font-size: clamp(18px, 1.4vw, 22px);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--page-accent);
  font-weight: 600;
  margin-bottom: 8px;
  font-family: var(--font-ui);
}
.hero__stamp-place {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 28px;
  letter-spacing: -0.01em;
  color: var(--page-fg-strong);
  display: flex; align-items: baseline; gap: 12px;
}
.hero__stamp-place .pin {
  width: 10px; height: 10px; background: var(--page-accent);
  display: inline-block; transform: rotate(45deg);
}

/* Diagonal slash motif (signature) */
.hero__slashes {
  position: absolute;
  right: -120px; top: 80px;
  width: 480px; height: 320px;
  pointer-events: none;
  opacity: 0.18;
}
.hero__slashes svg { width: 100%; height: 100%; display: block; }

/* Marquee strip below hero */
.marquee {
  border-top: 1px solid var(--page-rule);
  border-bottom: 1px solid var(--page-rule);
  background: var(--page-bg);
  overflow: hidden;
  white-space: nowrap;
}
.marquee__track {
  display: inline-flex; gap: 48px;
  padding: 18px 0;
  animation: marquee 60s linear infinite;
  font-family: var(--font-display);
  font-size: 16px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--page-fg-strong);
}
.marquee__track > span { display: inline-flex; align-items: center; gap: 48px; }
.marquee__track .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--page-accent);
}
.marquee__track .lime { background: var(--page-accent-2); }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (max-width: 920px) {
  .hero { padding-top: 64px; }
  .hero__inner { grid-template-columns: 1fr; gap: 32px; }
  .hero__stamp { border-left: 0; border-top: 1px solid var(--page-rule); padding: 32px 0 48px; }
  .hero__left { padding-bottom: 16px; }
  .hero__sub { font-size: 17px; max-width: none; margin-bottom: 28px; }
  .hero__ctas { flex-wrap: wrap; gap: 12px; margin-bottom: 32px; }
  .hero__ctas .btn { flex: 1 1 auto; min-width: 0; }
  .hero__slashes { display: none; }
}
@media (max-width: 520px) {
  .hero { padding-top: 48px; }
  .hero__headline { font-size: clamp(40px, 11vw, 64px); margin-bottom: 24px; }
  .hero__sub { font-size: 16px; line-height: 1.5; }
  .hero__ttl { font-size: 12px; }
  .btn-lg { font-size: 15px; padding: 14px 20px; }
  .hero__ctas .btn { width: 100%; }
  .hero__stamp-place { font-size: 22px; }
}

/* ==========================================================================
   INTRO — "The Room Changes Things."
   ========================================================================== */
.intro {
  padding: 144px 0 144px;
  background: var(--page-bg);
  border-top: 1px solid var(--page-rule);
  position: relative;
}
.intro__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 96px;
  align-items: start;
}
.intro__lede {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(44px, 5.2vw, 92px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--page-fg-strong);
  margin: 0;
}
.intro__lede em {
  font-family: 'PT Serif', serif;
  font-style: italic; font-weight: 400;
  color: var(--page-accent);
}
.intro__body { padding-top: 12px; }
.intro__body .eyebrow { margin-bottom: 24px; display: block; }
.intro__body p {
  font-size: 19px;
  line-height: 1.55;
  color: var(--page-fg);
  max-width: 560px;
  margin: 0 0 20px;
}
.intro__body p.lead {
  font-size: 22px;
  color: var(--page-fg-strong);
}
.intro__body .closer {
  font-family: 'PT Serif', serif;
  font-style: italic;
  font-size: 22px;
  color: var(--page-accent-2);
  border-left: 4px solid var(--page-accent);
  padding-left: 20px;
  margin-top: 32px;
  max-width: 460px;
}

@media (max-width: 920px) {
  .intro { padding: 80px 0; }
  .intro__grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 520px) {
  .intro { padding: 56px 0; }
  .intro__body p { font-size: 17px; }
  .intro__body p.lead { font-size: 19px; }
  .intro__body .closer { font-size: 19px; padding-left: 16px; }
}

/* ==========================================================================
   SECTION HEADERS
   ========================================================================== */
.section {
  padding: 144px 0;
  position: relative;
}
.section--alt {
  background: var(--page-bg-elev);
}
.section--light {
  background: #F5F2E9;
  color: #201717;
}
.section--light .eyebrow { color: var(--gm-orange); }

.section__head {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  margin-bottom: 80px;
  align-items: end;
}
.section__head .eyebrow { padding-top: 8px; display: block; }
.section__head h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(40px, 5vw, 80px);
  line-height: 1;
  letter-spacing: -0.03em;
  margin: 0;
  color: var(--page-fg-strong);
  text-wrap: balance;
}
.section--light .section__head h2 { color: #2B1238; }
.section__head .lede {
  font-size: 18px; line-height: 1.5;
  color: var(--page-fg-muted);
  margin: 16px 0 0;
  max-width: 560px;
}

@media (max-width: 920px) {
  .section { padding: 80px 0; }
  .section__head { grid-template-columns: 1fr; gap: 16px; margin-bottom: 48px; }
}
@media (max-width: 520px) {
  .section { padding: 64px 0; }
  .section__head { margin-bottom: 32px; }
  .section__head h2 { font-size: clamp(32px, 8vw, 44px); }
  .section__head .lede { font-size: 16px; }
}

/* ==========================================================================
   SCHEDULE — three layouts
   ========================================================================== */

/* Tab switcher (lives in section head, swaps layout) */
.layout-tabs {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  background: var(--page-bg-elev);
  border-radius: 8px;
  border: 1px solid var(--page-rule);
}
.layout-tabs button {
  appearance: none; border: 0; background: transparent;
  color: var(--page-fg-muted);
  font-family: var(--font-ui); font-weight: 600; font-size: 13px;
  letter-spacing: 0.04em;
  padding: 8px 14px; border-radius: 6px;
  transition: all 200ms var(--ease-standard);
}
.layout-tabs button.is-active {
  background: var(--page-accent);
  color: #fff;
}

/* TIMELINE layout */
.timeline {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 64px;
  position: relative;
}
.timeline__day {
  position: sticky; top: 96px;
  align-self: start;
}
.timeline__day-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 88px; line-height: 1;
  letter-spacing: -0.04em;
  color: var(--page-fg-strong);
}
.timeline__day-month {
  font-family: var(--font-mono);
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--page-accent);
  margin-top: 8px;
}
.timeline__day-name {
  font-family: var(--font-display);
  font-weight: 600; font-size: 24px;
  color: var(--page-fg-strong);
  margin-top: 16px;
  letter-spacing: -0.01em;
}
.timeline__day-tag {
  display: inline-block;
  margin-top: 12px;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--page-fg-muted);
  padding: 6px 10px;
  border: 1px solid var(--page-rule);
  border-radius: 999px;
}
.timeline__items {
  display: flex; flex-direction: column; gap: 1px;
  background: var(--page-rule);
  border-top: 1px solid var(--page-rule);
  border-bottom: 1px solid var(--page-rule);
}
.tl-item {
  background: var(--page-bg);
  display: grid;
  grid-template-columns: 140px 1fr auto;
  gap: 32px;
  padding: 32px 0;
  align-items: start;
}
.tl-item__time {
  font-family: var(--font-mono);
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--page-accent);
  padding-top: 6px;
}
.tl-item__body h4 {
  font-family: var(--font-display);
  font-weight: 600; font-size: 28px;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--page-fg-strong);
  margin: 0 0 10px;
}
.tl-item__body p {
  font-size: 16px; line-height: 1.55;
  color: var(--page-fg-muted);
  margin: 0;
  max-width: 640px;
}
.tl-item__host {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--page-accent-2);
  margin-top: 12px;
  display: inline-flex; align-items: center; gap: 8px;
}
.tl-item__host::before {
  content: ""; width: 14px; height: 1px; background: var(--page-accent-2);
}
.tl-item__icon {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--page-fg-muted);
  background: var(--page-bg-elev);
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--page-rule);
}

/* TABS layout */
.sched-tabs__nav {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--page-rule);
  border-top: 1px solid var(--page-rule);
  border-bottom: 1px solid var(--page-rule);
  margin-bottom: 64px;
}
.sched-tabs__btn {
  appearance: none; border: 0;
  background: var(--page-bg);
  color: var(--page-fg);
  text-align: left;
  padding: 32px 28px;
  cursor: pointer;
  display: grid; gap: 8px;
  transition: background 200ms var(--ease-standard);
  font-family: inherit;
}
.sched-tabs__btn:hover { background: var(--page-bg-elev); }
.sched-tabs__btn.is-active {
  background: var(--page-accent);
  color: #fff;
}
.sched-tabs__btn .day-day {
  font-family: var(--font-mono);
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  opacity: 0.8;
}
.sched-tabs__btn .day-h {
  font-family: var(--font-display);
  font-weight: 700; font-size: 36px;
  line-height: 1; letter-spacing: -0.02em;
}
.sched-tabs__btn .day-tag {
  font-size: 14px; opacity: 0.85;
  margin-top: 6px;
}
.sched-tabs__panel {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.sched-tabs__card {
  background: var(--page-bg-elev);
  border: 1px solid var(--page-rule);
  border-radius: 10px;
  padding: 32px;
  position: relative;
}
.sched-tabs__card::before {
  content: ""; position: absolute;
  left: 0; top: 32px; bottom: 32px;
  width: 3px; background: var(--page-accent);
}
.sched-tabs__card .time {
  font-family: var(--font-mono);
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--page-accent);
  margin-bottom: 12px;
}
.sched-tabs__card h4 {
  font-family: var(--font-display);
  font-weight: 600; font-size: 24px;
  letter-spacing: -0.015em;
  color: var(--page-fg-strong);
  margin: 0 0 12px;
  line-height: 1.15;
}
.sched-tabs__card p {
  font-size: 15px; line-height: 1.55;
  color: var(--page-fg-muted);
  margin: 0;
}
.sched-tabs__card .host {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--page-accent-2);
  margin-top: 16px;
}

/* CARDS layout */
.sched-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.sched-cards__col {
  background: var(--page-bg-elev);
  border: 1px solid var(--page-rule);
  border-radius: 10px;
  overflow: hidden;
  display: flex; flex-direction: column;
}
.sched-cards__head {
  padding: 32px 28px 24px;
  border-bottom: 1px solid var(--page-rule);
  background: var(--page-bg);
  position: relative;
}
.sched-cards__head::after {
  content: ""; position: absolute;
  left: 28px; right: 28px; bottom: -1px;
  height: 3px; background: var(--page-accent);
}
.sched-cards__head .num {
  font-family: var(--font-display);
  font-weight: 700; font-size: 64px; line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--page-fg-strong);
}
.sched-cards__head .lbl {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--page-accent);
  margin-bottom: 4px;
}
.sched-cards__head .day {
  font-family: var(--font-display);
  font-weight: 600; font-size: 18px;
  color: var(--page-fg-strong);
  margin-top: 12px;
  letter-spacing: -0.01em;
}
.sched-cards__head .tag {
  font-size: 13px; color: var(--page-fg-muted);
  margin-top: 4px;
}
.sched-cards__list {
  padding: 8px 0; flex: 1;
}
.sched-cards__item {
  padding: 20px 28px;
  border-top: 1px solid var(--page-rule);
}
.sched-cards__item:first-child { border-top: 0; }
.sched-cards__item .time {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--page-accent);
}
.sched-cards__item .h {
  font-family: var(--font-display);
  font-weight: 600; font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--page-fg-strong);
  margin: 6px 0 6px;
  line-height: 1.2;
}
.sched-cards__item p {
  font-size: 14px; line-height: 1.5;
  color: var(--page-fg-muted);
  margin: 0;
}
.sched-cards__item .host {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--page-accent-2);
  margin-top: 10px;
}

@media (max-width: 920px) {
  .timeline { grid-template-columns: 1fr; gap: 24px; }
  .timeline__day { position: static; }
  .timeline__day-num { font-size: 64px; }
  .tl-item { grid-template-columns: 1fr; gap: 12px; padding: 24px 0; }
  .tl-item__icon { justify-self: start; }
  .sched-tabs__nav { grid-template-columns: 1fr; }
  .sched-tabs__btn { padding: 20px 18px; }
  .sched-tabs__panel { grid-template-columns: 1fr; }
  .sched-tabs__card { padding: 24px; }
  .sched-cards { grid-template-columns: 1fr; }
  .sched-cards__head { padding: 24px 22px 20px; }
  .sched-cards__head .num { font-size: 52px; }
  .sched-cards__item { padding: 18px 22px; }
}
@media (max-width: 520px) {
  .tl-item__body h4 { font-size: 22px !important; }
  .tl-item__body p { font-size: 15px; }
}

/* ==========================================================================
   EXPERIENCES
   ========================================================================== */
.exp-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}
.exp-card {
  background: var(--page-bg-elev);
  border: 1px solid var(--page-rule);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  display: flex; flex-direction: column;
}
.exp-card.featured { grid-column: span 4; }
.exp-card.regular  { grid-column: span 2; }
.exp-card.small    { grid-column: span 2; min-height: 360px; }
.exp-card.full     { grid-column: 1 / -1; }
.exp-card.full .slot-wrap { aspect-ratio: 21 / 9; }
.hosts-ribbon__logo {
  display: inline-block;
  vertical-align: middle;
  width: 36px;
  height: 36px;
  border-radius: 6px;
  object-fit: cover;
  margin-right: 12px;
}
.hosts-ribbon__logo--contain {
  object-fit: contain;
  background: #fff;
  padding: 4px;
}
.exp-card .slot-wrap {
  position: relative;
  aspect-ratio: 16 / 10;
  background: #1A0A24;
  overflow: hidden;
}
.exp-card.featured .slot-wrap { aspect-ratio: 16 / 9; }
.exp-card image-slot {
  width: 100%; height: 100%; display: block;
}
.exp-card__body { padding: 28px 28px 32px; }
.exp-card__tag {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--page-accent);
  margin-bottom: 14px;
  display: inline-flex; align-items: center; gap: 8px;
}
.exp-card__tag .dot { width: 6px; height: 6px; background: var(--page-accent); }
.exp-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 28px;
  letter-spacing: -0.015em;
  line-height: 1.1;
  color: var(--page-fg-strong);
  margin: 0 0 12px;
}
.exp-card.regular h3, .exp-card.small h3 { font-size: 22px; }
.exp-card p {
  font-size: 15px; line-height: 1.55;
  color: var(--page-fg-muted);
  margin: 0;
}
.exp-card__host {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 18px;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--page-accent-2);
  padding: 6px 12px;
  border: 1px solid var(--page-rule);
  border-radius: 999px;
}
.exp-card__host::before {
  content: ""; width: 6px; height: 6px; background: var(--page-accent-2); border-radius: 50%;
}
.exp-card__link,
.host-card__link {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  margin-top: 18px;
  color: var(--page-accent);
  font-size: 13px;
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}
.host-card__link { margin-top: -8px; }

/* Featured "rooftop" — fully dark with overlay variant */
.exp-card.dinner {
  background: #1A0A24;
}

@media (max-width: 1100px) {
  .exp-grid { grid-template-columns: repeat(2, 1fr); }
  .exp-card.featured { grid-column: 1 / -1; }
  .exp-card.regular  { grid-column: span 2; }
  .exp-card.small    { grid-column: span 1; }
}
@media (max-width: 920px) {
  .exp-grid { grid-template-columns: 1fr; }
  .exp-card.featured, .exp-card.regular, .exp-card.small { grid-column: span 1; }
  .exp-card__body { padding: 22px 22px 26px; }
  .exp-card h3 { font-size: 24px; }
}

/* ==========================================================================
   HOSTS — Subsplash + Convoy of Hope
   ========================================================================== */
.hosts {
  background: var(--page-bg);
  border-top: 1px solid var(--page-rule);
  border-bottom: 1px solid var(--page-rule);
  padding: 144px 0;
}
.hosts__head {
  text-align: center;
  margin-bottom: 80px;
}
.hosts__head .eyebrow { display: block; margin-bottom: 16px; }
.hosts__head h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(36px, 4.5vw, 64px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--page-fg-strong);
  margin: 0;
  max-width: 900px;
  margin-left: auto; margin-right: auto;
  text-wrap: balance;
}
.hosts__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.host-card {
  background: var(--page-bg-elev);
  border: 1px solid var(--page-rule);
  border-radius: 10px;
  padding: 48px;
  display: flex; flex-direction: column;
  gap: 24px; min-height: 340px;
  position: relative;
}
.host-card__role {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--page-accent);
}
.host-card__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 56px;
  letter-spacing: -0.025em;
  line-height: 0.95;
  color: var(--page-fg-strong);
  margin: 0;
}
.host-card__name em {
  font-family: 'PT Serif', serif;
  font-style: italic; font-weight: 400;
  color: var(--page-accent-2);
  font-size: 38px;
  display: block;
  margin-top: 8px;
}
.host-card p {
  font-size: 16px; line-height: 1.55;
  color: var(--page-fg-muted);
  margin: 0;
  max-width: 460px;
}
.host-card__foot {
  margin-top: auto;
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid var(--page-rule);
}
.host-card__what {
  font-size: 13px;
  color: var(--page-fg-strong);
  font-weight: 600;
}
.host-card__what span {
  display: block; color: var(--page-fg-muted); font-weight: 400;
  margin-top: 2px;
}

/* Discreet ribbon variant */
.hosts-ribbon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding: 64px 24px;
  border-top: 1px solid var(--page-rule);
  border-bottom: 1px solid var(--page-rule);
  background: var(--page-bg);
}
.hosts-ribbon__label {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--page-fg-muted);
}
.hosts-ribbon__row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 48px;
  width: 100%;
  max-width: 1100px;
  align-items: center;
}
.hosts-ribbon__partner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  color: inherit;
  text-decoration: none;
  transition: transform 160ms var(--ease-standard), color 160ms var(--ease-standard);
}
.hosts-ribbon__partner:hover {
  color: var(--page-accent);
  transform: translateY(-2px);
}
.hosts-ribbon__logo-frame {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(0,0,0,0.04);
}
.hosts-ribbon__logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hosts-ribbon__logo--contain {
  object-fit: contain;
  padding: 10px;
}
.hosts-ribbon__meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hosts-ribbon__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  color: var(--page-fg-strong);
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.hosts-ribbon__role {
  font-family: 'PT Serif', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 16px;
  color: var(--page-accent);
}
@media (max-width: 720px) {
  .hosts-ribbon__row { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 920px) {
  .hosts { padding: 80px 0; }
  .hosts__head { margin-bottom: 48px; }
  .hosts__grid { grid-template-columns: 1fr; }
  .host-card { padding: 32px; min-height: 0; }
  .host-card__name { font-size: 40px; }
}
@media (max-width: 520px) {
  .hosts { padding: 64px 0; }
  .host-card { padding: 24px; gap: 18px; }
  .host-card__name { font-size: 32px; }
  .host-card__foot { flex-direction: column; align-items: flex-start; gap: 12px; }
  .host-card__foot .host-card__what:nth-child(2) { text-align: left !important; }
}

/* ==========================================================================
   HOTELS
   ========================================================================== */
.hotels {
  background: var(--page-bg);
  padding: 144px 0;
}
.hotels__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 56px;
}
.hotel {
  background: var(--page-bg-elev);
  border: 1px solid var(--page-rule);
  border-radius: 10px;
  padding: 28px 24px;
  display: flex; flex-direction: column; gap: 8px;
  transition: border-color 200ms var(--ease-standard), transform 200ms;
}
.hotel:hover { border-color: var(--page-accent); transform: translateY(-2px); }
.hotel__num {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.14em;
  color: var(--page-accent);
}
.hotel__name {
  font-family: var(--font-display);
  font-weight: 600; font-size: 22px;
  letter-spacing: -0.015em;
  line-height: 1.15;
  color: var(--page-fg-strong);
  margin-top: 32px;
}
.hotel__type {
  font-size: 13px; color: var(--page-fg-muted);
}
.hotels__note {
  margin-top: 32px;
  font-family: 'PT Serif', serif;
  font-style: italic;
  font-size: 17px;
  color: var(--page-fg-muted);
  text-align: center;
}

@media (max-width: 920px) {
  .hotels__grid { grid-template-columns: repeat(2, 1fr); }
  .hotels { padding: 80px 0; }
}
@media (max-width: 520px) {
  .hotels__grid { grid-template-columns: 1fr; }
  .hotel { padding: 22px 20px; }
  .hotel__name { margin-top: 20px; font-size: 20px; }
}

/* ==========================================================================
   RESERVE
   ========================================================================== */
.reserve {
  background: var(--page-accent);
  color: #fff;
  padding: 160px 0 144px;
  position: relative;
  overflow: hidden;
}
.reserve__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: end;
}
.reserve__eyebrow {
  font-family: var(--font-mono);
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: #2B1238;
  margin-bottom: 24px;
}
.reserve h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(56px, 7vw, 128px);
  line-height: 0.92;
  letter-spacing: -0.035em;
  color: #fff;
  margin: 0 0 32px;
  text-wrap: balance;
}
.reserve h2 em {
  font-family: 'PT Serif', serif;
  font-style: italic; font-weight: 400;
  color: #2B1238;
}
.reserve__sub {
  font-size: 19px; line-height: 1.55;
  color: rgba(255,255,255,0.92);
  max-width: 540px;
  margin: 0 0 40px;
}
.reserve__btn {
  background: #2B1238;
  color: #fff;
  font-size: 18px;
  padding: 22px 36px;
  border-radius: 8px;
  display: inline-flex; align-items: center; gap: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: background 200ms;
}
.reserve__btn:hover { background: #1A0A24; }

.reserve__bullets {
  display: flex; flex-direction: column; gap: 0;
  border-top: 1px solid rgba(255,255,255,0.25);
}
.reserve__bullet {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.25);
  font-family: var(--font-display);
  font-weight: 600; font-size: 17px;
  letter-spacing: -0.01em;
  color: #fff;
  align-items: center;
}
.reserve__bullet .n {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.14em;
  color: #2B1238;
}

.reserve__seats-strip {
  margin-top: 56px;
  display: flex; align-items: center; gap: 32px;
  font-family: var(--font-display);
  font-weight: 600; font-size: 14px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: #2B1238;
  padding-top: 24px;
  border-top: 1px solid rgba(43,18,56,0.25);
}
.reserve__seats-strip .pill {
  background: #2B1238;
  color: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
}

@media (max-width: 920px) {
  .reserve__inner { grid-template-columns: 1fr; gap: 40px; }
  .reserve { padding: 96px 0; }
}
@media (max-width: 520px) {
  .reserve { padding: 72px 0; }
  .reserve__btn { padding: 18px 26px; font-size: 16px; width: 100%; justify-content: center; }
  .reserve__seats-strip { flex-wrap: wrap; gap: 12px; font-size: 12px; }
  .reserve__bullet { font-size: 15px; }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.foot {
  background: #15100F;
  color: #DED9C9;
  padding: 96px 0 32px;
}
.foot__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}
.foot__brand {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 24px;
}
.foot__brand-mark {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  background: #FF4A12; color: #fff;
  font-family: var(--font-display); font-weight: 800; font-size: 15px;
  border-radius: 6px;
}
.foot__brand-name {
  font-family: var(--font-display);
  font-weight: 600; font-size: 18px;
  color: #fff;
}
.foot__tag {
  font-family: 'PT Serif', serif;
  font-style: italic;
  font-size: 17px;
  color: #CBC3FF;
  max-width: 320px;
  margin: 0;
  line-height: 1.45;
}
.foot__col h5 {
  font-family: var(--font-ui);
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: #CBC3FF;
  font-weight: 600;
  margin: 0 0 16px;
}
.foot__col a, .foot__col p {
  display: block;
  text-decoration: none;
  color: #DED9C9;
  font-size: 14px; line-height: 1.55;
  padding: 4px 0;
  margin: 0;
}
.foot__col a:hover { color: #FF4A12; }
.foot__bar {
  display: flex; justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid #3B1E4C;
  font-size: 12px;
  color: #8C7F9C;
  letter-spacing: 0.04em;
}
.foot__bar a { color: #CBC3FF; text-decoration: none; }

@media (max-width: 920px) {
  .foot__top { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 520px) {
  .foot { padding: 64px 0 24px; }
  .foot__top { grid-template-columns: 1fr; gap: 32px; margin-bottom: 40px; }
  .foot__bar { flex-direction: column; gap: 12px; align-items: flex-start; }
}

/* ---- Image-slot styling --------------------------------------------- */
image-slot {
  --img-slot-bg: rgba(255,255,255,0.04);
  --img-slot-border: rgba(255,255,255,0.12);
  --img-slot-fg: rgba(255,255,255,0.6);
}
body[data-palette="beige"] image-slot {
  --img-slot-bg: rgba(43,18,56,0.04);
  --img-slot-border: rgba(43,18,56,0.18);
  --img-slot-fg: rgba(43,18,56,0.55);
}
