:root{
  --fg: #f5f5f5;
  --muted: rgba(255,255,255,.72);

  --nav-h: 64px;
  --accent: #E6B767;

  /* Menu width */
  --menu-w-desktop: 50vw;
  --menu-w-mobile: 86vw;

  --shadow: 0 12px 40px rgba(0,0,0,.35);

  /* Menu colors (Rijks-like slate) */
  --menu-bg: #E3A234;
  --menu-bg2: #E6B767;
  --menu-text: rgba(255,255,255,.92);
  --menu-dim: rgba(255,255,255,.70);
}

*{ box-sizing:border-box; }
html,body{ height:100%; }

body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:#111;
  color:var(--fg);
  overflow-x:hidden;
}

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

/* =========================
   TOP BAR
   ========================= */
.topbar{
  position: fixed;
  inset:0 0 auto 0;
  height: var(--nav-h);
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 0 18px;
  z-index:50;

  background: linear-gradient(to bottom, rgba(0,0,0,.55), rgba(0,0,0,0));
  backdrop-filter: saturate(120%) blur(4px);
}

.topbar__left,
.topbar__right{
  display:flex;
  align-items:center;
  gap: 18px;
}

/* CSS-only hamburger link */
.hamburger{
  height: 44px;
  width: 44px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background: transparent;
  color: rgba(255,255,255,.92);
  font-size: 1.55rem;
  cursor:pointer;
  padding:0;
  text-decoration:none;
}

.hamburger:hover{ opacity:.85; }

.hamburger:focus-visible{
  outline: 3px solid rgba(255,255,255,.28);
  outline-offset: 3px;
  border-radius: 10px;
}

/* Search icon button */
.navicon{
  height: 44px;
  width: 44px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.navicon svg{
  width: 22px;
  height: 22px;
  fill: rgba(255,255,255,.88);
}

.navicon:hover svg{ fill: rgba(255,255,255,.98); }

.navicon:focus-visible{
  outline: 3px solid rgba(255,255,255,.28);
  outline-offset: 3px;
  border-radius: 10px;
}

/* Nav links (bigger font) */
.navlink{
  position: relative;
  display: inline-block;
  padding: 8px 0;
  color: rgba(255,255,255,.90);
  text-decoration: none;
  font-size: 1.18rem;
  letter-spacing: .01em;
}

.navlink::after{
  content:"";
  position:absolute;
  left:0; right:0; bottom:0;
  height: 2px;
  background: rgba(255,255,255,.65);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .16s ease;
}

.navlink:hover::after,
.navlink:focus-visible::after{
  transform: scaleX(1);
}

.navlink[aria-current="page"]::after{
  transform: scaleX(1);
  background: var(--accent);
}

.navlink:focus-visible{ outline:none; }

/* =========================
   MENU (HAMBURGER)
   ========================= */

/* Off-canvas container */
.menu{
  position: fixed;
  top:0; left:0;
  height: 100vh;   /* fallback */
  height: 100dvh;  /* modern */
  width: var(--menu-w-desktop);
  max-width: 920px;

  transform: translateX(-105%);
  transition: transform .35s ease;
  z-index: 60;
  box-shadow: var(--shadow);

  overflow: hidden; /* prevents scrollbars on the whole panel */
}

/* When URL hash is #menu */
#menu:target{ transform: translateX(0); }

/* Push page when menu open */
.layout{
  transition: transform .35s ease;
  will-change: transform;
}

#menu:target ~ .layout{
  transform: translateX(var(--menu-w-desktop));
}

@media (max-width: 840px){
  .menu{ width: var(--menu-w-mobile); max-width: none; }
  #menu:target ~ .layout{ transform: translateX(var(--menu-w-mobile)); }
}

/* Inner fills menu height */
.menu__inner{ height: 100%; }

/* Two column grid fills height */
.menu__grid{
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 1.25fr;
}

/* Columns fill height */
.menu__col{
  height: 100%;
  overflow: hidden; /* default: no scroll */
  padding: 28px 34px 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.menu__col--left{ background: var(--menu-bg); }
.menu__col--right{ background: var(--menu-bg2); }

/* Right column CAN scroll when content is long */
.menu__col--right{
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 12px; /* keeps scrollbar off the text */
}

/* Radios (tab state) are invisible */
.menu-tab{
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

/* Title */
.menu__title{
  margin: 0 0 18px;
  font-size: clamp(1.35rem, 2.2vw, 1.9rem);
  font-weight: 520;
  color: var(--menu-dim);
}

/* Main menu items */
.menu__direct{
  display:block;
  padding: 12px 0;
  font-size: clamp(1.25rem, 2.25vw, 1.85rem);
  line-height: 1.15;
  font-weight: 520;
  color: var(--menu-dim);
  text-decoration: none;
  letter-spacing: .01em;
}

.menu__direct:hover{
  color: var(--menu-text);
  text-decoration: underline;
  text-underline-offset: 8px;
  text-decoration-thickness: 2px;
}

.menu__direct:focus-visible{
  outline: 3px solid rgba(255,255,255,.22);
  outline-offset: 6px;
  border-radius: 10px;
}

/* The items that toggle the right column */
.menu__toggle{
  cursor: pointer;
  user-select: none;
}

/* Put a little breathing room before the dropdown sections */
.menu__spacer{ height: 14px; }

/* Clear selection */
.menu__reset{
  margin-top: auto;
  display: inline-block;
  padding-top: 16px;
  font-size: 1.05rem;
  color: rgba(255,255,255,.70);
  cursor: pointer;
  text-decoration: none;
}

.menu__reset:hover{
  color: rgba(255,255,255,.90);
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-thickness: 2px;
}

/* Right column header */
.menu__goto{
  margin: 0 0 14px;
  font-size: .98rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.78);
  font-weight: 650;
}

/* Right column placeholder + panels behavior */
.menu__placeholder{ display: block; }
.menu__panel{ display: none; }

/* Hide placeholder + show correct panel */
#tab-keynotes:checked ~ .menu__inner .menu__placeholder{ display:none; }
#tab-keynotes:checked ~ .menu__inner .menu__panel--keynotes{ display:block; }

#tab-organizers:checked ~ .menu__inner .menu__placeholder{ display:none; }
#tab-organizers:checked ~ .menu__inner .menu__panel--organizers{ display:block; }

#tab-attendees:checked ~ .menu__inner .menu__placeholder{ display:none; }
#tab-attendees:checked ~ .menu__inner .menu__panel--attendees{ display:block; }

/* Active underline in left column */
#tab-keynotes:checked ~ .menu__inner label[for="tab-keynotes"],
#tab-organizers:checked ~ .menu__inner label[for="tab-organizers"],
#tab-attendees:checked ~ .menu__inner label[for="tab-attendees"]{
  color: var(--menu-text);
  text-decoration: underline;
  text-underline-offset: 8px;
  text-decoration-thickness: 2px;
}

/* Placeholder styling */
.menu__placeholderTitle{
  margin: 0 0 10px;
  font-size: clamp(1.15rem, 2vw, 1.6rem);
  font-weight: 650;
  color: rgba(255,255,255,.90);
}

.menu__placeholderText{
  margin: 0;
  max-width: 38ch;
  color: rgba(255,255,255,.75);
  line-height: 1.6;
  font-size: 1.05rem;
}

/* Panel styling */
.menu__panelTitle{
  margin: 0 0 12px;
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  color: rgba(255,255,255,.90);
  font-weight: 600;
}

.menu__links{
  display: grid;
  gap: 10px;
}

.menu__linkItem{
  display: inline-block;
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  color: rgba(255,255,255,.92);
  text-decoration: none;
  padding: 6px 0;
}

.menu__linkItem:hover{
  text-decoration: underline;
  text-underline-offset: 8px;
  text-decoration-thickness: 2px;
}

/* Mobile: stack columns */
@media (max-width: 840px){
  .menu__grid{ grid-template-columns: 1fr; }
  .menu__col--right{
    border-top: 1px solid rgba(255,255,255,.14);
  }
}

/* Extra tightening on very short screens */
@media (max-height: 760px){
  .menu__col{ padding: 20px 24px 18px; }
  .menu__direct{ padding: 10px 0; }
  .menu__reset{ padding-top: 12px; }
}

/* Menu overlay (CSS only) — IMPORTANT: doesn’t block clicks when closed */
.menu-overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
  z-index: 55;
}

#menu:target ~ .menu-overlay{
  opacity: 1;
  pointer-events: auto;
}

/* =========================
   SEARCH (JS only)
   ========================= */
.search-overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
  z-index: 65;
}

body.search-open .search-overlay{
  opacity: 1;
  pointer-events: auto;
}

.search{
  position: fixed;
  inset: 0;
  display: grid;
  place-items: start center;
  padding: calc(var(--nav-h) + 18px) 18px 18px;
  z-index: 70;
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease;
}

body.search-open .search{
  opacity: 1;
  pointer-events: auto;
}

.search__inner{
  width: min(860px, 92vw);
  background: rgba(10,10,10,.94);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 18px;
}

.search__top{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.search__title{
  margin:0;
  font-size: 1.25rem;
  color: rgba(255,255,255,.85);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.search__close{
  border:0;
  background: transparent;
  color: rgba(255,255,255,.85);
  font-size: 1.25rem;
  cursor: pointer;
  padding: 8px;
  border-radius: 10px;
}

.search__close:hover{ background: rgba(255,255,255,.06); }

.search__input{
  width: 100%;
  font-size: 1.2rem;
  padding: 14px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.92);
  outline: none;
}

.search__results{ margin-top: 14px; }

.search__list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.search__item{
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  padding: 12px 14px;
  background: rgba(255,255,255,.03);
}

.search__link{
  display: inline-block;
  color: rgba(255,255,255,.92);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 650;
}

.search__link:hover{
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-thickness: 2px;
}

.search__url{
  display:block;
  margin-top: 4px;
  color: rgba(255,255,255,.60);
  font-size: .95rem;
}

.search__empty{
  color: rgba(255,255,255,.70);
  margin: 8px 2px;
}

/* =========================
   HERO
   ========================= */
.hero{
  min-height: 100dvh;
  display:grid;
  place-items: end start;
  padding: calc(var(--nav-h) + 42px) 18px 42px;
  background:
    linear-gradient(to top, rgba(0,0,0,.75), rgba(0,0,0,.25) 45%, rgba(0,0,0,0)),
    url("assets/hero.jpg") center/cover no-repeat;
}

.hero-inner{
  max-width: min(980px, 92vw);
}

/* Shorter hero for keynote / profile pages */
.hero--profile{
  min-height: 50vh;        /* desktop */
  padding-top: calc(var(--nav-h) + 32px);
  padding-bottom: 32px;
}

/* Even shorter on small screens */
@media (max-width: 768px){
  .hero--profile{
    min-height: 38vh;
  }
}

.kicker{
  color: var(--muted);
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .9rem;
  margin: 0 0 10px;
}

.title{
  margin:0;
  font-weight: 650;
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  line-height: 1.02;
}

.subtitle{
  margin: 14px 0 0;
  max-width: 62ch;
  color: rgba(255,255,255,.82);
  font-size: 1.08rem;
  line-height: 1.55;
}

/* =========================
   MAIN
   ========================= */
main{
  background:#0f0f10;
  padding: 42px 18px 80px;
}

.wrap{
  max-width: 1100px;
  margin: 0 auto;
}

.blurb{
  margin: 0 auto 26px;
  color: rgba(255,255,255,.82);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 78ch;
}

.section-title{
  margin: 34px 0 14px;
  font-size: 1.3rem;
  letter-spacing: .02em;
}

/* =========================
   CONTACT PAGE (matches site style)
   ========================= */

.page-head{
  margin: 10px 0 22px;
}

.page-title{
  margin: 0 0 8px;
  font-size: clamp(2rem, 3.2vw, 2.6rem);
  font-weight: 650;
  letter-spacing: .01em;
}

.page-subtitle{
  margin: 0;
  max-width: 70ch;
  color: rgba(255,255,255,.78);
  font-size: 1.05rem;
  line-height: 1.65;
}

/* Layout: info left, map right */
.contact-layout{
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 14px;
  align-items: start;
}

.contact-stack{
  display: grid;
  gap: 14px;
}

/* Panel = same visual language as cards/embeds */
.panel{
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px;
  background: rgba(255,255,255,.03);
  padding: 18px 18px 16px;
}

.panel--muted{
  background: rgba(255,255,255,.02);
}

.panel-title{
  margin: 0 0 12px;
  font-size: 1.15rem;
  font-weight: 650;
  letter-spacing: .01em;
}

.panel-text{
  margin: 0;
  color: rgba(255,255,255,.78);
  line-height: 1.65;
}

.panel-hint{
  margin: 12px 2px 0;
  color: rgba(255,255,255,.62);
  font-size: .98rem;
  line-height: 1.55;
}

/* Meta list: clean, modern label/value */
.meta-list{
  margin: 0;
  display: grid;
  gap: 12px;
}

.meta-row{
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 14px;
  padding: 10px 0;
  border-top: 1px solid rgba(255,255,255,.10);
}

.meta-row:first-child{
  border-top: 0;
  padding-top: 0;
}

.meta-row dt{
  color: rgba(255,255,255,.62);
  font-weight: 650;
  letter-spacing: .02em;
}

.meta-row dd{
  margin: 0;
  color: rgba(255,255,255,.90);
  line-height: 1.6;
}

/* Reuse your underline-link language */
.textlink{
  color: rgba(255,255,255,.92);
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
}

.textlink::after{
  content:"";
  position:absolute;
  left:0; right:0; bottom:-2px;
  height:2px;
  background: rgba(255,255,255,.55);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .16s ease;
}

.textlink:hover::after,
.textlink:focus-visible::after{
  transform: scaleX(1);
}

/* Map panel uses same panel spacing */
.map-panel .map-box{
  margin: 0;
}

.map-panel .map-box iframe{
  height: 460px;
}

/* Responsive */
@media (max-width: 900px){
  .contact-layout{
    grid-template-columns: 1fr;
  }
  .meta-row{
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .map-panel .map-box iframe{
    height: 420px;
  }
}

/* =========================
   CARDS
   ========================= */
.cards{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}

.card{
  grid-column: span 6;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px;
  background: rgba(255,255,255,.03);
  overflow:hidden;
  text-decoration:none;
  color: var(--fg);
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
}

.card:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.22);
}

.card-media{
  height:160px;
  background:#222 center/cover no-repeat;
}

.card-body{
  padding: 16px 16px 18px;
}

.card-title{
  margin: 0 0 6px;
  font-size: 1.15rem;
  font-weight: 650;
}

.card-text{
  margin: 0;
  color: rgba(255,255,255,.76);
  line-height: 1.55;
}

.card-meta{
  margin-top: 12px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  color: rgba(255,255,255,.75);
  font-size: .95rem;
}

@media (max-width: 840px){
  .card{ grid-column: span 12; }
  .card-media{ height:180px; }
}

/* =========================
   CARDS — 3 across variant
   ========================= */
.cards.cards--three{
  grid-template-columns: repeat(12, 1fr);
}

.cards.cards--three .card{
  grid-column: span 4;
}

/* Tablet: 2 across */
@media (max-width: 980px){
  .cards.cards--three .card{
    grid-column: span 6;
  }
}

/* Mobile: 1 across */
@media (max-width: 840px){
  .cards.cards--three .card{
    grid-column: span 12;
  }
}

/* ===== Land Acknowledgement Block ===== */
.land-acknowledgement {
  max-width: 800px;
  margin: 2rem auto;
  padding: 1.5rem;
  line-height: 1.6;
  font-size: 1.05rem;
  font-style: italic;
  border-left: 4px solid #E6B767;
  border-radius: 4px;
}

/* =========================
   KEYNOTE PROFILE CARD
   ========================= */
.profile-card{
  max-width: 1100px;
  margin: 60px auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  background: #000000;
  color: #FFFFFF;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,.15);
}

.profile-card__image{
  background-size: cover;
  background-position: center;
  min-height: 420px;
}

.profile-card__content{
  padding: 48px 46px;
  font-size: 1.05rem;
  line-height: 1.7;
}

.profile-card__name{
  margin: 0 0 18px;
  font-size: 2.4rem;
  font-weight: 650;
  line-height: 1.1;
}

.profile-card__content p{
  margin: 0 0 16px;
}

@media (max-width: 900px){
  .profile-card{
    grid-template-columns: 1fr;
  }

  .profile-card__image{
    min-height: 320px;
  }

  .profile-card__content{
    padding: 36px 28px;
  }

  .profile-card__name{
    font-size: 2rem;
  }
}

/* =========================
   CARDS — single big card
   ========================= */

.cards.cards--single{
  grid-template-columns: repeat(12, 1fr); /* keeps compatibility with your card grid */
}

.cards.cards--single .card--feature{
  grid-column: span 12;             /* full width = bigger than the others */
  border-radius: 22px;             /* slightly bigger feel */
}

.cards.cards--single .card--feature .card-media{
  height: clamp(220px, 34vw, 360px); /* taller hero-like media */
}

.cards.cards--single .card--feature .card-body{
  padding: 22px 22px 24px;          /* roomier */
}

.cards.cards--single .card--feature .card-title{
  font-size: clamp(1.35rem, 2.2vw, 1.8rem);
}

.cards.cards--single .card--feature .card-text{
  font-size: 1.06rem;
  max-width: 80ch;
}

/* Optional: slightly stronger hover on the big card */
.cards.cards--single .card--feature:hover{
  transform: translateY(-3px);
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.26);
}

/* =========================
   EMBEDS
   ========================= */

/* Google Form embed */
.form-embed{
  margin-top: 18px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.03);
  box-shadow: 0 12px 40px rgba(0,0,0,.18);
}

.form-embed iframe{
  width: 100%;
  height: min(1100px, 85vh);
  border: 0;
  display: block;
}

/* Map embed box */
.map-box{
  margin: 22px 0 30px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.03);
  box-shadow: 0 12px 40px rgba(0,0,0,.18);
}

.map-box iframe{
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}

@media (min-width: 900px){
  .map-box iframe{
    height: 520px;
  }
}

/* =========================
   CONTENT IMAGE
   ========================= */
.content-image{
  margin: 26px auto 32px;
  max-width: 1100px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.03);
  box-shadow: 0 12px 40px rgba(0,0,0,.18);
}

.content-image img{
  width: 100%;
  height: auto;
  display: block;
}

.content-image figcaption{
  padding: 12px 16px 14px;
  font-size: .95rem;
  color: rgba(255,255,255,.70);
  line-height: 1.55;
  background: rgba(0,0,0,.25);
}

/* =========================
   PROGRAM (table-like grid)
   ========================= */
.program{
  max-width: 1100px;
  margin: 0 auto;
  color: var(--fg);
}

.program__header{
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px;
  background: rgba(255,255,255,.03);
  box-shadow: 0 12px 40px rgba(0,0,0,.18);
  padding: 18px 18px 16px;
  margin: 0 0 18px;
}

.program__title{
  margin: 0 0 8px;
  font-size: clamp(2rem, 3.2vw, 2.6rem);
  font-weight: 650;
  letter-spacing: .01em;
}

.program__sub{
  margin: 0;
  max-width: 75ch;
  color: rgba(255,255,255,.78);
  font-size: 1.05rem;
  line-height: 1.65;
}

.program-day{
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px;
  background: rgba(255,255,255,.03);
  box-shadow: 0 12px 40px rgba(0,0,0,.18);
  overflow: hidden;
  margin: 0 0 18px;
}

.program-day__head{
  padding: 16px 18px 12px;
  border-bottom: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.18);
}

.program-day__head h2{
  margin: 0;
  font-size: 1.25rem;
  font-weight: 650;
  letter-spacing: .01em;
}

.program-meta{
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  color: rgba(255,255,255,.72);
  font-size: .95rem;
}

.program-meta b{ color: rgba(255,255,255,.92); }

.program-themes{
  margin: 10px 0 0;
  padding-left: 18px;
  color: rgba(255,255,255,.72);
  line-height: 1.55;
}

.program-grid{
  overflow-x: auto;
}

.program-row{
  display: grid;
  grid-template-columns: 150px 1fr 320px;
  align-items: start;
  border-top: 1px solid rgba(255,255,255,.10);
}

.program-row--head{
  border-top: 0;
  background: rgba(0,0,0,.35);
}

.program-row--head .program-cell{
  color: rgba(255,255,255,.82);
  font-weight: 650;
  font-size: .95rem;
  letter-spacing: .02em;
}

.program-cell{
  padding: 16px 18px;
  line-height: 1.6;
  color: rgba(255,255,255,.90);
  overflow-wrap: anywhere;
}

.program-cell--time,
.program-cell--event{
  border-right: 1px solid rgba(255,255,255,.16);
}

.program-cell--time{
  font-weight: 650;
  color: rgba(255,255,255,.86);
  white-space: nowrap;
}

.program-cell--event{
  padding-left: 26px;
  padding-right: 26px;
}

.program-cell--people{
  padding-left: 26px;
  color: rgba(255,255,255,.82);
}

.program-row:nth-child(even):not(.program-row--head){
  background: rgba(255,255,255,.015);
}

.program-row:not(.program-row--head):hover{
  background: rgba(230,183,103,.10);
}

.program-row--muted{
  background: rgba(255,255,255,.02);
}

.program-row--muted .program-cell{
  color: rgba(255,255,255,.72);
}

@media (min-width: 821px){
  .program-row--head{
    position: sticky;
    top: 0;
    z-index: 5;
    backdrop-filter: blur(6px);
  }
}

@media (max-width: 820px){
  .program-row{
    min-width: 760px;
  }
}

/* =========================
   SPONSORS
   ========================= */
.sponsors-plain{
  max-width: 1100px;
  margin: 26px auto 34px;
}

.sponsors-plain__top{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: center;
}

.sponsors-plain__bottom{
  margin-top: 18px;
  display: grid;
  justify-items: center;
}

.sponsors-plain__logo{
  width: 100%;
  max-width: 520px;
  height: 92px;
  object-fit: contain;
  display: block;
  filter: none;
  border-radius: 12px;
}

.sponsors-plain__logo--wide{
  max-width: 860px;
  height: 110px;
}

@media (max-width: 840px){
  .sponsors-plain__top{
    grid-template-columns: 1fr;
    justify-items: center;
  }
  .sponsors-plain__logo{
    max-width: 620px;
    height: 98px;
  }
  .sponsors-plain__logo--wide{
    height: 120px;
  }
}

/* =========================
   FOOTER
   ========================= */
.site-footer{
  background:#0b0b0b;
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 22px 18px;
}

.footer-inner{
  max-width: 1100px;
  margin: 0 auto;
  display:flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-text{
  margin:0;
  color: rgba(255,255,255,.70);
}

.footer-contact{
  color: rgba(255,255,255,.88);
  text-decoration: none;
  position: relative;
  padding: 8px 0;
  font-size: 1.05rem;
}

.footer-contact::after{
  content:"";
  position:absolute;
  left:0; right:0; bottom:0;
  height: 2px;
  background: rgba(255,255,255,.65);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .16s ease;
}

.footer-contact:hover::after,
.footer-contact:focus-visible::after{
  transform: scaleX(1);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  .menu, .menu-overlay, .layout, .search, .search-overlay { transition:none; }
}
