/* ==========================================================================
   RPESH 2026 — Main stylesheet
   7th International Scientific Conference, Ohrid, 18–20 September 2026
   Sections: 1 Tokens · 2 Base · 3 Layout · 4 Buttons · 5 Header & nav
             6 Hero · 7 Countdown · 8 Sections & cards · 9 Timeline
             10 Logos · 11 CTA · 12 Footer · 13 Page hero · 14 Soon
             15 Forms · 16 Programme · 17 Utilities
   ========================================================================== */

/* ---------- 1. Design tokens ---------------------------------------------- */
:root {
  /* Colour palette taken from the conference flyer and the RPESH journal cover */
  --navy-900: #06204a;
  --navy-800: #0b2e63;
  --navy-700: #123f7f;
  --blue-600: #1554a8;
  --blue-500: #2c7bd1;
  --blue-300: #8fbdea;
  --cyan-500: #1c9aa8;
  --cyan-400: #2fb8c6;
  --cyan-300: #7ad8e0;

  --ink: #101a2c;
  --slate: #56668140;
  --text: #23324a;
  --muted: #5a6b85;
  --line: #dfe7f2;
  --tint: #f2f7fc;
  --tint-2: #e8f1fa;
  --white: #ffffff;

  --grad-deep: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 45%, var(--blue-600) 100%);
  --grad-accent: linear-gradient(120deg, var(--blue-600) 0%, var(--cyan-400) 100%);

  /* Typography */
  --font-display: "Barlow Condensed", "Arial Narrow", Arial, sans-serif;
  --font-body: "Barlow", "Segoe UI", system-ui, -apple-system, Arial, sans-serif;

  /* Spacing & shape */
  --wrap: 1200px;
  --wrap-narrow: 880px;
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --shadow-sm: 0 2px 10px rgba(11, 46, 99, .07);
  --shadow-md: 0 10px 30px rgba(11, 46, 99, .10);
  --shadow-lg: 0 24px 60px rgba(6, 32, 74, .18);

  --header-h: 76px;
}

/* ---------- 2. Base ------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }

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

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy-800);
  line-height: 1.08;
  margin: 0 0 .5em;
  letter-spacing: .005em;
  font-weight: 700;
}

h1 { font-size: clamp(2.4rem, 5.2vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.9rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); }
h4 { font-size: 1.15rem; }

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

a { color: var(--blue-600); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--cyan-500); text-decoration: underline; }

ul, ol { margin: 0 0 1.1em; padding-left: 1.15em; }
li { margin-bottom: .35em; }

hr { border: 0; border-top: 1px solid var(--line); margin: 2.5rem 0; }

/* Visible keyboard focus everywhere (WCAG 2.1 AA) */
:focus-visible {
  outline: 3px solid var(--cyan-400);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  background: var(--navy-800);
  color: #fff;
  padding: .75rem 1.25rem;
  border-radius: 0 0 var(--r-sm) 0;
  font-weight: 600;
}
.skip-link:focus { left: 0; text-decoration: none; }

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

/* ---------- 3. Layout ----------------------------------------------------- */
.wrap { width: min(100% - 3rem, var(--wrap)); margin-inline: auto; }
.wrap-narrow { width: min(100% - 3rem, var(--wrap-narrow)); margin-inline: auto; }

.section { padding: 5.5rem 0; }
.section--tint { background: var(--tint); }
.section--deep { background: var(--grad-deep); color: #e8f0fb; }
.section--deep h2, .section--deep h3 { color: #fff; }
.section--tight { padding: 3.5rem 0; }

.section-head { max-width: 720px; margin-bottom: 2.75rem; }
.section-head--center { margin-inline: auto; text-align: center; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--cyan-500);
  margin-bottom: .8rem;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--cyan-400);
  display: inline-block;
}
.section--deep .eyebrow { color: var(--cyan-300); }
.section--deep .eyebrow::before { background: var(--cyan-300); }

.lead { font-size: 1.13rem; color: var(--muted); }
.section--deep .lead { color: #c7d8ef; }

.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ---------- 4. Buttons ---------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.08rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .85rem 1.6rem;
  border-radius: 100px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, color .18s ease, border-color .18s ease;
  text-decoration: none;
  line-height: 1.2;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn svg { width: 18px; height: 18px; flex: none; }

.btn--primary { background: var(--cyan-500); color: #fff; box-shadow: 0 6px 18px rgba(28, 154, 168, .35); }
.btn--primary:hover { background: var(--cyan-400); color: #fff; }

.btn--solid { background: var(--navy-800); color: #fff; box-shadow: var(--shadow-sm); }
.btn--solid:hover { background: var(--navy-700); color: #fff; }

.btn--ghost { border-color: rgba(255, 255, 255, .65); color: #fff; background: rgba(255, 255, 255, .06); }
.btn--ghost:hover { background: #fff; color: var(--navy-800); border-color: #fff; }

.btn--outline { border-color: var(--navy-800); color: var(--navy-800); background: transparent; }
.btn--outline:hover { background: var(--navy-800); color: #fff; }

.btn--sm { font-size: .95rem; padding: .6rem 1.2rem; }
.btn[aria-disabled="true"] { opacity: .55; pointer-events: none; }

.btn-row { display: flex; flex-wrap: wrap; gap: .9rem; }
.btn-row--center { justify-content: center; }

/* ---------- 5. Header & navigation ---------------------------------------- */
.topbar {
  background: var(--navy-900);
  color: #b9cbe6;
  font-size: .88rem;
  letter-spacing: .02em;
}
.topbar__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: .5rem 0; flex-wrap: wrap;
}
.topbar a { color: #d6e4f7; }
.topbar a:hover { color: var(--cyan-300); }
.topbar__meta { display: flex; gap: 1.25rem; flex-wrap: wrap; align-items: center; }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, .97);
  border-bottom: 1px solid var(--line);
  backdrop-filter: saturate(160%) blur(8px);
}
.site-header.is-scrolled { box-shadow: var(--shadow-sm); }

.site-header .wrap { width: min(100% - 2.5rem, 1600px); }
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.25rem; min-height: var(--header-h);
}

.brand { display: flex; align-items: center; gap: .9rem; text-decoration: none; flex: none; }
.brand:hover { text-decoration: none; }
.brand__logos { display: flex; align-items: center; gap: .6rem; }
.brand__logos img { height: 46px; width: auto; flex: none; }
.brand__divider { width: 1px; height: 34px; background: var(--line); }
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__title {
  font-family: var(--font-display); font-weight: 700; font-size: 1.4rem;
  color: var(--navy-800); letter-spacing: .04em; white-space: nowrap;
}
.brand__sub { font-size: .72rem; color: var(--muted); letter-spacing: .08em; text-transform: uppercase; white-space: nowrap; }

.site-nav { display: flex; align-items: center; gap: 1rem; }
.nav__list { display: flex; align-items: center; gap: .2rem; list-style: none; margin: 0; padding: 0; }
.nav__link {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.02rem;
  letter-spacing: .005em;
  white-space: nowrap;
  color: var(--navy-800);
  padding: .6rem .7rem;
  border-radius: 10px;
  position: relative;
}
.nav__link:hover { background: var(--tint-2); color: var(--navy-700); text-decoration: none; }

/* Active page: soft filled pill, as on a conference programme badge */
.nav__link[aria-current="page"] {
  color: var(--blue-600);
  background: var(--tint-2);
}


.nav-toggle {
  display: none;
  align-items: center; justify-content: center;
  width: 46px; height: 46px;
  border: 1px solid var(--line); background: #fff;
  border-radius: var(--r-sm); cursor: pointer;
}
.nav-toggle span[aria-hidden], .nav-toggle span[aria-hidden]::before, .nav-toggle span[aria-hidden]::after {
  content: ""; display: block; width: 22px; height: 2px; background: var(--navy-800);
  transition: transform .25s ease, opacity .2s ease;
}
.nav-toggle span[aria-hidden] { position: relative; }
.nav-toggle span[aria-hidden]::before { position: absolute; top: -7px; }
.nav-toggle span[aria-hidden]::after { position: absolute; top: 7px; }
.nav-toggle[aria-expanded="true"] span[aria-hidden] { background: transparent; }
.nav-toggle[aria-expanded="true"] span[aria-hidden]::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span[aria-hidden]::after { transform: translateY(-7px) rotate(-45deg); }


/* ---- "More" dropdown ---------------------------------------------------- */
.nav__more-item { position: relative; }
.nav__more { position: relative; }
.nav__more-summary {
  display: inline-flex; align-items: center; gap: .3rem;
  cursor: pointer; list-style: none; user-select: none;
}
.nav__more-summary::-webkit-details-marker { display: none; }
.nav__more-summary svg { width: 16px; height: 16px; transition: transform .2s ease; }
.nav__more[open] > .nav__more-summary svg { transform: rotate(180deg); }
.nav__more.is-active > .nav__more-summary { color: var(--cyan-500); }

.nav__submenu {
  position: absolute; top: calc(100% + .5rem); right: 0;
  min-width: 210px; list-style: none; margin: 0; padding: .45rem;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-md);
  box-shadow: var(--shadow-md); z-index: 120;
}
.nav__submenu::before {
  content: ""; position: absolute; top: -6px; right: 22px;
  width: 11px; height: 11px; background: #fff;
  border-left: 1px solid var(--line); border-top: 1px solid var(--line);
  transform: rotate(45deg);
}
.nav__link--sub {
  display: block; font-size: 1rem; font-weight: 500;
  padding: .6rem .8rem; border-radius: var(--r-sm);
}
.nav__link--sub[aria-current="page"]::after { display: none; }
.nav__link--sub[aria-current="page"] { background: var(--tint); }

/* ---- Header call to action ---------------------------------------------- */
.nav__cta { flex: none; white-space: nowrap; }

/* ---------- 6. Hero ------------------------------------------------------- */
.hero {
  position: relative;
  color: #fff;
  isolation: isolate;
  padding: 5.5rem 0 8.5rem;
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 55%; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(6, 32, 74, .92) 0%, rgba(6, 32, 74, .74) 45%, rgba(11, 46, 99, .93) 100%),
    linear-gradient(115deg, rgba(28, 154, 168, .30) 0%, rgba(6, 32, 74, 0) 62%);
}
.hero__inner { max-width: 900px; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .3);
  padding: .35rem 1rem; border-radius: 100px;
  font-family: var(--font-display); font-weight: 600; letter-spacing: .16em;
  text-transform: uppercase; font-size: .9rem;
}
.hero__conference {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--cyan-300); margin: 1.4rem 0 .6rem;
}
.hero h1 { color: #fff; text-transform: uppercase; letter-spacing: .01em; margin-bottom: .35rem; }
.hero__subtitle {
  font-family: var(--font-display); font-weight: 400; font-style: italic;
  font-size: clamp(1.3rem, 2.6vw, 1.95rem); color: #dbe8f8; margin: 0 0 1.6rem;
}
.hero__meta { display: flex; flex-wrap: wrap; gap: 1.6rem; margin-bottom: 1.5rem; }
.hero__meta-item { display: flex; align-items: center; gap: .6rem; font-size: 1.08rem; }
.hero__meta-item svg { width: 22px; height: 22px; color: var(--cyan-300); flex: none; }
.hero__motto {
  display: inline-flex; align-items: center; gap: .7rem;
  background: var(--grad-accent);
  padding: .55rem 1.4rem; border-radius: 100px;
  font-family: var(--font-display); font-weight: 600; font-style: italic;
  font-size: 1.2rem; margin-bottom: 2rem;
  box-shadow: 0 8px 24px rgba(6, 32, 74, .35);
}
.hero__motto svg { width: 20px; height: 20px; }

/* Wave divider — the signature graphic device of the flyer */
.wave-divider { position: absolute; left: 0; right: 0; bottom: -1px; z-index: 0; line-height: 0; }
.wave-divider svg { width: 100%; height: 70px; display: block; }

/* ---------- 7. Countdown -------------------------------------------------- */
.countdown-wrap { margin-top: -5.5rem; position: relative; z-index: 5; }
.countdown {
  background: #fff;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  padding: 2rem 2.25rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
  border-top: 4px solid var(--cyan-400);
}
.countdown__label { max-width: 260px; }
.countdown__label .eyebrow { margin-bottom: .35rem; }
.countdown__label p { font-family: var(--font-display); font-size: 1.35rem; color: var(--navy-800); font-weight: 600; line-height: 1.15; }
.countdown__units { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.cd-unit { min-width: 92px; text-align: center; background: var(--tint); border-radius: var(--r-md); padding: .9rem .6rem; }
.cd-unit__value {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(2rem, 4vw, 2.9rem); color: var(--navy-800);
  line-height: 1; font-variant-numeric: tabular-nums;
}
.cd-unit__label {
  font-size: .78rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--muted); margin-top: .35rem;
}
.countdown--done { text-align: center; justify-content: center; }

/* ---------- 8. Sections & cards ------------------------------------------- */
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 1.6rem;
  box-shadow: var(--shadow-sm);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  height: 100%;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--blue-300); }
.card h3 { margin-bottom: .5rem; }
.card p { color: var(--muted); font-size: .98rem; }

.icon-badge {
  width: 52px; height: 52px; border-radius: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--tint-2); color: var(--blue-600); margin-bottom: 1rem;
}
.icon-badge svg { width: 26px; height: 26px; }
.icon-badge--accent { background: rgba(47, 184, 198, .14); color: var(--cyan-500); }

/* Key information cards */
.info-card { text-align: left; }
.info-card__value { font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; color: var(--navy-800); line-height: 1.15; }
.info-card__caption { color: var(--muted); font-size: .95rem; margin-top: .3rem; }

/* Topic cards */
.topic-card { position: relative; overflow: hidden; }
.topic-card__group {
  font-size: .74rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--cyan-500); font-weight: 600; margin-bottom: .4rem; display: block;
}
.topic-card h3 { font-size: 1.22rem; }
.topic-card::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 3px; width: 0;
  background: var(--grad-accent); transition: width .3s ease;
}
.topic-card:hover::after { width: 100%; }

/* Two-column media block */
.split { display: grid; grid-template-columns: 1.15fr .85fr; gap: 3rem; align-items: center; }
.split__media img { border-radius: var(--r-md); box-shadow: var(--shadow-md); }
.split--reverse .split__media { order: 2; }

.figure-caption { font-size: .88rem; color: var(--muted); margin-top: .6rem; }

/* Fact list */
.fact-list { list-style: none; padding: 0; margin: 0; }
.fact-list li {
  display: flex; gap: .75rem; align-items: flex-start;
  padding: .7rem 0; border-bottom: 1px solid var(--line);
}
.fact-list li:last-child { border-bottom: 0; }
.fact-list svg { width: 20px; height: 20px; color: var(--cyan-500); flex: none; margin-top: .25rem; }
.fact-list strong { color: var(--navy-800); }

/* Callout */
.callout {
  background: var(--tint);
  border-left: 4px solid var(--cyan-400);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  padding: 1.35rem 1.6rem;
  margin: 1.75rem 0;
}
.callout p { color: var(--text); }
.callout__title { font-family: var(--font-display); font-weight: 700; color: var(--navy-800); font-size: 1.15rem; margin-bottom: .3rem; }

/* Pills */
.pill {
  display: inline-block; background: var(--tint-2); color: var(--navy-700);
  border-radius: 100px; padding: .3rem .95rem; font-size: .88rem; font-weight: 500;
  margin: 0 .35rem .5rem 0;
}
.pill--soon { background: rgba(47, 184, 198, .16); color: var(--cyan-500); font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }

/* ---------- 9. Timeline (key deadlines) ----------------------------------- */
.timeline { position: relative; padding-left: 0; list-style: none; margin: 0; }
.timeline::before {
  content: ""; position: absolute; left: 21px; top: 8px; bottom: 8px;
  width: 2px; background: linear-gradient(180deg, var(--cyan-400), var(--blue-300));
}
.timeline__item { position: relative; padding: 0 0 2.25rem 4rem; }
.timeline__item:last-child { padding-bottom: 0; }
.timeline__dot {
  position: absolute; left: 8px; top: 2px;
  width: 28px; height: 28px; border-radius: 50%;
  background: #fff; border: 3px solid var(--cyan-400);
  display: flex; align-items: center; justify-content: center;
}
.timeline__dot svg { width: 14px; height: 14px; color: var(--cyan-500); }
.timeline__date {
  font-family: var(--font-display); font-weight: 700; font-size: 1.45rem;
  color: var(--navy-800); line-height: 1.1;
}
.timeline__title { font-weight: 600; color: var(--cyan-500); text-transform: uppercase; letter-spacing: .1em; font-size: .85rem; margin-bottom: .2rem; }
.timeline__item p { color: var(--muted); margin-top: .4rem; font-size: .98rem; }

/* ---------- 10. Logo grid ------------------------------------------------- */
.logo-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1.5rem; align-items: stretch;
}
.logo-tile {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 1.5rem 1.25rem; text-align: center;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .9rem;
  min-height: 190px; transition: box-shadow .22s ease, transform .22s ease;
}
.logo-tile:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.logo-tile img { max-height: 92px; width: auto; object-fit: contain; }
.logo-tile__name { font-size: .92rem; color: var(--muted); line-height: 1.35; }
.logo-tile__name strong { color: var(--navy-800); display: block; font-size: 1rem; }

/* ---------- 11. CTA banner ------------------------------------------------ */
.cta-banner {
  position: relative; overflow: hidden;
  background: var(--grad-deep); color: #fff;
  padding: 4.5rem 0; text-align: center;
}
.cta-banner::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 12% 20%, rgba(47, 184, 198, .35), transparent 45%),
                    radial-gradient(circle at 88% 80%, rgba(44, 123, 209, .35), transparent 45%);
}
.cta-banner > * { position: relative; }
.cta-banner h2 { color: #fff; max-width: 900px; margin-inline: auto; }
.cta-banner p { color: #c7d8ef; max-width: 640px; margin: 0 auto 2rem; }

/* ---------- 12. Footer ---------------------------------------------------- */
.site-footer { background: var(--navy-900); color: #b9cbe6; padding: 4rem 0 0; font-size: .96rem; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1.2fr; gap: 3rem; padding-bottom: 3rem; }
.site-footer h3 {
  color: #fff; font-size: 1.15rem; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 1.1rem;
}
.site-footer a { color: #d6e4f7; }
.site-footer a:hover { color: var(--cyan-300); }
.footer__title { font-family: var(--font-display); font-size: 1.5rem; color: #fff; font-weight: 700; letter-spacing: .04em; }
.footer__list { list-style: none; padding: 0; margin: 0; }
.footer__list li { margin-bottom: .5rem; }
.footer__contact li { display: flex; gap: .65rem; align-items: flex-start; margin-bottom: .8rem; }
.footer__contact svg { width: 18px; height: 18px; color: var(--cyan-300); flex: none; margin-top: .3rem; }
.footer__logos { display: flex; gap: .9rem; margin-top: 1.5rem; flex-wrap: wrap; }
.footer__logos .chip {
  background: #fff; border-radius: var(--r-sm); padding: .55rem .7rem;
  display: inline-flex; align-items: center;
}
.footer__logos img { height: 46px; width: auto; }
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding: 1.25rem 0; display: flex; justify-content: space-between; gap: 1rem;
  flex-wrap: wrap; font-size: .9rem; color: #8fa6c6;
}

/* ---------- 13. Page hero (inner pages) ----------------------------------- */
.page-hero {
  position: relative; overflow: hidden;
  background: var(--grad-deep); color: #fff;
  padding: 3.75rem 0 4.25rem;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0; opacity: .13;
  background: url("../images/backgrounds/ohrid-illustration.webp") center/cover no-repeat;
}
.page-hero::after {
  content: ""; position: absolute; right: -80px; top: -120px;
  width: 420px; height: 420px; border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .18);
}
.page-hero > * { position: relative; }
.page-hero h1 { color: #fff; font-size: clamp(2.1rem, 4.4vw, 3.2rem); margin-bottom: .4rem; text-transform: uppercase; }
.page-hero p { color: #c7d8ef; max-width: 640px; }
.breadcrumb { font-size: .9rem; color: #9fb8d9; margin-bottom: 1rem; }
.breadcrumb a { color: #cfe0f5; }
.breadcrumb span { margin: 0 .45rem; }

/* ---------- 14. "Soon" placeholder ---------------------------------------- */
.soon-block {
  text-align: center; padding: 4rem 1.5rem;
  background: var(--tint); border: 1px dashed var(--blue-300);
  border-radius: var(--r-lg);
}
.soon-block .soon-block__mark {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(3rem, 8vw, 5.5rem); line-height: 1;
  letter-spacing: .04em; text-transform: uppercase;
  background: var(--grad-accent); -webkit-background-clip: text; background-clip: text;
  color: transparent; margin-bottom: .5rem;
}
.soon-block p { color: var(--muted); max-width: 520px; margin-inline: auto; }
.soon-inline {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-display); font-weight: 700; font-size: 1.5rem;
  color: var(--cyan-500); letter-spacing: .06em; text-transform: uppercase;
}

/* ---------- 15. Forms ----------------------------------------------------- */
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.field { display: flex; flex-direction: column; gap: .4rem; }
.field--full { grid-column: 1 / -1; }
.field label { font-weight: 600; color: var(--navy-800); font-size: .95rem; }
.field .req { color: #c0392b; }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 1rem; color: var(--text);
  padding: .8rem .95rem; border: 1px solid var(--line); border-radius: var(--r-sm);
  background: #fff; transition: border-color .2s ease, box-shadow .2s ease;
  width: 100%;
}
.field textarea { min-height: 160px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--blue-500); box-shadow: 0 0 0 3px rgba(44, 123, 209, .16); outline: none;
}
.field .error-msg { color: #c0392b; font-size: .88rem; min-height: 1.1em; }
.field.is-invalid input, .field.is-invalid select, .field.is-invalid textarea { border-color: #c0392b; }
.form-note {
  background: var(--tint); border-radius: var(--r-md); padding: 1rem 1.2rem;
  font-size: .93rem; color: var(--muted); margin-top: 1.25rem;
}
.form-status {
  margin-top: 1.25rem; padding: 1rem 1.2rem; border-radius: var(--r-md);
  border: 1px solid var(--line); background: var(--tint-2); color: var(--navy-800);
  display: none;
}
.form-status.is-visible { display: block; }

/* ---------- 16. Programme ------------------------------------------------- */
.day-tabs { display: flex; gap: .75rem; flex-wrap: wrap; margin-bottom: 2rem; }
.day-tab {
  font-family: var(--font-display); font-weight: 600; font-size: 1.05rem;
  letter-spacing: .06em; text-transform: uppercase;
  padding: .7rem 1.4rem; border-radius: 100px;
  border: 2px solid var(--line); background: #fff; color: var(--navy-800); cursor: pointer;
  transition: all .2s ease;
}
.day-tab:hover { border-color: var(--blue-300); }
.day-tab[aria-selected="true"] { background: var(--navy-800); border-color: var(--navy-800); color: #fff; }
.day-panel[hidden] { display: none; }

.schedule { width: 100%; border-collapse: collapse; }
.schedule th, .schedule td { text-align: left; padding: .9rem 1rem; border-bottom: 1px solid var(--line); vertical-align: top; }
.schedule th { font-family: var(--font-display); text-transform: uppercase; letter-spacing: .08em; color: var(--navy-800); font-size: .95rem; }
.schedule td:first-child { white-space: nowrap; font-weight: 600; color: var(--navy-700); }

/* ---------- 17. News, speakers, registration ------------------------------ */
.news-card { display: flex; flex-direction: column; overflow: hidden; padding: 0; }
.news-card__media { aspect-ratio: 16 / 10; overflow: hidden; background: var(--tint); }
.news-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.news-card:hover .news-card__media img { transform: scale(1.04); }
.news-card__body { padding: 1.5rem; display: flex; flex-direction: column; gap: .6rem; flex: 1; }
.news-card__meta { font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: var(--cyan-500); font-weight: 600; }
.news-card__body .btn { align-self: flex-start; margin-top: auto; }

.speaker-card { text-align: center; }
.speaker-card__photo {
  width: 132px; height: 132px; border-radius: 50%; margin: 0 auto 1rem;
  background: var(--tint-2); display: flex; align-items: center; justify-content: center;
  color: var(--blue-300); overflow: hidden;
}
.speaker-card__photo img { width: 100%; height: 100%; object-fit: cover; }

.price-card { display: flex; flex-direction: column; }
.price-card__cat { font-family: var(--font-display); font-size: 1.35rem; color: var(--navy-800); font-weight: 700; }
.price-card__price {
  font-family: var(--font-display); font-weight: 700; font-size: 2.4rem; line-height: 1;
  color: var(--cyan-500); margin: .75rem 0 .25rem;
}
.price-card ul { list-style: none; padding: 0; margin: 1rem 0 0; }
.price-card li { display: flex; gap: .55rem; align-items: flex-start; font-size: .95rem; color: var(--muted); }
.price-card li svg { width: 18px; height: 18px; color: var(--cyan-500); flex: none; margin-top: .3rem; }

/* Map */
.map-frame {
  width: 100%; height: 420px; border: 0; border-radius: var(--r-md);
  box-shadow: var(--shadow-md); display: block;
}

/* Committee block */
.committee-block { border: 1px solid var(--line); border-radius: var(--r-md); padding: 1.75rem; background: #fff; }
.committee-block h3 { display: flex; align-items: center; gap: .7rem; }
.committee-block h3 svg { width: 24px; height: 24px; color: var(--cyan-500); }
