:root {
  --navy: #00346f;
  --blue: #2e78d6;
  --sky: #68aceb;
  --green: #72d14b;
  --leaf: #5bb83e;
  --red: #b51228;
  --ink: #13233a;
  --muted: #627086;
  --paper: #ffffff;
  --soft: #f3f8ff;
  --soft-green: #f2fbef;
  --line: #dce7f5;
  --shadow: 0 20px 60px rgba(0, 52, 111, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --max: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.section-pad { padding: 88px 0; }
.narrow { max-width: 820px; }
.skip-link { position: absolute; left: -999px; top: 0; background: var(--navy); color: white; padding: 10px; z-index: 1000; }
.skip-link:focus { left: 10px; }

.announcement {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 10px 16px;
  background: linear-gradient(90deg, var(--navy), var(--blue));
  color: white;
  font-weight: 700;
  letter-spacing: .02em;
  text-align: center;
}
.announcement span + span::before { content: "•"; margin-right: 12px; opacity: .75; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 24px rgba(0,52,111,.08);
}
.navbar {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 90px;
}
.brand-stack { display: flex; align-items: center; gap: 14px; min-width: 250px; }
.fall-logo { height: 58px; width: auto; object-fit: contain; }
.endiets-logo { height: 44px; width: auto; object-fit: contain; }
.logo-divider { width: 1px; height: 44px; background: var(--line); }
.nav-menu { display: flex; list-style: none; gap: 4px; padding: 0; margin: 0; align-items: center; }
.nav-menu a, .submenu-trigger {
  display: block;
  padding: 10px 11px;
  border-radius: 999px;
  color: var(--navy);
  font-weight: 750;
  font-size: 0.95rem;
}
.submenu-trigger {
  border: 0;
  background: transparent;
  font-family: inherit;
  cursor: pointer;
}
.submenu-trigger::after { content: "⌄"; margin-left: 6px; font-size: .8em; }
.nav-menu a:hover, .nav-menu a.is-active, .submenu-trigger:hover, .submenu-trigger.is-active, .has-submenu:hover .submenu-trigger { background: var(--soft); color: var(--blue); }
.has-submenu { position: relative; }
.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  padding: 10px;
  margin: 0;
  list-style: none;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  display: none;
  z-index: 120;
}
.has-submenu:hover .submenu,
.has-submenu:focus-within .submenu,
.has-submenu.submenu-open .submenu { display: block; }
.submenu a { border-radius: 10px; padding: 10px 12px; white-space: nowrap; }
.nav-cta, .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 800;
  border: 2px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.nav-cta { background: var(--green); color: var(--navy); box-shadow: 0 10px 30px rgba(114,209,75,.28); white-space: nowrap; }
.nav-cta:hover, .button:hover { transform: translateY(-1px); }
.button-primary { background: var(--navy); color: white; box-shadow: 0 14px 32px rgba(0,52,111,.22); }
.button-secondary { color: var(--navy); background: white; border-color: var(--line); }
.button-light { color: var(--navy); background: white; }
.text-link { color: var(--blue); font-weight: 850; border-bottom: 2px solid rgba(46,120,214,.22); }
.menu-toggle { display: none; border: 0; background: transparent; padding: 8px; cursor: pointer; }
.menu-toggle span:not(.sr-only) { display: block; width: 26px; height: 3px; background: var(--navy); margin: 5px 0; border-radius: 3px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 5% 10%, rgba(104,172,235,.28), transparent 34%),
    radial-gradient(circle at 95% 15%, rgba(114,209,75,.22), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}
.hero::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -160px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: rgba(181,18,40,.08);
}
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; position: relative; z-index: 1; }
.eyebrow { color: var(--red); text-transform: uppercase; font-weight: 900; letter-spacing: .14em; font-size: .78rem; margin: 0 0 12px; }
h1, h2, h3 { color: var(--navy); line-height: 1.05; margin: 0; }
h1 { font-size: clamp(3.2rem, 7vw, 6.8rem); letter-spacing: -0.06em; max-width: 820px; }
h2 { font-size: clamp(2rem, 4vw, 3.8rem); letter-spacing: -0.045em; }
h3 { font-size: 1.25rem; letter-spacing: -.02em; }
.hero-subtitle { font-size: clamp(1.35rem, 2.4vw, 2.05rem); color: var(--blue); font-weight: 850; margin: 18px 0 0; }
.hero-text { font-size: 1.14rem; color: var(--muted); max-width: 650px; margin: 18px 0 28px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-card {
  background: rgba(255,255,255,.88);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 28px;
  position: relative;
}
.hero-logo { width: 260px; margin-bottom: 20px; }
.card-label { font-weight: 900; color: var(--red); text-transform: uppercase; letter-spacing: .12em; font-size: .75rem; margin: 0 0 10px; }
.hero-card h2 { font-size: 2rem; }
.hero-card p { color: var(--muted); }
.meta-list { display: grid; gap: 14px; margin-top: 22px; }
.meta-list div { padding: 14px 0; border-top: 1px solid var(--line); }
.meta-list span { display: block; color: var(--muted); font-size: .85rem; font-weight: 750; }
.meta-list strong { color: var(--navy); font-size: 1.05rem; }

.stats-strip { background: var(--navy); color: white; padding: 28px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)) minmax(280px, 1.55fr); gap: 20px; }
.stats-grid div { border-left: 1px solid rgba(255,255,255,.22); padding-left: 18px; }
.stats-grid strong { display: block; font-size: 1.7rem; line-height: 1; color: var(--green); }
.stats-grid span { font-size: .95rem; opacity: .9; }
.section-heading { margin-bottom: 34px; }
.section-heading p:not(.eyebrow) { color: var(--muted); font-size: 1.12rem; max-width: 780px; }
.soft-bg { background: linear-gradient(180deg, var(--soft), white); }
.green-bg { background: linear-gradient(180deg, var(--soft-green), white); }
.cards-grid { display: grid; gap: 22px; }
.cards-grid.four { grid-template-columns: repeat(4, 1fr); }
.cards-grid.three { grid-template-columns: repeat(3, 1fr); }
.feature-card, .content-card, .day-card, .faq-item {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: 0 14px 36px rgba(0,52,111,.07);
}
.feature-card .icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--soft);
  color: var(--blue);
  font-weight: 950;
  margin-bottom: 18px;
}
.feature-card p, .content-card p, .day-card p, .faq-item p { color: var(--muted); margin-bottom: 0; }
.link-card:hover { border-color: rgba(46,120,214,.45); transform: translateY(-2px); transition: .2s ease; }
.final-cta {
  background: linear-gradient(135deg, var(--blue), var(--navy));
  color: white;
  text-align: center;
}
.final-cta h2 { color: white; max-width: 860px; margin: 0 auto 26px; }
.final-cta .eyebrow { color: var(--green); }

.page-hero {
  background:
    radial-gradient(circle at 15% 20%, rgba(114,209,75,.18), transparent 28%),
    linear-gradient(180deg, #f7fbff, white);
  padding: 84px 0 58px;
}
.page-hero p { color: var(--muted); font-size: 1.15rem; max-width: 760px; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: start; }
.timeline { display: grid; gap: 18px; }
.day-card { display: grid; grid-template-columns: 110px 1fr; gap: 20px; align-items: start; }
.day-card .day { color: var(--red); font-weight: 950; text-transform: uppercase; letter-spacing: .08em; }
.notice { background: var(--soft); border-left: 6px solid var(--green); padding: 20px 22px; border-radius: var(--radius-sm); color: var(--muted); }
.partner-note { background: white; border: 1px dashed rgba(0,52,111,.26); border-radius: var(--radius-md); padding: 24px; }
.partner-note strong { color: var(--navy); }

.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}
.photo-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 14px 36px rgba(0,52,111,.07);
}
.photo-card img, .photo-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.photo-placeholder {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 15% 10%, rgba(104,172,235,.32), transparent 36%),
    radial-gradient(circle at 88% 28%, rgba(114,209,75,.28), transparent 32%),
    linear-gradient(135deg, #f7fbff, #ffffff);
  color: var(--blue);
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.photo-card h3 {
  margin: 20px 20px 8px;
}
.photo-card p {
  color: var(--muted);
  margin: 0 20px 22px;
}
.pillar-card h2 { font-size: clamp(1.7rem, 2.2vw, 2.35rem); }

.site-footer { background: #f3f8ff; color: var(--navy); padding: 48px 0; border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 36px; }
.footer-compact-grid { display: flex; justify-content: space-between; align-items: center; gap: 36px; }
.footer-contact-inline { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 10px 18px; }
.footer-contact-inline a { margin: 0; }
.footer-brand { display: flex; gap: 14px; align-items: center; margin-bottom: 16px; }
.site-footer a.footer-brand { display: inline-flex; }
.footer-brand img:first-child { height: 58px; width: auto; }
.footer-brand img:last-child { height: 44px; width: auto; }
.footer-logo-divider { height: 44px; background: rgba(0,52,111,.18); }
.site-footer p, .site-footer small { color: var(--muted); }
.site-footer h3 {
  color: var(--red);
  font-size: .78rem;
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 950;
}
.site-footer a { display: block; color: var(--navy); margin: 7px 0; font-weight: 650; }
.site-footer a:hover { color: var(--blue); }
.site-footer .inline-footer-link { display: inline; color: var(--blue); margin: 0; font-weight: 800; }
.footer-contact-inline a { display: inline-flex; margin: 0; white-space: nowrap; }

.inline-card-link { color: var(--blue); font-weight: 850; border-bottom: 2px solid rgba(46,120,214,.2); }
.welcome-letter {
  max-width: 860px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: clamp(28px, 5vw, 54px);
  font-size: 1.12rem;
}
.welcome-letter p { color: var(--ink); margin: 0 0 20px; }
.welcome-letter p:last-child { margin-bottom: 0; }
.welcome-letter .signature { margin-top: 30px; font-weight: 850; color: var(--navy); }
.welcome-message-section { padding-top: 34px; }

@media (max-width: 1020px) {
  .navbar { min-height: 84px; }
  .brand-stack { min-width: 0; }
  .fall-logo { height: 48px; }
  .endiets-logo { height: 34px; }
  .nav-cta { display: none; }
  .menu-toggle { display: block; }
  .nav-menu {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 8px);
    background: white;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
    display: none;
    padding: 12px;
    flex-direction: column;
    align-items: stretch;
  }
  .nav-menu.is-open { display: flex; }
  .nav-menu a, .submenu-trigger { border-radius: 12px; width: 100%; text-align: left; }
  .has-submenu { position: static; }
  .submenu {
    position: static;
    display: none;
    min-width: 0;
    padding: 2px 0 0 14px;
    margin: 0;
    border: 0;
    box-shadow: none;
    background: transparent;
  }
  .submenu a { padding: 8px 12px; font-size: .9rem; }
  .hero-grid, .two-col { grid-template-columns: 1fr; }
  .cards-grid.four, .cards-grid.three, .stats-grid, .photo-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 680px) {
  .container { width: min(100% - 28px, var(--max)); }
  .section-pad { padding: 58px 0; }
  .announcement { flex-direction: column; gap: 2px; font-size: .9rem; }
  .announcement span + span::before { content: none; }
  .brand-stack { gap: 8px; }
  .fall-logo { height: 38px; }
  .endiets-logo { height: 28px; max-width: 130px; }
  .logo-divider { height: 30px; }
  h1 { font-size: 3.3rem; }
  .hero-card { padding: 20px; }
  .stats-grid, .cards-grid.four, .cards-grid.three, .photo-grid { grid-template-columns: 1fr; }
  .footer-brand img:first-child { height: 48px; }
  .footer-brand img:last-child { height: 34px; }
  .footer-logo-divider { height: 34px; }
  .day-card { grid-template-columns: 1fr; gap: 8px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-compact-grid { flex-direction: column; align-items: flex-start; }
  .footer-contact-inline { justify-content: flex-start; }
}


/* Registration Info page */
.registration-hero h1 { max-width: 980px; }
.registration-highlight {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 28px;
  align-items: stretch;
}
.package-card, .fee-card, .important-registration-note {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.package-card { padding: clamp(28px, 4vw, 48px); }
.package-card h2 { margin-bottom: 18px; }
.package-card p { color: var(--muted); font-size: 1.05rem; }
.registration-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.fee-card {
  padding: clamp(24px, 4vw, 38px);
  background:
    radial-gradient(circle at 90% 0%, rgba(114,209,75,.22), transparent 34%),
    white;
}
.fee-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}
.fee-row span { color: var(--navy); font-weight: 850; font-size: 1.05rem; }
.fee-row strong { color: var(--blue); font-size: clamp(2.1rem, 5vw, 3.1rem); line-height: 1; letter-spacing: -.05em; }
.fee-note { color: var(--muted); margin: 18px 0 0; font-size: .96rem; }
.included-grid .content-card { min-height: 230px; }
.registration-note-grid { align-items: center; }
.important-registration-note {
  padding: clamp(24px, 4vw, 36px);
  border-left: 7px solid var(--green);
}
.important-registration-note p { color: var(--ink); margin: 0 0 16px; }
.important-registration-note p:last-child { margin-bottom: 0; font-weight: 850; color: var(--navy); }

@media (max-width: 1020px) {
  .registration-highlight { grid-template-columns: 1fr; }
}


/* v10 updates */
.story-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.25fr;
  gap: 28px;
  align-items: start;
}
.story-side-note {
  display: grid;
  gap: 16px;
}
.story-fact {
  background: linear-gradient(180deg, #f7fbff, #ffffff);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 30px rgba(0,52,111,.06);
  padding: 20px;
}
.story-fact p { margin: 0; color: var(--muted); }
.story-fact .eyebrow { margin-bottom: 8px; }
.story-text {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 14px 36px rgba(0,52,111,.07);
  padding: clamp(22px, 4vw, 34px);
}
.story-text p { color: var(--ink); }
.story-text strong { color: var(--navy); }
.footer-contact-block { display: flex; flex-direction: column; align-items: flex-end; }
.footer-contact-block h3 { margin-bottom: 10px; }
.fee-note strong { color: var(--navy); }
@media (max-width: 1020px) {
  .story-layout { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .footer-contact-block { align-items: flex-start; }
}


/* v11 updates */
.story-section {
  padding-top: 54px;
}
@media (max-width: 680px) {
  .story-section {
    padding-top: 38px;
  }
}


/* v12 ENDietS Team page */
.team-hero h1 { max-width: 980px; }
.team-stats-section {
  background: var(--navy);
  color: white;
  padding: 30px 0;
}
.team-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.team-stats-grid div {
  border-left: 1px solid rgba(255,255,255,.22);
  padding-left: 18px;
}
.team-stats-grid strong {
  display: block;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1;
  color: var(--green);
  letter-spacing: -.04em;
}
.team-stats-grid span {
  color: rgba(255,255,255,.88);
  font-weight: 700;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}
.featured-team-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.team-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 14px 36px rgba(0,52,111,.07);
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.team-card:hover,
.team-card:focus {
  transform: translateY(-4px);
  box-shadow: 0 22px 46px rgba(0,52,111,.13);
  border-color: rgba(46,120,214,.38);
  outline: none;
}
.team-photo-wrap {
  aspect-ratio: 4 / 5;
  background: var(--soft);
  overflow: hidden;
}
.team-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team-card-body {
  padding: 18px;
}
.coordination-tag {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--soft-green);
  color: var(--leaf);
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.team-card h3 {
  font-size: 1.12rem;
  line-height: 1.12;
  margin-bottom: 8px;
}
.team-role {
  color: var(--blue);
  font-weight: 850;
  margin: 0 0 3px;
}
.team-country {
  color: var(--muted);
  margin: 0 0 14px;
}
.team-card-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
}
.read-bio {
  color: var(--navy);
  font-weight: 850;
  font-size: .9rem;
}
.team-linkedin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 7px 10px;
  background: var(--soft);
  color: var(--blue);
  font-weight: 850;
  font-size: .86rem;
}
.team-linkedin:hover {
  background: var(--blue);
  color: white;
}
.bio-pending .read-bio::after {
  content: " soon";
  color: var(--muted);
  font-weight: 650;
}
.nkc-callout {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: clamp(28px, 5vw, 48px);
}
.nkc-callout p {
  color: var(--muted);
  max-width: 800px;
}
.team-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: none;
}
.team-modal.is-open {
  display: block;
}
.team-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(19,35,58,.58);
  backdrop-filter: blur(6px);
}
.team-modal-panel {
  position: relative;
  width: min(980px, calc(100% - 32px));
  max-height: calc(100vh - 48px);
  overflow: auto;
  margin: 24px auto;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: 0 28px 80px rgba(0,0,0,.25);
}
.team-modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: var(--soft);
  color: var(--navy);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}
.team-modal-content {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 0;
}
.team-modal-content img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  background: var(--soft);
}
.team-modal-text {
  padding: clamp(30px, 5vw, 54px);
}
.team-modal-role {
  color: var(--blue);
  font-weight: 850;
  font-size: 1.12rem;
  margin: 12px 0 24px;
}
.team-modal-bio p {
  color: var(--ink);
  margin: 0 0 16px;
}
.team-modal-bio p:last-child {
  margin-bottom: 24px;
}
body.modal-open {
  overflow: hidden;
}

@media (max-width: 1120px) {
  .team-grid,
  .featured-team-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 860px) {
  .team-stats-grid,
  .team-grid,
  .featured-team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .nkc-callout,
  .team-modal-content {
    grid-template-columns: 1fr;
  }
  .team-modal-content img {
    max-height: 420px;
    min-height: 0;
  }
}
@media (max-width: 560px) {
  .team-stats-grid,
  .team-grid,
  .featured-team-grid {
    grid-template-columns: 1fr;
  }
}


/* v13 Programme page */
.programme-hero h1 { max-width: 980px; }
.programme-intro-section { padding-top: 64px; }
.programme-intro-card {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 38px;
  align-items: start;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: clamp(28px, 5vw, 48px);
}
.programme-days-grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, 1fr);
  gap: 22px;
}
.programme-day-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: 0 14px 36px rgba(0,52,111,.07);
  padding: 24px;
  display: flex;
  flex-direction: column;
  min-height: 315px;
}
.programme-day-card.primary-day {
  border-top: 8px solid var(--green);
}
.programme-day-card.muted-day {
  background: #fbfdff;
}
.programme-day-label {
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 900;
  font-size: .74rem;
  margin-bottom: 14px;
}
.programme-day-card h3 {
  margin-bottom: 12px;
}
.programme-day-card p {
  color: var(--muted);
  margin: 0 0 20px;
}
.programme-day-card strong {
  color: var(--navy);
  margin-top: auto;
}
.schedule-wrap {
  display: grid;
  gap: 22px;
}
.schedule-day-title {
  color: var(--navy);
  font-weight: 950;
  font-size: 1.18rem;
  margin-top: 12px;
}
.schedule-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: white;
  box-shadow: 0 14px 36px rgba(0,52,111,.07);
}
.schedule-row {
  display: grid;
  grid-template-columns: 170px 1.05fr 1.45fr;
  gap: 16px;
  padding: 15px 18px;
  border-top: 1px solid var(--line);
  align-items: start;
}
.schedule-row:first-child { border-top: 0; }
.schedule-row span:first-child {
  color: var(--blue);
  font-weight: 900;
  white-space: nowrap;
}
.schedule-row span:nth-child(2) {
  color: var(--navy);
  font-weight: 850;
}
.schedule-row span:nth-child(3) {
  color: var(--muted);
}
.schedule-head {
  background: var(--navy);
}
.schedule-head span {
  color: white !important;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .78rem;
}
.break-row {
  background: var(--soft);
}
.social-row {
  background: var(--soft-green);
}
.topic-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}
.topic-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: 0 14px 36px rgba(0,52,111,.07);
  padding: 24px;
}
.topic-card h3 {
  margin-bottom: 16px;
}
.topic-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}
.topic-card li + li {
  margin-top: 10px;
}
.social-programme-card {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 28px;
  align-items: center;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: clamp(28px, 5vw, 48px);
}
.social-programme-card p {
  color: var(--muted);
}
.programme-note {
  background: linear-gradient(180deg, var(--soft), #fff);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 24px;
}
.programme-note strong {
  display: block;
  color: var(--navy);
  font-size: 1.25rem;
  margin-bottom: 10px;
}
.programme-note span {
  color: var(--muted);
}

@media (max-width: 1120px) {
  .programme-days-grid,
  .topic-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 860px) {
  .programme-intro-card,
  .social-programme-card {
    grid-template-columns: 1fr;
  }
  .schedule-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .schedule-row span:first-child {
    white-space: normal;
  }
}
@media (max-width: 560px) {
  .programme-days-grid,
  .topic-grid {
    grid-template-columns: 1fr;
  }
}


/* v14 Venue & Thessaloniki page */
.venue-hero h1 { max-width: 940px; }
.venue-main-section { padding-top: 64px; }
.venue-feature-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 28px;
  align-items: stretch;
}
.venue-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: clamp(26px, 4vw, 42px);
}
.main-venue-card {
  background:
    radial-gradient(circle at 100% 0%, rgba(114,209,75,.16), transparent 30%),
    white;
}
.main-venue-card p,
.reach-card p {
  color: var(--muted);
  font-size: 1.05rem;
}
.venue-address {
  margin-top: 26px;
  padding: 22px;
  border-radius: var(--radius-md);
  background: var(--soft);
  border-left: 6px solid var(--green);
}
.venue-address span {
  display: block;
  color: var(--red);
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .74rem;
  margin-bottom: 8px;
}
.venue-address strong {
  color: var(--navy);
  font-size: 1.06rem;
}
.venue-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.reach-card h3 {
  font-size: clamp(1.7rem, 2.5vw, 2.2rem);
  margin-bottom: 18px;
}
.venue-list {
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
  display: grid;
  gap: 14px;
}
.venue-list li {
  padding: 14px 0 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
}
.venue-list strong {
  color: var(--navy);
}
.thessaloniki-intro {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 38px;
  align-items: start;
  margin-bottom: 34px;
}
.city-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.city-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: 0 14px 36px rgba(0,52,111,.07);
  padding: 24px;
  min-height: 245px;
}
.city-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: var(--soft);
  color: var(--blue);
  font-weight: 950;
  margin-bottom: 18px;
}
.city-card h3 {
  margin-bottom: 12px;
}
.city-card p {
  color: var(--muted);
  margin: 0;
}
.practical-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 38px;
  align-items: start;
}
.practical-list {
  display: grid;
  gap: 18px;
}
.practical-item {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: 0 14px 36px rgba(0,52,111,.06);
  padding: 24px;
}
.practical-item p {
  color: var(--muted);
  margin-bottom: 0;
}

@media (max-width: 1020px) {
  .venue-feature-grid,
  .thessaloniki-intro,
  .practical-grid {
    grid-template-columns: 1fr;
  }
  .city-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 620px) {
  .city-card-grid {
    grid-template-columns: 1fr;
  }
}


/* v15 FAQ page */
.faq-hero h1 { max-width: 900px; }
.faq-section { padding-top: 64px; }
.faq-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 34px;
  align-items: start;
}
.faq-sidebar {
  position: sticky;
  top: 140px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: 0 14px 36px rgba(0,52,111,.07);
  padding: 22px;
}
.faq-sidebar a {
  display: block;
  color: var(--navy);
  font-weight: 850;
  padding: 11px 0;
  border-top: 1px solid var(--line);
}
.faq-sidebar a:hover { color: var(--blue); }
.faq-content {
  display: grid;
  gap: 48px;
}
.faq-category {
  scroll-margin-top: 150px;
}
.faq-category-heading {
  margin-bottom: 18px;
}
.faq-category-heading h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}
.faq-accordion {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 28px rgba(0,52,111,.055);
  overflow: hidden;
  margin-bottom: 14px;
}
.faq-accordion summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 24px;
  color: var(--navy);
  font-weight: 900;
  font-size: 1.04rem;
  position: relative;
  padding-right: 58px;
}
.faq-accordion summary::-webkit-details-marker { display: none; }
.faq-accordion summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--soft);
  color: var(--blue);
  font-weight: 950;
}
.faq-accordion[open] summary::after {
  content: "–";
  background: var(--green);
  color: var(--navy);
}
.faq-accordion div {
  border-top: 1px solid var(--line);
  padding: 20px 24px 22px;
}
.faq-accordion p {
  color: var(--muted);
  margin: 0 0 12px;
}
.faq-accordion p:last-child { margin-bottom: 0; }
.faq-accordion strong { color: var(--navy); }

@media (max-width: 900px) {
  .faq-layout {
    grid-template-columns: 1fr;
  }
  .faq-sidebar {
    position: static;
  }
}


/* v16 refinements */
.welcome-message-section { padding-top: 12px; }
.story-section { padding-bottom: 58px; }
.story-section + .section-pad { padding-top: 54px; }
.team-intro-section { padding-top: 54px; }
.programme-intro-section { padding-top: 46px; }
.programme-coming-soon { padding-top: 54px; }
.programme-note-wide {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: clamp(26px, 4vw, 42px);
  text-align: center;
}
.programme-note-wide p:not(.eyebrow) {
  color: var(--muted);
  margin-bottom: 0;
}
.city-map-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--blue);
  font-weight: 850;
  border-bottom: 2px solid rgba(46,120,214,.22);
}
.specific-card { border-top: 6px solid var(--green); }
.footer-contact-inline a[href^="mailto:"] {
  text-decoration: underline;
  text-underline-offset: 3px;
}
@media (max-width: 680px) {
  .welcome-message-section { padding-top: 6px; }
  .team-intro-section, .programme-intro-section { padding-top: 38px; }
}


/* v17 alignment refinements */
.team-intro-section .rich-text,
.programme-intro-card .rich-text {
  padding-top: 34px;
}

.footer-contact-inline a[href^="mailto:"] {
  text-decoration: none;
}

@media (max-width: 860px) {
  .team-intro-section .rich-text,
  .programme-intro-card .rich-text {
    padding-top: 0;
  }
}
