:root {
  --cream: #F3E6C8;
  --navy: #0D2B52;
  --paper: #f6ead0;
  --line: rgba(13, 43, 82, .58);
  --soft: rgba(13, 43, 82, .72);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--navy);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .18;
  background:
    radial-gradient(circle at 12% 18%, rgba(13,43,82,.10) 0 1px, transparent 1.4px),
    radial-gradient(circle at 74% 64%, rgba(13,43,82,.08) 0 1px, transparent 1.3px),
    radial-gradient(circle at 38% 82%, rgba(255,255,255,.65) 0 1px, transparent 1.5px);
  background-size: 7px 7px, 11px 11px, 13px 13px;
  mix-blend-mode: multiply;
}

a { color: inherit; text-decoration: none; }
.site-shell {
  width: min(1120px, calc(100% - 64px));
  margin: 0 auto;
  padding: 44px 0 34px;
}

.site-header {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 26px;
  min-height: 38px;
}
.wordmark {
  font-size: 20px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -.04em;
}
nav { display: flex; gap: 30px; }
nav a, .header-star {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
}
.header-star { font-size: 24px; line-height: .8; letter-spacing: 0; }
.rule { height: 1px; background: var(--line); }

.hero {
  text-align: center;
  padding: 42px 0 52px;
}
.crest-wrap {
  width: min(560px, 72vw);
  margin: 0 auto 22px;
}
.crest {
  display: block;
  width: 100%;
  height: auto;
}
.eyebrow, .genres, .section-number, .muted, .event-date, .event-place, .contact-label, .email {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .23em;
}
.eyebrow { margin: 6px 0 20px; }
h1 {
  margin: 0;
  font-size: clamp(82px, 12vw, 158px);
  line-height: .76;
  letter-spacing: -.075em;
  font-weight: 900;
}
h1 span { display: block; }
h1 span:last-child { margin-left: -.02em; }
.genres { margin: 30px 0 0; }

.section {
  min-height: 240px;
  padding: 42px 0;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 30px;
}
.section-number { margin: 0 0 10px; }
h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 54px);
  line-height: .95;
  letter-spacing: -.045em;
  font-weight: 900;
}
.muted { margin: 16px 0 24px; color: var(--soft); }
.button {
  display: inline-block;
  border: 1px solid var(--navy);
  padding: 12px 17px 11px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .18em;
}
.button-disabled { opacity: .75; }
.event-date { margin: 18px 0 7px; }
.event-place { margin: 0; line-height: 1.65; }
.section-mark { font-size: 34px; align-self: start; padding-top: 5px; }
.contact-label { margin: 18px 0 8px; }
.email { display: inline-block; letter-spacing: .13em; }
.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 30px;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .18em;
}

@media (max-width: 700px) {
  .site-shell { width: calc(100% - 40px); padding: 30px 0 24px; }
  .site-header { gap: 15px; }
  .wordmark { font-size: 17px; }
  nav { gap: 16px; }
  nav a { font-size: 9px; letter-spacing: .13em; }
  .header-star { font-size: 21px; }
  .hero { padding: 26px 0 30px; }
  .crest-wrap { width: min(78vw, 270px); margin-bottom: 16px; }
  .eyebrow { font-size: 9px; letter-spacing: .19em; margin: 2px 0 17px; }
  h1 { font-size: clamp(68px, 20vw, 94px); line-height: .78; }
  .genres { font-size: 9px; line-height: 1.5; letter-spacing: .15em; margin: 20px 0 0; }
  .section { min-height: 0; padding: 34px 0 38px; }
  .section-number, .muted, .event-date, .event-place, .contact-label, .email { font-size: 9px; }
  h2 { font-size: 34px; }
  .section-mark { font-size: 27px; }
  .site-footer { flex-direction: column; font-size: 8px; gap: 9px; }
}

@media (max-width: 390px) {
  .site-shell { width: calc(100% - 32px); }
  .site-header { grid-template-columns: 1fr auto auto; }
  .wordmark { font-size: 16px; }
  nav { gap: 12px; }
  nav a { font-size: 8px; }
  .crest-wrap { width: 250px; max-width: 80vw; }
  h1 { font-size: 68px; }
  .genres { font-size: 8px; }
}
