/* ==========================================================================
   SHSRK — Shoqata e Stomatologëve të Republikës së Kosovës
   ==========================================================================
   Separation is done with 1px borders, never drop shadows. The one real
   shadow in the design is the speaker modal.
   The only breakpoint is 1180px, where the navigation collapses. Everything
   else is fluid: auto-fit grids with min(Npx, 100%) and clamp() type.
   ========================================================================== */

@font-face {
  font-family: "Newsreader";
  src: url("../fonts/newsreader-site.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
}

@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("../fonts/plus-jakarta-sans-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
}

/* --------------------------------------------------------------- tokens -- */
:root {
  --ink: #14171a;
  --ink-deep: #0c0e10;
  --paper: #fcfcfb;
  --paper-alt: #f7f7f5;
  --surface-warm: #f0f0ec;
  --surface-warm-alt: #f2f2ee;
  --placeholder: #efefea;
  --placeholder-alt: #edede8;
  --border: #e4e4de;
  --border-light: #e8e8e4;
  --border-input: #dcdcd5;
  --border-strong: #d6d6cf;

  --text-body: #3a4046;
  --text-muted: #5a6169;
  --text-meta: #8a8f96;
  --text-disabled: #a2a7ad;
  --nav-inactive: #6b7280;

  --accent: #1b6b5a;
  --accent-deep: #0f4a3e;
  --accent-light: #8fcbb8;
  --accent-pale: #c9e4db;
  --accent-tint: #f2f8f6;
  --blue: #3b82d9;
  --blue-light: #8fbef0;

  --on-dark-90: rgba(252, 252, 251, 0.9);
  --on-dark-78: rgba(252, 252, 251, 0.78);
  --on-dark-72: rgba(252, 252, 251, 0.72);
  --on-dark-60: rgba(252, 252, 251, 0.6);
  --on-dark-55: rgba(252, 252, 251, 0.55);
  --on-dark-45: rgba(252, 252, 251, 0.45);
  --on-dark-40: rgba(252, 252, 251, 0.4);
  --rule-dark: rgba(252, 252, 251, 0.18);
  --rule-dark-soft: rgba(252, 252, 251, 0.12);
  --rule-dark-strong: rgba(252, 252, 251, 0.3);

  --serif: "Newsreader", Georgia, serif;
  --sans: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  --mono: ui-monospace, "SF Mono", SFMono-Regular, Menlo, monospace;

  --wrap: 1240px;
  --gutter: clamp(20px, 4vw, 32px);
}

/* ----------------------------------------------------------------- base -- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  color: var(--accent-deep);
}

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

::selection {
  background: var(--accent-pale);
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.site {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site__main {
  flex: 1;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  padding: 12px 20px;
  background: var(--ink);
  color: var(--paper);
  border-radius: 0 0 6px 0;
  font-size: 14px;
  font-weight: 600;
}

.skip-link:focus {
  left: 0;
  color: var(--paper);
}

/* Available to screen readers, invisible on screen. */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

/* ------------------------------------------------------------- layout --- */
.wrap {
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: clamp(55px, 8vw, 100px);
}

.section--lg {
  padding-block: clamp(61px, 8vw, 110px);
}

.section--xl {
  padding-block: clamp(66px, 8vw, 120px);
}

.section--page {
  padding-block: clamp(48px, 8vw, 88px) 110px;
}

.section--alt {
  background: var(--paper-alt);
}

.section--ruled {
  border-top: 1px solid var(--border-light);
}

/* Fluid multi-column layout. min(Npx, 100%) is what stops 320px phones from
   overflowing horizontally — do not drop it. */
.cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(var(--min, 340px), 100%), 1fr));
  gap: var(--gap, clamp(40px, 5vw, 72px));
}

.cols--wide-gap {
  --gap: clamp(48px, 5vw, 80px);
}

.cols--center {
  align-items: center;
}

.cols--start {
  align-items: start;
}

/* The hairline grid: gap:1px over a tinted background *is* the rule line. */
.hairgrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(var(--min, 300px), 100%), 1fr));
  gap: 1px;
  background: var(--paper-alt);
}

.hairgrid > * {
  background: var(--paper);
  box-shadow: 0 0 0 1px var(--border);
}

/* Variant used where the design draws an outer border instead of cell outlines. */
.hairgrid--boxed {
  background: var(--border);
  border: 1px solid var(--border);
}

.hairgrid--boxed > * {
  box-shadow: none;
}

.hairrows {
  display: grid;
  gap: 1px;
  background: var(--border);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.hairrows > * {
  background: var(--paper);
}

/* --------------------------------------------------------- typography --- */
.eyebrow {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

.eyebrow--on-dark {
  color: var(--accent-light);
}

.eyebrow--muted {
  color: var(--on-dark-60);
  font-size: 12.5px;
  letter-spacing: 0.14em;
}

.micro {
  margin: 0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-meta);
}

.micro--on-dark {
  color: var(--on-dark-45);
}

.display {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 4.6vw, 60px);
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin: 0;
}

.h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(26px, 5.2vw, 36px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0;
}

.h2--lg {
  font-size: clamp(28px, 3.4vw, 46px);
  line-height: 1.16;
}

.h2--sm {
  font-size: clamp(24px, 5.2vw, 32px);
}

.h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 24px;
  letter-spacing: -0.01em;
  margin: 0;
}

.lead {
  margin: 0;
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-body);
}

.body {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted);
}

.body--sm {
  font-size: 15px;
}

.quote {
  font-family: var(--serif);
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--text-body);
  margin: 0;
}

.measure {
  max-width: 60ch;
}

.placeholder {
  border: 1px dashed var(--border-strong);
  border-radius: 6px;
  background: var(--paper-alt);
  padding: 56px 32px;
}

.placeholder__note {
  margin: 0;
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.04em;
  line-height: 1.8;
  color: var(--text-meta);
}

/* ---------------------------------------------------------- components -- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 28px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: inherit;
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
}

.btn--dark {
  background: var(--ink);
  color: var(--paper);
}

.btn--dark:hover {
  background: var(--accent);
  color: var(--paper);
}

.btn--light {
  background: var(--paper);
  color: var(--ink);
}

.btn--light:hover {
  background: var(--accent);
  color: var(--paper);
}

.btn--light-ink:hover {
  background: var(--ink);
  color: var(--paper);
}

.btn--blue {
  background: var(--blue);
  color: var(--paper);
  padding: 16px 30px;
}

.btn--blue:hover {
  background: var(--paper);
  color: var(--ink-deep);
}

.btn--outline {
  border-color: var(--border-strong);
  color: var(--ink);
  font-weight: 500;
}

.btn--outline:hover {
  border-color: var(--ink);
  color: var(--ink);
}

.btn--on-dark {
  border-color: var(--rule-dark-strong);
  color: var(--paper);
  font-weight: 500;
  padding: 16px 30px;
}

.btn--on-dark:hover {
  border-color: var(--paper);
  color: var(--paper);
}

.btn--sm {
  padding: 13px 24px;
  font-size: 14px;
}

.btn--xs {
  padding: 12px 22px;
  font-size: 13.5px;
}

.btn-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.tag {
  display: inline-block;
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--paper);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.tag--blue {
  background: var(--blue);
}

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  border-bottom: 1px solid var(--accent-pale);
  padding-bottom: 3px;
}

.arrow-link:hover {
  border-color: var(--accent);
}

.text-link {
  font-size: 14.5px;
  font-weight: 600;
}

/* Portrait frames. The three crop numbers arrive as inline custom properties
   because they are per-photo data, not styling — see includes/helpers.php. */
.frame {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  background: var(--placeholder);
}

.frame--portrait {
  aspect-ratio: 3 / 4;
}

.frame--square {
  aspect-ratio: 1 / 1;
}

.frame > img {
  position: absolute;
  display: block;
  /* The crop deliberately oversizes the image past its frame, so the global
     img { max-width: 100% } must not clamp it back. */
  max-width: none;
  width: var(--crop-w, 100%);
  left: var(--crop-l, 0);
  top: var(--crop-t, 0);
}

.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.stat {
  padding: 22px 20px;
}

.stat__label {
  margin: 0 0 6px;
}

.stat__value {
  margin: 0;
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.stat__value--accent {
  color: var(--accent);
}

/* -------------------------------------------------------------- header --- */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(252, 252, 251, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
}

.header__bar {
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
  height: 76px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.header__logo img {
  height: 46px;
  width: auto;
  display: block;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav__link {
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.01em;
  white-space: nowrap;
  color: var(--nav-inactive);
}

.nav__link:hover {
  color: var(--ink);
}

.nav__link.is-active {
  color: var(--ink);
  background: var(--surface-warm);
}

.nav__cta {
  margin-left: 20px;
  padding: 11px 20px;
  background: var(--ink);
  color: var(--paper);
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.nav__cta:hover {
  background: var(--accent);
  color: var(--paper);
}

.nav-toggle {
  margin-left: auto;
  width: 46px;
  height: 46px;
  display: none;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--paper);
  font-size: 17px;
  line-height: 1;
  color: var(--ink);
  font-family: inherit;
  cursor: pointer;
}

.nav-panel {
  display: none;
  border-top: 1px solid var(--border-light);
  background: var(--paper);
  padding: 16px 24px 24px;
}

.nav-panel.is-open {
  display: block;
}

.nav-panel__list {
  max-width: var(--wrap);
  margin-inline: auto;
  display: grid;
  gap: 2px;
}

.nav-panel__link {
  padding: 14px 12px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
}

.nav-panel__link:hover {
  background: var(--surface-warm);
  color: var(--ink);
}

@media (max-width: 1179px) {
  .nav {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }
}

/* -------------------------------------------------------------- footer --- */
.footer {
  background: var(--ink);
  color: var(--paper);
  margin-top: auto;
}

.footer__top {
  max-width: var(--wrap);
  margin-inline: auto;
  padding: clamp(44px, 8vw, 80px) var(--gutter) 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
  gap: clamp(40px, 4vw, 64px);
}

.footer__name {
  margin: 0 0 24px;
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.35;
  letter-spacing: -0.01em;
  max-width: 26ch;
}

.footer__blurb {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--on-dark-55);
  max-width: 44ch;
}

.footer__heading {
  margin: 0 0 20px;
}

.footer__links {
  display: grid;
  gap: 12px;
}

.footer__links a {
  font-size: 14.5px;
  color: var(--on-dark-72);
}

.footer__links a:hover {
  color: var(--paper);
}

.footer__bottom {
  border-top: 1px solid var(--rule-dark-soft);
}

.footer__bottom-inner {
  max-width: var(--wrap);
  margin-inline: auto;
  padding: 24px var(--gutter);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--on-dark-40);
}

/* ---------------------------------------------------------- home: hero --- */
.hero {
  position: relative;
  background: var(--ink);
  overflow: hidden;
}

/* Four photos in a skewed 1px-gapped strip, images counter-skewed inside. */
.hero__strip {
  position: absolute;
  inset: -2px -6%;
  display: flex;
  gap: 1px;
  background: var(--rule-dark-strong);
  transform: skewX(-5deg);
}

.hero__strip > div {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.hero__strip img {
  width: 112%;
  height: 100%;
  margin-left: -6%;
  object-fit: cover;
  transform: skewX(5deg);
  display: block;
}

.hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(10, 12, 14, 0.94) 0%,
    rgba(10, 12, 14, 0.86) 40%,
    rgba(10, 12, 14, 0.62) 75%,
    rgba(10, 12, 14, 0.5) 100%
  );
}

.hero__inner {
  position: relative;
}

.hero__copy {
  padding-block: clamp(64px, 7vw, 96px);
}

.hero__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(38px, 4.6vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--paper);
  margin: 0;
  max-width: 14ch;
  text-wrap: balance;
}

.hero__lead {
  margin: 28px 0 0;
  max-width: 48ch;
  font-size: 17px;
  line-height: 1.65;
  color: var(--on-dark-72);
}

.hero__spacer {
  min-height: clamp(320px, 34vw, 460px);
}

/* Home ticker strip */
.ticker {
  background: var(--accent);
  color: var(--paper);
}

.ticker__inner {
  max-width: var(--wrap);
  margin-inline: auto;
  padding: 26px var(--gutter);
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.ticker__date {
  display: flex;
  align-items: baseline;
  gap: 14px;
}

.ticker__date strong {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
  line-height: 1;
}

.ticker__venue {
  font-size: 14px;
  color: var(--on-dark-72);
}

.ticker__name {
  font-size: 14.5px;
  color: var(--on-dark-90);
  flex: 1;
  min-width: 240px;
}

.ticker__cta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.ticker__count {
  font-size: 13px;
  color: var(--on-dark-60);
}

.intro__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.18;
  letter-spacing: -0.02em;
  margin: 0;
  text-wrap: pretty;
}

.intro__photos {
  display: grid;
  gap: 20px;
}

.intro__photos img {
  width: 100%;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}

.value-card {
  padding: clamp(30px, 6vw, 44px) clamp(22px, 5vw, 36px) clamp(32px, 6vw, 48px);
}

.value-card:hover {
  background: #fff;
}

.value-card__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--accent-pale);
  background: var(--accent-tint);
  font-family: var(--serif);
  font-size: 18px;
  color: var(--accent);
}

.value-card__title {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin: 24px 0 12px;
}

.value-card__body {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-muted);
}

.teaser__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(30px, 3.6vw, 46px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 22px;
  max-width: 16ch;
}

.teaser__poster {
  width: 100%;
  max-width: 420px;
  justify-self: center;
  height: auto;
  display: block;
  border-radius: 10px;
  border: 1px solid var(--border);
}

.date-list {
  display: grid;
  gap: 14px;
}

.date-list__row {
  display: flex;
  gap: 18px;
  align-items: baseline;
  border-bottom: 1px solid var(--border);
  padding-bottom: 14px;
}

.date-list__label {
  font-size: 14px;
  color: var(--text-muted);
  flex: 1;
  min-width: 180px;
}

.date-list__value {
  font-size: 14.5px;
  font-weight: 600;
  text-align: right;
}

.divider-block {
  margin-top: 88px;
  padding-top: 56px;
  border-top: 1px solid var(--border);
}

.mini-card__img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 4px;
  background: var(--placeholder);
  display: block;
}

.mini-card__name {
  font-size: 15.5px;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin: 14px 0 6px;
}

.mini-card__topic {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-muted);
}

.person__img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: var(--placeholder);
  border-radius: 4px;
  display: block;
}

.person__name {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin: 24px 0 8px;
}

.person__role {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--text-muted);
}

/* ------------------------------------------------------ congress: hero --- */
.chero {
  position: relative;
  background: var(--ink-deep);
  color: var(--paper);
  overflow: hidden;
}

.chero__bg {
  position: absolute;
  inset: -8%;
  width: 116%;
  height: 116%;
  object-fit: cover;
  filter: blur(48px) saturate(1.15);
  opacity: 0.5;
}

.chero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10, 12, 14, 0.95) 0%,
    rgba(10, 12, 14, 0.86) 46%,
    rgba(10, 12, 14, 0.6) 100%
  );
}

.chero__inner {
  position: relative;
}

.chero__copy {
  padding-block: clamp(64px, 7vw, 104px);
}

.chero__title {
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(34px, 4.6vw, 64px);
  line-height: 1;
  letter-spacing: -0.035em;
  margin: 0;
  text-transform: uppercase;
  text-wrap: balance;
}

.chero__theme {
  margin: 30px 0 0;
  max-width: 50ch;
  font-size: 18px;
  line-height: 1.55;
  color: var(--on-dark-78);
  font-family: var(--serif);
}

.chero__stats {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  margin-top: 44px;
  border-top: 1px solid var(--rule-dark);
  border-bottom: 1px solid var(--rule-dark);
  max-width: 600px;
}

.chero__stat {
  padding: 22px 28px;
  border-right: 1px solid var(--rule-dark);
}

.chero__stat:first-child {
  padding-left: 0;
}

.chero__stat:last-child {
  padding-right: 0;
  border-right: 0;
}

.chero__stat p:last-child {
  margin: 0;
  font-size: 23px;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.chero__stat-count {
  color: var(--blue-light);
}

.chero__speakers {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-top: 44px;
  color: var(--paper);
  flex-wrap: wrap;
}

.chero__speakers:hover {
  color: var(--blue-light);
}

.avatars {
  display: flex;
  align-items: center;
  padding-left: 14px;
}

.avatar {
  position: relative;
  display: block;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--ink-deep);
  margin-left: -14px;
  background: var(--placeholder);
  flex: none;
}

.avatar img {
  position: absolute;
  display: block;
  max-width: none;
  width: var(--crop-w, 100%);
  left: var(--crop-l, 0);
  top: var(--crop-t, 0);
}

.chero__speakers-label {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.chero__poster-wrap {
  display: flex;
  justify-content: center;
  padding-block: clamp(40px, 5vw, 72px);
}

.chero__poster {
  width: 100%;
  max-width: 420px;
  height: auto;
  display: block;
  border-radius: 10px;
  opacity: 0.95;
  mask-image: radial-gradient(120% 100% at 50% 45%, #000 52%, transparent 92%);
  -webkit-mask-image: radial-gradient(120% 100% at 50% 45%, #000 52%, transparent 92%);
}

.organisers {
  display: flex;
  align-items: center;
  gap: clamp(32px, 5vw, 72px);
  flex-wrap: wrap;
}

.organisers img {
  height: 96px;
  width: auto;
  display: block;
}

.block-divider {
  margin-top: 64px;
  padding-top: 44px;
  border-top: 1px solid var(--border-light);
}

.info-card {
  padding: clamp(28px, 6vw, 38px) clamp(22px, 5vw, 32px) clamp(30px, 6vw, 40px);
}

.info-card__title {
  margin: 0 0 24px;
}

.info-card__list {
  display: grid;
  gap: 12px;
}

.info-card__list p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-muted);
}

.info-card__list strong {
  color: var(--ink);
  font-weight: 600;
}

.venue {
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: clamp(26px, 6vw, 36px) clamp(22px, 5vw, 32px);
  background: var(--paper);
  display: grid;
  gap: 26px;
}

.venue__head {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.venue__logo {
  height: 88px;
  width: auto;
  display: block;
}

.venue__name {
  margin: 0 0 8px;
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -0.015em;
}

.venue__address {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-muted);
}

.venue__map {
  width: 100%;
  height: 280px;
  border: 1px solid var(--border);
  border-radius: 4px;
  display: block;
  background: var(--paper-alt);
}

/* Sponsorship table — the one horizontally scrolling element in the design. */
.table-scroll {
  overflow-x: auto;
  border: 1px solid var(--border);
  background: var(--paper);
}

.tiers {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  font-size: 14.5px;
}

.tiers th {
  text-align: left;
  padding: 26px 24px;
  border-bottom: 1px solid var(--border);
  border-left: 1px solid var(--placeholder-alt);
  vertical-align: top;
}

.tiers th:first-child {
  padding: 26px 28px;
  border-left: 0;
  width: 36%;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
}

.tiers__name {
  display: block;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 23px;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.tiers__price {
  display: block;
  margin-top: 6px;
  font-size: 15px;
  font-weight: 600;
  color: var(--accent);
}

.tiers td {
  padding: 15px 24px;
  border-bottom: 1px solid var(--placeholder-alt);
  border-left: 1px solid var(--placeholder-alt);
  font-weight: 600;
  color: var(--ink);
}

/* Row headers carry the benefit name; they must not look like column heads. */
.tiers tbody th {
  padding: 15px 28px;
  border-left: 0;
  border-bottom: 1px solid var(--placeholder-alt);
  width: auto;
  font-size: 14.5px;
  font-weight: 400;
  letter-spacing: normal;
  text-transform: none;
  color: var(--text-body);
}

.tiers td.is-no {
  font-weight: 400;
  color: var(--text-disabled);
}

/* --------------------------------------------------------- speakers ----- */
.speaker-card__name {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin: 24px 0 10px;
}

.speaker-card__topic {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-muted);
}

.speaker-card__more {
  display: inline-flex;
  margin-top: 14px;
  font-size: 13.5px;
  font-weight: 600;
}

.speaker-card__plus {
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  background: rgba(12, 14, 16, 0.66);
  color: var(--paper);
  font-size: 21px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.speaker-card__plus:hover {
  background: var(--accent);
}

/* Speaker modal */
.modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(12, 14, 16, 0.55);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(16px, 5vh, 64px) 20px;
  overflow-y: auto;
}

.modal[hidden] {
  display: none;
}

.modal__panel {
  position: relative;
  width: 100%;
  max-width: 720px;
  background: var(--paper);
  border-radius: 8px;
  padding: clamp(30px, 4vw, 54px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.3);
}

.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--paper);
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
}

.modal__close:hover {
  background: var(--surface-warm-alt);
  color: var(--ink);
}

.modal__name {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 3.4vw, 40px);
  letter-spacing: -0.02em;
  margin: 16px 0 30px;
}

.modal__body p {
  margin: 0 0 18px;
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--text-body);
}

.modal__rule {
  border: 0;
  border-top: 1px solid var(--border-light);
  margin: 34px 0 26px;
}

.modal__topic {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.4;
  margin: 14px 0 22px;
}

body.is-locked {
  overflow: hidden;
}

/* -------------------------------------------------------- abstracts ----- */
.keydate {
  padding: clamp(26px, 6vw, 36px) clamp(20px, 5vw, 30px);
}

.keydate__label {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
}

.keydate__value {
  margin: 0;
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.25;
}

.deflist {
  display: grid;
  gap: 14px;
  margin: 0;
}

.deflist__row {
  display: flex;
  gap: 14px;
  align-items: baseline;
  border-bottom: 1px solid var(--placeholder-alt);
  padding-bottom: 14px;
}

.deflist__term {
  font-size: 14.5px;
  font-weight: 600;
  flex-shrink: 0;
  min-width: 110px;
  margin: 0;
}

.deflist__desc {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
}

.form-panel {
  background: var(--paper-alt);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: clamp(30px, 4vw, 44px) clamp(24px, 4vw, 40px);
  align-self: start;
  position: sticky;
  top: 100px;
}

.form {
  display: grid;
  gap: 22px;
}

.field {
  display: grid;
  gap: 8px;
}

.field__label {
  font-size: 13px;
  font-weight: 600;
}

.field input,
.field textarea {
  padding: 13px 14px;
  border: 1px solid var(--border-input);
  border-radius: 4px;
  background: var(--paper);
  font-family: inherit;
  font-size: 14.5px;
  color: var(--ink);
  outline: none;
  width: 100%;
}

.field textarea {
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--accent);
}

.field input[aria-invalid="true"] {
  border-color: #a63737;
}

.field__error {
  color: #8c2929;
  font-size: 12.5px;
  line-height: 1.45;
}

.chips {
  display: flex;
  gap: 8px;
}

.chip {
  flex: 1;
  padding: 11px 12px;
  border-radius: 4px;
  border: 1px solid var(--border-input);
  background: var(--paper);
  color: var(--text-muted);
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 500;
  cursor: pointer;
}

.chip.is-active {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--paper);
}

.dropzone {
  position: relative;
  display: grid;
  gap: 4px;
  border: 1px dashed var(--border-input);
  border-radius: 4px;
  padding: 26px;
  text-align: center;
  background: var(--paper);
  cursor: pointer;
  font-size: 13.5px;
  color: var(--text-meta);
}

.dropzone:focus-within {
  border-color: var(--accent);
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.dropzone.has-file {
  border-style: solid;
  border-color: var(--accent);
  background: var(--accent-tint);
}

.dropzone__title {
  color: var(--ink);
  font-weight: 600;
  overflow-wrap: anywhere;
}

.dropzone__meta {
  font-size: 12px;
  color: var(--text-meta);
}

.dropzone__input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0 !important;
  opacity: 0;
  cursor: pointer;
}

.dropzone:hover {
  border-color: var(--accent);
}

.form__submit {
  margin-top: 6px;
  padding: 15px;
  width: 100%;
}

.form__submit:disabled {
  cursor: wait;
  opacity: 0.62;
}

.form-notice {
  display: grid;
  gap: 5px;
  margin: -4px 0 24px;
  padding: 16px 18px;
  border: 1px solid;
  border-radius: 4px;
  font-size: 13.5px;
}

.form-notice--success {
  background: var(--accent-tint);
  border-color: var(--accent-pale);
  color: var(--accent-deep);
}

.form-notice--error {
  background: #fff7f6;
  border-color: #e8c7c3;
  color: #7b2424;
}

.hp-field {
  position: absolute;
  left: -9999px;
}

/* ------------------------------------------------------------- about ---- */
.about-hero {
  position: relative;
  background: var(--ink-deep);
}

.about-hero > img {
  width: 100%;
  height: auto;
  display: block;
}

.about-hero__scrim {
  position: absolute;
  inset: auto 0 0 0;
  height: 46%;
  background: linear-gradient(
    to top,
    rgba(10, 12, 14, 0.96) 30%,
    rgba(10, 12, 14, 0.7) 62%,
    rgba(10, 12, 14, 0) 100%
  );
}

.about-hero__copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  max-width: var(--wrap);
  margin-inline: auto;
  padding: 0 var(--gutter) clamp(24px, 3.5vw, 56px);
}

.about-hero__eyebrow {
  font-size: clamp(10px, 0.85vw, 12px);
  margin-bottom: clamp(8px, 1.2vw, 20px);
}

.about-hero__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(22px, 3.6vw, 58px);
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: var(--paper);
  margin: 0;
  max-width: 18ch;
}

.mv-card {
  padding: clamp(32px, 6vw, 52px) clamp(24px, 5vw, 44px);
}

.mv-card p {
  margin: 0 0 18px;
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--text-muted);
}

.mv-card p:last-child {
  margin-bottom: 0;
}

.president-row {
  padding: 20px 4px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.president-row img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 50%;
  background: var(--placeholder);
  flex-shrink: 0;
}

.president-row__body {
  flex: 1;
}

.president-row__name {
  margin: 0 0 4px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.015em;
}

.president-row__role {
  margin: 0;
  font-size: 13.5px;
  color: var(--text-muted);
}

.president-row__years {
  font-family: var(--serif);
  font-size: 17px;
  color: var(--accent);
  white-space: nowrap;
}

/* ----------------------------------------------------------- contact ---- */
.contact-card {
  padding: clamp(32px, 6vw, 52px) clamp(24px, 5vw, 44px);
}

.contact-card__value {
  font-family: var(--serif);
  font-size: 30px;
  letter-spacing: -0.01em;
  color: var(--ink);
  overflow-wrap: anywhere;
}

.contact-card__value:hover {
  color: var(--accent);
}

/* -------------------------------------------------------------- utils --- */
.mt-0 { margin-top: 0; }
.mt-24 { margin-top: 24px; }
.mt-28 { margin-top: 28px; }
.mt-32 { margin-top: 32px; }
.mt-36 { margin-top: 36px; }
.mt-40 { margin-top: 40px; }
.mt-44 { margin-top: 44px; }
.mt-64 { margin-top: 64px; }
.mb-12 { margin-bottom: 12px; }
.mb-20 { margin-bottom: 20px; }
.mb-22 { margin-bottom: 22px; }
.mb-24 { margin-bottom: 24px; }
.mb-28 { margin-bottom: 28px; }
.mb-32 { margin-bottom: 32px; }
.mb-40 { margin-bottom: 40px; }
.mb-44 { margin-bottom: 44px; }
.mb-48 { margin-bottom: 48px; }
.mb-56 { margin-bottom: 56px; }
.mb-64 { margin-bottom: 64px; }

.badge-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
