:root {
  --bg: #f4f1eb;
  --surface: #ffffff;
  --surface-alt: #f8f5ef;
  --text: #1f1f1f;
  --muted: #666055;
  --line: #d8d1c4;
  --line-strong: #b7ac99;
  --brand: #b35c1e;
  --brand-dark: #8e4613;
  --navy: #18324a;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
video {
  max-width: 100%;
}

.page-shell {
  width: min(1180px, calc(100% - 40px));
  min-height: 100vh;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.home-shell {
  width: 100%;
}

.site-header {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 10px 64px 10px 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.98);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 320px;
}

.brand-logo {
  width: 136px;
  height: auto;
  display: block;
  flex-shrink: 0;
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  font-size: 1.16rem;
  font-family: "Segoe UI", Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.96rem;
  font-family: "Segoe UI", Arial, sans-serif;
  font-weight: 600;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: white;
  color: var(--navy);
  padding: 10px 14px;
  font: 600 0.92rem "Segoe UI", Arial, sans-serif;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-right: 18px;
}

.site-nav a {
  position: relative;
  font: 500 0.98rem "Segoe UI", Arial, sans-serif;
  color: #4f5b66;
  padding-bottom: 6px;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--brand-dark);
}

.site-nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--brand-dark);
}

.hero {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  position: relative;
  min-height: calc(100vh - 72px);
  padding: 0 32px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #202a33;
}

.hero-video,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(16, 22, 28, 0.92) 0%, rgba(16, 22, 28, 0.78) 28%, rgba(16, 22, 28, 0.45) 40%, rgba(16, 22, 28, 0.32) 80%),
    linear-gradient(180deg, rgba(8, 12, 16, 0.18), rgba(8, 12, 16, 0.48));
}

.about-hero {
  min-height: 640px;
  background:
    linear-gradient(90deg, rgba(16, 22, 28, 0.98) 0%, rgba(16, 22, 28, 0.9) 46%, rgba(16, 22, 28, 0.74) 100%),
    linear-gradient(135deg, #14212c 0%, #1d2e3d 52%, #40352f 100%);
}

.subpage-hero {
  min-height: 460px;
  padding-top: 64px;
  padding-bottom: 64px;
}

.subpage-hero .hero-copy {
  margin: 0 auto;
}

.subpage-hero h1 {
  max-width: 14ch;
  font-size: clamp(2.5rem, 4.8vw, 4.4rem);
}

.page-hero-contact h1 {
  max-width: 18ch;
  font-size: clamp(2.35rem, 4.3vw, 4rem);
}

.hero-grid,
.hero-glow,
.hero-visuals,
.stat-showcase {
  display: none;
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(100%, 760px);
  margin: 0 auto;
}

.eyebrow,
.label {
  margin: 0;
  color: #d49461;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font: 600 0.78rem "Segoe UI", Arial, sans-serif;
}

.kicker {
  margin: 10px 0 0;
  color: #ffffff;
  font: 500 1.02rem "Segoe UI", Arial, sans-serif;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  color: var(--navy);
}

.hero h1 {
  margin: 18px 0 16px;
  max-width: 10ch;
  color: #ffffff;
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  line-height: 0.98;
}

h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.7rem);
  line-height: 1.1;
}

h3 {
  font-size: 1.18rem;
  line-height: 1.3;
}

.hero-text,
.two-column p,
.section-copy,
.site-footer p,
.cta-section p,
.content-card p,
.benefit-card p,
.content-card li {
  color: var(--muted);
  line-height: 1.8;
}

.hero-text {
  max-width: 60ch;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 20px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid var(--brand);
  font: 600 0.94rem "Segoe UI", Arial, sans-serif;
  letter-spacing: 0.02em;
}

.button-primary {
  background: var(--brand);
  color: white;
}

.button-secondary {
  background: transparent;
  color: white;
  border-color: rgba(255, 255, 255, 0.45);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 18px;
}

.hero-meta span {
  color: rgba(255, 255, 255, 0.86);
  font: 500 0.9rem "Segoe UI", Arial, sans-serif;
}

.hero-meta span::after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 1px;
  margin-left: 16px;
  vertical-align: middle;
  background: rgba(255, 255, 255, 0.3);
}

.hero-meta span:last-child::after {
  display: none;
}

.event-ribbon {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: var(--navy);
  color: #e9e2d8;
}

.ribbon-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 14px 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  align-items: center;
}

.ribbon-inner span {
  font: 600 0.84rem "Segoe UI", Arial, sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.ribbon-inner span::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  margin-right: 10px;
  vertical-align: middle;
  background: rgba(255, 255, 255, 0.32);
}

.main-content {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.image-panel {
  margin: 0;
  background: var(--surface-alt);
  border: 1px solid var(--line);
}

.image-panel img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  display: block;
  background:
    linear-gradient(135deg, rgba(24, 50, 74, 0.86), rgba(179, 92, 30, 0.74)),
    linear-gradient(180deg, #d8d1c4, #f8f5ef);
}

.image-panel figcaption {
  padding: 14px 16px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font: 500 0.9rem "Segoe UI", Arial, sans-serif;
}

.split-section {
  padding-top: 44px;
}

.split-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 34px;
  align-items: center;
}

.split-section-reverse .split-layout {
  grid-template-columns: 0.95fr 1.05fr;
}

.split-copy p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.85;
}

.split-copy p:last-child {
  margin-bottom: 0;
}

.organizer-section {
  padding: 78px 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: 54px;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(248, 245, 239, 0.98), rgba(232, 222, 207, 0.92)),
    linear-gradient(135deg, rgba(179, 92, 30, 0.13), rgba(24, 50, 74, 0.14));
}

.organizer-copy {
  max-width: 760px;
  text-align: left;
  justify-self: start;
}

.organizer-copy h2 {
  margin-top: 12px;
}

.section-rule {
  display: block;
  width: 86px;
  height: 4px;
  margin: 26px 0 30px;
  background: var(--brand);
}

.organizer-copy p:not(.eyebrow) {
  margin: 0 0 22px;
  color: #3f3f3f;
  font-size: 1.06rem;
  line-height: 1.9;
}

.organizer-copy p:last-child {
  margin-bottom: 0;
}

.organizer-card {
  min-height: 330px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 26px;
  background: var(--navy);
  color: #ffffff;
  justify-self: end;
  width: min(100%, 360px);
}

.organizer-logo-panel {
  min-height: 200px;
  padding: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
}

.organizer-logo-panel img {
  width: min(100%, 260px);
}

.organizer-wordmark {
  text-align: center;
  font-family: "Segoe UI", Arial, sans-serif;
}

.organizer-wordmark strong,
.organizer-wordmark span {
  display: inline-block;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.organizer-wordmark strong {
  color: #1f4f9a;
}

.organizer-wordmark span {
  margin-left: 6px;
  color: var(--brand);
}

.organizer-wordmark small {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
}

.organizer-card span {
  align-self: flex-end;
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  font: 600 0.9rem "Segoe UI", Arial, sans-serif;
}

.image-panel-single img {
  min-height: 300px;
}

.section-heading-compact {
  margin-bottom: 18px;
}

.objective-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px 28px;
}

.objective-item {
  padding-left: 18px;
  border-left: 2px solid var(--brand);
}

.objective-item h3 {
  margin-bottom: 10px;
}

.objective-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.section.objectives-bg-section {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 72px 0;
  background:
    linear-gradient(90deg, rgba(244, 241, 235, 0.72), rgba(244, 241, 235, 0.46)),
    linear-gradient(135deg, rgba(24, 50, 74, 0.28), rgba(142, 70, 19, 0.18)),
    url("../assets/fair-numbers-bg.png") center / cover no-repeat;
}

.objectives-bg-section > * {
  width: min(1180px, calc(100% - 40px));
  margin-left: auto;
  margin-right: auto;
}

.section,
.cta-section,
.page-hero,
.contact-panel,
.info-card,
.content-card,
.benefit-card,
.visit-strip,
.site-footer {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.section,
.cta-section,
.page-hero,
.visit-strip,
.contact-panel {
  padding: 64px 0;
}

.fair-numbers-section {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 72px max(20px, calc((100vw - 1180px) / 2)) 68px;
  background:
    linear-gradient(90deg, rgba(244, 241, 235, 0.72), rgba(244, 241, 235, 0.46)),
    linear-gradient(135deg, rgba(24, 50, 74, 0.28), rgba(142, 70, 19, 0.18)),
    url("../assets/fair-numbers-bg.png") center / cover no-repeat;
}

.page-hero-banner {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  min-height: 420px;
  padding: 0 32px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, #233547 0%, #1c2b39 46%, #3a312d 100%);
}

.page-hero-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  opacity: 0.62;
}

.page-hero-banner::after {
  content: "";
  position: absolute;
  left: 32px;
  right: 32px;
  bottom: 22px;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0.08));
}

.page-hero-banner > * {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: block;
  text-align: center;
}

.page-hero-banner h1 {
  margin: 0 auto 16px;
  max-width: 16ch;
  color: white;
  font-size: clamp(2.6rem, 4.8vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  text-align: center;
}

.page-hero-banner p:last-child {
  max-width: 62ch;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.98rem;
  line-height: 1.72;
  margin: 0 auto;
  text-align: center;
}

.page-hero-about::before {
  background-image:
    linear-gradient(135deg, rgba(24, 50, 74, 0.18), rgba(179, 92, 30, 0.16));
}

.page-hero-conference::before {
  background-image:
    linear-gradient(135deg, rgba(24, 50, 74, 0.18), rgba(179, 92, 30, 0.16));
}

.page-hero-visitors::before {
  background-image:
    linear-gradient(135deg, rgba(24, 50, 74, 0.18), rgba(179, 92, 30, 0.16));
}

.page-hero-contact::before {
  background-image:
    linear-gradient(135deg, rgba(24, 50, 74, 0.18), rgba(179, 92, 30, 0.16));
}

.section-heading {
  margin-bottom: 22px;
}

.section-heading h2 {
  margin-top: 10px;
}

.two-column,
.sponsor-grid,
.feature-grid,
.stats-grid,
.intro-grid,
.content-grid,
.benefits-grid {
  display: grid;
  gap: 22px;
}

.two-column,
.feature-grid,
.content-grid,
.benefits-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.sponsorship-card-action {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 18px;
}

.stats-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.sponsor-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.intro-grid {
  grid-template-columns: 1.3fr 0.7fr;
}

.feature-card,
.sponsor-card,
.content-card,
.benefit-card,
.info-card {
  padding: 0;
}

.feature-card,
.sponsor-card,
.content-card,
.benefit-card {
  padding-bottom: 18px;
}

.feature-card h3,
.sponsor-card h3,
.content-card h2,
.benefit-card h2 {
  margin-bottom: 10px;
}

.content-card ul {
  margin: 0;
  padding-left: 18px;
}

.tag-grid,
.visitor-tags,
.partner-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 26px;
}

.partner-success-section {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 48px max(22px, calc((100vw - 1320px) / 2));
  background: var(--bg);
}

.partner-success-section .section-heading {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 24px;
}

.partner-success-section h2 {
  color: var(--navy);
}

.partner-success-section .section-copy {
  max-width: 74ch;
  color: var(--muted);
}

.partner-success-section .partner-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.partner-success-section .partner-grid img {
  width: 112px;
  height: 104px;
  padding: 14px;
  object-fit: contain;
  display: block;
  background: rgba(255, 255, 255, 0.96);
}

.conference-focus {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 70px max(24px, calc((100vw - 1180px) / 2));
  background:
    linear-gradient(135deg, rgba(244, 241, 235, 0.96), rgba(236, 230, 219, 0.92)),
    linear-gradient(90deg, rgba(24, 50, 74, 0.08), rgba(181, 94, 27, 0.08));
}

.conference-focus-intro {
  max-width: 860px;
  margin-bottom: 30px;
}

.conference-focus-intro h2 {
  margin: 10px 0 14px;
  max-width: 16ch;
  color: var(--navy);
  font-size: clamp(2.35rem, 4vw, 4.5rem);
  line-height: 0.98;
}

.conference-focus-intro p:last-child {
  max-width: 66ch;
  color: var(--muted);
  line-height: 1.8;
}

.conference-focus-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 20px;
  align-items: stretch;
}

.focus-panel {
  padding: 30px;
  border-radius: 8px;
}

.focus-panel h3 {
  margin: 8px 0 22px;
  font-size: clamp(1.55rem, 2.2vw, 2.3rem);
  line-height: 1.08;
}

.focus-panel-light {
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(24, 50, 74, 0.12);
}

.focus-panel-light h3 {
  color: var(--navy);
}

.focus-panel-dark {
  background:
    linear-gradient(135deg, rgba(24, 50, 74, 0.98), rgba(29, 47, 64, 0.96));
  color: white;
}

.focus-panel-dark h3,
.focus-panel-dark .eyebrow {
  color: white;
}

.focus-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.focus-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: center;
  min-height: 58px;
  padding: 12px 14px;
  background: rgba(244, 241, 235, 0.72);
  border-left: 3px solid var(--brand);
}

.focus-list span {
  color: var(--brand);
  font: 700 0.8rem "Segoe UI", Arial, sans-serif;
  letter-spacing: 0.08em;
}

.focus-list strong {
  color: var(--text);
  font: 700 0.95rem "Segoe UI", Arial, sans-serif;
  line-height: 1.35;
}

.focus-pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.focus-pill-grid span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  font: 700 0.92rem "Segoe UI", Arial, sans-serif;
}

.tag-grid span,
.visitor-tags span,
.partner-grid span {
  padding: 0;
  border: 0;
  background: transparent;
  border-radius: 0;
  color: var(--text);
  font: 500 0.96rem "Segoe UI", Arial, sans-serif;
}

.tag-grid span::before,
.visitor-tags span::before,
.partner-grid span::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 10px;
  background: var(--brand);
}

.sector-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px 28px;
}

.sector-item {
  padding-top: 14px;
  border-top: 2px solid var(--brand);
}

.sector-index {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--brand);
  font: 700 0.82rem "Segoe UI", Arial, sans-serif;
  letter-spacing: 0.14em;
}

.sector-item h3 {
  margin-bottom: 10px;
}

.sector-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.gallery-strip {
  border-left: 2px solid var(--line);
  padding-left: 24px;
  display: grid;
  gap: 18px;
}

.gallery-card {
  min-height: auto;
  display: block;
  padding: 0;
  background: transparent;
}

.gallery-card span {
  display: block;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font: 600 0.75rem "Segoe UI", Arial, sans-serif;
}

.gallery-card strong {
  display: block;
  margin-top: 6px;
  font: 700 1.02rem Georgia, "Times New Roman", serif;
  color: var(--navy);
}

.stat-card {
  padding: 0 18px 0 0;
  border-right: 1px solid var(--line);
}

.stat-card:last-child {
  border-right: 0;
}

.stat-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--brand-dark);
  font-size: 2.8rem;
  line-height: 1;
}

.spotlight-card {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 28px;
  align-items: start;
}

.spotlight-badge {
  border-left: 3px solid var(--brand);
  padding-left: 18px;
}

.spotlight-badge span {
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font: 600 0.76rem "Segoe UI", Arial, sans-serif;
}

.spotlight-badge strong {
  display: block;
  margin-top: 8px;
  color: var(--navy);
  font-size: 1.8rem;
}

.cta-section {
  width: 100vw;
  margin: 24px calc(50% - 50vw) 0;
  padding: 58px max(24px, calc((100vw - 1180px) / 2));
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 34px;
  color: white;
  background:
    linear-gradient(90deg, rgba(24, 50, 74, 0.96), rgba(31, 42, 51, 0.94)),
    linear-gradient(135deg, rgba(179, 92, 30, 0.34), rgba(24, 50, 74, 0.18));
  border-bottom: 0;
}

.cta-section h2 {
  color: white;
}

.cta-section .eyebrow {
  color: #e1a36f;
}

.cta-section p {
  max-width: 62ch;
  color: rgba(255, 255, 255, 0.84);
}

.cta-section .cta-actions {
  margin-bottom: 0;
}

.cta-section .button-secondary {
  color: white;
  border-color: rgba(255, 255, 255, 0.48);
}

.about-cta-section {
  margin-top: 0;
}

.site-footer {
  width: 100vw;
  margin: auto calc(50% - 50vw) 0;
  padding: 64px max(24px, calc((100vw - 1180px) / 2)) 22px;
  color: #ffffff;
  font: 500 0.92rem "Segoe UI", Arial, sans-serif;
  background: #151211;
}

.home-shell > .site-footer {
  width: 100vw;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(320px, 1.35fr) repeat(2, minmax(170px, 0.7fr));
  column-gap: 64px;
  row-gap: 18px;
  align-items: start;
}

.footer-brand img {
  width: 230px;
  height: auto;
  display: block;
  margin-bottom: 22px;
}

.footer-brand p {
  max-width: 42ch;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.8;
}

.footer-contact {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-legal {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 18px;
  margin-top: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.84rem;
  letter-spacing: 0.04em;
  text-align: center;
}

.footer-links {
  display: grid;
  gap: 14px;
}

.footer-links h2 {
  margin: 0 0 12px;
  color: #ffffff;
  font: 700 1.45rem Georgia, "Times New Roman", serif;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.66);
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-links a::before {
  content: "<";
  margin-right: 9px;
  color: var(--brand);
}

.footer-links a:hover {
  color: #ffffff;
  transform: translateX(4px);
}

.site-footer p {
  margin: 0;
}

@media (max-width: 900px) {
  .site-header {
    padding: 10px 24px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 24px;
    margin-right: 0;
    background: #fff;
  }

  .site-nav.is-open {
    display: flex;
  }

  .hero {
    min-height: auto;
    padding: 44px 24px 48px;
  }

  .subpage-hero {
    min-height: 360px;
  }

  .page-hero-banner {
    min-height: 360px;
    padding: 0 24px;
  }

  .page-hero-banner::after {
    left: 24px;
    right: 24px;
    bottom: 26px;
  }

  .page-hero-banner > * {
    width: min(100% - 24px, 1180px);
  }

  .two-column,
  .feature-grid,
  .stats-grid,
  .sponsor-grid,
  .intro-grid,
  .content-grid,
  .benefits-grid,
  .split-layout,
  .tag-grid,
  .visitor-tags,
  .partner-grid,
  .sector-grid,
  .objective-grid,
  .conference-focus-layout,
  .focus-list,
  .spotlight-card,
  .cta-section,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .conference-focus {
    padding: 58px max(24px, calc((100vw - 1180px) / 2));
  }

  .conference-focus-intro h2 {
    max-width: 18ch;
  }

  .cta-section {
    flex-direction: column;
    padding: 52px max(24px, calc((100vw - 1180px) / 2));
  }

  .footer-inner {
    grid-template-columns: minmax(260px, 1fr) repeat(2, minmax(140px, 0.7fr));
    column-gap: 34px;
    row-gap: 18px;
  }

  .sponsorship-card-action .button {
    white-space: normal;
  }

  .stat-card {
    border-right: 0;
    padding: 0 0 16px;
  }

  .main-content,
  .page-shell {
    width: min(100% - 24px, 1180px);
  }

  .organizer-section {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 56px 0;
  }

  .organizer-card {
    min-height: 340px;
    padding: 28px;
    justify-self: start;
  }

  .organizer-logo-panel {
    min-height: 220px;
  }

  .ribbon-inner {
    width: min(100% - 24px, 1180px);
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    width: 144px;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 10px 16px;
  }

  .brand-logo {
    width: 112px;
  }

  .hero {
    padding: 36px 18px 40px;
  }

  .subpage-hero {
    min-height: 320px;
  }

  .section,
  .cta-section,
  .visit-strip,
  .contact-panel {
    padding: 48px 0;
  }

  .conference-focus {
    padding: 46px 18px;
  }

  .conference-focus-intro {
    margin-bottom: 22px;
  }

  .conference-focus-intro h2 {
    font-size: clamp(2rem, 12vw, 3rem);
  }

  .focus-panel {
    padding: 22px;
  }

  .focus-list li {
    grid-template-columns: 36px 1fr;
    min-height: 54px;
    padding: 10px 12px;
  }

  .focus-pill-grid span {
    width: 100%;
  }

  .cta-section {
    padding: 48px max(18px, calc((100vw - 1180px) / 2));
  }

  .site-footer {
    padding-top: 48px;
    padding-bottom: 18px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    row-gap: 26px;
  }

  .partner-success-section {
    padding: 42px 14px;
  }

  .partner-success-section .section-heading {
    width: 100%;
  }

  .partner-success-section .partner-grid img {
    width: 104px;
    height: 96px;
    padding: 12px;
  }

  .fair-numbers-section {
    padding: 56px max(12px, calc((100vw - 1180px) / 2)) 52px;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(2.2rem, 10vw, 3.5rem);
  }

  .page-hero-banner {
    min-height: 320px;
    padding: 0 18px;
  }

  .page-hero-banner h1 {
    max-width: none;
    font-size: clamp(2.1rem, 8vw, 3.1rem);
  }

  .page-hero-banner p:last-child {
    margin-top: 8px;
    font-size: 0.92rem;
  }

  .page-hero-banner::after {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .page-hero-banner > * {
    width: min(100% - 20px, 1180px);
  }

  .ribbon-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 18px;
  }

  .ribbon-inner span {
    font-size: 0.76rem;
  }
}
