:root {
  --ink: #11131b;
  --muted: #596272;
  --blue: #123f98;
  --blue-dark: #08245d;
  --yellow: #f2c601;
  --orange: #dd6b2c;
  --paper: #ffffff;
  --soft: #f3f6fb;
  --line: #d9e1ec;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 320px;
}

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

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

.event-page {
  min-height: 100vh;
  padding: clamp(22px, 5vw, 64px);
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 48%, rgba(232, 245, 252, 0.92) 100%),
    var(--paper);
}

.logo-strip {
  display: flex;
  justify-content: center;
  max-width: none;
  margin: calc(clamp(22px, 5vw, 64px) * -1) calc(clamp(22px, 5vw, 64px) * -1) clamp(20px, 3.5vw, 36px);
  padding: clamp(16px, 3vw, 24px) clamp(22px, 5vw, 64px);
  border-bottom: 1px solid var(--line);
  background: #ffffff;
}

.logo-strip img {
  width: clamp(78px, 11vw, 118px);
  height: auto;
}

.event-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--orange);
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Anton, Impact, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 720px;
  margin-bottom: 30px;
  color: var(--blue);
  font-size: clamp(3.5rem, 8.4vw, 7.2rem);
  line-height: 0.93;
}

.event-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 28px;
}

.event-meta div {
  min-height: 132px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.event-meta span,
.details span {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.event-meta strong {
  display: block;
  color: var(--blue-dark);
  font-size: clamp(1.35rem, 2.6vw, 2rem);
  line-height: 1.12;
}

.event-meta small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 700;
}

.intro {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(1rem, 1.7vw, 1.18rem);
  line-height: 1.75;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 15px 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 900;
  text-transform: uppercase;
}

.button.primary {
  color: #ffffff;
  border-color: var(--blue);
  background: var(--blue);
  box-shadow: 0 18px 34px rgba(18, 63, 152, 0.24);
}

.button.secondary {
  color: var(--orange);
  border-color: rgba(221, 107, 44, 0.32);
  background: #ffffff;
}

.event-image {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 24px 64px rgba(8, 28, 76, 0.16);
}

.event-image-mobile {
  display: none;
}

.event-image img {
  width: 100%;
  height: min(72vh, 720px);
  object-fit: cover;
  object-position: center top;
}

.coming-soon {
  max-width: 1180px;
  margin: clamp(28px, 5vw, 56px) auto 0;
  padding: clamp(22px, 4vw, 34px);
  border-radius: 8px;
  color: #ffffff;
  background: var(--blue);
}

.coming-soon .eyebrow {
  color: var(--yellow);
}

.coming-soon h2 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 4.1rem);
  line-height: 0.98;
}

@media (max-width: 900px) {
  .event-hero {
    grid-template-columns: 1fr;
  }

  .event-image-desktop {
    display: none;
  }

  .event-image-mobile {
    display: block;
    margin-bottom: 26px;
  }

  .event-image img {
    height: clamp(240px, 54vw, 480px);
  }

}

@media (max-width: 560px) {
  .event-page {
    padding: 16px;
  }

  h1 {
    font-size: clamp(3rem, 16vw, 4.35rem);
  }

  .event-meta {
    grid-template-columns: 1fr;
  }

  .actions,
  .button {
    width: 100%;
  }
}
