:root {
  --outer-blue: #0C2C48;
  --brand-blue: #103A60;
  --sky-blue: #1E90FF;
  --cta-yellow: #F2EA2E;
  --focus-green: #00DC70;
  --white: #FFFFFF;
  --muted: rgba(255, 255, 255, .78);
}

* { box-sizing: border-box; }
html { min-height: 100%; background: var(--outer-blue); }
body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  background: var(--outer-blue);
  color: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

.page-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 20px;
}

.bio-card {
  width: min(100%, 640px);
  min-height: calc(100vh - 40px);
  display: flex;
  flex-direction: column;
  padding: clamp(28px, 6vw, 52px) clamp(22px, 6vw, 48px) 28px;
  background: var(--brand-blue);
  border: 1px solid rgba(30, 144, 255, .48);
  border-radius: 20px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, .24);
}

.hero { text-align: center; }
.festival-logo {
  display: block;
  width: min(100%, 350px);
  max-height: 210px;
  margin: 0 auto 28px;
  object-fit: contain;
}
.event-info { display: grid; gap: 5px; }
.event-info p { margin: 0; font-size: clamp(.94rem, 2.7vw, 1.05rem); font-weight: 600; letter-spacing: .01em; }
.event-info p:last-child { color: var(--muted); font-weight: 500; }

.cta-list { display: grid; gap: 14px; width: 100%; margin: clamp(34px, 8vw, 54px) 0 30px; }
.button {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  border: 2px solid var(--sky-blue);
  border-radius: 999px;
  color: var(--white);
  background: transparent;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  transition: transform .16s ease, background-color .16s ease, color .16s ease, border-color .16s ease;
}
.button:hover { transform: translateY(-2px); background: var(--sky-blue); color: var(--outer-blue); }
.button--primary { border-color: var(--cta-yellow); background: var(--cta-yellow); color: var(--brand-blue); }
.button--primary:hover { background: #FFF54A; border-color: #FFF54A; color: var(--outer-blue); }
.button:focus-visible, .site-link:focus-visible, .consent-button:focus-visible { outline: 3px solid var(--focus-green); outline-offset: 4px; }

.footer { margin-top: auto; padding-top: 18px; border-top: 1px solid rgba(255, 255, 255, .22); text-align: center; }
.site-link { color: var(--white); font-size: .92rem; font-weight: 700; text-underline-offset: 3px; }
.footer p { margin: 10px 0 0; color: var(--muted); font-size: .83rem; }

.consent-banner {
  position: fixed;
  z-index: 10;
  right: 16px;
  bottom: 16px;
  left: 16px;
  max-width: 580px;
  margin: auto;
  padding: 18px;
  border: 1px solid rgba(30, 144, 255, .65);
  border-radius: 16px;
  background: #081F34;
  box-shadow: 0 16px 40px rgba(0, 0, 0, .35);
}
.consent-banner p { margin: 0 0 14px; font-size: .9rem; line-height: 1.45; }
.consent-actions { display: flex; gap: 10px; justify-content: flex-end; }
.consent-button { min-height: 42px; padding: 8px 16px; border: 1px solid var(--cta-yellow); border-radius: 999px; background: var(--cta-yellow); color: var(--brand-blue); font: inherit; font-weight: 800; cursor: pointer; }
.consent-button--secondary { border-color: var(--sky-blue); background: transparent; color: var(--white); }

@media (max-width: 520px) {
  .page-shell { padding: 14px; }
  .bio-card { min-height: calc(100vh - 28px); border-radius: 16px; }
  .festival-logo { max-height: 165px; margin-bottom: 24px; }
  .consent-actions { flex-direction: column-reverse; }
  .consent-button { width: 100%; }
}

@media (prefers-reduced-motion: reduce) { *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; } }
