/* =============================================================
   FONTS — TT Hoves Pro Trial Expanded (фирменная гарнитура)
   ============================================================= */
@font-face { font-family:'TT Hoves'; src:url('/or/fonts/TTHovesExpanded-Light.ttf') format('truetype'); font-weight:300; font-display:swap; }
@font-face { font-family:'TT Hoves'; src:url('/or/fonts/TTHovesExpanded-Regular.ttf') format('truetype'); font-weight:400; font-display:swap; }
@font-face { font-family:'TT Hoves'; src:url('/or/fonts/TTHovesExpanded-Italic.ttf') format('truetype'); font-weight:400; font-style:italic; font-display:swap; }
@font-face { font-family:'TT Hoves'; src:url('/or/fonts/TTHovesExpanded-Medium.ttf') format('truetype'); font-weight:500; font-display:swap; }
@font-face { font-family:'TT Hoves'; src:url('/or/fonts/TTHovesExpanded-DemiBold.ttf') format('truetype'); font-weight:600; font-display:swap; }
@font-face { font-family:'TT Hoves'; src:url('/or/fonts/TTHovesExpanded-Bold.ttf') format('truetype'); font-weight:700; font-display:swap; }
@font-face { font-family:'TT Hoves'; src:url('/or/fonts/TTHovesExpanded-ExtraBold.ttf') format('truetype'); font-weight:800; font-display:swap; }
@font-face { font-family:'TT Hoves'; src:url('/or/fonts/TTHovesExpanded-Black.ttf') format('truetype'); font-weight:900; font-display:swap; }

/* =============================================================
   TOKENS
   ============================================================= */
:root {
  /* core */
  --ink:         #0E0E0E;
  --ink-soft:    #2A2A2A;
  --paper:       #F4EFE5;
  --paper-deep:  #E8E1D1;
  --paper-line:  #D6CFBE;
  --white:       #FFFFFF;
  --muted:       #7A7466;

  /* brand page colours */
  --hero-bg:       #4A4018;   /* page 3 dark olive */
  --hero-text:     #CBA4A6;   /* page 3 blush */
  --hero-muted:    rgba(203,164,166,.55);
  --blue-bg:       #63C8FF;   /* ref2 exact blue */

  /* 9 conferences */
  --c-east:     #F0A1E9;
  --c-sibir:    #9EDED5;
  --c-ural:     #B8B8FF;
  --c-volga:    #AFE098;
  --c-moscow:   #B3B3B3;
  --c-south:    #CBA4A6;
  --c-centre:   #FFDE7E;
  --c-zagranka: #FFBA89;
  --c-north:    #FFA7A7;

  --font: 'TT Hoves', 'Helvetica Neue', system-ui, sans-serif;
  --mono: ui-monospace, 'SF Mono', 'JetBrains Mono', Menlo, monospace;

  --fs-display: clamp(52px, 10vw, 116px);
  --fs-h1:      clamp(38px, 6vw, 80px);
  --fs-h2:      clamp(26px, 3.5vw, 52px);
  --fs-h3:      clamp(18px, 2vw, 28px);
  --fs-body:    clamp(15px, 1vw, 18px);
  --fs-small:   13px;
  --fs-mono:    11px;

  --r-sm:   2px;
  --r-md:   4px;
  --r-lg:   8px;
  --r-pill: 999px;

  --gutter:    clamp(20px, 5vw, 80px);
  --section-y: clamp(64px, 9vw, 128px);
  --max:       1540px;
  --ease-out:  cubic-bezier(0.22, 1, 0.36, 1);
}

/* =============================================================
   RESET
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--paper);
  color: var(--ink);
  font-size: var(--fs-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* =============================================================
   LAYOUT
   ============================================================= */
.wrap {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* =============================================================
   SKEWED OVAL utility
   Wraps any image/content in a rotated ellipse.
   Usage: <div class="oval-frame" style="--rotate:-12deg; --rx:50%; --ry:38%">
   ============================================================= */
.oval-frame {
  border-radius: 50% / 38%;
  overflow: hidden;
  transform: rotate(var(--rotate, -12deg));
  flex-shrink: 0;
}
.oval-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Full-card oval: absolutely fills parent, tilted */
.oval-fill {
  position: absolute;
  inset: -20% -15%;
  border-radius: 50%;
  transform: rotate(var(--rotate, -10deg));
  pointer-events: none;
}

/* =============================================================
   LOGO-SMALLEST BULLET — OR26_smallest.svg
   ============================================================= */
.oval-bullet {
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url('/or/assets/OR26_smallest.svg') center/contain no-repeat;
  flex-shrink: 0;
  vertical-align: middle;
}
.oval-bullet--inv  { filter: brightness(0) invert(1); }
.oval-bullet--outline { opacity: .6; }

/* Conference color strip */
.conf-strip {
  display: flex;
  height: var(--h, 5px);
}
.conf-strip span { flex: 1; }

/* =============================================================
   NAV  (★ short circle logo, dark bg)
   ============================================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(24px, 3vw, 60px);
  max-width: var(--max);
  margin: 0 auto;
  padding: 24px var(--gutter);
  background: var(--hero-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(244,239,229,.12);
  transition: background 400ms var(--ease-out), border-color 400ms var(--ease-out);
}
.nav.scrolled .nav-inner {
  background: rgba(74,64,24,.92);   /* hero-bg tinted */
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: rgba(203,164,166,.15);
}

/* ★ Logo: short circle mark */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  text-decoration: none;
}
.nav-logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nav-logo-mark svg {
  width: 22px;
  height: 22px;
}
.nav-logo-text {
  font-size: var(--fs-small);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(244,239,229,.8);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 32px);
}
.nav-links a {
  font-size: var(--fs-small);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(244,239,229,.65);
  transition: color 180ms;
}
.nav-links a:hover { color: var(--paper); }

.nav-cta {
  margin-left: auto;
  font-size: var(--fs-small);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--ink);
  background: var(--paper);
  padding: 9px 20px;
  border-radius: var(--r-sm);
  white-space: nowrap;
  transition: background-color 180ms, color 180ms;
}
.nav-cta:hover { background: var(--hero-text); color: var(--ink); }
.nav-right {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: clamp(12px, 1.5vw, 24px);
  margin-left: calc(8.6vw - 66px);
  flex: 1;
}

/* =============================================================
   HERO  (★ dark olive bg, skewed oval photo right, blush title)
   ============================================================= */
.hero {
  position: relative;
  min-height: 75svh;
  background: var(--hero-bg);
  color: var(--hero-text);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* ★ Oval LEFT-CENTER — поднят выше чтобы текст выходил снизу */
.hero-photo-wrap {
  position: absolute;
  left: calc(50% - 307px);
  top: 56%;
  width: clamp(460px, 72vw, 980px);
  aspect-ratio: 2.12 / 1;
  border-radius: 50%;
  background: var(--hero-bg);
  overflow: hidden;
  z-index: 1;
  transform: translateY(-50%) rotate(-27deg);
}
.hero-photo-wrap img {
  /* ★ Counter-rotate +27° + scale → no black bars */
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%) rotate(27deg) scale(2.0);
  object-fit: cover;
  mix-blend-mode: luminosity;
  opacity: .78;
}

.hero-body {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 var(--gutter) clamp(20px, 3vw, 40px);
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
}

.hero-season {
  font-family: var(--mono);
  font-size: var(--fs-mono);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--hero-muted);
  margin-bottom: clamp(10px, 1.5vw, 20px);
  opacity: 0;
  animation: fadeUp 500ms var(--ease-out) 100ms forwards;
}

/* ★ Logo SVG: покрашен в --hero-text (#CBA4A6) */
.hero-logo {
  width: clamp(220px, 36vw, 560px);
  height: auto;
  display: block;
  filter: invert(74%) sepia(8%) saturate(574%) hue-rotate(308deg) brightness(96%) contrast(85%);
  opacity: 0;
  animation: fadeUp 600ms var(--ease-out) 200ms forwards;
}

.hero-tagline {
  font-size: clamp(16px, 2vw, 28px);
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--hero-muted);
  margin-top: clamp(10px, 1.5vw, 20px);
  max-width: 38ch;
  line-height: 1.35;
  text-wrap: pretty;
  opacity: 0;
  animation: fadeUp 600ms var(--ease-out) 300ms forwards;
}

.hero-announce {
  font-size: clamp(15px, 1.4vw, 20px);
  color: var(--hero-muted);
  line-height: 1.45;
  margin-top: clamp(12px, 2vw, 28px);
  max-width: 42ch;
  text-wrap: pretty;
  opacity: 0;
  animation: fadeUp 500ms var(--ease-out) 420ms forwards;
}
.hero-announce strong {
  color: var(--hero-text);
  font-weight: 700;
}

/* conference strip */
.conf-strip.hero-strip {
  position: relative;
  z-index: 3;
  opacity: 0;
  animation: fadeIn 800ms var(--ease-out) 580ms forwards;
}

@keyframes fadeUp {
  from { opacity:0; transform:translateY(22px); }
  to   { opacity:1; transform:translateY(0); }
}
@keyframes fadeIn {
  to { opacity:1; }
}

/* =============================================================
   SECTION PRIMITIVES
   ============================================================= */
.section { padding: var(--section-y) 0; }

.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(28px, 5vw, 64px);
  padding-bottom: 20px;
  border-bottom: 1px solid var(--paper-line);
}
.section-head--inv { border-bottom-color: rgba(255,255,255,.18); }
.section-head--blue { border-bottom-color: rgba(0,0,0,.12); }

.section-title {
  font-size: var(--fs-h2);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 0.92;
  text-wrap: balance;
}
.section-link {
  font-size: var(--fs-small);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 180ms;
}
.section-link::after { content:"→"; transition:transform 180ms; }
.section-link:hover { color: var(--ink); }
.section-link:hover::after { transform: translateX(4px); }
.section-link--inv { color: rgba(244,239,229,.5); }
.section-link--inv:hover { color: var(--paper); }
.section-link--blue { color: rgba(0,0,0,.5); }
.section-link--blue:hover { color: var(--ink); }

/* =============================================================
   NEWS  (★ oval-framed images on conf-color bg)
   ============================================================= */
.news { background: var(--paper); }

.news-grid {
  display: grid;
  grid-template-columns: 1.65fr 1fr;
  gap: 2px;
}

.news-card {
  background: var(--conf-color, var(--paper-deep));
  padding: clamp(22px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  cursor: pointer;
  transition: filter 200ms;
  overflow: hidden; /* держим овал внутри карточки */
}
.news-card:hover { filter: brightness(0.92); }

.news-card--featured { grid-row: 1 / 3; }

/* ★ Oval — нормальный поток (не absolute), clip-path вместо overflow */
.news-oval-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  /* padding = буфер для визуального overflow повёрнутого овала */
}
.news-oval-wrap--tall  { padding: 8% 0; }
.news-oval-wrap--short { padding: 6% 0; }

.news-oval-img {
  /* В нормальном потоке — никакого position:absolute */
  width: 80%;
  aspect-ratio: 2.12 / 1;
  flex-shrink: 0;
  transform: rotate(-27deg);
  /* clip-path надёжнее overflow:hidden при наличии transform на детях */
  clip-path: ellipse(50% 50% at 50% 50%);
}
.news-oval-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  display: block;
  transform: translate(0,0) rotate(27deg) scale(1.5); /* переопределяется inline-стилем */
}
.news-oval-img--placeholder {
  background: rgba(0,0,0,.08);
}

.news-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: var(--fs-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.news-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: var(--fs-mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--paper-deep);
  padding: 4px 10px;
  border-radius: 3px;
}
.news-tag::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--conf-color, var(--muted));
  flex-shrink: 0;
}
.news-title {
  font-size: clamp(15px, 1.4vw, 20px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  text-wrap: pretty;
}
.news-title--lg {
  font-size: var(--fs-h3);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  text-wrap: balance;
}
.news-lead {
  font-size: var(--fs-body);
  color: var(--ink-soft);
  line-height: 1.5;
  max-width: 58ch;
}

/* =============================================================
   MATCH CENTER
   ============================================================= */
.match { background: var(--paper-deep); }

.match-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2px;
}
.match-card {
  background: var(--white);
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
  transition: background 200ms;
}
.match-card:hover { background: var(--paper); }
.match-conf-bar { position:absolute; top:0; left:0; right:0; height:3px; background:var(--conf-color); }
.match-conf {
  font-family: var(--mono);
  font-size: var(--fs-mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.match-conf::before {
  content:"";
  width:8px; height:8px;
  border-radius:50%;
  background:var(--conf-color, var(--muted));
}
.match-versus { display:flex; flex-direction:column; gap:3px; }
.match-player {
  font-size: clamp(16px, 1.6vw, 21px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.match-player--winner { color: var(--ink); }
.match-player--loser { color: var(--muted); font-weight:400; text-decoration:line-through; text-decoration-color:var(--paper-line); }
.match-divider { font-family:var(--mono); font-size:var(--fs-mono); letter-spacing:.12em; text-transform:uppercase; color:var(--paper-line); margin:2px 0; }
.match-meta { font-family:var(--mono); font-size:var(--fs-mono); color:var(--muted); letter-spacing:.08em; margin-top:auto; display:flex; justify-content:space-between; align-items:center; }
.match-round { font-family:var(--mono); font-size:var(--fs-mono); letter-spacing:.08em; text-transform:uppercase; color:var(--ink); background:var(--paper-line); padding:3px 8px; border-radius:var(--r-sm); }
.match-finalist-note {
  font-family: var(--mono);
  font-size: var(--fs-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
  font-style: italic;
}

/* =============================================================
   CONFERENCES  (★ blue bg, conf-color card, oval covers full card)
   ============================================================= */
.conferences { background: var(--blue-bg); }
.conferences .section-title { color: var(--ink); }

.conf-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 2px;
}

.conf-card {
  position: relative;
  background: var(--conf-color, var(--muted));
  padding: 0;
  aspect-ratio: 1;
  overflow: hidden;      /* квадрат соблюдается */
  cursor: pointer;
  text-decoration: none;
  isolation: isolate;
}

/* ★ Conf card: WHITE oval, z-index 1 */
.conf-card-oval {
  position: absolute;
  width: 74%;
  aspect-ratio: 2.11 / 1;
  border-radius: 50%;
  background: #ffffff;
  top: 39%; left: 50%;
  transform: translate(-50%, -50%) rotate(-27deg);
  pointer-events: none;
  z-index: 1;
}

/* ★ SVG illustration: shifted up */
.conf-card-svg {
  position: absolute;
  top: 39%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 76%;
  height: 76%;
  object-fit: contain;
  pointer-events: none;
  z-index: 2;
  display: block;
}

/* Text layer: абсолютно поверх всего, знает высоту карточки */
.conf-card-inner {
  position: absolute;
  inset: 0;
  padding: 24px 24px 6px;
  display: flex;
  flex-direction: column;
  z-index: 3;
}
.conf-num {
  font-family: var(--mono);
  font-size: var(--fs-mono);
  letter-spacing: 0.1em;
  color: rgba(0,0,0,.45);
}
.conf-name {
  font-size: clamp(22px, 2.4vw, 34px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 0.95;
  color: var(--ink);
  margin-top: auto;
}
.conf-dish {
  font-size: var(--fs-small);
  font-weight: 400;
  color: rgba(0,0,0,.6);
  letter-spacing: 0.01em;
  margin-top: 6px;
}
.conf-arrow {
  position: absolute;
  right: 24px;
  bottom: 18px;
  font-size: 22px;
  color: rgba(0,0,0,.45);
  transition: transform 250ms var(--ease-out), color 250ms;
  line-height: 1;
}
.conf-card:hover .conf-arrow { transform:translate(3px,-3px); color:var(--ink); }

/* =============================================================
   HALL OF FAME  (★ conf-color card bg, photo in oval)
   ============================================================= */
.hof { background: var(--paper); }

.hof-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
}

.hof-card {
  background: var(--conf-color, var(--paper-deep));
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
  min-height: 340px;
  position: relative;
  overflow: hidden;
  transition: filter 200ms;
}
.hof-card:hover { filter: brightness(1.04); }

/* ★ Photo oval: portrait 1/2.12, rotate −27° (овал наклонён, фото ровное) */
.hof-oval {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 4px;
  overflow: hidden;
  background: rgba(0,0,0,.12);
  margin: 0 0 18px;
  flex-shrink: 0;
  position: relative;
}
.hof-oval img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}
/* placeholder */
.hof-oval--placeholder {
  background: rgba(0,0,0,.15);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hof-oval--placeholder svg { opacity: .3; }

.hof-season {
  font-family: var(--mono);
  font-size: var(--fs-mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(0,0,0,.5);
  margin-top: auto;
}
.hof-name {
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--ink);
  margin-top: 6px;
}
.hof-city {
  font-size: var(--fs-small);
  color: rgba(0,0,0,.55);
  margin-top: 4px;
}

.hof-card--cta {
  background: var(--paper-deep);
  align-items: center;
  justify-content: center;
  gap: 16px;
  cursor: pointer;
  text-decoration: none;
}

/* =============================================================
   JOIN BANNER
   ============================================================= */
.join {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(64px, 9vw, 140px) 0;
  position: relative;
  overflow: hidden;
}
.join-oval-deco {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.join-inner {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: clamp(24px, 4vw, 60px);
  flex-wrap: wrap;
}
.join-lead {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.join-text {
  font-size: clamp(20px, 2.8vw, 44px);
  letter-spacing: -0.03em;
  line-height: 1.05;
  max-width: 18ch;
}
.join-text-line1 {
  display: block;
  font-weight: 700;
}
.join-text-line2 {
  font-weight: 300;
  font-style: italic;
  display: block;
  letter-spacing: -0.02em;
}
.join-text-line3 {
  font-weight: 700;
  display: block;
}
.join-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-shrink: 0;
  align-self: flex-end;
  padding-bottom: 4px;
}
.join-desc {
  font-size: clamp(15px, 1.2vw, 18px);
  color: rgba(244,239,229,.6);
  max-width: 36ch;
  line-height: 1.5;
  text-wrap: pretty;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-size: clamp(14px, 1vw, 16px);
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 15px 30px;
  border-radius: var(--r-sm);
  transition: opacity 180ms;
  cursor: pointer;
  white-space: nowrap;
}
.btn:hover { opacity: .88; }
.btn-primary { background: var(--paper); color: var(--ink); }
.btn-ghost { background: transparent; color: var(--paper); border: 1.5px solid rgba(244,239,229,.3); }

/* =============================================================
   FOOTER
   ============================================================= */
.footer {
  background: var(--hero-bg);
  color: var(--paper);
  padding: clamp(40px, 6vw, 72px) 0 clamp(24px, 3vw, 40px);
  border-top: 1px solid rgba(244,239,229,.07);
}
.footer-body {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  margin-bottom: clamp(36px, 5vw, 56px);
}
.footer-logo {
  display: block;
  width: clamp(140px, 18vw, 240px);
  height: auto;
  margin-bottom: 16px;
  opacity: .85;
}
.footer-tagline {
  font-size: var(--fs-body);
  color: rgba(244,239,229,.5);
  max-width: 42ch;
  line-height: 1.5;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}
.footer-links a {
  font-size: var(--fs-small);
  font-weight: 500;
  color: rgba(244,239,229,.45);
  letter-spacing: 0.01em;
  transition: color 180ms;
}
.footer-links a:hover { color: var(--paper); }
.footer-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(244,239,229,.07);
  font-family: var(--mono);
  font-size: var(--fs-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(244,239,229,.22);
}

/* =============================================================
   RESPONSIVE
   ============================================================= */
@media (max-width: 900px) {
  .hero-body { max-width: 100%; }
  .hero-photo-wrap { opacity: .4; right: -20%; }
  .footer-body { grid-template-columns: 1fr; }
  .footer-links { align-items: flex-start; }
  .join-inner { flex-direction: column; }
}
@media (max-width: 680px) {
  .news-grid { grid-template-columns: 1fr; }
  .news-card--featured { grid-row: auto; }
  .conf-grid { grid-template-columns: 1fr 1fr; }
  .hof-grid { grid-template-columns: 1fr 1fr; }
  .nav-logo-text { display: none; }
}
@media (max-width: 400px) {
  .conf-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
}

/* =============================================================
   REDUCED MOTION
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  .hero-season, .hero-wordmark, .hero-tagline,
  .hero-announce, .conf-strip { animation: none !important; opacity: 1 !important; transform: none !important; }
  * { transition-duration: 0ms !important; }
}
/* ============================================================
   OR PAGINATION
   ============================================================ */
.or-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.or-page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  border-radius: var(--r-sm);
  font-family: var(--mono);
  font-size: var(--fs-mono);
  letter-spacing: 0.06em;
  color: var(--ink);
  background: transparent;
  border: 1px solid rgba(14,14,14,0.22);
  text-decoration: none;
  transition: background 150ms, color 150ms, border-color 150ms;
  cursor: pointer;
}
.or-page-btn:hover {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.or-page-btn--active {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
  font-weight: 700;
}
.or-page-btn--disabled {
  opacity: 0.35;
  cursor: default;
  pointer-events: none;
}
.or-page-btn--gap {
  border-color: transparent;
  cursor: default;
  pointer-events: none;
}

/* Прямоугольная картинка новости (вместо овала); подложка карточки = цвет конференции */
.news-pic{width:100%;aspect-ratio:16/10;overflow:hidden;border-radius:3px;margin-bottom:4px;}
.news-card--featured .news-pic{aspect-ratio:16/11;}
.news-pic img{width:100%;height:100%;object-fit:cover;object-position:50% 35%;mix-blend-mode:multiply;display:block;}
.news-pic--placeholder{background:rgba(0,0,0,.08);min-height:160px;}

/* HOF ROWS (Зал славы: строки, без овалов) */
.hof-rows .hof-grid { grid-template-columns: 1fr; }
.hof-rows .hof-card {
  flex-direction: row;
  align-items: center;
  gap: 18px;
  min-height: auto;
  padding: 12px clamp(16px, 2.5vw, 28px);
}
.hof-rows .hof-oval {
  width: 56px;
  height: 56px;
  aspect-ratio: 1 / 1;
  margin: 0;
  border-radius: 4px;
  flex-shrink: 0;
}
.hof-rows .hof-oval--placeholder svg { width: 22px; height: 22px; }
.hof-rows .hof-season { margin-top: 0; flex-shrink: 0; min-width: 132px; }
.hof-rows .hof-name { margin-top: 0; }
.hof-rows .hof-city { margin-top: 0; margin-left: auto; text-align: right; }
@media (max-width: 720px) {
  .hof-rows .hof-grid { grid-template-columns: 1fr; }
  .hof-rows .hof-season { min-width: 96px; }
}

/* news photos: full-colour rectangle (no oval, no duotone) */
.news-pic img { mix-blend-mode: normal; }
