/* =========================================================
   ПОЛЬОВЕ ВИДАННЯ № 01 · 29.05.2026
   Editorial × cinematic agriculture, VFI brand red
   ========================================================= */

@import url("https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght,SOFT@0,9..144,300..900,30..100;1,9..144,300..900,30..100&family=IBM+Plex+Mono:wght@400;500&family=IBM+Plex+Sans:wght@400;500;600&display=swap");

:root {
  --brand:       #d23127;
  --brand-ink:   #a8261d;
  --brand-soft:  #f9e2df;
  --rapeseed:    #e8c849;
  --rapeseed-deep: #b18b1f;

  --ink:         #15110f;
  --ink-2:       #3a342f;
  --ink-3:       #79716a;
  --ink-line:    #d6cfbf;

  --paper:       #f6efe2;       /* main page background */
  --paper-2:     #eee4d0;       /* alt band */
  --paper-3:     #f8f4e7;       /* light tint */
  --dark:        #15110f;       /* near-black */
  --dark-2:      #1d1815;

  --max:         1240px;
  --max-text:    720px;

  --grain:
    radial-gradient(rgba(21,17,15,0.03) 1px, transparent 1px) 0 0 / 4px 4px,
    radial-gradient(rgba(21,17,15,0.025) 1px, transparent 1px) 2px 2px / 4px 4px;
}

/* ───── reset ───── */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--paper);
  background-image: var(--grain);
  color: var(--ink);
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, picture { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--brand); }

::selection { background: var(--brand); color: #fff; }

.wrap        { max-width: var(--max);   margin: 0 auto; padding: 0 32px; }
.wrap--text  { max-width: var(--max-text); margin: 0 auto; padding: 0 32px; }

/* ───── typography system ─────
   Fraunces variable: opsz 9..144, SOFT 30..100, wght 300..900
   We push opsz=144 + SOFT=30 for display moments
   and opsz=14, SOFT=80 for body serif moments. */
h1, h2, h3, h4, h5 {
  font-family: 'Fraunces', 'Times New Roman', serif;
  font-variation-settings: "opsz" 144, "SOFT" 30, "wght" 600;
  letter-spacing: -0.02em;
  line-height: 0.98;
  margin: 0;
  color: var(--ink);
}

.mono {
  font-family: 'IBM Plex Mono', monospace;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0.12em;
  font-size: 11.5px;
}

.h-display {
  font-size: clamp(56px, 10vw, 144px);
  font-variation-settings: "opsz" 144, "SOFT" 30, "wght" 600;
  line-height: 0.92;
  letter-spacing: -0.035em;
}

.h2 {
  font-size: clamp(36px, 6vw, 72px);
  font-variation-settings: "opsz" 144, "SOFT" 50, "wght" 600;
  line-height: 1;
  letter-spacing: -0.025em;
}

.h3 {
  font-size: clamp(22px, 2.4vw, 30px);
  font-variation-settings: "opsz" 60, "SOFT" 60, "wght" 600;
  line-height: 1.1;
}

.italic-em {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 30, "wght" 400;
}

/* ───── horizontal rules / dividers ───── */
.hr-thin   { border: 0; border-top: 1px solid var(--ink-line); margin: 0; }
.hr-thick  { border: 0; border-top: 1px solid var(--ink); margin: 0; }

/* ───── magazine header ───── */
.masthead {
  position: sticky; top: 0; z-index: 80;
  background: rgba(246, 239, 226, 0.95);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--ink-line);
}
.masthead__row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 16px 32px;
  max-width: var(--max);
  margin: 0 auto;
}
.masthead__brand { display: flex; align-items: center; gap: 14px; }
.masthead__brand img { height: 36px; width: auto; }
.masthead__issue {
  text-align: center;
  font-family: 'Fraunces', serif;
  font-variation-settings: "opsz" 14, "SOFT" 80, "wght" 400;
  font-style: italic;
  font-size: 14px;
  color: var(--ink-2);
}
.masthead__issue b {
  font-style: normal;
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 11px;
  color: var(--brand);
}
.masthead__cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 13px; font-weight: 500;
  transition: all .15s ease;
}
.masthead__cta:hover {
  background: var(--ink); color: var(--paper);
}

/* ───── HERO — full-bleed image with overlay editorial ───── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex; flex-direction: column;
  isolation: isolate;
  color: #f6efe2;
  overflow: hidden;
}
.hero__img {
  position: absolute; inset: 0;
  background: url('/assets/img/hero-rapeseed.jpg?v=2') center 38%/cover no-repeat,
              linear-gradient(180deg, #2b270d, #15110f);
  z-index: -2;
  transform: scale(1.05);
  animation: kenburns 18s ease-in-out infinite alternate;
}
@keyframes kenburns {
  0%   { transform: scale(1.05) translate(0,0); }
  100% { transform: scale(1.12) translate(-1.5%, 1%); }
}
.hero::after {
  content:''; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(21,17,15,0.15) 0%, rgba(21,17,15,0.05) 30%, rgba(21,17,15,0.85) 100%),
    linear-gradient(90deg, rgba(21,17,15,0.55) 0%, rgba(21,17,15,0.1) 60%);
  pointer-events: none;
}

.hero__bar {
  display: flex; gap: 24px; align-items: center;
  padding: 22px 32px;
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  border-bottom: 1px solid rgba(246,239,226,0.18);
  color: rgba(246,239,226,0.85);
}
.hero__bar .dot { background: var(--brand); }
.hero__bar > span:last-child { margin-left: auto; }

.hero__core {
  flex: 1;
  display: grid;
  align-items: end;
  padding: 80px 32px 96px;
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
}
.hero__kicker {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--brand);
  color: #fff;
  padding: 8px 16px 9px;
  border-radius: 0;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  align-self: start;
  margin-bottom: 32px;
}

.hero__title {
  font-size: clamp(54px, 9vw, 132px);
  font-variation-settings: "opsz" 144, "SOFT" 30, "wght" 500;
  line-height: 0.92;
  letter-spacing: -0.035em;
  max-width: 14ch;
  color: #fdf5e3;
  margin-bottom: 36px;
  text-wrap: balance;
}
.hero__title em {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 30, "wght" 300;
  color: var(--rapeseed);
}

.hero__meta {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, auto));
  gap: 48px;
  align-items: end;
  border-top: 1px solid rgba(246,239,226,0.22);
  padding-top: 28px;
  margin-bottom: 28px;
}
.hero__meta .label {
  display: block; margin-bottom: 6px;
  color: rgba(246,239,226,0.6);
}
.hero__meta .value {
  font-family: 'Fraunces', serif;
  font-variation-settings: "opsz" 60, "SOFT" 50, "wght" 500;
  font-size: clamp(20px, 2vw, 26px);
  color: #fdf5e3;
  line-height: 1.1;
}
.hero__meta .value--big {
  font-size: clamp(40px, 4.6vw, 64px);
  font-variation-settings: "opsz" 144, "SOFT" 30, "wght" 500;
  letter-spacing: -0.02em;
}
.hero__meta .value--link {
  display: inline-block;
  text-decoration: none;
  border-bottom: 1px solid rgba(253, 245, 227, 0.35);
  transition: border-color .15s ease, color .15s ease;
}
.hero__meta .value--link:hover {
  color: var(--rapeseed);
  border-bottom-color: var(--rapeseed);
}
.hero__meta .value--link .arrow {
  display: inline-block;
  margin-left: 4px;
  font-size: 0.7em;
  color: var(--rapeseed);
  transition: transform .15s ease;
}
.hero__meta .value--link:hover .arrow {
  transform: translate(2px, -2px);
}
.hero__meta .value em {
  font-style: italic;
  font-variation-settings: "opsz" 60, "SOFT" 50, "wght" 400;
  color: var(--rapeseed);
}

.hero__cta {
  display: flex; gap: 16px; flex-wrap: wrap;
}

/* ───── buttons ───── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 26px;
  border-radius: 0;
  border: 1px solid currentColor;
  font: inherit; font-weight: 500;
  font-size: 15px;
  cursor: pointer;
  background: transparent;
  color: var(--ink);
  text-decoration: none;
  transition: transform .15s ease, background .15s ease, color .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn--solid {
  background: var(--brand); color: #fff; border-color: var(--brand);
}
.btn--solid:hover { background: var(--brand-ink); border-color: var(--brand-ink); color: #fff; }
.btn--ink {
  background: var(--ink); color: var(--paper); border-color: var(--ink);
}
.btn--ink:hover { background: transparent; color: var(--paper); }
.btn--paper {
  background: var(--paper); color: var(--ink); border-color: var(--paper);
}
.btn--paper:hover { background: transparent; color: var(--paper); border-color: var(--paper); }
.btn--ghost-light {
  background: transparent; color: var(--paper); border-color: var(--paper);
}
.btn--ghost-light:hover { background: var(--paper); color: var(--ink); }
.btn .arrow {
  display: inline-block;
  transition: transform .2s ease;
}
.btn:hover .arrow { transform: translateX(4px); }
.btn--xl { padding: 22px 32px; font-size: 17px; }

/* tiny dot for status */
.dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 0 rgba(210,49,39,0.6);
  animation: pulse 2.2s infinite;
  display: inline-block;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(210,49,39,0.55); }
  70%  { box-shadow: 0 0 0 14px rgba(210,49,39,0); }
  100% { box-shadow: 0 0 0 0 rgba(210,49,39,0); }
}

/* ───── sections ───── */
.section {
  position: relative;
  padding: 120px 0;
}
.section--paper-2 { background: var(--paper-2); }
.section--dark    {
  background: var(--dark);
  color: var(--paper);
}
.section--rapeseed {
  background: var(--rapeseed);
  color: var(--ink);
}
.section__kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11.5px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--brand);
  margin-bottom: 28px;
}
.section--dark .section__kicker { color: var(--rapeseed); }

.section__lead {
  font-family: 'Fraunces', serif;
  font-variation-settings: "opsz" 60, "SOFT" 60, "wght" 400;
  font-size: clamp(22px, 2.6vw, 28px);
  line-height: 1.35;
  color: var(--ink-2);
  max-width: 28ch;
  margin: 0 0 64px;
  text-wrap: balance;
}
.section--dark .section__lead { color: rgba(246,239,226,0.78); }

/* ───── "Why" — three pillars ───── */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--ink);
}
.pillar {
  position: relative;
  padding: 32px 28px 40px 0;
  border-bottom: 1px solid var(--ink-line);
}
.pillar + .pillar { padding-left: 28px; border-left: 1px solid var(--ink-line); }
.pillar__num {
  font-family: 'Fraunces', serif;
  font-variation-settings: "opsz" 144, "SOFT" 30, "wght" 400;
  font-style: italic;
  font-size: clamp(80px, 8vw, 116px);
  line-height: 0.9;
  color: var(--brand);
  margin-bottom: 16px;
}
.pillar h3 {
  font-size: clamp(22px, 2vw, 28px);
  font-variation-settings: "opsz" 60, "SOFT" 50, "wght" 600;
  margin: 0 0 14px;
  max-width: 18ch;
  line-height: 1.1;
}
.pillar p {
  color: var(--ink-2);
  margin: 0;
  max-width: 32ch;
}

/* ───── PROGRAMME — agenda list (editorial) ───── */
.agenda {
  list-style: none;
  padding: 0;
  margin: 56px 0 0;
  border-top: 1px solid var(--ink);
  max-width: 920px;
}
.agenda__item {
  position: relative;
  padding: 32px 0 32px 56px;
  border-bottom: 1px solid var(--ink-line);
  font-family: 'Fraunces', 'Times New Roman', serif;
  font-variation-settings: "opsz" 60, "SOFT" 60, "wght" 500;
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.agenda__item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 36px;
  height: 1px;
  background: var(--brand);
}
.agenda__item em {
  color: var(--brand);
  font-style: italic;
  font-variation-settings: "opsz" 60, "SOFT" 60, "wght" 400;
}
@media (max-width: 720px) {
  .agenda__item { padding: 22px 0 22px 36px; font-size: 18px; }
  .agenda__item::before { width: 22px; }
}

/* ───── PROGRAMME — magazine timeline (legacy, kept for fallback) ───── */
.timeline {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--ink);
}
.event {
  display: grid;
  grid-template-columns: 180px 1fr 360px;
  gap: 48px;
  align-items: baseline;
  padding: 36px 0 40px;
  border-bottom: 1px solid var(--ink-line);
  position: relative;
}
.event__time {
  font-family: 'Fraunces', serif;
  font-variation-settings: "opsz" 144, "SOFT" 30, "wght" 400;
  font-size: clamp(48px, 5vw, 72px);
  line-height: 0.95;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.event__time em {
  display: block;
  font-family: 'IBM Plex Mono', monospace;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--brand);
  margin-top: 8px;
  font-style: normal;
}
.event__title {
  font-family: 'Fraunces', serif;
  font-variation-settings: "opsz" 60, "SOFT" 60, "wght" 600;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.15;
  margin: 0 0 8px;
}
.event__desc {
  color: var(--ink-2);
  margin: 0;
  max-width: 50ch;
}
.event__note {
  font-family: 'Fraunces', serif;
  font-variation-settings: "opsz" 14, "SOFT" 80, "wght" 400;
  font-style: italic;
  color: var(--ink-3);
  font-size: 14.5px;
  line-height: 1.55;
}

/* ───── AUDIENCE — split images + text ───── */
.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 8px;
}
.audience-card {
  position: relative;
  padding: 0;
  background: var(--paper-3);
  border: 1px solid var(--ink-line);
  overflow: hidden;
  display: flex; flex-direction: column;
}
.audience-card__img {
  height: 360px;
  background-size: cover; background-position: center;
  position: relative;
}
.audience-card__img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(21,17,15,0.45) 100%);
}
.audience-card__body { padding: 36px 32px 40px; }
.audience-card .mono { color: var(--brand); }
.audience-card h3 {
  font-size: clamp(26px, 2.4vw, 34px);
  font-variation-settings: "opsz" 144, "SOFT" 40, "wght" 600;
  line-height: 1.05;
  margin: 12px 0 16px;
  max-width: 16ch;
}
.audience-card p { color: var(--ink-2); margin: 0; }
.audience-card b { font-weight: 600; color: var(--ink); }

/* ───── LOGISTICS — dark editorial block ───── */
.logistics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.logistics__visual {
  position: relative;
  aspect-ratio: 4/5;
  background-size: cover; background-position: center;
  border-radius: 0;
}
.logistics__visual::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(232,200,73,0.18) 0%, transparent 50%);
  mix-blend-mode: overlay;
}
.logistics__list {
  list-style: none; padding: 0; margin: 0;
  border-top: 1px solid rgba(246,239,226,0.2);
}
.logistics__list li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(246,239,226,0.15);
  align-items: baseline;
}
.logistics__list .num {
  font-family: 'Fraunces', serif;
  font-variation-settings: "opsz" 144, "SOFT" 30, "wght" 400;
  font-style: italic;
  font-size: 32px;
  color: var(--rapeseed);
}
.logistics__list b { color: #fdf5e3; font-weight: 500; display: block; margin-bottom: 4px; }
.logistics__list span { color: rgba(246,239,226,0.78); }

/* ───── FORM — paper on dark, premium ───── */
.section--form { background: var(--dark); color: var(--paper); padding-bottom: 0; }
.form-shell {
  background: var(--paper);
  color: var(--ink);
  padding: 56px 48px 64px;
  border: 1px solid var(--ink);
  position: relative;
  margin-top: 32px;
}
.form-shell::before {
  content: '';
  position: absolute;
  inset: -8px -8px 8px 8px;
  border: 1px solid var(--brand);
  z-index: -1;
  pointer-events: none;
}
.form .field { margin-bottom: 22px; }
.form label {
  display: block;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 8px;
}
.form .req { color: var(--brand); }
.form input,
.form select,
.form textarea {
  display: block; width: 100%;
  padding: 16px 4px;
  font: inherit; font-size: 17px;
  font-family: 'Fraunces', serif;
  font-variation-settings: "opsz" 14, "SOFT" 80, "wght" 400;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--ink-line);
  border-radius: 0;
  transition: border-color .2s ease;
}
.form input::placeholder, .form textarea::placeholder { color: var(--ink-3); }
.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: none;
  border-bottom-color: var(--brand);
}
.field-row {
  display: grid; gap: 28px;
  grid-template-columns: 1fr 1fr;
}
.hint {
  margin: -10px 0 22px;
  font-size: 13px;
  color: var(--ink-3);
}
.hp { position: absolute; left: -9999px; }
.legal {
  margin: 18px 0 0;
  font-size: 13px;
  color: var(--ink-3);
  line-height: 1.5;
  font-family: 'Fraunces', serif;
  font-variation-settings: "opsz" 14, "SOFT" 80, "wght" 400;
  font-style: italic;
}
.result {
  margin-top: 24px;
  padding: 18px 22px;
  font-size: 15px;
  font-weight: 500;
  border-left: 4px solid var(--brand);
  background: var(--paper-3);
}
.result--ok    { border-left-color: #1e6b1e; background: #eef6ee; color: #1e6b1e; }
.result--err   { border-left-color: var(--brand); background: var(--brand-soft); color: var(--brand-ink); }

/* ───── COLOPHON / FOOTER ───── */
.colophon {
  background: var(--paper);
  border-top: 1px solid var(--ink);
  padding: 64px 0 32px;
  color: var(--ink-2);
}
.colophon__row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.colophon img { height: 36px; margin-bottom: 18px; }
.colophon h5 {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--brand);
  margin: 0 0 12px;
  font-weight: 500;
}
.colophon p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.6;
}
.colophon p + p { margin-top: 12px; }
.colophon__bottom {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid var(--ink-line);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  font-size: 13px;
  color: var(--ink-3);
  font-family: 'Fraunces', serif;
  font-variation-settings: "opsz" 14, "SOFT" 80, "wght" 400;
  font-style: italic;
}
.colophon__bottom a {
  color: var(--ink-2);
  border-bottom: 1px solid var(--ink-line);
  transition: color .15s ease, border-color .15s ease;
}
.colophon__bottom a:hover {
  color: var(--brand);
  border-bottom-color: var(--brand);
}

/* ───── VENUE / MAP ───── */
.venue {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 56px;
  align-items: start;
  margin-top: 56px;
}
.venue__map {
  position: relative;
  display: block;
  border: 1px solid var(--ink-line);
  box-shadow: 14px 14px 0 -1px var(--brand);
  overflow: hidden;
  transition: transform .2s ease;
}
.venue__map:hover { transform: translate(-3px, -3px); }
.venue__map img { width: 100%; height: auto; display: block; }
.venue__map-cta {
  position: absolute; bottom: 18px; right: 18px;
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--ink);
  color: var(--paper);
  padding: 12px 18px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.venue__map-cta .dot { background: var(--brand); }

.venue__info {
  display: grid;
  gap: 28px;
  padding-top: 8px;
}
.venue__point .mono {
  display: block;
  color: var(--ink-3);
  margin-bottom: 6px;
}
.venue__point p {
  font-family: 'Fraunces', serif;
  font-variation-settings: "opsz" 22, "SOFT" 60, "wght" 500;
  font-size: 19px;
  line-height: 1.35;
  margin: 0;
  color: var(--ink);
}
.venue__gps {
  font-family: 'IBM Plex Mono', monospace !important;
  font-variation-settings: none !important;
  font-size: 16px !important;
  letter-spacing: 0.02em;
}
.venue__info .btn {
  margin-top: 8px;
  justify-self: start;
}

/* ───── ORGANIZER CONTACT ───── */
.organizer {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 36px;
  align-items: start;
  margin-top: 48px;
  padding: 40px;
  background: var(--paper-3);
  border: 1px solid var(--ink-line);
  box-shadow: 14px 14px 0 -1px var(--brand);
}
.organizer__avatar {
  width: 120px; height: 120px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 0 0 1px var(--ink-line), 6px 6px 0 -1px var(--brand);
}
.organizer__avatar img,
.organizer__avatar svg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.organizer__name {
  font-family: 'Fraunces', serif;
  font-variation-settings: "opsz" 96, "SOFT" 50, "wght" 600;
  font-size: clamp(28px, 3vw, 36px);
  line-height: 1.1;
  margin: 0 0 6px;
  color: var(--ink);
  letter-spacing: -0.015em;
}
.organizer__role {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 15px;
  color: var(--ink-2);
  margin: 0 0 16px;
}
.organizer__role b { color: var(--ink); font-weight: 600; }
.organizer__bio {
  font-family: 'Fraunces', serif;
  font-variation-settings: "opsz" 18, "SOFT" 80, "wght" 400;
  font-style: italic;
  font-size: 17px;
  line-height: 1.45;
  color: var(--ink-2);
  margin: 0 0 24px;
  max-width: 44ch;
}
.organizer__phone {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--ink);
  color: var(--paper);
  padding: 16px 22px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: background .15s ease;
}
.organizer__phone:hover {
  background: var(--brand);
  color: #fff;
}
.organizer__phone .dot { background: var(--rapeseed); }

/* ───── micro reveal on scroll ───── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.in {
  opacity: 1; transform: none;
}

/* ───── responsive ───── */
@media (max-width: 980px) {
  .masthead__issue { display: none; }
  .hero__core { padding: 56px 28px 72px; }
  .hero__meta { grid-template-columns: 1fr 1fr; gap: 24px; }
  .hero__title { font-size: clamp(40px, 11vw, 76px); max-width: none; }
  .pillars { grid-template-columns: 1fr; }
  .pillar + .pillar { padding-left: 0; border-left: 0; }
  .event { grid-template-columns: 90px 1fr; gap: 24px; }
  .event__note { display: none; }
  .audience-grid { grid-template-columns: 1fr; }
  .logistics { grid-template-columns: 1fr; gap: 40px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .colophon__row { grid-template-columns: 1fr 1fr; gap: 32px; }
  .section { padding: 72px 0; }
  .form-shell { padding: 36px 24px; }
  .venue { grid-template-columns: 1fr; gap: 40px; }
  .venue__map { box-shadow: 8px 8px 0 -1px var(--brand); }
  .organizer { grid-template-columns: 80px 1fr; gap: 24px; padding: 28px 24px;
               box-shadow: 8px 8px 0 -1px var(--brand); }
  .organizer__avatar { width: 80px; height: 80px; }
  .organizer__avatar svg { width: 80px; height: 80px; }
}

@media (max-width: 540px) {
  .colophon__row { grid-template-columns: 1fr; }
  .hero__meta { grid-template-columns: 1fr; }
  .hero { min-height: 86vh; }
  .hero__bar { padding: 16px 24px; }
  .wrap, .wrap--text { padding: 0 24px; }
  .venue__map-cta { bottom: 12px; right: 12px; padding: 10px 14px; font-size: 11px; }
}
