/*
 * Aveant — measured off the live Squarespace site at 1920px:
 *   background #000 · all text #666 · "Helvetica Neue", Arial
 *   nav 13.7px/400 sentence case · TICKETS 12px/700 in a 60px bordered box
 *   site padding 13.4% each side · poster column 28.8%, 4.1% gap
 */

*,
*::before,
*::after { box-sizing: border-box; border: 0 solid #666; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: #000;
  color: #666;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 12px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg, iframe { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: inherit; }
p, h1, h2, h3, figure { margin: 0; }
button { font: inherit; color: inherit; background: none; cursor: pointer; }
input, select, textarea { font: inherit; }

::selection { background: #666; color: #000; }
:focus-visible { outline: 1px solid #666; outline-offset: 2px; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0, 0, 0, 0); white-space: nowrap;
}
.skip:focus {
  position: absolute; left: 16px; top: 16px; z-index: 100;
  width: auto; height: auto; clip: auto; margin: 0;
  background: #666; color: #000; padding: 8px 12px;
}

/* Percentage site padding, not a fixed max-width. */
.shell { width: 100%; padding-left: 13.4%; padding-right: 13.4%; }

/* Absolute and transparent — scrolls away with the page. */
.site-header { position: absolute; left: 0; right: 0; top: 0; z-index: 50; }
.header-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; height: 128px;
}
.logo { display: block; flex-shrink: 0; }
.logo img { width: 188px; max-width: none; }

.nav { display: flex; align-items: center; gap: 28px; }
.nav a { font-size: 13.7px; font-weight: 400; color: #666; transition: opacity .2s; }
.nav a:hover { opacity: .72; }
.nav a[aria-current="page"] { text-decoration: underline; text-underline-offset: 5px; }
.cart-link { display: inline-flex; align-items: center; gap: 6px; }
.cart-link svg { width: 17px; height: 17px; }

.nav-toggle { display: none; width: 36px; height: 36px; flex-direction: column;
  align-items: center; justify-content: center; gap: 5px; }
.nav-toggle span { display: block; width: 20px; height: 1px; background: #666; }

main { padding-top: 128px; }
.section { padding-top: 24px; padding-bottom: 24px; }

/* Three columns; the events grid fills the first two. */
.cols {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 4.1%;
  row-gap: 64px;
}

.event img { width: 100%; }
.event .btn-wrap { padding-top: 28px; }

.box-btn {
  display: flex; align-items: center; justify-content: center;
  width: 100%; height: 60px;
  border: 1px solid #666;
  font-size: 12px; font-weight: 700; color: #666;
  transition: background-color .2s, color .2s;
}
.box-btn:hover { background: #666; color: #000; }
.box-btn[aria-disabled="true"],
.box-btn:disabled { border-color: rgba(102,102,102,.4); color: rgba(102,102,102,.4);
  background: none; cursor: not-allowed; }

.note { font-size: 13.7px; color: #666; margin-top: 40px; }

/* Music — deliberately uneven collage. */
.collage { display: flex; align-items: flex-start; gap: .8%; }
.collage .item { width: var(--w); margin-top: var(--top, 0); }
.collage .frame { width: 100%; aspect-ratio: 16 / 9; }
.collage .frame.r43 { aspect-ratio: 4 / 3; }
.collage iframe { width: 100%; height: 100%; border: 0; }

/* Shop */
.product-img { width: 100%; aspect-ratio: 3 / 4; object-fit: contain; }
.meta { font-size: 13.7px; color: #666; }
.meta-strong { font-size: 16px; font-weight: 700; color: #666; }
.stack > * + * { margin-top: 8px; }

.size-row { display: flex; flex-wrap: wrap; gap: 8px; }
.size {
  min-width: 46px; height: 40px; padding: 0 12px;
  border: 1px solid #666; font-size: 12px; font-weight: 700; color: #666;
  transition: background-color .2s, color .2s;
}
.size:hover { background: #666; color: #000; }
.size[aria-pressed="true"] { background: #666; color: #000; }

.qty { display: inline-flex; align-items: center; border: 1px solid #666; }
.qty button { width: 40px; height: 40px; font-size: 13.7px; color: #666; }
.qty button:hover { background: #666; color: #000; }
.qty span { width: 36px; text-align: center; font-size: 13.7px; }

/* Cart */
.lines { border-top: 1px solid rgba(102,102,102,.4); }
.line { display: flex; gap: 20px; padding: 20px 0;
  border-bottom: 1px solid rgba(102,102,102,.4); }
.line img { width: 96px; height: 96px; object-fit: contain; flex-shrink: 0; }
.line-body { flex: 1; display: flex; flex-direction: column; gap: 12px; }
.row-between { display: flex; justify-content: space-between; gap: 16px; }
.link-underline { text-decoration: underline; text-underline-offset: 4px; }
.narrow { max-width: 405px; }
.wide { max-width: 860px; }

.site-footer { padding-top: 96px; padding-bottom: 64px; }
.site-footer p, .site-footer a { font-size: 13.7px; color: #666; }
.socials { display: flex; flex-wrap: wrap; gap: 8px 24px; margin-top: 16px; }
.socials a { text-decoration: underline; text-underline-offset: 4px; }

@media (max-width: 899px) {
  .shell { padding-left: 6%; padding-right: 6%; }
  .cols { grid-template-columns: minmax(0, 1fr); row-gap: 48px; }
  .collage { flex-direction: column; gap: 32px; }
  .collage .item { width: 100%; margin-top: 0; }
  .nav { display: none; }
  .nav.open { display: flex; flex-direction: column; align-items: flex-start;
    gap: 20px; padding-bottom: 32px; }
  .nav-toggle { display: flex; }
  .logo img { width: 150px; }
  .header-row { height: 96px; }
  main { padding-top: 96px; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
