:root{
  --red:#e1222d;
  --red-dark:#b5121c;
  --black:#09090b;
  --cream:#f3efe9;
  --ink:#111216;
  --muted:#55514d;
  --line:#d6d0c9;
  --panel:#16171b;
}

*{box-sizing:border-box}
html,body{margin:0;min-height:100%}
body{
  background:var(--cream);
  color:var(--ink);
  font-family:Inter,Arial,Helvetica,sans-serif;
}
a{color:inherit;text-decoration:none}
img{display:block;max-width:100%}

.site-header{
  min-height:84px;
  padding:16px clamp(18px,4vw,50px);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  background:var(--black);
  color:#fff;
}
.logo img{width:160px}
.top-nav{display:flex;align-items:center;gap:14px;flex-wrap:wrap}
.nav-link,.nav-button{
  min-height:44px;
  padding:0 18px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  font-size:12px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.08em;
}
.nav-link{border:1px solid rgba(255,255,255,.24)}
.nav-button{background:linear-gradient(180deg,var(--red),var(--red-dark))}

.hero-layout{
  max-width:1600px;
  margin:0 auto;
  padding:28px clamp(18px,3.2vw,42px) 36px;
  display:grid;
  grid-template-columns:minmax(340px, .86fr) minmax(420px, 1.14fr);
  gap:28px;
  align-items:stretch;
}

.copy-panel{
  padding:clamp(28px,4vw,56px);
  display:flex;
  flex-direction:column;
  justify-content:center;
  background:transparent;
}

.kicker{
  margin:0 0 18px;
  color:var(--red);
  font-size:12px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.18em;
}

h1{
  margin:0;
  font:800 clamp(46px,5.3vw,82px)/.93 "Barlow Condensed",Arial,sans-serif;
  text-transform:uppercase;
  max-width:620px;
}

.intro{
  margin:22px 0 0;
  max-width:620px;
  color:var(--muted);
  font-size:17px;
  line-height:1.7;
}

.event-box{
  margin-top:30px;
  max-width:530px;
  padding:20px 22px;
  border:1px solid var(--line);
  border-left:4px solid var(--red);
  background:rgba(255,255,255,.54);
  display:grid;
  gap:6px;
}
.place{
  font:800 clamp(28px,3vw,40px)/.95 "Barlow Condensed",Arial,sans-serif;
  text-transform:uppercase;
}
.date{
  font-size:13px;
  letter-spacing:.1em;
  text-transform:uppercase;
}

.lineup{
  margin:20px 0 0;
  color:#6a6561;
  font-size:13px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.08em;
}

.buttons{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:30px;
}
.button{
  min-height:52px;
  padding:0 22px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:8px;
  font-size:12px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.08em;
  text-align:center;
}
.button.primary{
  color:#fff;
  background:linear-gradient(180deg,var(--red),var(--red-dark));
  box-shadow:0 14px 26px rgba(225,34,45,.18);
}
.button.secondary{
  border:1px solid #9e9892;
  color:var(--ink);
  background:transparent;
}

.visual-panel{
  display:flex;
  flex-direction:column;
  gap:14px;
}

.image-frame{
  position:relative;
  min-height:680px;
  border-radius:18px;
  overflow:hidden;
  background:#111;
  box-shadow:0 18px 40px rgba(0,0,0,.18);
}
.image-frame img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
}

.visual-note{
  padding:18px 20px;
  border-radius:14px;
  background:var(--panel);
  color:#fff;
  display:grid;
  gap:4px;
}
.visual-note strong{
  font:800 28px/1 "Barlow Condensed",Arial,sans-serif;
  text-transform:uppercase;
}
.visual-note span{
  color:#cec9c3;
  font-size:13px;
  line-height:1.5;
}

.site-footer{
  min-height:54px;
  padding:0 clamp(18px,4vw,50px) 24px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  color:#6f6964;
  font-size:12px;
}

@media (max-width: 1080px){
  .hero-layout{
    grid-template-columns:1fr;
  }
  .copy-panel{
    padding:24px 8px 0;
  }
  .image-frame{min-height:520px}
}

@media (max-width: 680px){
  .site-header{
    padding:14px 16px;
    flex-direction:column;
    align-items:flex-start;
  }
  .logo img{width:140px}
  .top-nav{width:100%}
  .nav-link,.nav-button{flex:1}
  .hero-layout{padding:18px 14px 24px;gap:18px}
  .copy-panel{padding:12px 2px 0}
  h1{font-size:44px}
  .intro{font-size:15px}
  .event-box{padding:16px 16px 18px}
  .place{font-size:30px}
  .date{font-size:12px;line-height:1.5}
  .buttons{flex-direction:column}
  .button{width:100%}
  .image-frame{min-height:340px}
  .visual-note{padding:16px}
  .site-footer{
    padding:0 16px 18px;
    flex-direction:column;
    align-items:flex-start;
  }
}
