:root{
  --bg: #f2eee6;
  --ink: #111111;
  --red: #ff3b30; /* close to the flyer red */
  --max: 920px;
}

*{ box-sizing:border-box; }

html,body{
  margin:0;
  padding:0;
  background: var(--bg);
  color: var(--ink);
  font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.page{
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(18px, 3vw, 28px);
  display: grid;
  gap: clamp(16px, 3vw, 26px);
}

.logo{
  display: flex;
  justify-content: center;
}

.logo img{
  width: min(260px, 70vw);
  height: auto;
  display: block;
}

.hero{
  width: 100%;
  display: block;
}

.hero img{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}

.copy{
  text-align: center;
  color: #0b0b0a;
  display: grid;
  gap: clamp(10px, 1.8vw, 16px);
  padding: 6px 0 2px;
}

.line{
  margin:0;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.line--title{
  font-weight: 900;
  font-size: clamp(28px, 5.6vw, 46px);
}

.line--date{
  font-weight: 900;
  font-size: clamp(28px, 6.8vw, 36px);
}

.line--subtitle{
  font-weight: 900;
  font-size: clamp(24px, 5.2vw, 52px);
}

.line--detail{
  font-weight: 800;
  font-size: clamp(18px, 3.4vw, 34px);
  text-transform: none;
  letter-spacing: 0;
}

.footer{
  display:flex;
  justify-content:center;
  padding-bottom: 8px;
}

.dates{
  text-align: center;
  display: grid;
  gap: 12px;
}

.dates h2{
  margin: 0;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: clamp(20px, 3.4vw, 28px);
}

.dates ul{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.dates li{
  font-weight: 800;
  font-size: clamp(18px, 3.6vw, 26px);
  letter-spacing: 0.01em;
}

.btn{
  display:inline-block;
  border: 2px solid rgba(17,17,17,0.22);
  color: rgba(17,17,17,0.86);
  text-decoration:none;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  background: rgba(255,255,255,0.35);
}

.btn:hover{
  border-color: rgba(17,17,17,0.35);
  background: rgba(255,255,255,0.55);
}

@media (prefers-reduced-motion: reduce){
  *{ scroll-behavior:auto !important; }
}
