/* ============================================================
   CEEDUCON 2026 — design system
   Brand: navy #0d5e9d · orange #ec722f · sky #45c0ea · white
   Type: Tabac Sans Regular/Medium + Axiforma Bold accents
   ============================================================ */

@font-face {
  font-family: "Tabac Sans";
  src: url("../assets/fonts/Tabac-Sans-Regular.woff2") format("woff2"),
       url("../assets/fonts/Tabac-Sans-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Tabac Sans";
  src: url("../assets/fonts/Tabac-Sans-Medium.woff2") format("woff2"),
       url("../assets/fonts/Tabac-Sans-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Tabac Sans";
  src: url("../assets/fonts/Tabac-Sans-Bold.woff2") format("woff2"),
       url("../assets/fonts/Tabac-Sans-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Axiforma";
  src: url("../assets/fonts/Axiforma-Bold.woff2") format("woff2"),
       url("../assets/fonts/Axiforma-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --navy: #0d5e9d;
  --navy-600: #084c80;
  --deep: #0d5e9d;
  --deep-2: #084c80;
  --orange: #ec722f;
  --orange-600: #b94f18;
  --orange-soft: #fdeee3;
  --sky: #45c0ea;
  --sky-soft: #e2f4fb;
  --white: #ffffff;
  --paper: #f4fbfe;
  --ink: #0d5e9d;
  --muted: #3d6f98;
  --line: #cfe8f5;
  --line-dark: rgba(255, 255, 255, 0.16);
  --glass: rgba(255, 255, 255, 0.06);
  --glass-line: rgba(255, 255, 255, 0.2);
  --font-body: "Tabac Sans", "Segoe UI", Arial, sans-serif;
  --font-heading: "Tabac Sans", "Segoe UI", Arial, sans-serif;
  --font-accent: "Axiforma", "Tabac Sans", Arial, sans-serif;
  --shell: 1360px;
  --pad: clamp(20px, 4.5vw, 72px);
  --shadow-lg: 0 30px 70px rgba(13, 94, 157, 0.22);
  --shadow-md: 0 18px 44px rgba(13, 94, 157, 0.12);
  --shadow-sm: 0 10px 26px rgba(13, 94, 157, 0.08);
  --ease: cubic-bezier(0.22, 0.61, 0.24, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--white);
  color: var(--ink);
  font: 400 16px/1.55 var(--font-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.modal-open { overflow: hidden; }
main { display: block; }
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 500; }
img { max-width: 100%; }
svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
[hidden] { display: none !important; }
::selection { background: var(--sky); color: var(--deep-2); }
:focus-visible { outline: 3px solid var(--sky); outline-offset: 2px; }

.shell { width: min(100%, var(--shell)); margin-inline: auto; padding-inline: var(--pad); }
.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; }
.skip-link { position: fixed; z-index: 1000; left: 16px; top: -80px; padding: 12px 18px; background: var(--orange); color: var(--deep-2); font-weight: 700; transition: top 0.2s; }
.skip-link:focus { top: 16px; }

/* ---------- Reveal on scroll ---------- */
.js [data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.js [data-reveal].is-visible { opacity: 1; transform: none; }
.js [data-reveal="2"] { transition-delay: 0.08s; }
.js [data-reveal="3"] { transition-delay: 0.16s; }
.js [data-reveal="4"] { transition-delay: 0.24s; }

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 54px;
  padding: 0 26px;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: var(--font-accent);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: background 0.18s var(--ease), border-color 0.18s var(--ease), color 0.18s var(--ease), transform 0.18s var(--ease), box-shadow 0.18s var(--ease);
}
.btn::after { content: "→"; font-size: 16px; transition: transform 0.22s var(--ease); }
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn:hover::after { transform: translateX(5px); }
.btn--primary { background: var(--deep); border-color: var(--deep); color: var(--white); box-shadow: inset 0 -4px 0 var(--orange); }
.btn--primary:hover { background: var(--navy-600); border-color: var(--navy-600); color: var(--white); box-shadow: inset 0 -4px 0 var(--orange), var(--shadow-md); }
.btn--ghost { border-color: rgba(255, 255, 255, 0.38); color: var(--white); }
.btn--ghost:hover { border-color: var(--sky); background: rgba(69, 192, 234, 0.14); }
.btn--dark { background: var(--deep); border-color: var(--deep); color: var(--white); }
.btn--dark:hover { background: var(--navy-600); border-color: var(--navy-600); }
.btn--outline { border-color: var(--deep); color: var(--deep); }
.btn--outline:hover { background: var(--deep); color: var(--white); }
.btn--plain { min-height: 0; padding: 0 0 6px; border: 0; border-bottom: 2px solid var(--orange); color: inherit; font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em; }
.btn--plain:hover { color: var(--orange-600); }
.mt-lg { margin-top: 34px; }

/* ---------- Kickers & headings ---------- */
.kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  color: var(--deep);
  font-family: var(--font-accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.kicker::before { content: ""; flex: 0 0 auto; width: 9px; height: 9px; background: var(--orange); }
.on-dark .kicker, .kicker--light { color: var(--white); }

.display-1 { margin: 0; font-size: clamp(46px, 6.4vw, 100px); line-height: 0.94; letter-spacing: -0.035em; font-weight: 500; }
.display-2 { margin: 0; font-size: clamp(34px, 4.2vw, 64px); line-height: 1; letter-spacing: -0.03em; font-weight: 500; }
.display-3 { margin: 0; font-size: clamp(26px, 3vw, 42px); line-height: 1.05; letter-spacing: -0.025em; font-weight: 500; }
.lead { margin: 22px 0 0; font-size: clamp(16px, 1.25vw, 19px); line-height: 1.65; color: var(--muted); }
.on-dark .lead { color: rgba(255, 255, 255, 0.78); }

/* ---------- Sections ---------- */
.section { padding: clamp(84px, 9.5vw, 136px) 0; background: var(--white); }
.section--paper { background: var(--paper); }
.section--navy { background: linear-gradient(160deg, var(--navy) 0%, var(--navy) 62%, var(--deep-2) 100%); color: var(--white); }
.section--flush-top { padding-top: 0; }
.section--editor-content { padding: clamp(44px, 5vw, 72px) 0; background: var(--paper); }
.wp-content {
  max-width: 880px;
  color: var(--deep);
  font-size: clamp(17px, 1.8vw, 20px);
  line-height: 1.72;
}
.wp-content > * { margin-top: 0; margin-bottom: 1.1em; }
.wp-content > :last-child { margin-bottom: 0; }
.wp-content h2, .wp-content h3, .wp-content h4 { color: var(--deep); line-height: 1.05; }
.wp-content a { color: var(--navy); font-weight: 700; text-decoration-thickness: 2px; text-underline-offset: 0.18em; }
.wp-content img { max-width: 100%; height: auto; border-radius: 24px; }
.wp-content .wp-block-button__link { border-radius: 999px; background: var(--deep); color: var(--white); box-shadow: inset 0 -4px 0 var(--orange); font-weight: 800; text-decoration: none; }
.wp-content .wp-block-quote { margin-left: 0; padding-left: 22px; border-left: 4px solid var(--orange-600); color: var(--muted); }
.section-head { display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, 420px); gap: clamp(28px, 5vw, 80px); align-items: end; margin-bottom: clamp(40px, 5vw, 72px); }
.section-head h2 { color: var(--deep); }
.on-dark .section-head h2, .section--navy .section-head h2 { color: var(--white); }
.section-head > p { margin: 0 0 8px; color: var(--muted); font-size: 15px; line-height: 1.7; }
.section--navy .section-head > p { color: rgba(255, 255, 255, 0.72); }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  z-index: 60;
  inset: 0 0 auto;
  color: var(--white);
  background: linear-gradient(180deg, rgba(13, 94, 157, 0.62), rgba(13, 94, 157, 0));
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(13, 94, 157, 0.94);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.12), 0 18px 40px rgba(13, 94, 157, 0.35);
}
.header-inner { height: 76px; display: flex; align-items: center; gap: 34px; }
.brand { display: inline-flex; flex: 0 0 auto; align-items: center; height: 46px; }
.brand img { display: block; width: clamp(148px, 13vw, 196px); max-height: 44px; object-fit: contain; object-position: left center; }
.header-nav { display: flex; align-items: stretch; gap: 4px; height: 100%; margin-left: auto; }
.header-nav a {
  position: relative;
  display: grid;
  place-items: center;
  padding: 0 14px;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--font-accent);
  font-size: 13px;
  font-weight: 700;
  transition: color 0.2s;
}
.header-nav a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 18px;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease);
}
.header-nav a:hover, .header-nav a.is-active { color: var(--white); }
.header-nav a.is-active::after, .header-nav a:hover::after { transform: scaleX(1); }
.header-actions { display: flex; align-items: center; gap: 12px; margin-left: auto; }
.header-print {
  height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font-family: var(--font-accent);
  font-size: 12px;
  font-weight: 700;
  transition: 0.2s;
}
.header-print:hover { border-color: var(--orange); background: var(--orange); color: var(--deep-2); }
.header-print svg { width: 17px; height: 17px; }
.menu-toggle {
  display: none;
  height: 42px;
  align-items: center;
  gap: 9px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font-family: var(--font-accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.menu-toggle svg { width: 18px; height: 18px; }
.menu-toggle[aria-expanded="true"] { border-color: var(--orange); background: var(--orange); color: var(--deep-2); }
.mobile-menu { display: none; padding-block: 8px 20px; }
.mobile-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 52px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.8);
  font-size: 17px;
}
.mobile-menu a::after { content: "→"; color: var(--orange); opacity: 0; transition: 0.2s; }
.mobile-menu a.is-active { color: var(--white); font-weight: 700; }
.mobile-menu a.is-active::after, .mobile-menu a:hover::after { opacity: 1; }

/* ---------- Hero (home) ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding-top: 76px;
  color: var(--white);
  background:
    radial-gradient(1000px 620px at 88% -10%, rgba(69, 192, 234, 0.32), transparent 62%),
    radial-gradient(820px 560px at -12% 108%, rgba(236, 114, 47, 0.24), transparent 60%),
    linear-gradient(152deg, var(--navy) 0%, var(--navy) 62%, var(--deep-2) 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.13) 1px, transparent 1.6px);
  background-size: 30px 30px;
  mask-image: radial-gradient(720px 480px at 14% 8%, #000 0%, transparent 74%);
  -webkit-mask-image: radial-gradient(720px 480px at 14% 8%, #000 0%, transparent 74%);
  pointer-events: none;
}
.hero-ghost {
  position: absolute;
  right: -0.06em;
  bottom: -0.14em;
  z-index: 0;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.12);
  font-size: clamp(180px, 28vw, 420px);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 0.8;
  pointer-events: none;
  user-select: none;
}
.hero-ring {
  position: absolute;
  right: -10vw;
  top: 8vh;
  width: 52vw;
  height: 52vw;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  pointer-events: none;
}
.hero-ring::after {
  content: "";
  position: absolute;
  inset: 60px;
  border: 1px solid rgba(69, 192, 234, 0.22);
  border-radius: 50%;
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(330px, 0.65fr);
  align-items: center;
  gap: clamp(36px, 5vw, 84px);
  padding-top: clamp(56px, 8vh, 108px);
  padding-bottom: clamp(48px, 7vh, 92px);
}
.hero-copy,
.page-hero-grid > *,
.section-head > *,
.statement-grid > *,
.media-showcase > *,
.feature-split > *,
.contact-band > *,
.speakers-grid > * {
  min-width: 0;
}
.hero-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 26px;
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--font-accent);
  font-size: clamp(13px, 1.1vw, 16px);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero-kicker::before { content: ""; width: 34px; height: 2px; background: var(--orange); }
.hero h1 { max-width: 13em; margin: 0; font-size: clamp(48px, 6.2vw, 96px); font-weight: 500; line-height: 0.94; letter-spacing: -0.035em; }
.hero h1 em { font-style: normal; color: var(--sky); }
.hero-lead { max-width: 620px; margin: 26px 0 0; color: rgba(255, 255, 255, 0.8); font-size: clamp(16px, 1.25vw, 19px); line-height: 1.6; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}
.hero-meta strong { color: var(--white); font-size: 14px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.countdown-strip {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 34px;
  padding: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.countdown-strip strong { color: var(--orange); font-size: clamp(30px, 3vw, 44px); font-weight: 700; letter-spacing: -0.04em; line-height: 1; }

/* Hero event panel */
.event-card {
  position: relative;
  align-self: center;
  padding: 30px 28px 26px;
  border: 1px solid var(--glass-line);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05));
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-lg);
}
.event-card::before { content: ""; position: absolute; inset: 0 auto 0 0; width: 5px; background: var(--orange); }
.event-date { display: flex; align-items: center; gap: 16px; padding-bottom: 22px; border-bottom: 1px solid var(--line-dark); }
.event-date strong { font-size: 64px; line-height: 0.82; letter-spacing: -0.06em; color: var(--white); }
.event-date span { color: var(--white); font-size: 13px; font-weight: 700; line-height: 1.2; letter-spacing: 0.18em; }
.event-card-row { display: grid; grid-template-columns: 92px 1fr; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--line-dark); }
.event-card-row span { color: rgba(255, 255, 255, 0.55); font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; }
.event-card-row strong { color: var(--white); font-size: 14px; }
.event-card > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 22px;
  padding: 15px 16px;
  background: var(--white);
  color: var(--deep);
  font-size: 13px;
  font-weight: 700;
  transition: 0.2s;
}
.event-card > a:hover { background: var(--deep); color: var(--white); transform: translateY(-2px); }
.event-card > a + a { margin-top: 10px; }

/* Hero stats */
.hero-stats {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-dark);
  padding-top: 26px;
  padding-bottom: 30px;
}
.hero-stats > div { padding: 0 26px; border-left: 1px solid var(--line-dark); }
.hero-stats > div:first-child { padding-left: 0; border-left: 0; }
.hero-stats strong { display: block; font-size: clamp(30px, 3vw, 46px); font-weight: 700; letter-spacing: -0.04em; line-height: 1; }
.hero-stats span { display: block; margin-top: 8px; color: rgba(255, 255, 255, 0.56); font-size: 12px; letter-spacing: 0.05em; text-transform: uppercase; }

/* ---------- Page hero (subpages) ---------- */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(150px, 20vh, 210px) 0 clamp(56px, 8vh, 88px);
  color: var(--white);
  background:
    radial-gradient(860px 520px at 86% -12%, rgba(69, 192, 234, 0.3), transparent 62%),
    linear-gradient(152deg, var(--navy) 0%, var(--navy) 62%, var(--deep-2) 100%);
}
.page-hero--orange {
  background:
    radial-gradient(860px 520px at 88% -10%, rgba(236, 114, 47, 0.34), transparent 60%),
    linear-gradient(152deg, var(--navy) 0%, var(--navy) 62%, var(--deep-2) 100%);
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1.6px);
  background-size: 30px 30px;
  mask-image: radial-gradient(640px 420px at 10% 0%, #000 0%, transparent 72%);
  -webkit-mask-image: radial-gradient(640px 420px at 10% 0%, #000 0%, transparent 72%);
  pointer-events: none;
}
.page-hero::after {
  content: "";
  position: absolute;
  right: -140px;
  top: -60px;
  width: 480px;
  height: 480px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  pointer-events: none;
}
.page-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.55fr);
  align-items: end;
  gap: clamp(32px, 6vw, 90px);
}
.page-hero .kicker { color: var(--white); }
.page-hero h1 { margin: 0; font-size: clamp(42px, 5.4vw, 84px); font-weight: 500; line-height: 0.95; letter-spacing: -0.035em; }
.page-hero-note { max-width: 640px; margin: 22px 0 0; color: rgba(255, 255, 255, 0.76); font-size: clamp(15px, 1.15vw, 18px); line-height: 1.6; }
.page-hero-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 26px;
  border: 1px solid var(--glass-line);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05));
  backdrop-filter: blur(16px);
}
.page-hero-card::before { content: ""; position: absolute; inset: 0 auto 0 0; width: 5px; background: var(--orange); }
.page-hero-card img { width: 130px; max-height: 160px; object-fit: contain; object-position: left top; margin: 0 0 22px; }
.page-hero-card span { color: var(--white); font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; }
.page-hero-card strong { display: block; margin: 10px 0 10px; color: var(--white); font-size: clamp(21px, 1.8vw, 28px); line-height: 1.05; letter-spacing: -0.02em; }
.page-hero-card strong a:hover { color: var(--sky); }
.page-hero-card p { margin: 0; color: rgba(255, 255, 255, 0.74); font-size: 14px; line-height: 1.6; }
.page-crumbs { display: flex; align-items: center; gap: 10px; margin: 0 0 22px; color: rgba(255, 255, 255, 0.55); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; }
.page-crumbs a:hover { color: var(--white); }
.page-crumbs em { font-style: normal; color: var(--sky); }
.page-crumbs span { color: rgba(255, 255, 255, 0.35); }

/* ---------- Statement / about teaser ---------- */
.statement-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr); gap: clamp(36px, 6vw, 100px); align-items: start; }
.statement-grid h2 { color: var(--deep); }
.statement-copy p { margin: 0 0 22px; color: #33506a; font-size: clamp(16px, 1.3vw, 20px); line-height: 1.7; }
.statement-copy p:last-of-type { margin-bottom: 0; }
.fact-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.fact-chips span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--deep);
  font-size: 13px;
  font-weight: 700;
}
.fact-chips span::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--orange); }
.on-dark .fact-chips span { border-color: rgba(255, 255, 255, 0.24); background: rgba(255, 255, 255, 0.07); color: var(--white); }

/* Numbered stat row */
.stat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; margin-top: clamp(44px, 6vw, 80px); border: 1px solid var(--line); background: var(--line); }
.stat-row > div { padding: 28px 26px 24px; background: var(--white); }
.stat-row strong { display: block; color: var(--navy); font-size: clamp(34px, 3.4vw, 54px); font-weight: 700; letter-spacing: -0.04em; line-height: 1; }
.stat-row span { display: block; margin-top: 10px; color: var(--muted); font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; }

/* ---------- Theme cards ---------- */
.theme-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(14px, 1.6vw, 22px); }
.theme-card {
  --accent: var(--sky);
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 320px;
  padding: clamp(24px, 2.2vw, 32px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  overflow: hidden;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease), border-color 0.3s var(--ease);
}
.theme-card::before { content: ""; position: absolute; inset: 0 auto 0 0; width: 5px; background: var(--accent); }
.theme-card:hover { transform: translateY(-8px); background: rgba(255, 255, 255, 0.09); border-color: rgba(255, 255, 255, 0.26); }
.theme-card > span {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.4);
  font-size: 52px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
}
.theme-card h3 { margin: auto 0 14px; padding-top: 48px; font-size: clamp(21px, 1.8vw, 27px); line-height: 1.06; letter-spacing: -0.02em; color: var(--white); }
.theme-card p { margin: 0; color: rgba(255, 255, 255, 0.72); font-size: 14px; line-height: 1.62; }
.theme-card--sky { --accent: var(--sky); }
.theme-card--orange { --accent: var(--orange); }
.theme-card--white { --accent: #bfe6f7; }
.theme-card--navy { --accent: #7fc4e8; }

/* ---------- Programme overview ---------- */
.day-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; border: 1px solid var(--line); background: var(--line); box-shadow: var(--shadow-sm); }
.day-cards article { position: relative; min-height: 230px; display: flex; flex-direction: column; padding: 30px 28px; background: var(--white); }
.day-cards article > span {
  display: inline-flex;
  width: max-content;
  min-height: 32px;
  align-items: center;
  padding: 0 12px;
  background: var(--deep);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.day-cards article:nth-child(2) > span { background: var(--orange); color: var(--deep-2); }
.day-cards h3 { margin: auto 0 12px; padding-top: 44px; color: var(--deep); font-size: clamp(22px, 1.9vw, 30px); line-height: 1.05; letter-spacing: -0.025em; }
.day-cards p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.65; }

.notice-cards { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(14px, 1.6vw, 22px); margin-top: clamp(18px, 2vw, 26px); }
.notice-card { position: relative; padding: 30px 28px; border: 1px solid var(--line); background: var(--white); overflow: hidden; }
.notice-card--sky { background: var(--sky-soft); border-color: #bfe2f2; }
.notice-card--orange { background: var(--orange-soft); border-color: #f3cdb2; }
.notice-card--wide { grid-column: 1 / -1; }
.notice-card span { display: block; color: var(--orange-600); font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; }
.notice-card--sky span { color: var(--navy); }
.notice-card h3 { margin: 14px 0 10px; color: var(--deep); font-size: clamp(21px, 1.8vw, 28px); line-height: 1.06; letter-spacing: -0.02em; }
.notice-card p { max-width: 560px; margin: 0 0 20px; color: #3c5871; font-size: 14px; line-height: 1.65; }
.notice-card .btn { min-height: 46px; padding: 0 20px; font-size: 13px; }

/* ---------- Media showcase ---------- */
.section--media {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(13, 94, 157, 0.07) 1px, transparent 1px),
    linear-gradient(180deg, rgba(13, 94, 157, 0.07) 1px, transparent 1px),
    var(--white);
  background-size: 42px 42px;
}
.media-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1.22fr);
  gap: clamp(34px, 5vw, 78px);
  align-items: center;
}
.media-copy h2 { color: var(--deep); }
.media-copy p:not(.kicker) {
  max-width: 620px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
}
.media-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.media-actions button { font: inherit; }
.media-mosaic {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 0.75fr;
  grid-auto-rows: 170px;
  gap: 12px;
}
.media-tile {
  position: relative;
  min-width: 0;
  min-height: 0;
  display: block;
  padding: 0;
  border: 0;
  background: var(--deep);
  color: var(--white);
  cursor: pointer;
  overflow: hidden;
  text-align: left;
  box-shadow: var(--shadow-sm);
}
.media-tile--large { grid-row: span 2; }
.media-tile img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.55s var(--ease), filter 0.55s var(--ease);
}
.media-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(13, 94, 157, 0.78));
  pointer-events: none;
}
.media-tile span {
  position: absolute;
  z-index: 2;
  left: 16px;
  bottom: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.media-tile span::before { content: ""; width: 8px; height: 8px; background: var(--orange); }
.media-tile:hover img,
.media-tile:focus-visible img { transform: scale(1.09); filter: saturate(1.08); }
.media-lightbox {
  position: fixed;
  z-index: 130;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(8, 76, 128, 0.88);
  backdrop-filter: blur(10px);
}
.media-lightbox[hidden] { display: none !important; }
.media-lightbox-inner {
  position: relative;
  width: min(1080px, 100%);
  background: var(--deep-2);
  color: var(--white);
  box-shadow: var(--shadow-lg);
}
.media-lightbox img {
  display: block;
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  background: var(--deep-2);
}
.media-lightbox-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}
.media-lightbox-close {
  position: absolute;
  right: 12px;
  top: 12px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(13, 94, 157, 0.72);
  color: var(--white);
  cursor: pointer;
  font-size: 26px;
  line-height: 1;
}
.media-lightbox-close:hover { background: var(--orange); color: var(--deep-2); }

/* ---------- Feature split (venue etc.) ---------- */
.feature-split { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr); gap: 1px; border: 1px solid var(--line); background: var(--line); }
.feature-split > div { padding: clamp(30px, 4vw, 56px); background: var(--white); }
.feature-split h2, .feature-split h3.display-3 { color: var(--deep); }
.feature-split p { max-width: 640px; margin: 18px 0 0; color: var(--muted); font-size: 15px; line-height: 1.7; }
.feature-split .btn { margin-top: 30px; }
.feature-panel { display: flex; flex-direction: column; justify-content: flex-end; background: linear-gradient(160deg, var(--navy), var(--navy) 62%, var(--deep-2)) !important; color: var(--white); }
.feature-panel span { color: var(--sky); font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; }
.feature-panel strong { display: block; margin-top: 26px; font-size: clamp(26px, 2.6vw, 40px); font-weight: 700; line-height: 1; letter-spacing: -0.03em; }
.feature-panel p { color: rgba(255, 255, 255, 0.74) !important; }

/* ---------- Link tiles (plan your conference) ---------- */
.tile-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(14px, 1.6vw, 22px); }
.link-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 240px;
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--white);
  overflow: hidden;
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease), border-color 0.28s var(--ease);
}
.link-tile::after {
  content: "→";
  position: absolute;
  right: 24px;
  bottom: 20px;
  color: var(--orange);
  font-size: 22px;
  transition: transform 0.28s var(--ease);
}
.link-tile:hover { transform: translateY(-7px); border-color: var(--navy); box-shadow: var(--shadow-md); }
.link-tile:hover::after { transform: translateX(6px); }
.link-tile > span { color: var(--navy); font-size: 12px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; }
.link-tile h3 { margin: auto 0 10px; padding-top: 42px; color: var(--deep); font-size: clamp(21px, 1.8vw, 27px); line-height: 1.06; letter-spacing: -0.02em; }
.link-tile p { margin: 0; padding-right: 34px; color: var(--muted); font-size: 14px; line-height: 1.6; }

/* ---------- Contact band ---------- */
.contact-band { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr); gap: clamp(32px, 5vw, 90px); align-items: center; }
.contact-band h2 { color: var(--deep); }
.contact-band .lead a { color: var(--orange-600); font-weight: 700; border-bottom: 2px solid currentColor; }
.contact-band .lead a:hover { color: var(--deep); }
.contact-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.partners-card { position: relative; padding: 30px 28px; border: 1px solid var(--line); background: var(--white); box-shadow: var(--shadow-sm); }
.partners-card::before { content: ""; position: absolute; inset: 0 auto 0 0; width: 5px; background: var(--navy); }
.partners-card img { display: block; max-width: 170px; max-height: 72px; object-fit: contain; object-position: left center; margin-bottom: 26px; }
.partners-card span { display: block; color: var(--navy); font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; }
.partners-card strong { display: block; margin: 10px 0 24px; color: var(--deep); font-size: clamp(18px, 1.6vw, 23px); line-height: 1.2; letter-spacing: -0.015em; }
.partners-card p { margin: 10px 0 0; color: var(--muted); font-size: 14px; line-height: 1.65; }

/* ---------- Info grid (practical) ---------- */
.info-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; border: 1px solid var(--line); background: var(--line); }
.info-grid article { min-height: 250px; display: flex; flex-direction: column; padding: 28px 26px; background: var(--white); transition: background 0.25s; }
.info-grid article:hover { background: var(--paper); }
.info-grid article > span { color: var(--navy); font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; }
.info-grid h3 { margin: auto 0 12px; padding-top: 46px; color: var(--deep); font-size: clamp(20px, 1.7vw, 26px); line-height: 1.08; letter-spacing: -0.02em; }
.info-grid p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.62; }

/* FAQ */
.faq-list { margin-top: clamp(20px, 2.4vw, 30px); border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 74px;
  padding: 14px 4px;
  color: var(--deep);
  cursor: pointer;
  font-size: clamp(17px, 1.5vw, 21px);
  font-weight: 700;
  letter-spacing: -0.01em;
  list-style: none;
  transition: color 0.2s;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; flex: 0 0 auto; display: grid; place-items: center; width: 36px; height: 36px; border: 1px solid var(--line); border-radius: 50%; color: var(--orange-600); font-size: 20px; font-weight: 400; transition: 0.25s var(--ease); }
.faq-list summary:hover { color: var(--navy); }
.faq-list details[open] summary::after { content: "−"; background: var(--orange); border-color: var(--orange); color: var(--deep-2); }
.faq-list details p { max-width: 780px; margin: 0; padding: 0 4px 26px; color: var(--muted); font-size: 15px; line-height: 1.7; }

/* Venue band */
.venue-band { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: end; gap: 36px; padding-block: clamp(36px, 5vw, 60px); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.venue-band h2 { color: var(--deep); }
.venue-band p { max-width: 660px; margin: 18px 0 0; color: var(--muted); font-size: 15px; line-height: 1.7; }
.venue-actions { align-self: center; display: flex; flex-wrap: wrap; gap: 12px; justify-content: flex-end; }

/* ---------- Speakers ---------- */
.speakers-grid { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr); gap: clamp(36px, 6vw, 90px); align-items: start; }
.speakers-lead { max-width: 560px; margin: 22px 0 0; color: rgba(255, 255, 255, 0.76); font-size: 15px; line-height: 1.7; }
.step-list { display: grid; gap: 1px; border: 1px solid rgba(255, 255, 255, 0.18); background: rgba(255, 255, 255, 0.18); }
.step-list article { display: grid; grid-template-columns: 64px 1fr; gap: 20px; padding: 26px; background: rgba(255, 255, 255, 0.05); backdrop-filter: blur(6px); }
.step-list article > span {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.45);
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
}
.step-list h3 { margin: 0 0 8px; color: var(--white); font-size: clamp(18px, 1.6vw, 23px); line-height: 1.12; letter-spacing: -0.015em; }
.step-list p { margin: 0; color: rgba(255, 255, 255, 0.74); font-size: 14px; line-height: 1.62; }

.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(12px, 1.4vw, 20px); margin-top: clamp(44px, 5vw, 64px); }
.timeline article { position: relative; padding: 24px 22px 22px; border: 1px solid rgba(255, 255, 255, 0.18); background: rgba(255, 255, 255, 0.05); }
.timeline article::before { content: ""; position: absolute; left: 22px; top: 0; width: 44px; height: 4px; background: var(--orange); }
.timeline span { display: block; margin-bottom: 20px; color: var(--sky); font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; }
.timeline strong { display: block; color: var(--white); font-size: clamp(16px, 1.4vw, 21px); line-height: 1.12; letter-spacing: -0.015em; }
.timeline--light article { border-color: var(--line); background: var(--white); }
.timeline--light span { color: var(--navy); }
.timeline--light strong { color: var(--deep); }

.speaker-cta { grid-column: 1 / -1; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px; margin-top: clamp(28px, 3vw, 44px); padding: clamp(24px, 3vw, 36px); border: 1px solid rgba(255, 255, 255, 0.2); background: rgba(255, 255, 255, 0.07); }
.speaker-cta p { max-width: 640px; margin: 0; color: rgba(255, 255, 255, 0.8); font-size: 15px; line-height: 1.65; }
.speaker-cta strong { color: var(--white); }

/* ---------- Footer ---------- */
.site-footer { position: relative; overflow: hidden; background: linear-gradient(170deg, var(--navy), var(--navy) 68%, var(--deep-2)); color: var(--white); }
.footer-grid { display: grid; grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(0, 0.9fr)); gap: clamp(28px, 4vw, 70px); padding: clamp(54px, 6vw, 78px) 0 clamp(36px, 5vw, 56px); }
.footer-grid img { width: 200px; max-height: 76px; object-fit: contain; object-position: left center; }
.footer-grid p { margin: 18px 0 0; color: rgba(255, 255, 255, 0.66); font-size: 14px; line-height: 1.7; }
.footer-grid h4 { margin: 6px 0 18px; color: var(--sky); font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; }
.footer-grid nav { display: grid; gap: 11px; }
.footer-grid nav a { width: max-content; color: rgba(255, 255, 255, 0.74); font-size: 14px; transition: color 0.2s; }
.footer-grid nav a:hover { color: var(--orange); }
.footer-bottom { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px; padding: 22px 0 26px; border-top: 1px solid var(--line-dark); color: rgba(255, 255, 255, 0.5); font-size: 12px; }
.footer-bottom p { margin: 0; }
.footer-bottom a { color: rgba(255, 255, 255, 0.72); }
.footer-bottom a:hover { color: var(--sky); }
.footer-ghost {
  display: block;
  margin: 0 calc(var(--pad) * -1) -0.24em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.08);
  font-size: clamp(80px, 13.5vw, 210px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 0.8;
  text-align: center;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

/* ============================================================
   Interactive programme module
   ============================================================ */

.schedule-section { padding: clamp(64px, 7vw, 100px) 0 clamp(84px, 9vw, 130px); background: var(--paper); }

.day-bar { display: flex; align-items: stretch; min-height: 76px; border: 1px solid var(--line); background: var(--white); box-shadow: var(--shadow-sm); }
.day-tab { min-width: 230px; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; gap: 3px; padding: 0 26px; border: 0; border-right: 1px solid var(--line); background: transparent; cursor: pointer; }
.day-tab span { color: var(--muted); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; }
.day-tab strong { font-size: 17px; letter-spacing: -0.01em; }
.day-tab.is-active { background: var(--deep); color: var(--white); }
.day-tab.is-active span { color: var(--sky); }
.day-context { display: flex; align-items: center; gap: 10px; margin-left: auto; padding: 0 24px; color: var(--muted); font-size: 12px; }
.day-context-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--sky); }

.control-panel {
  position: sticky;
  z-index: 30;
  top: 76px;
  display: grid;
  grid-template-columns: minmax(270px, 1fr) auto;
  gap: 14px;
  margin: 16px 0 28px;
  padding: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(16px);
}
.search-field { min-width: 0; height: 52px; display: grid; grid-template-columns: 24px 1fr auto; align-items: center; gap: 10px; padding: 0 14px; border: 1px solid var(--line); background: var(--paper); color: var(--muted); }
.search-field:focus-within { border-color: var(--navy); box-shadow: 0 0 0 3px rgba(13, 94, 157, 0.14); }
.search-field input { min-width: 0; border: 0; outline: 0; background: transparent; color: var(--ink); }
.search-field kbd { padding: 3px 7px; border: 1px solid var(--line); border-radius: 5px; background: var(--white); color: var(--muted); font: 10px ui-monospace, monospace; }
.control-actions { display: flex; gap: 8px; }
.control-button { height: 52px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; padding: 0 16px; border: 1px solid var(--line); background: var(--white); cursor: pointer; white-space: nowrap; font-size: 13px; font-weight: 700; transition: 0.2s; }
.control-button:hover { border-color: var(--navy); }
.control-button[aria-pressed="true"] { border-color: var(--deep); background: var(--deep); color: var(--white); }
.view-toggle-button svg { width: 17px; height: 17px; }
.live-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 4px rgba(236, 114, 47, 0.18); }
.favorites-button svg { width: 17px; height: 17px; }
.favorites-button b { min-width: 22px; padding: 3px 6px; border-radius: 999px; background: var(--orange); color: var(--deep-2); font-size: 11px; text-align: center; }
.mobile-filter-button { display: none; }

.filter-drawer { grid-column: 1 / -1; display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(200px, 0.6fr) minmax(220px, 0.75fr); gap: 24px; padding: 16px 4px 2px; border-top: 1px solid var(--line); }
.filter-label { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.filter-label span { font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.filter-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.filter-chip {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  cursor: pointer;
  font-size: 12px;
  transition: 0.18s;
}
.filter-chip i { width: 8px; height: 8px; border-radius: 50%; background: var(--chip-color, var(--navy)); }
.filter-chip:hover { border-color: var(--chip-color, var(--navy)); }
.filter-chip.is-active { border-color: var(--deep); background: var(--deep); color: var(--white); }
.filter-chip--room, .filter-chip--period { min-width: 46px; justify-content: center; }
.filter-footer { grid-column: 1 / -1; display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 12px 4px 2px; border-top: 1px solid var(--line); }
.filter-footer p { margin: 0; color: var(--muted); font-size: 12px; }
.filter-footer button { border: 0; background: transparent; color: var(--orange-600); cursor: pointer; font-size: 12px; font-weight: 700; }
.filter-footer button:hover { color: var(--deep); }

.live-banner { display: flex; align-items: center; gap: 14px; margin: 18px 0 26px; padding: 15px 18px; border: 1px solid #f3cdb2; border-left: 5px solid var(--orange); background: var(--orange-soft); }
.live-banner p { display: flex; flex-wrap: wrap; gap: 4px 12px; margin: 0; font-size: 13px; color: var(--deep); }
.live-banner p span { color: #7a5c44; }
.live-banner button { margin-left: auto; border: 0; background: transparent; color: var(--orange-600); cursor: pointer; font-size: 12px; font-weight: 700; white-space: nowrap; }

.schedule { border-top: 1px solid var(--line); overflow-x: auto; padding-bottom: 8px; }
@supports ((mask-image: linear-gradient(90deg, #000, transparent)) or (-webkit-mask-image: linear-gradient(90deg, #000, transparent))) {
  .schedule {
    -webkit-mask-image: linear-gradient(90deg, #000 0, #000 calc(100% - 42px), transparent 100%);
    mask-image: linear-gradient(90deg, #000 0, #000 calc(100% - 42px), transparent 100%);
  }
}
.room-grid-header { min-width: 1320px; display: grid; grid-template-columns: 112px minmax(0, 1fr); border-bottom: 1px solid var(--line); background: var(--white); }
.room-grid-spacer { display: flex; align-items: center; padding: 13px 18px 13px 0; color: var(--muted); font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; }
.room-grid-labels { display: grid; grid-template-columns: repeat(var(--room-count), minmax(0, 1fr)); gap: 8px; padding: 10px 0 10px 18px; }
.room-grid-labels span { display: grid; place-items: center; min-height: 34px; background: var(--deep); color: var(--white); font-size: 12px; font-weight: 700; }

.time-slot { position: relative; min-width: 1320px; display: grid; grid-template-columns: 112px minmax(0, 1fr); border-bottom: 1px solid var(--line); transition: background 0.25s; }
.time-slot::before { content: ""; position: absolute; left: 102px; top: 0; bottom: 0; width: 1px; background: var(--line); }
.time-slot.is-live { margin-inline: -12px; padding-inline: 12px; border: 1px solid var(--orange); background: rgba(236, 114, 47, 0.06); box-shadow: 0 16px 44px rgba(236, 114, 47, 0.14); }
.time-slot.is-live::before { left: 114px; background: rgba(236, 114, 47, 0.3); }
.time-slot.is-live .slot-time::before { content: "LIVE"; display: block; width: max-content; margin-bottom: 8px; padding: 3px 7px; background: var(--orange); color: var(--deep-2); font-size: 9px; font-weight: 700; letter-spacing: 0.1em; }
.slot-time { padding: 26px 18px 26px 0; }
.slot-time strong { display: block; color: var(--deep); font-size: 22px; font-weight: 700; letter-spacing: -0.03em; }
.slot-time span { display: block; margin-top: 4px; color: var(--muted); font-size: 12px; }
.slot-content { min-width: 0; padding: 20px 0 20px 18px; }
.slot-heading { display: flex; align-items: center; gap: 10px; margin-bottom: 13px; color: var(--muted); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; }
.slot-heading::after { content: ""; flex: 1; height: 1px; background: var(--line); }

.sessions-grid { display: grid; grid-template-columns: repeat(var(--room-count, 8), minmax(0, 1fr)); gap: 8px; }
.session-card {
  --track: var(--sky);
  grid-column: var(--room-start, auto) / span var(--room-span, 1);
  position: relative;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  padding: 16px;
  border: 1px solid var(--line);
  border-left: 5px solid var(--track);
  background: var(--white);
  cursor: pointer;
  text-align: left;
  overflow: hidden;
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease), border-color 0.22s var(--ease);
}
.session-card:hover, .session-card:focus-within { z-index: 2; outline: 0; transform: translateY(-4px); border-color: var(--track); box-shadow: var(--shadow-md); }
.session-card-head { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-bottom: 12px; }
.session-card-open { flex: 1; width: 100%; display: flex; flex-direction: column; padding: 0; border: 0; outline: 0; background: transparent; color: inherit; cursor: pointer; text-align: left; }
.room-tag { display: inline-flex; align-items: center; gap: 7px; padding: 5px 10px; border-radius: 999px; background: var(--paper); color: var(--deep); font-size: 10px; font-weight: 700; letter-spacing: 0.04em; }
.room-tag::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--track); }
.favorite-star { flex: 0 0 38px; width: 38px; height: 38px; display: grid; place-items: center; margin: -9px -9px 0 0; padding: 0; border: 0; background: transparent; color: #9db4c6; cursor: pointer; font-size: 22px; line-height: 1; transition: color 0.18s, background 0.18s, transform 0.18s; }
.favorite-star:hover, .favorite-star:focus-visible, .favorite-star.is-active { color: var(--orange-600); background: var(--orange-soft); transform: translateY(-1px); }
.favorite-star.is-active { background: var(--orange-soft); }
.session-card h3 { display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 5; overflow: hidden; margin: 0; color: var(--ink); font-size: 14px; line-height: 1.34; letter-spacing: -0.01em; }
.session-speakers { display: none; margin: 10px 0 0; color: #49667e; font-size: 12px; line-height: 1.45; }
.session-theme { margin: auto 0 0; padding-top: 12px; color: var(--muted); font-size: 10px; line-height: 1.3; }
.session-arrow { position: absolute; right: 15px; bottom: 13px; color: var(--track); font-size: 16px; opacity: 0; transform: translateX(-6px); transition: 0.2s; }
.session-card:hover .session-arrow { opacity: 1; transform: none; }
.session-card--wide { min-height: 138px; }

.schedule--list { overflow-x: visible; }
.schedule--list {
  -webkit-mask-image: none;
  mask-image: none;
}
.schedule--list .room-grid-header { display: none; }
.schedule--list .time-slot {
  min-width: 0;
  grid-template-columns: 112px minmax(0, 1fr);
}
.schedule--list .sessions-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
  gap: 12px;
}
.schedule--list .session-card {
  grid-column: auto / span 1;
  min-height: 172px;
  padding: 18px;
}
.schedule--list .session-card h3 {
  -webkit-line-clamp: 6;
  font-size: 15px;
  line-height: 1.34;
}
.schedule--list .session-speakers { display: block; }
.schedule--list .session-theme { margin-top: 10px; }

.program-band { min-height: 96px; display: flex; align-items: center; gap: 18px; padding: 18px 22px; border: 1px solid var(--line); background: var(--white); }
.program-band-icon { flex: 0 0 42px; width: 42px; height: 42px; display: grid; place-items: center; background: var(--navy); color: var(--white); }
.program-band-icon svg { width: 21px; height: 21px; stroke-width: 1.7; }
.program-band p { margin: 0; }
.program-band strong { display: block; font-size: 14px; letter-spacing: 0.03em; color: var(--deep); }
.program-band span { display: block; margin-top: 3px; color: var(--muted); font-size: 12px; }
.program-band--registration { background: var(--sky-soft); border-color: #bfe2f2; }
.program-band--registration .program-band-icon { background: var(--navy); }
.program-band--coffee { background: var(--orange-soft); border-color: #f3cdb2; }
.program-band--coffee .program-band-icon { background: var(--orange); color: var(--deep-2); }
.program-band--lunch { background: var(--paper); border-color: var(--line); }
.program-band--lunch .program-band-icon { background: var(--deep); }

.empty-state { padding: 90px 20px; border: 1px solid var(--line); text-align: center; background: var(--white); }
.empty-state > span { display: block; color: var(--line); font-size: 80px; font-weight: 700; line-height: 1; }
.empty-state h3 { margin: 15px 0 5px; color: var(--deep); }
.empty-state p { color: var(--muted); }
.empty-state button { margin-top: 8px; padding: 13px 20px; border: 0; background: var(--deep); color: var(--white); cursor: pointer; font-weight: 700; }
.empty-state button:hover { background: var(--navy); }
.programme-noscript { margin-top: 24px; padding: 26px 24px; border: 1px solid var(--line); background: var(--white); box-shadow: var(--shadow-sm); }
.programme-noscript h3 { margin: 0 0 10px; color: var(--deep); font-size: clamp(22px, 2vw, 30px); line-height: 1.1; }
.programme-noscript p { max-width: 720px; margin: 0 0 18px; color: var(--muted); line-height: 1.65; }

.programme-fallback { margin-top: clamp(34px, 5vw, 64px); border: 1px solid var(--line); background: var(--white); }
.programme-fallback summary { min-height: 66px; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 0 22px; color: var(--deep); cursor: pointer; font-size: 15px; font-weight: 700; letter-spacing: 0.02em; }
.programme-fallback summary::after { content: "+"; color: var(--orange-600); font-size: 22px; font-weight: 400; }
.programme-fallback[open] summary::after { content: "−"; }
.programme-fallback-days { display: grid; gap: 1px; border-top: 1px solid var(--line); background: var(--line); }
.programme-fallback section { padding: 24px 22px; background: var(--paper); }
.programme-fallback h3 { margin: 0 0 16px; color: var(--deep); font-size: clamp(20px, 2vw, 28px); line-height: 1.1; }
.programme-fallback ul { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.programme-fallback li { display: grid; grid-template-columns: 90px minmax(0, 1fr) auto; gap: 12px; align-items: start; padding: 14px 0; border-top: 1px solid var(--line); }
.programme-fallback time { color: var(--navy); font-size: 12px; font-weight: 700; }
.programme-fallback strong { color: var(--deep); line-height: 1.25; }
.programme-fallback li > span { color: var(--muted); font-size: 12px; font-weight: 700; text-align: right; }

/* Modal */
.modal-backdrop { position: fixed; z-index: 100; inset: 0; display: grid; place-items: center; padding: 20px; background: rgba(8, 76, 128, 0.82); backdrop-filter: blur(8px); animation: fade-in 0.18s ease; }
.session-modal { position: relative; width: min(620px, 100%); max-height: 90vh; overflow-y: auto; padding: 40px 38px 34px; background: var(--white); box-shadow: var(--shadow-lg); animation: modal-in 0.24s var(--ease); }
.modal-close { position: absolute; right: 14px; top: 12px; width: 40px; height: 40px; border: 0; background: transparent; color: var(--muted); cursor: pointer; font-size: 28px; transition: color 0.2s; }
.modal-close:hover { color: var(--deep); }
.modal-track { width: 84px; height: 6px; margin-bottom: 24px; background: var(--sky); }
.modal-theme { margin: 0 0 12px; color: var(--muted); font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.session-modal h2 { max-width: 520px; margin: 0; color: var(--deep); font-size: clamp(24px, 4vw, 38px); line-height: 1.12; letter-spacing: -0.025em; }
.modal-meta { display: grid; grid-template-columns: 1fr 1fr; margin: 26px 0 18px; border-block: 1px solid var(--line); }
.modal-meta div { padding: 16px 0; }
.modal-meta div + div { padding-left: 20px; border-left: 1px solid var(--line); }
.modal-meta span { display: block; color: var(--muted); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; }
.modal-meta strong { display: block; margin-top: 6px; font-size: 14px; color: var(--deep); }
.modal-note { margin: 0; padding: 15px 17px; background: var(--paper); color: #3c5871; font-size: 13.5px; line-height: 1.62; }
.modal-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.modal-actions button { min-height: 46px; padding: 10px 16px; border: 1px solid var(--line); background: var(--white); cursor: pointer; font-size: 12px; font-weight: 700; line-height: 1.2; transition: 0.2s; }
.modal-actions button:hover { border-color: var(--navy); }
.modal-actions button.is-active { border-color: var(--orange); background: var(--orange-soft); }
.modal-actions .modal-calendar { border-color: var(--deep); background: var(--deep); color: var(--white); }
.modal-actions .modal-calendar:hover { background: var(--navy); border-color: var(--navy); }

/* Toast + cookie */
.toast { position: fixed; z-index: 120; right: 24px; bottom: 24px; display: flex; align-items: center; gap: 12px; min-width: 270px; padding: 15px 18px; background: var(--deep); color: var(--white); box-shadow: var(--shadow-lg); opacity: 0; transform: translateY(120%); transition: 0.3s var(--ease); pointer-events: none; }
.toast.is-visible { opacity: 1; transform: none; }
.toast > span { width: 24px; height: 24px; display: grid; place-items: center; background: var(--orange); color: var(--deep-2); font-weight: 700; }
.toast p { margin: 0; font-size: 13px; }
.cookie-banner { position: fixed; z-index: 110; left: 24px; bottom: 24px; width: min(420px, calc(100% - 48px)); display: flex; align-items: center; gap: 16px; padding: 16px 17px; background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow-lg); }
.cookie-banner.is-hidden { display: none; }
.cookie-banner p { margin: 0; color: var(--muted); font-size: 12.5px; line-height: 1.55; }
.cookie-banner button { flex: 0 0 auto; min-height: 40px; padding: 0 16px; border: 0; background: var(--deep); color: var(--white); cursor: pointer; font-size: 12px; font-weight: 700; }
.cookie-banner button:hover { background: var(--navy); }
.carousel-nav { display: none; }

@keyframes fade-in { from { opacity: 0; } }
@keyframes modal-in { from { opacity: 0; transform: translateY(16px) scale(0.98); } }

/* ============================================================
   Responsive
   ============================================================ */

@media (max-width: 1080px) {
  .theme-grid { grid-template-columns: 1fr 1fr; }
  .info-grid { grid-template-columns: 1fr 1fr; }
  .timeline { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 980px) {
  .header-nav { display: none; }
  .menu-toggle { display: inline-flex; }
  .mobile-menu:not([hidden]) { display: block; }

  .hero-inner { grid-template-columns: 1fr; gap: 40px; padding-top: 56px; }
  .event-card { width: min(100%, 520px); }
  .hero-ring { display: none; }
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 22px 0; }
  .hero-stats > div:nth-child(odd) { border-left: 0; padding-left: 0; }
  .hero-stats > div:nth-child(even) { padding-right: 0; }

  .section-head, .statement-grid, .contact-band, .speakers-grid, .page-hero-grid { grid-template-columns: 1fr; gap: 28px; }
  .media-showcase { grid-template-columns: 1fr; }
  .media-mosaic { grid-template-columns: 1fr 1fr; }
  .feature-split { grid-template-columns: 1fr; }
  .day-cards { grid-template-columns: 1fr; }
  .notice-cards { grid-template-columns: 1fr; }
  .tile-grid { grid-template-columns: 1fr 1fr; }
  .stat-row { grid-template-columns: 1fr 1fr; }
  .venue-band { grid-template-columns: 1fr; align-items: start; }
  .venue-actions { justify-content: flex-start; }
  .footer-grid { grid-template-columns: 1fr 1fr; }

  .filter-drawer { grid-template-columns: 1fr; }
  .filter-footer { grid-column: auto; }
  .schedule { overflow-x: visible; }
  .room-grid-header { display: none; }
  .time-slot { min-width: 0; }
  .sessions-grid { grid-template-columns: 1fr !important; }
  .session-card { grid-column: auto / span 1; }
}

@media (max-width: 720px) {
  :root { --pad: 18px; }
  html { scroll-padding-top: 80px; }
  .header-inner { height: 68px; }
  .brand img { width: 146px; max-height: 38px; }
  .header-print span { display: none; }
  .header-print { width: 42px; padding: 0; justify-content: center; }

  .hero { padding-top: 68px; }
  .hero-inner { padding-top: 44px; padding-bottom: 40px; }
  .hero-copy,
  .page-hero-grid > div {
    width: 100%;
    max-width: calc(100vw - (var(--pad) * 2));
  }
  .hero-kicker {
    max-width: 100%;
    overflow-wrap: break-word;
    font-size: 12px;
    line-height: 1.35;
  }
  .hero h1 {
    max-width: min(100%, 8.4em);
    font-size: clamp(35px, 9.6vw, 44px);
    line-height: 0.98;
  }
  .hero-lead {
    max-width: min(100%, 34ch);
    margin-top: 20px;
    font-size: 14.5px;
    overflow-wrap: break-word;
  }
  .page-hero h1 {
    max-width: 100%;
    overflow-wrap: break-word;
  }
  .hero-meta {
    display: grid;
    grid-template-columns: 1fr;
    gap: 9px;
  }
  .hero-meta span {
    width: 100%;
    min-height: 40px;
    justify-content: flex-start;
    padding: 0 14px;
    font-size: 12px;
    white-space: normal;
  }
  .hero-actions { margin-top: 30px; }
  .hero-actions .btn { width: 100%; justify-content: space-between; }
  .hero-ghost { font-size: 140px; right: -8px; }
  .event-card { padding: 24px 20px 20px; }
  .event-date strong { font-size: 50px; }
  .hero-stats { padding-top: 20px; padding-bottom: 24px; }
  .hero-stats strong { font-size: 26px; }
  .hero-stats span { font-size: 10px; }

  .page-hero { padding: 122px 0 52px; }
  .page-hero h1 { font-size: clamp(38px, 11vw, 54px); }

  .section { padding: 72px 0; }
  .schedule-section { padding: 52px 0 88px; }
  .section-head { margin-bottom: 34px; }
  .display-2 { font-size: clamp(30px, 8.6vw, 40px); }
  .theme-grid, .tile-grid, .info-grid, .timeline, .footer-grid, .stat-row { grid-template-columns: 1fr; }
  .media-mosaic { grid-template-columns: 1fr; grid-auto-rows: 210px; }
  .media-tile--large { grid-row: span 1; }
  .mobile-carousel {
    display: flex !important;
    gap: 14px;
    margin-inline: calc(var(--pad) * -1);
    padding: 0 var(--pad) 12px;
    overflow-x: auto;
    overflow-y: visible;
    scroll-padding-inline: var(--pad);
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .mobile-carousel::-webkit-scrollbar { display: none; }
  .mobile-carousel > * {
    flex: 0 0 min(84vw, 370px);
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }
  .media-mosaic.mobile-carousel {
    grid-auto-rows: auto;
    align-items: stretch;
  }
  .media-mosaic.mobile-carousel .media-tile {
    min-height: 310px;
  }
  .theme-grid.mobile-carousel .theme-card {
    min-height: 300px;
  }
  .day-cards.mobile-carousel,
  .info-grid.mobile-carousel {
    border: 0;
    background: transparent;
    box-shadow: none;
  }
  .day-cards.mobile-carousel article,
  .info-grid.mobile-carousel article,
  .tile-grid.mobile-carousel .link-tile,
  .timeline.mobile-carousel article {
    min-height: 245px;
    box-shadow: var(--shadow-sm);
  }
  .step-list.mobile-carousel {
    border: 0;
    background: transparent;
  }
  .step-list.mobile-carousel article {
    min-height: 260px;
    border: 1px solid rgba(255, 255, 255, 0.18);
  }
  .carousel-nav {
    display: flex;
    grid-column: 1 / -1;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin: 12px 0 0;
  }
  .carousel-counter {
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
  }
  .on-dark .carousel-counter,
  .section--navy .carousel-counter {
    color: rgba(255, 255, 255, 0.68);
  }
  .carousel-buttons { display: flex; gap: 8px; }
  .carousel-buttons button {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: var(--white);
    color: var(--deep);
    cursor: pointer;
    transition: 0.18s var(--ease);
  }
  .section--navy .carousel-buttons button,
  .on-dark .carousel-buttons button {
    border-color: rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
  }
  .carousel-buttons button:not(:disabled):hover {
    border-color: var(--orange);
    background: var(--orange);
    color: var(--deep-2);
    transform: translateY(-2px);
  }
  .carousel-buttons button:disabled {
    opacity: 0.42;
    cursor: default;
  }
  .carousel-buttons svg {
    width: 18px;
    height: 18px;
  }
  .media-actions .btn { width: 100%; justify-content: space-between; }
  .theme-card { min-height: 240px; }
  .theme-card h3 { padding-top: 36px; }
  .link-tile { min-height: 200px; }
  .link-tile h3 { padding-top: 32px; }
  .info-grid article { min-height: 0; }
  .info-grid h3 { padding-top: 32px; }
  .day-cards h3 { padding-top: 32px; }
  .day-cards article { min-height: 0; }
  .speakers-grid { gap: 22px; }
  .speakers-lead { font-size: 14px; line-height: 1.68; }
  .speakers-grid .fact-chips { gap: 8px; margin-top: 24px; }
  .speakers-grid .fact-chips span { flex: 1 1 150px; justify-content: center; min-height: 40px; padding: 0 12px; font-size: 12px; text-align: center; }
  .step-list article { grid-template-columns: 1fr; gap: 14px; padding: 24px 22px; }
  .step-list article > span { font-size: 30px; }
  .step-list h3 { max-width: 300px; font-size: 20px; line-height: 1.08; }
  .step-list p { font-size: 14px; line-height: 1.68; }
  .speaker-cta { flex-direction: column; align-items: flex-start; padding: 24px 22px; }
  .speaker-cta .btn { width: 100%; justify-content: space-between; }
  .timeline article { padding: 22px 20px 20px; }
  .timeline span { margin-bottom: 14px; letter-spacing: 0.12em; }
  .contact-actions .btn, .venue-actions .btn { width: 100%; justify-content: space-between; }

  .day-bar {
    min-height: 64px;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
  }
  .day-bar::-webkit-scrollbar { display: none; }
  .day-tab { min-width: 180px; padding: 0 16px; }
  .day-context { display: none; }
  .control-panel { top: 68px; grid-template-columns: 1fr; padding: 10px; }
  .control-actions { display: grid; grid-template-columns: 1fr 1fr 46px; }
  .control-button { padding: 0 10px; font-size: 11px; }
  .mobile-filter-button { display: inline-flex; }
  .mobile-filter-button span { display: none; }
  .filter-drawer { display: none; max-height: 62vh; overflow-y: auto; padding: 15px 3px 5px; }
  .filter-drawer.is-open { display: grid; }
  .filter-chips { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 6px; scrollbar-width: thin; }
  .filter-chip { flex: 0 0 auto; }
  @supports ((mask-image: linear-gradient(90deg, #000, transparent)) or (-webkit-mask-image: linear-gradient(90deg, #000, transparent))) {
    .day-bar,
    .filter-chips {
      -webkit-mask-image: linear-gradient(90deg, #000 0, #000 calc(100% - 32px), transparent 100%);
      mask-image: linear-gradient(90deg, #000 0, #000 calc(100% - 32px), transparent 100%);
    }
  }
  .live-banner { align-items: flex-start; }
  .live-banner button { display: none; }
  .programme-fallback li { grid-template-columns: 1fr; gap: 6px; }
  .programme-fallback li > span { text-align: left; }

  .time-slot,
  .schedule--list .time-slot {
    grid-template-columns: 1fr;
    padding: 18px 0 22px;
  }
  .time-slot::before,
  .time-slot.is-live::before {
    display: none;
  }
  .time-slot.is-live {
    margin-inline: 0;
    padding-inline: 14px;
  }
  .slot-time {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 5px 10px;
    padding: 0 0 12px;
  }
  .time-slot.is-live .slot-time::before {
    margin: 0 4px 0 0;
  }
  .slot-time strong { font-size: 18px; }
  .slot-time span { margin-top: 0; }
  .slot-content { padding: 0; }
  .slot-heading { margin-bottom: 11px; }
  .session-card,
  .schedule--list .session-card {
    min-height: 0;
    padding: 17px;
  }
  .session-card h3,
  .schedule--list .session-card h3 {
    font-size: 14px;
    -webkit-line-clamp: 6;
  }
  .program-band { min-height: 82px; gap: 12px; padding: 14px; }
  .program-band-icon { flex-basis: 36px; width: 36px; height: 36px; }
  .program-band-icon svg { width: 18px; height: 18px; }

  .session-modal { padding: 30px 20px 22px; }
  .modal-actions { flex-direction: column; }
  .toast { left: 14px; right: 14px; bottom: 14px; min-width: 0; }
  .cookie-banner { left: 14px; right: 14px; bottom: 14px; width: auto; }
  .footer-ghost { font-size: clamp(56px, 17vw, 96px); }
}

@media (max-width: 420px) {
  .brand img { width: 132px; }
  .hero h1,
  .page-hero h1,
  .display-2 {
    overflow-wrap: anywhere;
    hyphens: auto;
  }
  .hero h1 { font-size: 34px; }
  .page-hero h1 {
    max-width: 6.7em;
    font-size: clamp(26px, 8.1vw, 31px);
    line-height: 1.02;
  }
  .page-hero-note {
    max-width: 30ch;
    font-size: 13px;
    overflow-wrap: anywhere;
  }
  .display-2 {
    max-width: 8.4em;
    font-size: clamp(24px, 7.7vw, 28px);
    line-height: 1.04;
  }
  .event-card-row { grid-template-columns: 92px 1fr; gap: 10px; }
  .event-card-row span { font-size: 10px; letter-spacing: 0.04em; }
  .favorites-button span, .live-button span { max-width: 74px; overflow: hidden; text-overflow: ellipsis; }
  .day-tab { min-width: min(168px, 76vw); }
  .control-panel { width: 100%; max-width: 100%; }
  .search-field { grid-template-columns: 22px minmax(0, 1fr); }
  .search-field kbd { display: none; }
  .control-actions { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) 44px; }
  .control-button { min-width: 0; }
  .footer-ghost {
    margin-inline: 0;
    font-size: clamp(42px, 14vw, 68px);
  }
  .time-slot,
  .schedule--list .time-slot {
    grid-template-columns: 1fr;
  }
  .time-slot::before,
  .time-slot.is-live::before {
    display: none;
  }
  .slot-time strong { font-size: 17px; }
}

/* ============================================================
   Print — programme grid
   ============================================================ */
@media print {
  @page { size: A4 landscape; margin: 10mm; }
  body { background: #fff; font-size: 9pt; }
  .site-header, .page-hero, .hero, .section, .control-panel, .day-context, .section-head > p, .live-banner, .site-footer, .modal-backdrop, .toast, .cookie-banner, .skip-link { display: none !important; }
  .js [data-reveal] { opacity: 1 !important; transform: none !important; }
  .schedule-section { padding: 0; background: #fff; }
  .schedule-section .section-head { display: block; margin: 0 0 6mm; }
  .schedule-section h2 { font-size: 21pt; }
  .kicker { color: #000; }
  .day-bar { min-height: 12mm; }
  .day-tab { background: #ec722f !important; color: #084c80 !important; }
  .day-tab span { color: #084c80 !important; }
  .schedule { overflow: visible; }
  .time-slot { grid-template-columns: 25mm 1fr; break-inside: avoid; }
  .time-slot::before { left: 25mm; }
  .slot-content { padding: 3mm; }
  .slot-time { padding: 4mm 3mm 4mm 0; }
  .sessions-grid { grid-template-columns: repeat(4, 1fr); gap: 2mm; }
  .session-card { min-height: 25mm; padding: 3mm; box-shadow: none !important; transform: none !important; }
  .favorite-star, .session-arrow { display: none; }
  .session-card h3 { font-size: 8pt; }
  .session-theme { font-size: 6.5pt; }
  .program-band { min-height: 12mm; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .js [data-reveal] { opacity: 1; transform: none; }
}
