:root {
  --teal: #0aa3c4;
  --teal-dark: #087a96;
  --teal-soft: #e7f7fb;
  --ink: #16181c;
  --muted: #5f6770;
  --line: #e6eaee;
  --paper: #f5f7f9;
  --white: #ffffff;
  --max: 1180px;
  --header: 84px;
  --serif: "Newsreader", "Times New Roman", serif;
  --sans: "Outfit", "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

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

button {
  font: inherit;
  cursor: pointer;
  background: none;
  border: 0;
}

.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--teal-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.kicker::before {
  content: "";
  width: 18px;
  height: 2px;
  background: var(--teal);
}

.dek {
  max-width: 40rem;
  color: var(--muted);
  font-size: 1.12rem;
}

h1,
h2,
h3,
.serif {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.12;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  position: relative;
  min-height: var(--header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 16px 24px;
}

.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.brand img {
  height: 58px;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--muted);
}

.nav a:hover,
.nav a.is-active {
  color: var(--ink);
}

.issue-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal-dark);
}

.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border: 1px solid var(--line);
  background: var(--white);
  z-index: 2;
  touch-action: manipulation;
}

.menu-btn span,
.menu-btn span::before,
.menu-btn span::after {
  display: block;
  width: 18px;
  height: 1.5px;
  margin: 0 auto;
  background: var(--ink);
  position: relative;
  transition: transform 0.2s var(--ease), top 0.2s var(--ease), background 0.2s var(--ease);
}

.menu-btn span::before,
.menu-btn span::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-btn span::before {
  top: -6px;
}

.menu-btn span::after {
  top: 6px;
}

.menu-btn.is-open span {
  background: transparent;
}

.menu-btn.is-open span::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-btn.is-open span::after {
  top: 0;
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 78vh;
  color: #fff;
  overflow: hidden;
  background: #0b1d24;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 20, 26, 0.15) 0%, rgba(8, 20, 26, 0.82) 78%);
}

.hero-copy {
  position: relative;
  z-index: 1;
  min-height: 78vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 48px 0 64px;
}

.hero .kicker {
  color: #9ee3f0;
}

.hero .kicker::before {
  background: #9ee3f0;
}

.hero h1 {
  max-width: 16ch;
  margin: 14px 0 18px;
  font-size: clamp(3rem, 7vw, 6.2rem);
  color: #fff;
}

.hero p {
  max-width: 42rem;
  margin: 0 0 28px;
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.86);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  background: var(--teal);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
}

.btn:hover {
  background: var(--teal-dark);
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn-ghost:hover {
  background: #fff;
  color: var(--ink);
}

.btn-line {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}

.btn-line:hover {
  background: var(--ink);
  color: #fff;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.section {
  padding: 88px 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
}

.section-head h2 {
  margin: 8px 0 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.link-more {
  color: var(--teal-dark);
  font-weight: 600;
  font-size: 0.92rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1.45fr 0.9fr;
  gap: 28px;
}

.story-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.story-card .media {
  position: relative;
  overflow: hidden;
  background: #d7dee4;
  aspect-ratio: 16 / 10;
}

.story-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.story-card:hover img {
  transform: scale(1.04);
}

.cat {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--teal-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.story-card .media + .cat {
  margin-top: 16px;
}

.story-card h3 {
  margin: 0 0 10px;
  font-size: 1.7rem;
}

.story-card:hover h3 {
  color: var(--teal-dark);
}

.story-card p,
.meta {
  color: var(--muted);
}

.meta {
  margin-top: auto;
  padding-top: 14px;
  font-size: 0.84rem;
}

.lead-card .media {
  aspect-ratio: 16 / 9;
}

.lead-card h3 {
  margin-top: 18px;
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.side-stack {
  display: grid;
  gap: 22px;
}

.side-card {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 16px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.side-card .media {
  aspect-ratio: 1;
}

.side-card h3 {
  font-size: 1.18rem;
}

.strip {
  background: var(--ink);
  color: #fff;
  padding: 28px 0;
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.strip b {
  display: block;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
  color: var(--teal);
}

.strip span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.about {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: start;
}

.about-sticky {
  position: sticky;
  top: calc(var(--header) + 28px);
}

.about-sticky h2 {
  margin: 10px 0 18px;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
}

.prose p {
  color: var(--muted);
}

.prose p + p {
  margin-top: 16px;
}

.values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 32px;
}

.value {
  padding: 22px 20px;
  background: var(--white);
}

.value h3 {
  margin: 0 0 8px;
  font-size: 1.2rem;
}

.value p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

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

.news-grid .story-card h3 {
  font-size: 1.35rem;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 32px;
}

.filter {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 600;
}

.filter.is-on,
.filter:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.page-hero {
  padding: 56px 0 12px;
}

.page-hero h1 {
  margin: 10px 0 12px;
  font-size: clamp(2.6rem, 6vw, 4.8rem);
}

.article {
  padding-bottom: 80px;
}

.article-hero {
  margin-bottom: 36px;
}

.article-hero img {
  width: 100%;
  height: min(68vh, 720px);
  object-fit: cover;
}

.article-body {
  width: min(760px, calc(100% - 40px));
  margin: 0 auto;
}

.article-body h1 {
  margin: 12px 0 18px;
  font-size: clamp(2.3rem, 5vw, 3.8rem);
}

.article-body .dek {
  font-size: 1.2rem;
}

.article-body .meta {
  margin: 8px 0 28px;
}

.article-body .content p {
  margin: 0 0 18px;
  font-size: 1.06rem;
}

.article-body .content p:first-of-type::first-letter {
  float: left;
  margin: 8px 10px 0 0;
  font-family: var(--serif);
  font-size: 4.4rem;
  line-height: 0.8;
  color: var(--teal-dark);
}

.source {
  margin-top: 32px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

.source a {
  color: var(--teal-dark);
  font-weight: 600;
}

.related {
  padding-top: 0;
}

.cta {
  background: var(--teal-soft);
}

.exhibitors {
  background: var(--paper);
}

.exhibitor-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.exhibitor-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  min-height: 100%;
}

.exhibitor-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px 18px;
  border-bottom: 1px solid var(--line);
}

.exhibitor-logo {
  font-family: var(--sans);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
}

.exhibitor-logo--braun {
  color: #003da5;
  font-size: 1.35rem;
}

.exhibitor-logo--mariani {
  color: #c8102e;
  font-size: 1.45rem;
  letter-spacing: 0.04em;
}

.exhibitor-stand {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--teal-dark);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.stand-maps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 14px 16px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.stand-maps a {
  display: block;
  min-width: 0;
}

.stand-maps figure {
  margin: 0;
  background: var(--white);
  border: 1px solid var(--line);
}

.stand-maps img {
  width: 100%;
  height: 148px;
  object-fit: contain;
  background: #f8fafb;
}

.stand-maps figcaption {
  padding: 8px 10px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stand-maps a:hover figure {
  border-color: var(--teal);
}

.exhibitor-card-body {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 22px 24px 24px;
  flex: 1;
}

.exhibitor-card h3 {
  margin: 0 0 6px;
  font-size: 1.7rem;
}

.exhibitor-card .location {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.exhibitor-card .lede {
  margin: 0;
  color: var(--ink);
}

.company-data {
  margin: 0;
}

.company-data div {
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 12px;
  padding: 9px 0;
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
}

.company-data dt {
  color: var(--muted);
  font-weight: 600;
}

.company-data dd {
  margin: 0;
}

.company-data a {
  color: var(--teal-dark);
  font-weight: 600;
}

.exhibitor-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.exhibitor-tags span {
  padding: 6px 10px;
  background: var(--teal-soft);
  color: var(--teal-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.exhibitor-card .link-more {
  margin-top: auto;
}

#about,
#exhibitors {
  scroll-margin-top: calc(var(--header) + 8px);
}

.cta-box {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

.cta h2 {
  margin: 8px 0 12px;
  font-size: clamp(2rem, 4vw, 3rem);
}

.cta p {
  margin: 0;
  max-width: 36rem;
  color: var(--muted);
}

.site-footer {
  padding: 48px 0 28px;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.78);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer h3 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 1.2rem;
}

.site-footer .brand img {
  height: 52px;
  width: auto;
  margin-bottom: 12px;
}

.site-footer a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 18px;
  font-size: 0.85rem;
}

.hidden {
  display: none !important;
}

@media (prefers-reduced-motion: reduce) {
  .story-card img {
    transition: none;
  }
}

@media (max-width: 960px) {
  .about-sticky {
    position: static;
  }

  .feature-grid,
  .about,
  .strip-grid,
  .footer-grid,
  .cta-box,
  .exhibitor-grid {
    grid-template-columns: 1fr;
  }

  .news-grid {
    grid-template-columns: 1fr 1fr;
  }

  .side-stack {
    grid-template-columns: 1fr;
  }

  .brand {
    margin-right: auto;
  }

  .header-inner {
    flex-wrap: wrap;
  }

  .nav {
    display: none;
    position: static;
    order: 5;
    flex-basis: 100%;
    width: 100%;
    padding: 8px 0 16px;
    background: transparent;
    border-bottom: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

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

  .nav a {
    display: block;
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
  }

  .menu-btn {
    display: grid;
    place-items: center;
  }

  .issue-pill {
    display: none;
  }

  .values {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .wrap {
    width: min(var(--max), calc(100% - 28px));
  }

  .side-card {
    grid-template-columns: 96px 1fr;
  }

  .hero h1 {
    font-size: 2.6rem;
  }

  .section {
    padding: 64px 0;
  }

  .news-grid {
    grid-template-columns: 1fr;
  }

  .company-data div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .exhibitor-card-head,
  .exhibitor-card-body {
    padding-left: 18px;
    padding-right: 18px;
  }

  .stand-maps {
    padding: 12px;
  }

  .stand-maps img {
    height: 118px;
  }
}
