:root {
  --navy: #0b1c33;
  --navy-deep: #071225;
  --navy-soft: #132849;
  --gold: #c6a15b;
  --gold-bright: #e0c27a;
  --ivory: #f4efe4;
  --ivory-dim: #e8e0d0;
  --ink: #1a2332;
  --muted: #6b7380;
  --line: rgba(198, 161, 91, 0.28);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Manrope", "Noto Sans", "Noto Sans Devanagari", "Noto Sans SC", sans-serif;
  --header-h: 78px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(198,161,91,0.08), transparent 60%),
    linear-gradient(180deg, #f7f3ea 0%, var(--ivory) 40%, #efe8da 100%);
  min-height: 100vh;
  line-height: 1.65;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy-soft); text-decoration: none; }
a:hover { color: var(--gold); }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(11, 28, 51, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header.scrolled { box-shadow: 0 10px 30px rgba(7,18,37,.25); }
.header-inner {
  max-width: 1280px; margin: 0 auto; padding: .85rem 1.25rem;
  display: flex; align-items: center; gap: 1rem; flex-wrap: nowrap;
}
.brand { display: flex; align-items: center; gap: .45rem; color: #f4efe4; flex: 0 0 auto; }
.brand-mark {
  width: 34px; height: 34px;
  object-fit: contain;
  display: block;
  flex: 0 0 auto;
  border: 0;
}
.brand-text {
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.brand-text em {
  font-style: normal;
  color: var(--gold);
  font-size: .78rem;
  letter-spacing: .12em;
  font-weight: 600;
  line-height: 1;
}
.nav-toggle {
  display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: .4rem;
}
.nav-toggle span { width: 22px; height: 2px; background: var(--gold); display: block; }
.site-nav { display: flex; flex-wrap: wrap; gap: .55rem 1rem; margin-left: auto; }
.site-nav a { color: rgba(244,239,228,.82); font-size: .82rem; letter-spacing: .02em; }
.site-nav a.active, .site-nav a:hover { color: var(--gold); }
.lang-switch { display: flex; gap: .35rem; margin-left: .5rem; }
.lang-switch a {
  color: rgba(244,239,228,.7); font-size: .72rem; padding: .2rem .35rem;
  border: 1px solid transparent;
}
.lang-switch a.active { color: var(--gold); border-color: rgba(198,161,91,.45); }

.site-main { min-height: 60vh; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 1.25rem; }
.container.narrow { max-width: 860px; }
.section { padding: 3rem 0; }
.section-alt { background: rgba(255,255,255,.28); }
.section-title {
  font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.3rem);
  color: var(--navy); margin: 0 0 1.25rem; font-weight: 600;
}
.page-home .section-title {
  text-align: center;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 1.6rem;
}
.page-home .section-head .section-title {
  text-align: left;
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 0;
}
.section-head {
  display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; margin-bottom: 1rem;
}
.page-hero { padding: 2.5rem 0 1rem; }
.page-hero h1 {
  font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem);
  color: var(--navy); margin: 0 0 .75rem; font-weight: 600;
}
.page-intro { max-width: 46rem; color: var(--ink); }
.page-intro p { margin: 0 0 1rem; }
.page-hero .wall-intro {
  max-width: none;
  width: 100%;
  margin-top: 0.35rem;
}
.page-hero .wall-intro .wall-intro-line {
  margin: 0;
  font-size: clamp(1.15rem, 1.7vw, 1.38rem);
  line-height: 1.5;
  color: rgba(11, 28, 51, 0.9);
  max-width: none;
}
.page-hero .wall-intro .wall-intro-line + .wall-intro-line {
  margin-top: 0.15rem;
}
.wall-kicker {
  font-size: .8rem; letter-spacing: .28em; text-transform: uppercase;
  color: var(--gold); margin: 0 0 .75rem;
}
.text-link { color: var(--navy); border-bottom: 1px solid var(--gold); font-weight: 600; }
.btn, button.btn, a.btn {
  display: inline-block; background: var(--navy); color: #f4efe4;
  padding: .75rem 1.25rem; border: 1px solid var(--gold); font: inherit; cursor: pointer;
}
.btn:hover { background: var(--navy-soft); color: #fff; }
.hidden { display: none !important; }

/* Home slider */
.home-slider {
  position: relative;
  height: clamp(420px, 68vh, 720px);
  overflow: hidden;
  background: var(--navy-deep);
}
.slider-track { position: absolute; inset: 0; }
.slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity .85s ease;
  z-index: 0;
}
.slide.is-active { opacity: 1; z-index: 1; }
.slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7,18,37,.12) 0%, rgba(7,18,37,.38) 48%, rgba(7,18,37,.82) 100%);
  pointer-events: none;
}
.slide-content {
  position: absolute;
  z-index: 2;
  left: 0; right: 0; bottom: 0;
  padding-bottom: 3.75rem;
  display: flex;
  align-items: flex-end;
}
.slide-caption {
  color: #f4efe4;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.8vw, 2.2rem);
  line-height: 1.28;
  max-width: 38rem;
  margin: 0;
  text-shadow: 0 2px 18px rgba(0, 0, 0, .45);
}
.slider-dots {
  position: absolute; z-index: 3; left: 50%; bottom: 1.15rem; transform: translateX(-50%);
  display: flex; gap: .45rem;
}
.slider-dots button {
  width: 10px; height: 10px; border-radius: 50%; border: 1px solid var(--gold);
  background: transparent; padding: 0; cursor: pointer;
}
.slider-dots button.is-active { background: var(--gold); }

.split-block {
  display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(240px, .75fr); gap: 2rem; align-items: start;
}
.split-reverse { grid-template-columns: minmax(240px, .85fr) minmax(0, 1.15fr); }
.split-text { min-width: 0; }
.split-text p { margin: 0 0 1rem; line-height: 1.7; }
.split-aside {
  display: grid; gap: 1rem; justify-items: center;
  min-width: 0;
}
.split-media {
  min-height: 320px; min-width: 0;
  background-size: cover; background-position: center;
  border: 1px solid rgba(198,161,91,.35);
}
.split-media-logo {
  background: none;
  border: 0;
  background-color: transparent;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.split-media-logo img {
  width: 100%;
  height: auto;
  display: block;
}
.leader-portrait {
  margin: 0;
  width: min(240px, 100%);
}
.leader-portrait img {
  width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: center top;
  border: 1px solid rgba(198,161,91,.4);
}
.leader-portrait figcaption { text-align: center; margin-top: .5rem; color: var(--muted); font-size: .85rem; }
.social-row { display: flex; gap: .5rem; flex-wrap: wrap; justify-content: center; }
.social-btn {
  border: 1px solid var(--gold); color: var(--navy); padding: .35rem .7rem; font-size: .8rem; font-weight: 600;
}

.pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.pillar-card { text-align: center; max-width: 22rem; margin: 0 auto; }
.pillar-seal {
  width: 160px; height: 160px; margin: 0 auto 1.05rem; border-radius: 50%;
  background-size: contain; background-repeat: no-repeat; background-position: center;
  background-color: transparent; border: 0;
  filter: drop-shadow(0 6px 14px rgba(11, 28, 51, .1));
}
.pillar-card h3 { font-family: var(--font-display); color: var(--navy); margin: 0 0 .4rem; }
.pillar-card p { margin: 0; color: var(--muted); font-size: .95rem; line-height: 1.55; }

.news-feature-main {
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 1.35rem; margin-bottom: 1.35rem;
  color: inherit; text-decoration: none;
}
.news-feature-media { min-height: 300px; background: var(--navy-soft) center/cover no-repeat; }
.news-feature-body { min-width: 0; }
.news-feature-body time { color: var(--muted); font-size: .85rem; }
.news-feature-body h3 { font-family: var(--font-display); font-size: clamp(1.35rem, 2.4vw, 1.75rem); margin: .35rem 0 .55rem; color: var(--navy); line-height: 1.25; }
.news-feature-body p { margin: 0; color: #445062; line-height: 1.55; }
.news-feature-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.news-mini { color: inherit; text-decoration: none; min-width: 0; }
.news-mini-media { aspect-ratio: 16/10; background: var(--navy-soft) center/cover no-repeat; margin-bottom: .55rem; }
.news-mini time { display: block; color: var(--muted); font-size: .8rem; margin-bottom: .25rem; }
.news-mini h3 { font-size: 1.02rem; margin: 0; font-family: var(--font-display); color: var(--navy); line-height: 1.3; }

/* News listing — preview photo + text (like old /posts) */
.news-layout {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
  max-width: 1120px;
}
.news-years {
  position: sticky;
  top: 5.5rem;
  display: flex;
  flex-direction: column;
  gap: .35rem;
  padding: .85rem 0;
}
.news-years-title {
  margin: 0 0 .55rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--navy);
}
.news-year-link {
  display: flex;
  justify-content: space-between;
  gap: .5rem;
  padding: .28rem .15rem;
  color: rgba(11, 28, 51, .78);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  font-size: .95rem;
}
.news-year-link span { color: var(--muted); font-size: .85rem; }
.news-year-link:hover,
.news-year-link.is-active {
  color: var(--navy);
  border-bottom-color: rgba(184, 148, 74, .55);
}
.news-year-link.is-active { font-weight: 650; }
.news-container { max-width: 980px; }
.news-empty { color: var(--muted); margin: 0 0 1rem; }
.news-list { display: flex; flex-direction: column; gap: 0; }
.news-row {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 1.15rem;
  align-items: start;
  padding: 1.15rem 0;
  border-bottom: 1px solid rgba(11, 28, 51, .1);
  color: inherit;
  text-decoration: none;
  transition: background .2s ease;
}
.news-row:hover { background: rgba(255, 255, 255, .45); }
.news-row-media {
  width: 100%;
  aspect-ratio: 16 / 10;
  background: var(--navy-soft) center/cover no-repeat;
  border: 1px solid rgba(11, 28, 51, .08);
}
.news-row-body { min-width: 0; padding-top: .1rem; }
.news-row-body time {
  display: block;
  font-size: .82rem;
  letter-spacing: .04em;
  color: var(--muted);
  margin-bottom: .35rem;
}
.news-row-body h2 {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.25;
  margin: 0 0 .45rem;
  color: var(--navy);
}
.news-row-body p {
  margin: 0;
  color: #445062;
  font-size: .98rem;
  line-height: 1.55;
}

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.card {
  background: rgba(255,255,255,.55); border: 1px solid rgba(11,28,51,.1); overflow: hidden;
}
.card-media { aspect-ratio: 16/9; background: var(--navy-soft) center/cover no-repeat; }
.article-cover { margin: .85rem 0 1.4rem; overflow: hidden; }
.article-cover img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.card-body { padding: 1rem; }
.card-body h3 { margin: 0 0 .4rem; font-family: var(--font-display); color: var(--navy); }
.card-body p { margin: 0; color: #445062; font-size: .95rem; }

.home-projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.home-project-card {
  padding: 0 0 1.25rem; background: rgba(255,255,255,.5); border-left: 3px solid var(--gold);
  overflow: hidden;
}
.home-project-media {
  display: block;
  aspect-ratio: 16 / 9;
  background: var(--navy-soft) center/cover no-repeat;
  margin-bottom: .9rem;
}
.home-project-card h3,
.home-project-card time,
.home-project-card p,
.home-project-card .text-link { padding-left: 1.25rem; padding-right: 1.25rem; }
.home-project-card h3 { padding-top: .15rem; }
.home-project-card h3 { font-family: var(--font-display); margin: 0 0 .5rem; color: var(--navy); }
.home-project-card time { display: block; color: var(--muted); font-size: .85rem; margin-bottom: .4rem; }
.projects-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.project-card { background: #fff; border: 1px solid rgba(11,28,51,.1); overflow: hidden; }
.project-media { aspect-ratio: 16/9; background: var(--navy-soft) center/cover no-repeat; }
.project-body { padding: 1.1rem 1.2rem 1.3rem; }
.project-status { color: var(--gold); font-size: .75rem; letter-spacing: .08em; text-transform: uppercase; margin-bottom: .4rem; }
.project-body h2 { font-family: var(--font-display); margin: 0 0 .5rem; color: var(--navy); font-size: 1.35rem; }

.people-grid { display: grid; gap: 2rem; }
.person-card {
  display: grid; grid-template-columns: 220px 1fr; gap: 1.5rem;
  padding: 1.25rem 0; border-bottom: 1px solid var(--line);
}
.person-card img {
  width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: center top;
  border: 1px solid rgba(198,161,91,.35);
}
.person-role { color: var(--gold); font-weight: 600; }

/* Fund page */
.fund-subtitle {
  margin: .35rem 0 1.25rem;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  color: var(--gold);
  letter-spacing: .04em;
  text-transform: uppercase;
}
.fund-lead {
  max-width: none;
  margin-bottom: 1.5rem;
}
.fund-lead p {
  margin: 0 0 .65rem;
  line-height: 1.65;
  text-align: justify;
  text-align-last: left;
  hyphens: auto;
}
.fund-lead p:last-child { margin-bottom: 0; }
.fund-container { max-width: none; }
.fund-section { padding-top: .35rem; }
.fund-block {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 210px;
  gap: 1.15rem 1.5rem;
  align-items: start;
  padding: 1.75rem 0;
  border-bottom: 1px solid rgba(11,28,51,.1);
}
.fund-block:last-child { border-bottom: 0; }
.fund-photo-left {
  grid-template-columns: 210px minmax(0, 1fr);
}
.fund-photo-right .fund-text { order: 1; }
.fund-photo-right .fund-aside { order: 2; }
.fund-photo-left .fund-aside { order: 1; }
.fund-photo-left .fund-text { order: 2; }
.fund-text { min-width: 0; }
.fund-text p {
  margin: 0 0 .65rem;
  line-height: 1.65;
  color: var(--ink);
  text-align: justify;
  text-align-last: left;
  hyphens: auto;
}
.fund-text p:last-child { margin-bottom: 0; }
.fund-quote {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  color: var(--gold);
  margin: 0 0 .75rem;
  line-height: 1.2;
  text-align: left;
  font-weight: 600;
}
.fund-aside {
  width: 100%;
  max-width: 210px;
  justify-self: stretch;
}
.fund-photo {
  margin: 0 0 .65rem;
  width: 100%;
}
.fund-photo img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  border: 1px solid rgba(120,120,120,.35);
  background: #fff;
}
.fund-person-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--navy);
  margin: 0 0 .4rem;
  font-weight: 700;
  line-height: 1.25;
}
.fund-person-roles {
  margin: 0;
  padding: 0 0 0 1rem;
  list-style: disc;
}
.fund-person-roles li {
  margin: 0 0 .3rem;
  color: var(--ink);
  font-size: .82rem;
  line-height: 1.35;
}

/* Laureates wall */
.wall-section { padding-top: 0.5rem; }
.wall-block { margin: 0 0 2.75rem; }
.wall-block.hidden { display: none; }
.wall-block-head {
  display: flex; align-items: baseline; gap: 1rem;
  margin: 0 0 1.15rem; padding-bottom: .75rem;
  border-bottom: 1px solid rgba(11,28,51,.12);
}
.wall-block-num {
  font-family: var(--font-display); font-size: clamp(2.4rem, 5vw, 3.4rem);
  line-height: 1; color: var(--gold); font-weight: 600; min-width: 1.2em;
}
.wall-block-title {
  font-family: var(--font-display); font-size: clamp(1.25rem, 2.4vw, 1.85rem);
  line-height: 1.2; color: var(--navy); margin: 0; font-weight: 600;
}
.filters { display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: 1.25rem; }
.filters input, .filters select {
  border: 1px solid rgba(11,28,51,.15); background: rgba(255,255,255,.7);
  padding: .7rem .9rem; font: inherit; min-width: 220px; color: var(--ink);
}
.wall-filter-title {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  color: var(--navy);
  margin: 0 0 0.85rem;
  font-weight: 600;
}

/* Verify registry */
.verify-section { padding-top: 0; padding-bottom: 0.5rem; }
.verify-card {
  background: linear-gradient(165deg, rgba(255,255,255,.92), rgba(244,239,228,.75));
  border: 1px solid rgba(11,28,51,.1);
  padding: clamp(1.25rem, 3vw, 2rem);
  margin-bottom: 1.75rem;
}
.verify-card h2 {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.6vw, 2rem);
  color: var(--navy);
  margin: 0 0 .55rem;
  font-weight: 600;
}
.verify-intro {
  margin: 0 0 1.1rem;
  max-width: 46rem;
  color: rgba(11,28,51,.78);
  line-height: 1.55;
}
.verify-form {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  gap: .75rem 1rem;
  align-items: end;
}
.verify-form label {
  display: flex;
  flex-direction: column;
  gap: .35rem;
  font-size: .92rem;
  color: var(--navy);
}
.verify-form input {
  border: 1px solid rgba(11,28,51,.18);
  background: #fff;
  padding: .75rem .9rem;
  font: inherit;
  color: var(--ink);
  width: 100%;
}
.verify-form .btn { white-space: nowrap; }
.verify-result {
  margin-top: 1.15rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(11,28,51,.1);
}
.verify-result.hidden { display: none; }
.verify-msg { margin: 0 0 .75rem; line-height: 1.5; }
.verify-msg-ok { color: #1b6b3a; font-weight: 600; }
.verify-result.is-miss .verify-msg { color: rgba(11,28,51,.85); }
.verify-hit {
  display: flex;
  gap: .9rem;
  align-items: start;
  padding: .85rem 0;
  border-bottom: 1px solid rgba(11,28,51,.08);
}
.verify-hit:last-child { border-bottom: 0; }
.verify-hit-photo {
  width: 72px;
  flex-shrink: 0;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: var(--navy-soft);
  border: 1px solid rgba(11,28,51,.08);
}
.verify-hit-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.verify-hit-body h3 {
  margin: 0 0 .35rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--navy);
}
.verify-hit-body p { margin: .2rem 0; }
.verify-label { color: rgba(11,28,51,.6); }
.verify-num { letter-spacing: .03em; color: var(--navy); }
.verify-wall { font-size: .9rem; color: rgba(11,28,51,.65); }
.verify-links { margin: .4rem 0 0; }
@media (max-width: 900px) {
  .verify-form { grid-template-columns: 1fr; }
  .verify-form .btn { width: 100%; }
}

.laureate-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 0.55rem;
}
.laureate-card {
  background: transparent;
  border: 0;
  overflow: hidden;
  transition: opacity .2s ease;
}
.laureate-card:hover {
  opacity: .92;
}
.laureate-card.hidden { display: none; }
.laureate-photo {
  aspect-ratio: 2 / 3;
  background: var(--navy-soft);
  overflow: hidden;
  border: 1px solid rgba(11, 28, 51, .08);
}
.laureate-photo img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block;
}
.laureate-meta {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: .15rem;
  padding: .55rem .1rem 0;
  height: 4.5rem;
  min-height: 4.5rem;
  text-align: center;
  background: transparent;
  overflow: hidden;
}
.laureate-meta.is-unsigned { min-height: 4.5rem; }
.laureate-card h3 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-family: var(--font-display);
  font-size: clamp(.78rem, 1vw, .95rem);
  line-height: 1.25;
  margin: 0;
  color: var(--navy);
  font-weight: 600;
}
.unsigned-hint {
  color: var(--muted); font-size: .72rem; font-weight: 500;
  font-family: var(--font-body); letter-spacing: .02em;
  -webkit-line-clamp: 3;
}
.laureate-card .role {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
  color: var(--muted);
  font-size: .68rem;
  line-height: 1.25;
}
.laureate-card .award-label {
  display: none;
}

/* Awards */
.award-hero {
  position: relative;
  padding-bottom: 1.5rem;
}
.award-hero::after {
  content: "";
  display: block;
  width: min(12rem, 40%);
  height: 1px;
  margin: 1.75rem auto 0;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.award-hero .award-intro-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 470px);
  gap: 2rem 2.5rem;
  align-items: center;
  margin-top: 1.35rem;
}
.award-seal {
  margin: 0;
  justify-self: center;
  position: relative;
  width: 100%;
  max-width: 470px;
}
.award-seal::before {
  content: "";
  position: absolute;
  inset: -10%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(198,161,91,.18) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.award-seal img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 470px;
  height: auto;
  display: block;
  margin: 0 auto;
  background: transparent !important;
  filter: drop-shadow(0 14px 28px rgba(11, 28, 51, .14));
}
.award-rows-section {
  padding-top: 1rem;
  max-width: 1280px;
  margin: 0 auto;
}
.award-row {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 1.5rem 1.75rem;
  align-items: start;
  padding: 2.15rem 0;
  border-bottom: 1px solid rgba(184, 148, 74, .28);
}
.award-row:last-child { border-bottom: 0; }
.award-medal {
  text-align: center;
  justify-self: center;
  width: 100%;
  max-width: 230px;
  background: transparent;
}
.award-medal img {
  width: 100%;
  max-width: 225px;
  height: auto;
  margin: 0 auto .75rem;
  display: block;
  background: transparent !important;
  filter: drop-shadow(0 10px 18px rgba(11, 28, 51, .12));
}
.award-medal h2 {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.3;
  color: var(--navy);
  margin: 0;
  padding: 0;
  font-weight: 600;
  letter-spacing: .02em;
  background: none;
  border: 0;
  box-shadow: none;
}
.award-medal h2::before {
  content: "";
  display: block;
  width: 2.4rem;
  height: 1px;
  margin: 0 auto .55rem;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.award-people {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .9rem;
  align-items: start;
}
.award-person {
  margin: 0;
  background: transparent;
  border: 0;
  overflow: hidden;
}
.award-person-photo {
  aspect-ratio: 2 / 3;
  background: var(--navy-soft);
  overflow: hidden;
  border: 1px solid rgba(11, 28, 51, .08);
}
.award-person-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.award-person figcaption {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: .15rem;
  padding: .55rem .15rem 0;
  height: 4.5rem;
  text-align: center;
  background: transparent;
  overflow: hidden;
}
.award-person figcaption strong {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-family: var(--font-display);
  font-size: clamp(.84rem, 1.05vw, 1.02rem);
  line-height: 1.25;
  color: var(--navy);
}
.award-person figcaption span {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
  color: var(--muted);
  font-size: .7rem;
  line-height: 1.25;
}
.award-cats-title {
  margin: 2.25rem 0 1rem; font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.65rem); color: var(--navy);
}
.award-categories { margin: 0; padding: 0; list-style: none; display: grid; gap: .7rem; }
.award-categories li {
  padding: .9rem 1.05rem; background: rgba(255,255,255,.35);
  border-left: 3px solid var(--gold); line-height: 1.5;
}
.award-wall-link { margin-top: 2.25rem; text-align: center; }
.award-regulations .section-title {
  text-align: center;
  line-height: 1.25;
}
.award-regulations .section-title br {
  display: block;
  content: "";
  margin-top: .15em;
}
.award-regulations .page-intro {
  max-width: none;
  margin: 0;
  text-align: justify;
  text-align-last: left;
  hyphens: auto;
}
.award-regulations .page-intro p {
  margin: 0 0 1.05rem;
  line-height: 1.7;
}
.award-regulations .page-intro .reg-point {
  text-align: left;
  padding-left: 1.35rem;
  text-indent: -1.35rem;
}
.award-regulations .award-cats-title {
  text-align: left;
}
.award-regulations .award-categories li {
  display: flex;
  align-items: center;
  padding: 1rem 1.2rem;
  min-height: 3.4rem;
}
.home-pax-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: .75rem;
  margin-top: .35rem;
}
.home-pax-person {
  margin: 0;
  overflow: hidden;
  background: transparent;
  border: 0;
}
.home-pax-photo {
  aspect-ratio: 2 / 3;
  background: var(--navy-soft);
  overflow: hidden;
  border: 1px solid rgba(11, 28, 51, .08);
}
.home-pax-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.home-pax-person figcaption {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: .15rem;
  margin: 0;
  padding: .55rem .1rem 0;
  height: 4.5rem;
  text-align: center;
  background: transparent;
  overflow: hidden;
}
.home-pax-person figcaption strong {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-family: var(--font-display);
  font-size: clamp(.78rem, 1vw, .95rem);
  line-height: 1.25;
  color: var(--navy);
  font-weight: 600;
}
.home-pax-person figcaption span {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
  color: var(--muted);
  font-size: .68rem;
  line-height: 1.25;
}
.home-laureates-more {
  margin: 1.75rem 0 0;
  text-align: center;
}

.media-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: .75rem; }
.media-item img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.media-page-intro { max-width: 52rem; margin-top: .5rem; }
.media-library-section { padding-top: 0.5rem; }
.media-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-bottom: 1.35rem;
}
.media-tab {
  display: inline-block;
  padding: .65rem 1.15rem;
  border: 1px solid rgba(11, 28, 51, .14);
  background: rgba(255, 255, 255, .55);
  color: var(--navy);
  font: inherit;
  font-weight: 600;
  text-decoration: none;
  transition: background .2s ease, border-color .2s ease;
}
.media-tab:hover { background: rgba(255, 255, 255, .85); }
.media-tab.is-active {
  background: var(--navy);
  color: #f4efe4;
  border-color: var(--gold);
}
.media-videos-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem 1rem;
}
.media-video-card {
  display: flex;
  flex-direction: column;
  gap: .55rem;
}
.media-video {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  padding: 0;
  border: 1px solid rgba(198, 161, 91, .28);
  background-color: #0b1c33;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  cursor: pointer;
}
.media-video-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 28, 51, .06) 0%, rgba(11, 28, 51, .38) 100%);
  pointer-events: none;
  z-index: 1;
}
.media-video-play {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 3.1rem;
  height: 3.1rem;
  margin: -1.55rem 0 0 -1.55rem;
  border-radius: 50%;
  background: rgba(11, 28, 51, .78);
  border: 2px solid var(--gold);
  box-shadow: 0 8px 22px rgba(7, 18, 37, .35);
  pointer-events: none;
  z-index: 2;
}
.media-video-play::before {
  content: "";
  position: absolute;
  left: 52%;
  top: 50%;
  transform: translate(-35%, -50%);
  border-style: solid;
  border-width: .55rem 0 .55rem .9rem;
  border-color: transparent transparent transparent var(--gold-bright);
}
.media-video:hover .media-video-play {
  background: rgba(11, 28, 51, .92);
}
.media-video.is-playing .media-video-shade,
.media-video.is-playing .media-video-play {
  display: none;
}
.media-video.is-playing video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
}
.media-video-caption {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1rem;
  line-height: 1.35;
  color: var(--navy);
  font-weight: 600;
}
.media-empty {
  margin: 0;
  color: rgba(11, 28, 51, .75);
}
.video-list { display: grid; gap: .75rem; }
.rich-content img { max-width: 100%; height: auto; margin: 1rem 0; }
.contacts-subtitle {
  margin: .65rem 0 0;
  font-size: 1.08rem;
  line-height: 1.55;
  color: rgba(11, 28, 51, .78);
}
.contacts-intro {
  margin: 1.15rem 0 0;
  max-width: none;
}
.contacts-intro p {
  margin: 0;
  line-height: 1.65;
  text-align: justify;
  text-align-last: left;
  color: rgba(11, 28, 51, .88);
}
.contacts-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 1.75rem 0 0;
}
.contacts-card {
  margin: 0;
  padding: 1.15rem 1.2rem 1.2rem;
  background: linear-gradient(165deg, #fffef9 0%, #f7f1e4 100%);
  border-left: 3px solid var(--gold);
}
.contacts-card h2 {
  margin: 0 0 .55rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--navy);
  line-height: 1.25;
}
.contacts-card p {
  margin: 0 0 .4rem;
  line-height: 1.5;
  color: rgba(11, 28, 51, .9);
}
.contacts-card p:last-child { margin-bottom: 0; }
.contacts-card a {
  color: var(--navy);
  border-bottom: 1px solid rgba(198, 161, 91, .45);
  font-weight: 600;
}
.contacts-card a:hover { color: var(--gold); }
.contacts-note {
  color: var(--muted) !important;
  font-size: .9rem;
}
.contacts-block {
  margin: 2rem 0 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(184, 148, 74, .28);
}
.contacts-block h2 {
  margin: 0 0 .85rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  color: var(--navy);
}
.contacts-org-name {
  margin: 0 0 .35rem;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--ink);
  text-align: justify;
  text-align-last: left;
}
.contacts-requisites {
  display: grid;
  gap: .55rem;
}
.contacts-req-row {
  display: grid;
  grid-template-columns: minmax(9rem, 14rem) minmax(0, 1fr);
  gap: .75rem 1.25rem;
  padding: .7rem .9rem;
  background: rgba(255, 255, 255, .45);
  border-top: 1px solid rgba(11, 28, 51, .06);
}
.contacts-req-label {
  color: rgba(11, 28, 51, .62);
  font-size: .86rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-weight: 650;
}
.contacts-req-value {
  color: var(--navy);
  font-weight: 600;
  word-break: break-word;
}
.contacts-social {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem .85rem;
}
.contacts-social a {
  display: inline-block;
  padding: .55rem 1rem;
  background: var(--navy);
  color: #f4efe4;
  border: 1px solid var(--gold);
  font-size: .88rem;
  letter-spacing: .04em;
}
.contacts-social a:hover {
  background: var(--navy-soft);
  color: #fff;
}
.form-grid { display: grid; gap: .85rem; }
.form-grid label { display: grid; gap: .35rem; font-weight: 600; color: var(--navy); }
.form-grid input, .form-grid textarea, .form-grid select {
  border: 1px solid rgba(11,28,51,.18); padding: .7rem .85rem; font: inherit; background: #fff;
}
.form-flash.ok { color: #1f6b3a; }
.form-flash.fail { color: #8a1f1f; }
.recommend-form {
  display: grid;
  gap: .85rem;
  max-width: 36rem;
  margin: 0 auto;
}
.recommend-form input,
.recommend-form textarea {
  border: 1px solid rgba(11,28,51,.18);
  padding: .75rem .9rem;
  font: inherit;
  background: #fff;
  width: 100%;
}
.recommend-form textarea { resize: vertical; min-height: 8rem; }
.recommend-form .btn { width: 100%; text-align: center; }
.social-squares { display: grid; grid-template-columns: repeat(4, 1fr); gap: .75rem; }
.social-square {
  aspect-ratio: 1; display: grid; place-items: center; background: var(--navy);
  color: var(--gold); font-weight: 700; border: 1px solid var(--gold);
}

.site-footer {
  background: var(--navy-deep); color: rgba(244,239,228,.8); margin-top: 2rem;
  border-top: 1px solid var(--line);
}
.footer-inner {
  max-width: 1280px; margin: 0 auto; padding: 2.5rem 1.25rem;
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 1.5rem;
}
.footer-brand {
  font-family: var(--font-display); color: var(--gold); letter-spacing: .2em;
  font-size: 1.2rem; margin-bottom: .5rem;
}
.footer-legal { font-size: .82rem; color: rgba(244,239,228,.62); max-width: 22rem; }
.footer-meta a { color: var(--gold); }
.footer-docs { display: flex; flex-direction: column; gap: .35rem; margin: .6rem 0 0; }

.cookie-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  background: linear-gradient(180deg, #1a3a66 0%, #0d2344 100%);
  color: #e8eef8;
  border-top: 1px solid rgba(198,161,91,.4);
  box-shadow: 0 -16px 40px rgba(7, 18, 37, .38);
}
.cookie-bar[hidden] { display: none !important; }
.cookie-bar-inner {
  max-width: 1280px; margin: 0 auto;
  padding: .95rem 1.25rem 1.05rem;
  display: grid; grid-template-columns: 1fr auto;
  gap: .9rem 1.25rem; align-items: center;
}
.cookie-bar-inner p {
  margin: 0; font-size: .92rem; line-height: 1.55;
  color: rgba(232, 238, 248, .92);
}
.cookie-bar-inner a { color: var(--gold-bright); }
.cookie-accept {
  background: #c6a15b; color: #0b1c33; border: 0;
  padding: .7rem 1.35rem; cursor: pointer; font: inherit; font-weight: 600;
  letter-spacing: .04em; white-space: nowrap;
}
.cookie-accept:hover { background: #e0c27a; }
.privacy-copy p { margin: 0 0 1rem; line-height: 1.7; max-width: 46rem; }
body.has-cookie-bar { padding-bottom: 7.5rem; }

@media (max-width: 820px) {
  .cookie-bar-inner { grid-template-columns: 1fr; }
  .cookie-accept { width: 100%; }
}

@keyframes heroFade {
  from { opacity: 0; transform: scale(1.08); }
  to { opacity: 1; transform: scale(1.04); }
}

/* —— Assembly —— */
.assembly-subtitle {
  margin: .65rem 0 0;
  max-width: none;
  font-size: 1.08rem;
  line-height: 1.55;
  color: rgba(11, 28, 51, .78);
  text-align: left;
}
.assembly-hero-figure {
  margin: 1.5rem 0 0;
  max-width: none;
  overflow: hidden;
  aspect-ratio: 21 / 9;
  background: var(--navy-soft);
}
.assembly-hero-figure img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  object-position: center bottom;
  border: 1px solid rgba(11, 28, 51, .1);
  box-shadow: 0 12px 36px rgba(11, 28, 51, .12);
}
.assembly-section { padding-top: .5rem; }
.assembly-container { max-width: none; }
.assembly-block {
  margin: 0 0 2rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid rgba(184, 148, 74, .28);
}
.assembly-block:last-of-type { border-bottom: 0; margin-bottom: 1.25rem; }
.assembly-block-title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  color: var(--navy);
  margin: 0 0 .85rem;
  letter-spacing: .02em;
}
.assembly-block p {
  margin: 0 0 .65rem;
  line-height: 1.65;
  color: rgba(11, 28, 51, .9);
  font-size: 1.02rem;
  text-align: justify;
  text-align-last: left;
  hyphens: auto;
}
.assembly-block p:last-child { margin-bottom: 0; }
.assembly-label {
  font-weight: 650;
  color: var(--navy);
}
.assembly-components {
  display: grid;
  gap: .9rem;
}
.assembly-component {
  padding: 1rem 1.15rem 1.05rem;
  background: linear-gradient(165deg, #fffef9 0%, #f7f1e4 100%);
  border-left: 3px solid var(--gold);
}
.assembly-component-title {
  font-family: var(--font-display);
  font-size: 1.12rem;
  margin: 0 0 .55rem;
  color: var(--navy);
}
.assembly-component p {
  margin: 0 0 .45rem;
  font-size: .98rem;
  text-align: justify;
  text-align-last: left;
}
.assembly-component p:last-child { margin-bottom: 0; }
.assembly-goals { display: grid; gap: 1.15rem; }
.assembly-goal-group {
  padding: 0 0 .15rem;
}
.assembly-goal-title {
  font-family: var(--font-display);
  font-size: 1.08rem;
  margin: 0 0 .55rem;
  color: var(--navy);
  line-height: 1.4;
}
.assembly-goal-list {
  margin: 0;
  padding: 0 0 0 1.15rem;
}
.assembly-goal-list li {
  margin: 0 0 .4rem;
  line-height: 1.55;
  color: rgba(11, 28, 51, .9);
  text-align: justify;
  text-align-last: left;
}
.assembly-goal-list li:last-child { margin-bottom: 0; }
.assembly-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .85rem;
  margin-top: 1rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(184, 148, 74, .28);
}
.assembly-gallery-item {
  margin: 0;
  overflow: hidden;
  background: var(--navy-soft);
  border: 1px solid rgba(11, 28, 51, .08);
  aspect-ratio: 4 / 3;
}
.assembly-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s ease;
}
.assembly-gallery-item:hover img {
  transform: scale(1.04);
}

/* —— Forum —— */
.forum-headline {
  margin: .85rem 0 0;
  max-width: none;
  text-align: left;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.4vw, 1.65rem);
  line-height: 1.35;
  color: var(--navy);
}
.forum-intro {
  margin: 1.25rem 0 0;
  max-width: none;
}
.forum-intro p {
  margin: 0 0 .65rem;
  line-height: 1.65;
  color: rgba(11, 28, 51, .88);
  font-size: 1.02rem;
  text-align: justify;
  text-align-last: left;
  hyphens: auto;
}
.forum-intro p:last-child { margin-bottom: 0; }
.forum-section { padding-top: .4rem; }
.forum-container { max-width: none; }
.forum-block {
  margin: 0 0 2.75rem;
  padding-bottom: 2.4rem;
  border-bottom: 1px solid rgba(184, 148, 74, .28);
}
.forum-block:last-child {
  border-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}
.forum-block-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: .65rem 1rem;
  margin-bottom: 1.1rem;
}
.forum-year {
  display: inline-block;
  min-width: 3.4rem;
  padding: .28rem .7rem;
  background: var(--navy);
  color: #f4efe4;
  font-size: .82rem;
  letter-spacing: .08em;
  font-weight: 650;
}
.forum-block-head h2 {
  margin: 0;
  flex: 1 1 14rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  line-height: 1.25;
  color: var(--navy);
}
.forum-hero-photo {
  margin: 0 0 1.15rem;
  overflow: hidden;
  border: 1px solid rgba(11, 28, 51, .08);
  background: var(--navy-soft);
}
.forum-hero-photo img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: cover;
}
.forum-copy p {
  margin: 0 0 .65rem;
  line-height: 1.65;
  font-size: 1.02rem;
  color: rgba(11, 28, 51, .9);
  text-align: justify;
  text-align-last: left;
  hyphens: auto;
}
.forum-copy p:last-child { margin-bottom: 0; }
.forum-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .7rem;
  margin-top: 1.15rem;
}
.forum-gallery-item {
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--navy-soft);
  border: 1px solid rgba(11, 28, 51, .08);
}
.forum-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.forum-gallery-item:hover img { transform: scale(1.04); }
.forum-videos { margin-top: 1.15rem; display: grid; gap: 1rem; }
.forum-video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #0b1c33;
  overflow: hidden;
}
.forum-video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.forum-video-local {
  display: block;
  padding: 0;
  border: 1px solid rgba(198, 161, 91, .35);
  background-color: #0b1c33;
  background-size: cover;
  background-position: center;
  cursor: pointer;
}
.forum-video-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 28, 51, .08) 0%, rgba(11, 28, 51, .42) 100%);
  pointer-events: none;
  z-index: 1;
}
.forum-video-play {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 3.4rem;
  height: 3.4rem;
  margin: -1.7rem 0 0 -1.7rem;
  border-radius: 50%;
  background: rgba(11, 28, 51, .82);
  border: 2px solid var(--gold);
  box-shadow: 0 10px 26px rgba(7, 18, 37, .38);
  pointer-events: none;
  z-index: 2;
  transition: transform .2s ease, background .2s ease;
}
.forum-video-play::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -7px 0 0 -4px;
  border-style: solid;
  border-width: 7px 0 7px 12px;
  border-color: transparent transparent transparent #f4efe4;
}
.forum-video-local:hover .forum-video-play {
  transform: scale(1.06);
  background: rgba(11, 28, 51, .92);
}
.forum-video-local.is-playing .forum-video-shade,
.forum-video-local.is-playing .forum-video-play {
  display: none;
}
.forum-video-local.is-playing video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
}

/* —— Journal —— */
.journal-hero { text-align: left; }
.journal-subtitle {
  margin: .7rem 0 0;
  max-width: none;
  text-align: left;
  font-size: 1.08rem;
  color: rgba(11, 28, 51, .78);
}
.journal-section { padding-top: .35rem; }
.journal-container { max-width: none; }
.journal-hero-photo {
  margin: 1.35rem 0 1.5rem;
  overflow: hidden;
  background: transparent;
}
.journal-hero-photo img {
  display: block;
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  object-position: center center;
  margin: 0;
}
.journal-intro {
  margin: 0 0 1.75rem;
  max-width: none;
}
.journal-intro p {
  margin: 0 0 .65rem;
  line-height: 1.65;
  font-size: 1.02rem;
  color: rgba(11, 28, 51, .9);
  text-align: justify;
  text-align-last: left;
  hyphens: auto;
}
.journal-intro p:last-child { margin-bottom: 0; }
.journal-block {
  margin: 0 0 2rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid rgba(184, 148, 74, .28);
}
.journal-block:last-child {
  border-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}
.journal-block h2 {
  margin: 0 0 .9rem;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  color: var(--navy);
  line-height: 1.25;
}
.journal-lead {
  margin: 0 0 .65rem;
  max-width: none;
  line-height: 1.65;
  color: rgba(11, 28, 51, .88);
  text-align: justify;
  text-align-last: left;
  hyphens: auto;
}
.journal-about-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.journal-about-card {
  padding: 1.15rem 1.2rem 1.25rem;
  background: rgba(255, 255, 255, .55);
  border-top: 3px solid var(--gold);
}
.journal-about-card h3 {
  margin: 0 0 .55rem;
  font-size: .98rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--navy);
}
.journal-about-card p {
  margin: 0;
  line-height: 1.6;
  font-size: .98rem;
  color: rgba(11, 28, 51, .88);
  text-align: justify;
  text-align-last: left;
}
.journal-specs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: .85rem;
}
.journal-spec {
  padding: 1rem 1rem 1.1rem;
  background: rgba(11, 28, 51, .04);
  border-left: 3px solid var(--gold);
}
.journal-spec-label {
  margin: 0 0 .35rem;
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(11, 28, 51, .62);
}
.journal-spec-value {
  margin: 0 0 .4rem;
  font-family: var(--font-display);
  font-size: 1.12rem;
  line-height: 1.3;
  color: var(--navy);
}
.journal-spec-note {
  margin: 0;
  font-size: .9rem;
  line-height: 1.45;
  color: rgba(11, 28, 51, .78);
}
.journal-topics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.15rem;
}
.journal-topic {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}
.journal-topic-media {
  margin: 0;
  width: 96px;
  height: 96px;
  overflow: hidden;
  background: var(--navy-soft);
  border: 1px solid rgba(11, 28, 51, .08);
}
.journal-topic-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.journal-topic-body h3 {
  margin: 0 0 .4rem;
  font-size: 1.05rem;
  color: var(--navy);
}
.journal-topic-body p {
  margin: 0;
  line-height: 1.55;
  color: rgba(11, 28, 51, .86);
  text-align: justify;
  text-align-last: left;
}
.journal-banner {
  margin: 1rem 0 1.25rem;
  overflow: hidden;
  border: 1px solid rgba(11, 28, 51, .08);
  background: var(--navy-soft);
}
.journal-banner img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 320px;
  object-fit: cover;
}
.journal-videos {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .9rem;
  margin-top: .75rem;
}
.journal-video {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  padding: 0;
  border: 1px solid rgba(11, 28, 51, .1);
  background: #0b1c33;
  overflow: hidden;
  cursor: pointer;
}
.journal-video img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.journal-video-play {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 3.1rem;
  height: 3.1rem;
  margin: -1.55rem 0 0 -1.55rem;
  border-radius: 50%;
  background: rgba(11, 28, 51, .78);
  border: 2px solid var(--gold);
  box-shadow: 0 8px 22px rgba(7, 18, 37, .35);
  pointer-events: none;
}
.journal-video-play::before {
  content: "";
  position: absolute;
  left: 52%;
  top: 50%;
  transform: translate(-35%, -50%);
  border-style: solid;
  border-width: .55rem 0 .55rem .9rem;
  border-color: transparent transparent transparent var(--gold-bright);
}
.journal-video:hover .journal-video-play {
  background: rgba(11, 28, 51, .92);
}
.journal-video.is-playing iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.journal-video.is-playing img,
.journal-video.is-playing .journal-video-play {
  display: none;
}
.journal-invite-grid {
  display: grid;
  grid-template-columns: minmax(0, 320px) minmax(0, 1fr);
  gap: 1.4rem;
  align-items: start;
  margin-top: 1rem;
}
.journal-invite-photo {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(11, 28, 51, .08);
  background: var(--navy-soft);
}
.journal-invite-photo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
}
.journal-invite-copy p {
  margin: 0 0 .65rem;
  line-height: 1.65;
  color: rgba(11, 28, 51, .9);
  text-align: justify;
  text-align-last: left;
  hyphens: auto;
}
.journal-invite-copy p:last-child { margin-bottom: 0; }
.journal-placements {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.1rem;
}
.journal-place {
  padding: 0 0 1rem;
  background: rgba(255, 255, 255, .45);
  border-top: 3px solid var(--gold);
}
.journal-place-media {
  margin: 0 0 .9rem;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--navy-soft);
}
.journal-place-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.journal-place h3 {
  margin: 0 .95rem .55rem;
  font-size: 1.05rem;
  color: var(--navy);
}
.journal-place ul {
  margin: 0 .95rem;
  padding-left: 1.1rem;
  color: rgba(11, 28, 51, .86);
  line-height: 1.5;
}
.journal-place li { margin-bottom: .35rem; }
.journal-gallery {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: .65rem;
  margin-top: 1.1rem;
}
.journal-gallery-item {
  margin: 0;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--navy-soft);
  border: 1px solid rgba(11, 28, 51, .08);
}
.journal-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.journal-gallery-item:hover img { transform: scale(1.04); }
.journal-legal-grid {
  display: grid;
  grid-template-columns: minmax(0, 280px) minmax(0, 1fr);
  gap: 1.4rem;
  align-items: start;
  margin-top: 1rem;
}
.journal-legal-photo {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(11, 28, 51, .1);
  background: #fff;
}
.journal-legal-photo img {
  display: block;
  width: 100%;
  height: auto;
}
.journal-legal-copy p {
  margin: 0 0 .65rem;
  line-height: 1.65;
  color: rgba(11, 28, 51, .88);
  text-align: justify;
  text-align-last: left;
  hyphens: auto;
}
.journal-legal-copy p:last-child { margin-bottom: 0; }

@media (max-width: 1200px) {
  .laureate-grid { grid-template-columns: repeat(5, 1fr); }
  .home-pax-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
@media (max-width: 1024px) {
  .card-grid, .news-feature-grid, .pillars-grid, .home-projects-grid { grid-template-columns: repeat(2, 1fr); }
  .laureate-grid { grid-template-columns: repeat(3, 1fr); }
  .projects-grid { grid-template-columns: 1fr; }
  .media-grid { grid-template-columns: repeat(3, 1fr); }
  .media-videos-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .person-card { grid-template-columns: 160px 1fr; }
  .split-block, .split-reverse, .news-feature-main { grid-template-columns: 1fr; }
  .award-people { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 820px) {
  .nav-toggle { display: flex; margin-left: auto; }
  .site-nav, .lang-switch { display: none; width: 100%; }
  .header-inner { flex-wrap: wrap; }
  .site-nav.open, .lang-switch.open {
    display: flex; flex-direction: column; padding: .5rem 0 1rem;
  }
  .lang-switch.open { flex-direction: row; flex-wrap: wrap; }
  .card-grid { grid-template-columns: 1fr 1fr; }
  .laureate-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-inner { grid-template-columns: 1fr; }
  .home-slider { height: clamp(360px, 58vh, 560px); }
  .slide-content { padding-bottom: 3.25rem; }
  .slide-caption { max-width: 100%; }
  .award-hero .award-intro-layout { grid-template-columns: 1fr; }
  .award-seal,
  .award-seal img { max-width: min(380px, 88vw); }
  .award-row {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }
  .award-medal { max-width: 240px; }
  .award-medal img { max-width: 220px; }
  .award-people { grid-template-columns: repeat(2, 1fr); text-align: left; width: 100%; }
  .fund-head,
  .fund-photo-right .fund-head {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
  .fund-photo-right .fund-photo,
  .fund-photo-right .fund-identity { order: unset; }
  .fund-photo { width: min(200px, 70vw); }
  .fund-photo img { width: 100%; }
  .fund-identity, .fund-person-roles p { text-align: center; }
  .fund-body { max-width: none; }
  .fund-body p { text-align: left; }
  .fund-block,
  .fund-photo-left {
    grid-template-columns: 1fr;
  }
  .fund-photo-right .fund-text,
  .fund-photo-right .fund-aside,
  .fund-photo-left .fund-aside,
  .fund-photo-left .fund-text {
    order: unset;
  }
  .fund-aside {
    width: min(200px, 80vw);
    max-width: 100%;
    margin: 0 auto 1.25rem;
    justify-self: center;
  }
  .fund-text p { text-align: left; }
  .fund-person-roles { text-align: left; }
  .assembly-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .news-layout { grid-template-columns: 1fr; gap: 1rem; }
  .news-years {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
    gap: .45rem .75rem;
    border-bottom: 1px solid rgba(11, 28, 51, .1);
    padding-bottom: .85rem;
  }
  .news-years-title { width: 100%; margin-bottom: .15rem; }
  .news-row { grid-template-columns: 160px minmax(0, 1fr); gap: .9rem; }
  .home-pax-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .forum-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .journal-about-grid { grid-template-columns: 1fr; }
  .journal-specs { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .journal-topics { grid-template-columns: 1fr; }
  .journal-videos { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .contacts-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .journal-invite-grid,
  .journal-legal-grid { grid-template-columns: 1fr; }
  .journal-invite-photo { max-width: 360px; }
  .journal-legal-photo { max-width: 320px; }
  .journal-placements { grid-template-columns: 1fr; }
  .journal-gallery { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .card-grid, .media-grid, .media-videos-grid, .news-feature-grid, .pillars-grid, .home-projects-grid, .social-squares {
    grid-template-columns: 1fr;
  }
  .laureate-grid { grid-template-columns: repeat(2, 1fr); gap: .4rem; }
  .person-card { grid-template-columns: 1fr; }
  .assembly-gallery { grid-template-columns: 1fr; }
  .news-row { grid-template-columns: 1fr; }
  .news-row-media { max-width: 100%; }
  .home-pax-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .forum-gallery { grid-template-columns: 1fr; }
  .journal-specs { grid-template-columns: 1fr; }
  .journal-videos { grid-template-columns: 1fr; }
  .journal-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .journal-topic { grid-template-columns: 72px minmax(0, 1fr); }
  .journal-topic-media { width: 72px; height: 72px; }
  .contacts-grid { grid-template-columns: 1fr; }
  .contacts-req-row { grid-template-columns: 1fr; gap: .25rem; }
  .attributes-grid { grid-template-columns: 1fr; }
  .attributes-hero-layout { grid-template-columns: 1fr; }
  .attribute-card { grid-template-columns: 1fr; }
  .attributes-form-grid { grid-template-columns: 1fr; }
  .attributes-steps { grid-template-columns: 1fr; }
}

/* ---- Attributes page ---- */
.attributes-subtitle {
  max-width: 46rem;
  margin: .65rem 0 0;
  font-size: 1.08rem;
  color: var(--navy-soft);
  line-height: 1.55;
}
.attributes-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  gap: 1.75rem 2rem;
  margin-top: 1.5rem;
  align-items: start;
}
@media (max-width: 900px) {
  .attributes-hero-layout {
    grid-template-columns: 1fr;
  }
}
.attributes-principle {
  padding: 1.35rem 1.4rem;
  background: linear-gradient(145deg, rgba(11, 28, 51, .96), rgba(19, 40, 73, .94));
  color: #f4efe4;
  border: 1px solid rgba(198, 161, 91, .42);
  box-shadow: 0 18px 40px rgba(7, 18, 37, .18);
}
.attributes-principle-kicker {
  margin: 0 0 .75rem;
  font-size: .72rem;
  letter-spacing: .18em;
  color: var(--gold-bright);
  font-weight: 700;
}
.attributes-principle p {
  margin: 0;
  line-height: 1.6;
}
.attributes-principle p + p { margin-top: .65rem; }
.attributes-steps {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.attributes-step {
  position: relative;
  padding: 1.25rem 1.1rem 1.15rem;
  background: #fff;
  border: 1px solid rgba(198, 161, 91, .28);
  box-shadow: 0 10px 28px rgba(11, 28, 51, .06);
}
.attributes-step-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.65rem;
  line-height: 1;
  color: var(--gold);
  margin-bottom: .55rem;
}
.attributes-step-body h3 {
  margin: 0 0 .45rem;
  font-size: 1.05rem;
  color: var(--navy);
}
.attributes-step-body p {
  margin: 0;
  font-size: .92rem;
  color: var(--muted);
  line-height: 1.55;
}
.attributes-steps-note {
  margin: 1.1rem 0 0;
  text-align: center;
  font-size: .92rem;
  color: var(--muted);
  font-style: italic;
}
.attributes-catalog-head {
  text-align: center;
  margin-bottom: 1.75rem;
}
.attributes-catalog-note {
  margin: .35rem 0 0;
  color: var(--gold);
  letter-spacing: .06em;
  font-size: .88rem;
  text-transform: uppercase;
}
.attributes-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem;
}
.attribute-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: .85rem 0;
  padding: 1.15rem;
  background: #fff;
  border: 1px solid rgba(198, 161, 91, .28);
  box-shadow: 0 12px 32px rgba(11, 28, 51, .07);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.attribute-card:hover {
  transform: translateY(-4px);
  border-color: rgba(198, 161, 91, .52);
  box-shadow: 0 18px 42px rgba(11, 28, 51, .12), 0 0 0 1px rgba(224, 194, 122, .12);
}
.attribute-card-visual {
  display: grid;
  place-items: center;
  min-height: 240px;
  padding: .85rem;
  background:
    radial-gradient(circle at 50% 35%, rgba(198, 161, 91, .12), transparent 58%),
    linear-gradient(180deg, rgba(11, 28, 51, .03), rgba(11, 28, 51, .07));
  border: 1px solid rgba(11, 28, 51, .08);
}
.attribute-card-visual img {
  width: 100%;
  max-height: 280px;
  object-fit: contain;
  filter: drop-shadow(0 14px 24px rgba(11, 28, 51, .18));
  transition: transform .32s ease, filter .32s ease;
}
.attribute-card:hover .attribute-card-visual img {
  transform: scale(1.04);
  filter: drop-shadow(0 18px 28px rgba(11, 28, 51, .22));
}
.attribute-badge {
  display: inline-block;
  margin-bottom: .55rem;
  padding: .22rem .55rem;
  font-size: .68rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--navy-soft);
  border: 1px solid rgba(198, 161, 91, .45);
  background: rgba(198, 161, 91, .08);
}
.attribute-title {
  margin: 0 0 .55rem;
  font-family: var(--font-display);
  font-size: 1.45rem;
  line-height: 1.2;
  color: var(--navy);
}
.attribute-category {
  margin: 0 0 .75rem;
  font-size: .88rem;
  color: var(--muted);
}
.attribute-category span { color: var(--navy-soft); font-weight: 600; }
.attribute-desc {
  margin: 0 0 .65rem;
  font-size: .93rem;
  line-height: 1.6;
}
.attribute-meta {
  margin: .85rem 0;
  display: grid;
  gap: .55rem;
}
.attribute-meta div {
  display: grid;
  gap: .15rem;
}
.attribute-meta dt {
  font-size: .74rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}
.attribute-meta dd {
  margin: 0;
  font-size: .9rem;
  line-height: 1.5;
}
.attribute-footnote {
  margin: .65rem 0 1rem;
  font-size: .86rem;
  color: var(--muted);
  font-style: italic;
}
.attribute-cta {
  margin-top: .25rem;
  width: 100%;
  text-align: center;
  border: 0;
  cursor: pointer;
  font: inherit;
}
.attributes-callout {
  padding: 1.5rem 1.6rem;
  border: 1px solid rgba(198, 161, 91, .35);
  background: #fff;
}
.attributes-callout-strong {
  background: linear-gradient(145deg, rgba(11, 28, 51, .97), rgba(19, 40, 73, .95));
  color: #f4efe4;
  border-color: rgba(198, 161, 91, .45);
  box-shadow: 0 20px 44px rgba(7, 18, 37, .2);
}
.attributes-callout-strong h2 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--gold-bright);
}
.attributes-callout-strong p {
  margin: 0;
  line-height: 1.65;
}
.attributes-callout-strong p + p { margin-top: .55rem; }
.attributes-notes { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.attributes-notes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: stretch;
}
.attributes-notes .attributes-callout {
  padding: 1.15rem 1.25rem;
  margin: 0;
  height: 100%;
}
.attributes-notes .attributes-callout h2 {
  margin: 0 0 .7rem;
  font-family: var(--font-display);
  font-size: 1.45rem;
}
.attributes-notes-custom {
  background: #fff;
  color: var(--ink);
}
.attributes-notes-custom h2 { color: var(--navy); }
.attributes-notes-custom p {
  margin: 0;
  font-size: .92rem;
  line-height: 1.5;
}
.attributes-notes .attributes-custom-list {
  margin: .5rem 0 .65rem;
  padding-left: 1.1rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .2rem .85rem;
  font-size: .9rem;
}
@media (max-width: 860px) {
  .attributes-notes-grid { grid-template-columns: 1fr; }
  .attributes-notes .attributes-custom-list { grid-template-columns: 1fr; }
}
.attributes-custom-list {
  margin: .75rem 0 1rem;
  padding-left: 1.2rem;
  display: grid;
  gap: .35rem;
}
.attributes-form-subtitle {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 1.25rem;
  color: var(--muted);
}
.attributes-form {
  display: grid;
  gap: 1rem;
  max-width: 42rem;
  margin: 0 auto;
}
.attributes-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .85rem;
}
.attributes-form-grid label {
  display: grid;
  gap: .35rem;
  font-weight: 600;
  color: var(--navy);
  font-size: .9rem;
}
.attributes-form-wide { grid-column: 1 / -1; }
.attributes-form-grid input,
.attributes-form-grid select,
.attributes-form-grid textarea {
  border: 1px solid rgba(11, 28, 51, .18);
  padding: .72rem .85rem;
  font: inherit;
  background: #fff;
  width: 100%;
}
.attributes-form-grid textarea { resize: vertical; min-height: 7rem; }
.attributes-form-check {
  display: flex !important;
  align-items: flex-start;
  gap: .65rem;
  font-weight: 500 !important;
}
.attributes-form-check input {
  width: auto;
  margin-top: .25rem;
  flex: 0 0 auto;
}
.attributes-form .btn-wide { width: 100%; text-align: center; }
.attributes-conditions {
  max-width: 42rem;
  margin: 1.35rem auto 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(11, 28, 51, .1);
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.6;
}
.attributes-conditions p { margin: 0; }
.attributes-conditions p + p { margin-top: .75rem; }

.attribute-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .28s ease, visibility .28s ease;
}
.attribute-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
body.attribute-modal-open { overflow: hidden; }
.attribute-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 18, 37, .72);
  backdrop-filter: blur(4px);
}
.attribute-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 44rem);
  max-height: min(92vh, 900px);
  overflow: auto;
  padding: 1.5rem 1.6rem 1.35rem;
  background: linear-gradient(180deg, #fbf8f1 0%, #f4efe4 100%);
  border: 1px solid rgba(198, 161, 91, .45);
  box-shadow: 0 28px 70px rgba(7, 18, 37, .35);
}
.attribute-modal-close {
  position: absolute;
  top: .65rem;
  right: .75rem;
  width: 2.25rem;
  height: 2.25rem;
  border: 0;
  background: transparent;
  color: var(--navy-soft);
  font-size: 1.65rem;
  line-height: 1;
  cursor: pointer;
}
.attribute-modal-close:hover { color: var(--gold); }
.attribute-modal-title {
  margin: 0 2rem 1rem 0;
  font-family: var(--font-display);
  font-size: 1.55rem;
  color: var(--navy);
  line-height: 1.2;
}
.attribute-modal-inner .attributes-form-subtitle {
  margin-bottom: 1rem;
  text-align: left;
}
.attribute-modal-inner .attributes-form {
  max-width: none;
  margin: 0;
}
.attribute-modal-inner .attributes-conditions {
  max-width: none;
  margin-top: 1rem;
}
.attribute-modal-success {
  text-align: center;
  padding: 1rem 0 .5rem;
}
.attribute-modal-success .form-flash {
  margin: 0 0 1.25rem;
  font-size: 1rem;
  line-height: 1.55;
}

@media (max-width: 1200px) {
  .attributes-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 980px) {
  .attributes-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .attributes-grid { grid-template-columns: 1fr; }
  .attribute-card-visual { min-height: 220px; }
}
@media (max-width: 560px) {
  .attributes-steps { grid-template-columns: 1fr; }
}

.peacemaker-section {
  background: #fff;
  border-top: 1px solid rgba(11, 28, 51, .08);
}
.peacemaker-head { text-align: center; margin-bottom: 1.6rem; }
.peacemaker-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  letter-spacing: .12em;
  color: var(--navy);
  font-weight: 700;
}
.peacemaker-subtitle {
  margin: .45rem 0 0;
  color: var(--navy-soft);
  font-size: 1.08rem;
}
.peacemaker-tagline {
  margin: .55rem 0 0;
  color: var(--navy);
  letter-spacing: .04em;
  font-weight: 600;
}
.peacemaker-intro {
  max-width: 46rem;
  margin: 0 auto 1.5rem;
}
.peacemaker-intro p { margin: 0 0 .85rem; color: var(--ink); }
.peacemaker-contrast {
  max-width: 40rem;
  margin: 0 auto 2rem;
  padding: 1.15rem 1.3rem;
  background: var(--navy);
  color: #f4efe4;
  border: 0;
}
.peacemaker-contrast p { margin: 0; line-height: 1.55; }
.peacemaker-contrast p + p { margin-top: .55rem; }
.peacemaker-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}
.peacemaker-card {
  background: #f7f8fa;
  border: 1px solid rgba(11, 28, 51, .08);
  padding: 1rem 1rem 1.15rem;
  display: grid;
  gap: .85rem;
}
.peacemaker-card-visual {
  min-height: 220px;
  display: grid;
  place-items: center;
  background: #fff;
}
.peacemaker-card-visual img {
  max-height: 240px;
  width: 100%;
  object-fit: contain;
}
.peacemaker-card-body h3 {
  margin: 0 0 .45rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--navy);
}
.peacemaker-card-body p { margin: 0 0 .55rem; font-size: .93rem; }
.peacemaker-meta { color: var(--muted); font-size: .88rem; }
.peacemaker-meta span { color: var(--navy); font-weight: 600; }
.peacemaker-cta {
  display: inline-block;
  width: 100%;
  text-align: center;
  background: var(--navy);
  color: #fff;
  border: 1px solid var(--navy);
  cursor: pointer;
  font: inherit;
}
.peacemaker-cta:hover { background: var(--navy-soft); color: #fff; }
.peacemaker-note {
  max-width: 46rem;
  margin: 2rem auto 0;
  color: var(--muted);
  font-size: .92rem;
}
.peacemaker-note p { margin: 0 0 .75rem; }
.peacemaker-submit {
  background: var(--navy);
  color: #fff;
  border: 1px solid var(--navy);
}
.peacemaker-submit:hover { background: var(--navy-soft); color: #fff; }
@media (max-width: 980px) {
  .peacemaker-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .peacemaker-grid { grid-template-columns: 1fr; }
}
