:root{
  --dlm-red:  #E02020;
  --dlm-blue: #2B2A6E;
  --dlm-black:#111111;
  --dlm-gray: #666666;
  --dlm-bg:   #ffffff;

  --radius: 18px;
  --shadow: 0 10px 30px rgba(17,17,17,.08);
  --border: 1px solid rgba(17,17,17,.10);
  --max: 980px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--dlm-black);
  background: var(--dlm-bg);
  line-height: 1.45;
}

a{ color: inherit; }
a:hover{ color: var(--dlm-blue); }

.container{
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.header{
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(8px);
  border-bottom: var(--border);
}

.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding: 12px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  min-width: 0;
}
.brand__logo{
  width: 56px;
  height: 56px;
  border-radius: 14px;
  object-fit: contain;         
  background: #fff;            
  padding: 6px;               
  border: 1px solid rgba(17,17,17,.12);
  box-shadow: 0 6px 16px rgba(17,17,17,.10);
}
.brand__name{
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav{
  display:none; /* mobile-first */
  gap: 14px;
}
.nav__link{
  text-decoration:none;
  font-size: 14px;
  color: var(--dlm-gray);
}
.nav__link:hover{ color: var(--dlm-blue); }

.hero{
  padding: 36px 0 22px;
}
.hero__inner{
  display:flex;
  flex-direction:column;
  gap: 14px;
}
.badge{
  display:inline-flex;
  width: fit-content;
  border: var(--border);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  color: var(--dlm-blue);
  background: rgba(43,42,110,.06);
}
.hero__title{
  margin: 0;
  font-size: 34px;
  letter-spacing: -0.03em;
  line-height: 1.08;
}
.hero__subtitle{
  margin: 0;
  color: var(--dlm-gray);
  font-size: 15px;
  max-width: 58ch;
}

.cta{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height: 44px;
  padding: 0 16px;
  border-radius: 12px;
  text-decoration:none;
  font-weight: 700;
  border: var(--border);
}
.btn--primary{
  background: var(--dlm-red);
  color: #fff;
  border-color: rgba(0,0,0,0);
}
.btn--primary:hover{ filter: brightness(.95); color:#fff; }
.btn--outline{
  background: #fff;
  color: var(--dlm-blue);
  border: 1px solid rgba(43,42,110,.28);
}
.btn--outline:hover{
  background: rgba(43,42,110,.06);
  color: var(--dlm-blue);
}

.quicklinks{
  display:flex;
  flex-wrap:wrap;
  gap: 8px;
  color: var(--dlm-gray);
  font-size: 13px;
}
.quicklinks__item{
  text-decoration:none;
  border-bottom: 1px dashed rgba(17,17,17,.25);
}
.dot{ opacity:.5; }

.section{
  padding: 26px 0;
}
.section--alt{
  background: rgba(43,42,110,.04);
  border-top: var(--border);
  border-bottom: var(--border);
}
.section__title{
  margin: 0 0 6px;
  font-size: 22px;
  letter-spacing: -0.02em;
}
.section__lead{
  margin: 0 0 14px;
  color: var(--dlm-gray);
  font-size: 14px;
}

.grid{
  display:grid;
  gap: 12px;
}

.card{
  background: #fff;
  border: var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 14px;
}

.card__title{
  margin: 0 0 8px;
  font-size: 16px;
  letter-spacing: -0.01em;
}
.card__text{
  margin: 0 0 12px;
  color: var(--dlm-gray);
  font-size: 14px;
}
.small{ font-size: 12px; }

.list{
  margin: 0;
  padding-left: 18px;
  color: var(--dlm-gray);
}
.list a{
  color: var(--dlm-blue);
  text-decoration: none;
  border-bottom: 1px solid rgba(43,42,110,.25);
}

.embed{
  border: var(--border);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(17,17,17,.02);
}
.embed__placeholder{
  padding: 18px;
  color: var(--dlm-gray);
  font-size: 13px;
}

/* Responsive video */
.ratio{
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: 14px;
  overflow: hidden;
  border: var(--border);
  background: #000;
}
.ratio iframe{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
}

.gigs{
  display:flex;
  flex-direction:column;
  gap: 10px;
}
.gig{
  display:flex;
  align-items:center;
  gap: 12px;
  padding: 10px;
  border-radius: 14px;
  border: var(--border);
  background: rgba(17,17,17,.02);
}
.gig__date{
  width: 58px;
  min-width: 58px;
  border-radius: 14px;
  padding: 8px 0;
  text-align:center;
  background: rgba(224,32,32,.08);
  border: 1px solid rgba(224,32,32,.18);
}
.gig__day{
  display:block;
  font-size: 18px;
  font-weight: 900;
  color: var(--dlm-red);
  line-height: 1;
}
.gig__month{
  display:block;
  font-size: 12px;
  font-weight: 800;
  color: var(--dlm-blue);
  margin-top: 4px;
}
.gig__info{ flex: 1; min-width: 0; }
.gig__title{
  font-weight: 800;
  letter-spacing: -0.01em;
}
.gig__meta{
  font-size: 13px;
  color: var(--dlm-gray);
}
.gig__link{
  text-decoration:none;
  font-weight: 800;
  color: var(--dlm-blue);
  border-bottom: 1px solid rgba(43,42,110,.25);
}

.footer{
  padding: 18px 0;
  border-top: var(--border);
}
.footer__inner{
  display:flex;
  flex-direction:column;
  gap: 10px;
  color: var(--dlm-gray);
  font-size: 13px;
}
.footer__links{
  display:flex;
  gap: 14px;
  flex-wrap: wrap;
}
.footer__links a{
  text-decoration:none;
  color: var(--dlm-blue);
  border-bottom: 1px solid rgba(43,42,110,.25);
}

/* Desktop enhancements */
@media (min-width: 820px){
  .nav{ display:flex; }
  .hero{ padding: 58px 0 30px; }
  .hero__title{ font-size: 44px; }
  .grid{ grid-template-columns: 1fr 1fr; }
  .footer__inner{
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
