
:root {
  --bg: #faf8f4;
  --bg-soft: #f3efe8;
  --ink: #12100e;
  --ink-soft: #3d3832;
  --muted: #6f675b;
  --line: #e6ded0;
  --line-strong: #cec4b0;
  --gold: #bfa065;
  --gold-soft: #d9c9a0;
  --gold-deep: #7d6234;
  --white: #fdfcfa;
  --dark: #12100e;
  --dark-soft: #1c1a16;
  --dark-line: #2d2a24;
  --grad-deep-start: #201d16;
  --grad-deep-end: #181610;

  --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans: 'Jost', 'Helvetica Neue', Arial, sans-serif;

  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2.5rem;
  --space-5: 4rem;
  --space-6: 7rem;
  --space-7: 10rem;

  --header-h: 80px;
  --radius: 0;
  --ease: cubic-bezier(.22, .61, .36, 1);
  --ease-spring: cubic-bezier(.34, 1.56, .64, 1);
  --ease-slow: cubic-bezier(.16, 1, .3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

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

body {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input, textarea, select { font: inherit; color: inherit; }
::selection { background: var(--gold-soft); color: var(--dark); }

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

.skip-link {
  position: absolute; top: -100px; left: 0; z-index: 200;
  background: var(--ink); color: var(--bg); padding: 0.8rem 1.4rem;
  font-size: 0.85rem; font-weight: 500; text-decoration: none;
  border-radius: 0 0 4px 0;
}
.skip-link:focus { top: 0; }

.container { width: min(1320px, 92vw); margin-inline: auto; }
.container--narrow { width: min(820px, 92vw); }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; line-height: 1.08; letter-spacing: 0.005em; }

.display {
  font-size: clamp(2.8rem, 6.8vw, 5.8rem);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: 0.01em;
}
.display em, .display i { font-style: italic; color: var(--gold); }

.eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--gold-deep);
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}
.eyebrow::before { content: ''; width: 38px; height: 1px; background: var(--gold); }
.eyebrow--center::after { content: ''; width: 38px; height: 1px; background: var(--gold); }

.lead { font-size: 1.15rem; color: var(--ink-soft); line-height: 1.8; }
.muted { color: var(--muted); }
.small { font-size: 0.85rem; }

.label {
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.05rem 2.4rem;
  font-size: 0.76rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  border: 1px solid var(--ink);
  transition: background .4s var(--ease), color .4s var(--ease), border-color .4s var(--ease), transform .3s var(--ease);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.btn:hover { background: var(--ink); color: var(--bg); }
.btn:active { transform: scale(0.975); }

.btn--gold {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}
.btn--gold:hover { background: var(--gold-deep); border-color: var(--gold-deep); color: var(--ink); }

.btn--light {
  border-color: rgba(253, 252, 250, .55);
  color: var(--white);
}
.btn--light:hover { background: var(--white); color: var(--dark); border-color: var(--white); }

.btn--ghost { border-color: var(--line-strong); color: var(--ink); background: transparent; }
.btn--ghost:hover { background: var(--ink); border-color: var(--ink); color: var(--bg); }

.btn--sm { padding: 0.65rem 1.5rem; font-size: 0.7rem; }

.btn svg { width: 14px; height: 14px; transition: transform .4s var(--ease-spring); }
.btn:hover svg { transform: translateX(5px); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 248, 244, .78);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--line);
  transition: border-color .4s, background .4s;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 1rem;
}
.brand img { height: 40px; width: auto; filter: brightness(0); }
.brand .brand--dark-logo { display: none; }

.nav { display: flex; align-items: center; gap: 2.4rem; }
.nav-dba-link { display: inline-flex; align-items: center; }
.nav-dba { height: 30px; width: auto; filter: brightness(0); vertical-align: middle; transition: opacity .35s; }
.nav-dba-link:hover .nav-dba { opacity: .7; }
.nav a {
  position: relative;
  font-size: 0.76rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  padding: 0.45rem 0;
  color: var(--ink-soft);
  transition: color .35s;
}
.nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s var(--ease-slow);
}
.nav a:hover, .nav a.is-active { color: var(--ink); }
.nav a:hover::after, .nav a.is-active::after { transform: scaleX(1); }

.nav-cta {
  border: 1px solid var(--line-strong);
  padding: 0.55rem 1.3rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  font-weight: 500;
  transition: all .35s;
  border-radius: 2px;
}
.nav-cta:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }

.nav-toggle { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; flex-direction: column; gap: 5px; }
.nav-toggle span { width: 24px; height: 1.5px; background: var(--ink); transition: transform .4s var(--ease-spring), opacity .2s; }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.hero { position: relative; min-height: 92vh; display: flex; align-items: flex-end; overflow: hidden; background: var(--dark); color: var(--bg); }
.hero__media { position: absolute; inset: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 2560 / 1846; opacity: .58; transform: scale(1.03); transition: transform 10s var(--ease-slow); }
.hero:hover .hero__media img { transform: scale(1.08); }
.hero__scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(18,16,14,.22) 0%, rgba(18,16,14,.04) 38%, rgba(18,16,14,.78) 100%); }
.hero__inner { position: relative; z-index: 2; padding: var(--space-7) 0 var(--space-6); width: min(1320px, 92vw); margin-inline: auto; }
.hero .eyebrow { color: var(--gold-soft); }
.hero .eyebrow::before { background: var(--gold-soft); }
.hero h1 { margin: 1.6rem 0 1.8rem; max-width: 18ch; }
.hero__sub { max-width: 560px; color: rgba(253,252,250,.78); font-weight: 300; font-size: 1.08rem; line-height: 1.75; }
.hero__actions { display: flex; gap: 1.1rem; margin-top: 2.8rem; flex-wrap: wrap; }

.marquee {
  background: var(--dark);
  color: var(--bg);
  overflow: hidden;
  border-top: 1px solid var(--dark-line);
  border-bottom: 1px solid var(--dark-line);
  padding: 1.1rem 0;
  white-space: nowrap;
}
.marquee__track { display: inline-flex; animation: marquee 36s linear infinite; will-change: transform; }
.marquee__track > * { margin-right: 3.5rem; }
.marquee span { font-family: var(--serif); font-style: italic; font-size: 1.3rem; letter-spacing: 0.02em; }
.marquee .m-gold { color: var(--gold-soft); font-style: normal; font-family: var(--sans); font-size: 0.68rem; letter-spacing: 0.26em; text-transform: uppercase; align-self: center; }
@keyframes marquee { to { transform: translateX(-50%); } }

.section { padding: var(--space-6) 0; position: relative; }
.section--soft { background: var(--bg-soft); }
.section--dark { background: var(--dark); color: var(--bg); }
.section--dark .lead, .section--dark p { color: rgba(253,252,250,.72); }
.section--dark .eyebrow { color: var(--gold-soft); }
.section--dark .eyebrow::before { background: var(--gold-soft); }

.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; margin-bottom: var(--space-5); }
.section-head h2 { font-size: clamp(2.2rem, 4.4vw, 3.8rem); margin-top: 1.2rem; }
.section-head .link-more { flex-shrink: 0; }

.link-more {
  display: inline-flex; align-items: center; gap: 0.7rem;
  font-size: 0.74rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.22em;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 0.38rem;
  transition: gap .35s var(--ease-spring), color .35s;
}
.link-more:hover { gap: 1.2rem; color: var(--gold-deep); }

.intro-block { display: grid; grid-template-columns: 1fr 1.4fr; gap: var(--space-6); align-items: start; }
.intro-block h2 { font-size: clamp(2.4rem, 4.8vw, 4.2rem); }
.intro-block p { margin-top: 1.4rem; }
.intro-num { font-family: var(--serif); font-size: 1.15rem; color: var(--gold-deep); font-style: italic; }

.card-grid { display: grid; gap: var(--space-4); }
.card-grid--news, .card-grid--interviews { grid-template-columns: repeat(3, 1fr); }
.card-grid--jury { grid-template-columns: repeat(4, 1fr); }
.card-grid--agenda { grid-template-columns: repeat(3, 1fr); }

.card { display: block; position: relative; }
.card__media { overflow: hidden; position: relative; aspect-ratio: 4 / 3; background: var(--bg-soft); }
.card--jury .card__media { aspect-ratio: 3 / 4; }
.card--portrait .card__media { aspect-ratio: 3 / 4; }
.card__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.4s var(--ease-slow), filter .8s var(--ease);
  filter: brightness(.96) saturate(.85);
}
.card:hover .card__media img { transform: scale(1.06); filter: brightness(1.04) saturate(1); }
.card__media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(18,16,14,.35) 100%);
  transition: opacity .5s var(--ease);
  opacity: 0;
}
.card:hover .card__media::after { opacity: 1; }

.media-empty {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.6rem;
  background: linear-gradient(145deg, var(--bg-soft), var(--line));
  border: 1px solid var(--line);
}
.media-empty__mono { font-family: var(--serif); font-size: 4rem; font-weight: 400; color: var(--gold); line-height: 1; }
.portrait-empty {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(150deg, rgba(191,160,101,.16), rgba(217,201,160,.28));
  border: 1px solid var(--gold-soft);
}
.portrait-empty__ini { font-family: var(--serif); font-weight: 500; font-size: clamp(2.6rem, 7vw, 4.6rem); letter-spacing: 0.04em; color: var(--gold-deep); line-height: 1; }
.media-empty__label { font-size: 0.66rem; text-transform: uppercase; letter-spacing: 0.26em; color: var(--muted); }
.card__media > * { width: 100%; height: 100%; }

.card__body { padding-top: 1.25rem; }
.card__meta {
  display: flex; align-items: center; gap: 0.9rem;
  font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--muted);
  margin-bottom: 0.65rem;
}
.card__meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--gold); }
.card__title {
  font-family: var(--serif); font-size: 1.55rem; font-weight: 500; line-height: 1.18;
  transition: color .35s;
}
.card:hover .card__title { color: var(--gold-deep); }
.card__excerpt {
  margin-top: 0.65rem; color: var(--muted); font-size: 0.92rem;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.card__foot { margin-top: 1.1rem; }

.jury-card { text-align: center; }
.jury-card .card__media { border-radius: 50%; aspect-ratio: 1 / 1; }
.jury-card .card__media::after { border-radius: 50%; }
.jury-card .card__body { padding-top: 1.3rem; }
.jury-card .card__title { font-size: 1.4rem; }
.jury-card .jury-role {
  font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.2em;
  color: var(--gold-deep); margin-top: 0.4rem;
}

.agenda-card {
  border: 1px solid var(--line); padding: 2rem;
  transition: border-color .4s, transform .45s var(--ease-spring), box-shadow .45s;
  background: var(--white); position: relative; overflow: hidden;
}
.agenda-card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 0;
  background: var(--gold); transition: height .5s var(--ease-slow);
}
.agenda-card:hover { border-color: var(--gold-soft); transform: translateY(-6px); box-shadow: 0 24px 50px -28px rgba(18,16,14,.4); }
.agenda-card:hover::before { height: 100%; }
.agenda-card__date { display: flex; align-items: baseline; gap: 0.8rem; }
.agenda-card__date .day { font-family: var(--serif); font-size: 3.2rem; font-weight: 500; line-height: 1; color: var(--ink); }
.agenda-card__date .month { text-transform: uppercase; letter-spacing: 0.2em; font-size: 0.7rem; color: var(--gold-deep); }
.agenda-card__date .year { font-family: var(--serif); font-style: italic; color: var(--muted); }
.agenda-card h3 { font-size: 1.45rem; margin-top: 1.2rem; }
.agenda-card__venue { margin-top: 0.55rem; font-size: 0.85rem; color: var(--muted); display: flex; align-items: center; gap: 0.55rem; }
.agenda-card.is-cancelled { opacity: .7; }
.agenda-card.is-cancelled h3 { text-decoration: line-through; }
.agenda-card .tag-cancel { margin-top: 0.8rem; }
.agenda-card.is-past { opacity: .7; }

.tag {
  display: inline-block;
  font-size: 0.64rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.2em;
  border: 1px solid var(--line-strong); padding: 0.3rem 0.75rem;
  color: var(--muted);
}
.tag--gold { border-color: var(--gold); color: var(--gold-deep); }
.tag--dark { border-color: var(--dark-line); color: var(--gold-soft); }

.split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: var(--space-6); align-items: center; }
.split--reverse .split__media { order: -1; }
.split__media { overflow: hidden; }
.split__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.6s var(--ease-slow); }
.split:hover .split__media img { transform: scale(1.04); }
.split__content h2 { font-size: clamp(2.2rem, 4.4vw, 3.8rem); margin: 1.2rem 0; }
.split__content p + p { margin-top: 1.2rem; }

.dba-banner {
  background: linear-gradient(130deg, var(--dark) 0%, var(--grad-deep-start) 55%, var(--grad-deep-end) 100%);
  color: var(--bg); overflow: hidden; position: relative;
}
.dba-banner::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(700px 350px at 88% 0%, rgba(200,170,120,.14), transparent 70%),
    radial-gradient(300px 300px at 10% 90%, rgba(200,170,120,.06), transparent 70%);
}
.dba-banner .container {
  position: relative;
  display: grid; grid-template-columns: 1.2fr 0.8fr; gap: var(--space-5);
  align-items: center; padding: var(--space-6) 0;
}
.dba-banner h2 { font-size: clamp(2.2rem, 4.4vw, 3.8rem); margin: 1.2rem 0; }
.dba-banner .eyebrow { color: var(--gold-soft); }
.dba-banner .eyebrow::before { background: var(--gold-soft); }
.dba-banner p { color: rgba(253,252,250,.76); margin-bottom: 2rem; }
.dba-banner .dba-seal { font-family: var(--serif); font-style: italic; text-align: center; }
.dba-banner .dba-seal strong { display: block; font-size: 2.8rem; font-weight: 500; color: var(--gold-soft); }

.pagination { display: flex; justify-content: center; gap: 0.55rem; margin-top: var(--space-5); }
.pagination a, .pagination span {
  min-width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--line); font-size: 0.85rem;
  transition: all .35s;
}
.pagination a:hover { border-color: var(--ink); background: var(--ink); color: var(--bg); }
.pagination .is-current { border-color: var(--gold); color: var(--gold-deep); font-weight: 500; }

.article-hero { padding: var(--space-6) 0 var(--space-4); }
.article-hero .label { display: block; margin-bottom: 1.2rem; }
.article-hero h1 { font-size: clamp(2.6rem, 5.8vw, 4.8rem); max-width: 18ch; margin-bottom: 1.6rem; }
.article-hero__meta {
  display: flex; gap: 1.6rem; font-size: 0.76rem;
  text-transform: uppercase; letter-spacing: 0.2em; color: var(--muted);
}
.article-hero__media { margin-top: var(--space-5); aspect-ratio: 16 / 9; overflow: hidden; }
.article-hero__media img { width: 100%; height: 100%; object-fit: cover; }

.article-body { padding-bottom: var(--space-6); }
.article-body__inner { width: min(780px, 92vw); margin-inline: auto; }
.article-body .lead {
  font-size: 1.5rem; color: var(--ink); font-family: var(--serif);
  line-height: 1.5; margin-bottom: 2rem;
}
.article-body .prose { font-size: 1.05rem; line-height: 1.88; color: var(--ink-soft); }
.article-body .prose p { margin-bottom: 1.6rem; }
.article-body .prose h2, .article-body .prose h3 { font-size: 1.9rem; margin: 2.6rem 0 1.2rem; }
.article-body .prose h3 { font-size: 1.5rem; }
.article-body .prose ul, .article-body .prose ol { margin: 1.4rem 0 1.8rem; padding-left: 1.4rem; }
.article-body .prose ul li, .article-body .prose ol li { margin-bottom: 0.6rem; position: relative; }
.article-body .prose ul li::before { content: ''; position: absolute; left: -1.15rem; top: 0.72em; width: 5px; height: 1px; background: var(--gold); }
.article-body .prose ol { list-style: decimal; }
.article-body .prose ol li::before { display: none; }
.article-body .prose blockquote {
  border-left: 2px solid var(--gold); padding: 0.5rem 0 0.5rem 1.8rem;
  font-family: var(--serif); font-style: italic; font-size: 1.6rem;
  color: var(--ink); margin: 2.4rem 0; line-height: 1.42;
}
.article-body .prose a { border-bottom: 1px solid var(--gold); }
.article-body .prose a:hover { color: var(--gold-deep); }
.article-body .prose img { margin: 2.4rem auto; }
.article-body .prose figure { margin: 2.4rem 0; }
.article-body .prose figcaption { font-size: 0.8rem; color: var(--muted); text-align: center; margin-top: 0.7rem; letter-spacing: 0.06em; }

.video-frame { aspect-ratio: 16 / 9; background: var(--dark); overflow: hidden; }
.video-frame iframe, .video-frame video { width: 100%; height: 100%; border: 0; display: block; }

.interview-quote { text-align: center; padding: var(--space-6) 0; }
.interview-quote p {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(1.7rem, 3.6vw, 2.8rem); line-height: 1.38;
  max-width: 24ch; margin-inline: auto;
}
.interview-quote cite {
  display: block; margin-top: 1.6rem; font-style: normal;
  font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.24em; color: var(--gold-deep);
}

.agenda-detail { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: var(--space-5); align-items: start; }
.agenda-detail__dates { border: 1px solid var(--line); padding: 2.2rem; }
.agenda-detail__dates .big-date { font-family: var(--serif); font-size: 3.8rem; font-weight: 500; line-height: 1; }
.agenda-detail__dates dl { margin-top: 1.8rem; }
.agenda-detail__dates dt { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.22em; color: var(--muted); margin-top: 1.4rem; }
.agenda-detail__dates dd { margin-top: 0.3rem; font-weight: 400; }
.agenda-detail .prose { margin-top: 1rem; }
.detail-empty { border-left: 2px solid var(--gold-soft); padding: 0.4rem 0 0.4rem 1.6rem; color: var(--muted); }
.detail-empty__lead { font-family: var(--serif); font-style: italic; font-size: 1.5rem; line-height: 1.4; color: var(--ink); margin-bottom: 0.8rem; }
.detail-empty a { border-bottom: 1px solid var(--gold); }
.detail-empty a:hover { color: var(--gold-deep); }

.modal-backdrop {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(12, 10, 8, .62);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex; align-items: center; justify-content: center;
  padding: clamp(1rem, 3vw, 3rem);
  opacity: 0; visibility: hidden;
  transition: opacity .45s var(--ease), visibility .45s;
}
.modal-backdrop.is-open { opacity: 1; visibility: visible; }
.modal {
  background: var(--bg);
  width: min(880px, 100%);
  max-height: 92vh;
  overflow: hidden;
  display: flex; flex-direction: column;
  transform: translateY(32px) scale(.975);
  transition: transform .55s var(--ease-spring);
}
.modal-backdrop.is-open .modal { transform: none; }
.modal__media { aspect-ratio: 16 / 9; overflow: hidden; background: var(--dark); }
.modal__media img { width: 100%; height: 100%; object-fit: cover; }
.modal__scroll { overflow-y: auto; padding: clamp(1.6rem, 4vw, 2.8rem); }
.modal__scroll::-webkit-scrollbar { width: 8px; }
.modal__scroll::-webkit-scrollbar-thumb { background: var(--line-strong); }
.modal__title { font-size: clamp(1.9rem, 4.2vw, 2.8rem); margin: 0.6rem 0 0.5rem; }
.modal__role { font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.24em; color: var(--gold-deep); margin-bottom: 1.4rem; }
.modal__body { color: var(--ink-soft); line-height: 1.8; }
.modal__body p { margin-bottom: 1.1rem; }
.modal__close {
  position: absolute; top: 16px; right: 16px; z-index: 3;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(250, 248, 244, .92); color: var(--ink);
  border-radius: 50%;
  font-size: 1.5rem; line-height: 1;
  transition: transform .4s var(--ease-spring), background .35s;
}
.modal__close:hover { transform: rotate(90deg); background: var(--ink); color: var(--bg); }
.modal__media + .modal__close { background: rgba(18,16,14,.55); color: var(--bg); }

.jury-modal { width: min(960px, 100%); }
.jury-modal__grid { display: grid; grid-template-columns: 0.85fr 1.15fr; }
.jury-modal__photo { aspect-ratio: 3 / 4; overflow: hidden; background: var(--bg-soft); }
.jury-modal__photo img { width: 100%; height: 100%; object-fit: cover; }

.cta-strip { border-top: 1px solid var(--line); padding: var(--space-6) 0; }
.cta-strip .container { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.cta-strip h2 { font-size: clamp(2rem, 3.8vw, 3.2rem); max-width: 18ch; }
.cta-strip .lead { margin-top: 0.9rem; }

.site-footer { background: var(--dark); color: rgba(253,252,250,.78); padding: var(--space-6) 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: var(--space-5); padding-bottom: var(--space-5); }
.footer-brand img { height: 42px; width: auto; filter: brightness(0) invert(1); opacity: .94; }
.footer-brand p { margin-top: 1.3rem; max-width: 30ch; font-size: 0.92rem; color: rgba(253,252,250,.58); }
.site-footer h3 { font-family: var(--sans); font-weight: 500; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.26em; color: var(--gold-soft); margin-bottom: 1.4rem; }
.site-footer ul li { margin-bottom: 0.75rem; }
.site-footer a { font-size: 0.92rem; transition: color .35s; }
.site-footer a:hover { color: var(--gold-soft); }
.site-footer .footer-contact li { display: flex; gap: 0.75rem; align-items: baseline; }
.site-footer .footer-contact .k { color: rgba(253,252,250,.55); font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.14em; min-width: 76px; }
.footer-bottom { border-top: 1px solid var(--dark-line); padding: 1.6rem 0; }
.footer-bottom .container { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: 0.8rem; color: rgba(253,252,250,.6); }
.footer-bottom .legal { display: flex; gap: 1.6rem; }
.footer-credit { color: inherit; transition: color .35s; }
.footer-credit:hover { color: var(--gold-soft); }

.js .reveal { opacity: 0; transform: translateY(34px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .14s; }
.reveal-d2 { transition-delay: .28s; }

.err-404 { min-height: 72vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: var(--space-6) 0; }
.err-404 .big { font-family: var(--serif); font-size: clamp(7rem, 20vw, 12rem); line-height: 1; color: var(--line-strong); }
.err-404 .eyebrow { margin-bottom: 1.4rem; }
.err-404 h1 { font-size: clamp(1.9rem, 4.2vw, 3rem); margin: 0.6rem 0 1.4rem; }
.err-404 h1 em { font-style: italic; color: var(--gold); }
.err-404__links { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.8rem; margin-top: 2.2rem; }
.err-404__home { margin-top: 2rem; }

@media (max-width: 1080px) {
  .card-grid--jury { grid-template-columns: repeat(3, 1fr); }
  .split, .split--reverse { grid-template-columns: 1fr; gap: var(--space-4); }
  .split--reverse .split__media { order: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .nav {
    position: fixed; inset: var(--header-h) 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--bg); padding: 1rem 6vw 1.8rem;
    border-bottom: 1px solid var(--line);
    transform: translateY(-110%); visibility: hidden;
    transition: transform .5s var(--ease-slow), visibility 0s linear .5s;
  }
  .nav.is-open { transform: none; visibility: visible; transition-delay: 0s; }
  .nav a { display: block; padding: 1rem 0; border-bottom: 1px solid var(--line); }
  .nav .nav-cta { margin-top: 1.2rem; text-align: center; }
  .nav-toggle { display: flex; }
  .card-grid--news, .card-grid--interviews, .card-grid--agenda { grid-template-columns: 1fr 1fr; }
  .card-grid--jury { grid-template-columns: repeat(2, 1fr); }
  .intro-block { grid-template-columns: 1fr; gap: var(--space-3); }
  .agenda-detail { grid-template-columns: 1fr; }
  .jury-modal__grid { grid-template-columns: 1fr; }
  .jury-modal__photo { aspect-ratio: 4 / 3; }
  .section { padding: var(--space-5) 0; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .card-grid--news, .card-grid--interviews, .card-grid--agenda, .card-grid--jury { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .dba-banner .container { grid-template-columns: 1fr; }
  .section-head { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .article-hero__meta { flex-direction: column; gap: 0.5rem; }
}

@media (max-width: 360px) {
  .header-inner { gap: 0.5rem; }
  .brand img { height: 34px; }
  .nav-dba { height: 26px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important; animation-iteration-count: 1 !important;
    transition-duration: .01ms !important; scroll-behavior: auto !important;
  }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}

@media print {
  .reveal { opacity: 1; transform: none; }
}
